feat(api): 更新OpenAPI生成的客户端代码

- 添加了新的API端点用于苹果账户管理
- 实现了苹果账户的创建、删除、更新和查询功能
- 支持苹果账户充值记录的获取和处理
- 提供了苹果账户状态修改和暂停/恢复充值功能
- 集成了苹果账户回调处理和订单管理接口
- 增加了苹果账户配置获取和设置功能
- 实现了验证码获取和账户批量导入功能
- 添加了充值订单的手动回调和状态重置功能
- 支持苹果账户钱包列表和历史记录查询
- 提供了苹果账户充值记录下载和手动处理功能
This commit is contained in:
danial
2025-10-18 21:08:05 +08:00
parent a67b56d6be
commit 83852017b4
3 changed files with 14 additions and 0 deletions

View File

@@ -10,6 +10,7 @@
| **statusBefore** | **number** | 变更前状态 | [optional] [default to undefined] |
| **statusAfter** | **number** | 变更后状态 | [optional] [default to undefined] |
| **orderId** | **string** | 关联的订单号 | [optional] [default to undefined] |
| **userOrderId** | **string** | 用户订单号 | [optional] [default to undefined] |
| **failureCount** | **number** | 失败次数 | [optional] [default to undefined] |
| **remark** | **string** | 备注信息 | [optional] [default to undefined] |
| **createdAt** | **string** | 创建时间 | [optional] [default to undefined] |
@@ -26,6 +27,7 @@ const instance: KamiApiJdCookieV1CookieHistoryInfo = {
statusBefore,
statusAfter,
orderId,
userOrderId,
failureCount,
remark,
createdAt

View File

@@ -37,6 +37,10 @@ export interface KamiApiJdCookieV1CookieHistoryInfo {
* 关联的订单号
*/
orderId?: string;
/**
* 用户订单号
*/
userOrderId?: string;
/**
* 失败次数
*/

View File

@@ -43,6 +43,14 @@
</a-tag>
</div>
<!-- 关联订单 -->
<div v-if="item.userOrderId" class="order-info">
<span class="label">关联订单</span>
<a-typography-text copyable class="order-id">
{{ item.userOrderId }}
</a-typography-text>
</div>
<!-- 关联订单 -->
<div v-if="item.orderId" class="order-info">
<span class="label">关联订单</span>