- 新增 JDV2TokenManagementApi 接口文件,包含创建、删除、获取及列出 Token 的功能 - 添加与 Token 相关的请求和响应模型,如 CreateTokenReq/Res、DeleteTokenReq/Res 等 - 在 api.ts 中导出新的 JDV2TokenManagementApi 模块 - 更新 default-api.ts,移除已弃用的 iTunes 充值回调和处理接口 - 增加了 Token 绑卡记录查询接口及对应的数据模型 - 调整了部分枚举值顺序以符合业务逻辑 - 升级 Node.js 版本至 24.11.1 并更新 pnpm 至 10.23.0
1.3 KiB
1.3 KiB
KamiApiCamelOilV1CardBindingInfo
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| id | number | 绑定记录ID | [optional] [default to undefined] |
| tokenId | number | Token ID | [optional] [default to undefined] |
| tokenName | string | Token名称 | [optional] [default to undefined] |
| orderId | number | 订单ID | [optional] [default to undefined] |
| cardNumber | string | 卡号 | [optional] [default to undefined] |
| cardPassword | string | 卡密 | [optional] [default to undefined] |
| amount | object | [optional] [default to undefined] | |
| createdAt | string | 创建时间 | [optional] [default to undefined] |
Example
import { KamiApiCamelOilV1CardBindingInfo } from './api';
const instance: KamiApiCamelOilV1CardBindingInfo = {
id,
tokenId,
tokenName,
orderId,
cardNumber,
cardPassword,
amount,
createdAt
};