build(deps): 更新依赖包版本并优化构建配置
- 将 @openapitools/openapi-generator-cli 从 2.20.0 更新至 2.24.0 - 升级 axios 从 1.8.4 到 1.12.2,提升网络请求稳定性 - 更新多个 NestJS 相关包到最新版本,包括 @nestjs/common 和 @nestjs/core - 升级 chardet、compare-versions、concurrently 等工具库版本 - 添加新的依赖项如 @inquirer/external-editor、eastasianwidth 等 - 在 vite 配置中添加 vue 路径别名以支持模板编译 - 优化 pnpm 脚本描述,明确各命令功能和执行范围 - 完善 API 文档说明,增加生成器配置及输出结构细节 - 调整 lint-staged 配置,增强预提交钩子的文件检查规则 - 补充构建流程说明,在 vite 构建前运行 TypeScript 类型检查
This commit is contained in:
@@ -1,6 +1,11 @@
|
||||
{
|
||||
"permissions": {
|
||||
"allow": ["mcp__mysql__describe_table", "mcp__mysql__execute"],
|
||||
"allow": [
|
||||
"mcp__mysql__describe_table",
|
||||
"mcp__mysql__execute",
|
||||
"Bash(pnpm type:check)",
|
||||
"Bash(npx eslint:*)"
|
||||
],
|
||||
"deny": [],
|
||||
"ask": []
|
||||
}
|
||||
|
||||
55
CLAUDE.md
55
CLAUDE.md
@@ -13,26 +13,27 @@ This is a Vue 3 frontend application built with Arco Design Pro, TypeScript, and
|
||||
pnpm dev
|
||||
|
||||
# Build for production
|
||||
pnpm build
|
||||
pnpm build # Runs type check then builds
|
||||
|
||||
# Type checking
|
||||
pnpm type:check
|
||||
pnpm type:check # TypeScript and Vue type checking
|
||||
|
||||
# Linting and formatting
|
||||
pnpm lint # Run all linting checks
|
||||
pnpm lint:fix # Fix all linting issues
|
||||
pnpm lint # Run all linting checks (ESLint + Stylelint + Prettier)
|
||||
pnpm lint:fix # Fix all linting issues automatically
|
||||
pnpm eslint # ESLint only
|
||||
pnpm eslint:fix # Fix ESLint issues
|
||||
pnpm prettier # Check formatting
|
||||
pnpm prettier:fix # Fix formatting
|
||||
pnpm prettier # Check Prettier formatting
|
||||
pnpm prettier:fix # Fix Prettier formatting
|
||||
pnpm stylelint # Stylelint only
|
||||
pnpm stylelint:fix # Fix style issues
|
||||
pnpm stylelint:fix # Fix Stylelint issues
|
||||
|
||||
# API generation
|
||||
pnpm generate:api # Generate TypeScript API client from OpenAPI spec
|
||||
|
||||
# Clear cache
|
||||
pnpm clean:cache # Clear eslint cache and reinstall
|
||||
# Cache and dependencies
|
||||
pnpm clean:cache # Clear ESLint cache and reinstall dependencies
|
||||
pnpm lint-staged # Run lint-staged (used by pre-commit hooks)
|
||||
```
|
||||
|
||||
## Architecture
|
||||
@@ -85,11 +86,22 @@ The project uses a dual API approach:
|
||||
1. **Manual API definitions** in `src/api/*.ts` for specific services
|
||||
2. **Generated API client** from OpenAPI spec in `src/api/generated/`
|
||||
|
||||
API clients are configured in `src/api/index.ts`:
|
||||
|
||||
- `apiClient` - DefaultApi for main backend operations
|
||||
- `apiCkClient` - CkApi for CK-related operations
|
||||
|
||||
API base URL is configured via environment variables:
|
||||
|
||||
- Development: `http://127.0.0.1:12401`
|
||||
- Production: Set in `.env.production`
|
||||
|
||||
The API client generation uses:
|
||||
|
||||
- Input: `http://127.0.0.1:12401/api.json`
|
||||
- Generator: `typescript-axios`
|
||||
- Output: Separate models and APIs packages with tag-based grouping
|
||||
|
||||
### State Management
|
||||
|
||||
Uses Pinia with modular stores:
|
||||
@@ -132,8 +144,11 @@ Global components are auto-registered via `src/components/index.ts`
|
||||
|
||||
### Path Aliases
|
||||
|
||||
Configured in Vite config (`config/vite.config.base.mts`):
|
||||
|
||||
- `@/*` maps to `src/*`
|
||||
- `@config/*` maps to `config/*`
|
||||
- `assets` maps to `src/assets`
|
||||
- `vue` maps to `vue/dist/vue.esm-bundler.js` (for template compilation)
|
||||
|
||||
### Environment Configuration
|
||||
|
||||
@@ -141,13 +156,15 @@ Development settings in `.env.development`, production in `.env.production`
|
||||
|
||||
### Code Quality
|
||||
|
||||
- ESLint for JavaScript/TypeScript linting
|
||||
- Stylelint for CSS/Less linting
|
||||
- Prettier for code formatting
|
||||
- ESLint for JavaScript/TypeScript linting (targets `src,mock,config` directories)
|
||||
- Stylelint for CSS/Less linting (processes `**/*.{html,vue,css,less}`)
|
||||
- Prettier for code formatting (processes `src/**/*.{js,ts,json,tsx,css,scss,vue,html,md}`)
|
||||
- Husky for Git hooks
|
||||
- Lint-staged for pre-commit checks
|
||||
- Lint-staged for pre-commit checks (configured with file-specific linting rules)
|
||||
- Commitlint for conventional commits
|
||||
|
||||
**Note**: All linting tools are configured to run automatically via lint-staged on pre-commit hooks.
|
||||
|
||||
## Common Patterns
|
||||
|
||||
### API Calls
|
||||
@@ -161,3 +178,13 @@ Follow Vue 3 Composition API patterns with `<script setup>` syntax. Use Arco Des
|
||||
### State Management
|
||||
|
||||
Create Pinia stores for feature-level state that needs to be shared across components. Use TanStack Query for server state management.
|
||||
|
||||
### Build Configuration
|
||||
|
||||
The project uses Vite with multiple configuration files:
|
||||
|
||||
- `config/vite.config.base.mts` - Base configuration shared across environments
|
||||
- `config/vite.config.dev.mts` - Development configuration
|
||||
- `config/vite.config.prod.mts` - Production configuration
|
||||
|
||||
Build process includes TypeScript compilation (`vue-tsc --noEmit`) before Vite build.
|
||||
|
||||
@@ -2,6 +2,6 @@
|
||||
"$schema": "./node_modules/@openapitools/openapi-generator-cli/config.schema.json",
|
||||
"spaces": 2,
|
||||
"generator-cli": {
|
||||
"version": "7.13.0"
|
||||
"version": "7.16.0"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -54,7 +54,7 @@
|
||||
"@milkdown/kit": "^7.7.0",
|
||||
"@milkdown/theme-nord": "^7.7.0",
|
||||
"@milkdown/vue": "^7.7.0",
|
||||
"@openapitools/openapi-generator-cli": "^2.20.0",
|
||||
"@openapitools/openapi-generator-cli": "^2.24.0",
|
||||
"@tanstack/vue-query": "^5.74.7",
|
||||
"@vueuse/core": "^10.11.1",
|
||||
"axios": "^1.8.4",
|
||||
|
||||
375
pnpm-lock.yaml
generated
375
pnpm-lock.yaml
generated
@@ -46,8 +46,8 @@ importers:
|
||||
specifier: ^7.7.0
|
||||
version: 7.10.3(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.8)(prosemirror-model@1.25.1)(prosemirror-state@1.4.3)(prosemirror-view@1.39.3)(typescript@5.8.3)(vue@3.5.14(typescript@5.8.3))
|
||||
'@openapitools/openapi-generator-cli':
|
||||
specifier: ^2.20.0
|
||||
version: 2.20.0
|
||||
specifier: ^2.24.0
|
||||
version: 2.24.0(@types/node@22.15.18)
|
||||
'@tanstack/vue-query':
|
||||
specifier: ^5.74.7
|
||||
version: 5.76.0(vue@3.5.14(typescript@5.8.3))
|
||||
@@ -381,10 +381,6 @@ packages:
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0-0
|
||||
|
||||
'@babel/runtime@7.27.1':
|
||||
resolution: {integrity: sha512-1x3D2xEk2fRo3PAhwQwu5UubzgiVWSXTBfWpVd2Mx2AzRqJuDJCsgaDVZ7HB5iGzDW1Hl1sWN2mFyKjmR9uAog==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
|
||||
'@babel/template@7.27.2':
|
||||
resolution: {integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
@@ -956,6 +952,27 @@ packages:
|
||||
resolution: {integrity: sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==}
|
||||
engines: {node: '>=18.18'}
|
||||
|
||||
'@inquirer/external-editor@1.0.2':
|
||||
resolution: {integrity: sha512-yy9cOoBnx58TlsPrIxauKIFQTiyH+0MK4e97y4sV9ERbI+zDxw7i2hxHLCIEGIE/8PPvDxGhgzIOTSOWcs6/MQ==}
|
||||
engines: {node: '>=18'}
|
||||
peerDependencies:
|
||||
'@types/node': '>=18'
|
||||
peerDependenciesMeta:
|
||||
'@types/node':
|
||||
optional: true
|
||||
|
||||
'@isaacs/balanced-match@4.0.1':
|
||||
resolution: {integrity: sha512-yzMTt9lEb8Gv7zRioUilSglI0c0smZ9k5D65677DLWLtWJaXIS3CqcGyUFByYKlnUj6TkjLVs54fBl6+TiGQDQ==}
|
||||
engines: {node: 20 || >=22}
|
||||
|
||||
'@isaacs/brace-expansion@5.0.0':
|
||||
resolution: {integrity: sha512-ZT55BDLV0yv0RBm2czMiZ+SqCGO7AvmOM3G/w2xhVPH+te0aKgFjmBvGlL1dH+ql2tgGO3MVrbb3jCKyvpgnxA==}
|
||||
engines: {node: 20 || >=22}
|
||||
|
||||
'@isaacs/cliui@8.0.2':
|
||||
resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
|
||||
engines: {node: '>=12'}
|
||||
|
||||
'@jridgewell/gen-mapping@0.3.8':
|
||||
resolution: {integrity: sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==}
|
||||
engines: {node: '>=6.0.0'}
|
||||
@@ -1117,18 +1134,18 @@ packages:
|
||||
resolution: {integrity: sha512-H9vwztj5OAqHg9GockCQC06k1natgcxWQSRpQcPJf6i5+MWBzfKkRtxGbjQf0X2ihii0ffLZCRGbYV2f2bjNCQ==}
|
||||
engines: {node: '>=18'}
|
||||
|
||||
'@nestjs/axios@4.0.0':
|
||||
resolution: {integrity: sha512-1cB+Jyltu/uUPNQrpUimRHEQHrnQrpLzVj6dU3dgn6iDDDdahr10TgHFGTmw5VuJ9GzKZsCLDL78VSwJAs/9JQ==}
|
||||
'@nestjs/axios@4.0.1':
|
||||
resolution: {integrity: sha512-68pFJgu+/AZbWkGu65Z3r55bTsCPlgyKaV4BSG8yUAD72q1PPuyVRgUwFv6BxdnibTUHlyxm06FmYWNC+bjN7A==}
|
||||
peerDependencies:
|
||||
'@nestjs/common': ^10.0.0 || ^11.0.0
|
||||
axios: ^1.3.1
|
||||
rxjs: ^7.0.0
|
||||
|
||||
'@nestjs/common@11.0.20':
|
||||
resolution: {integrity: sha512-/GH8NDCczjn6+6RNEtSNAts/nq/wQE8L1qZ9TRjqjNqEsZNE1vpFuRIhmcO2isQZ0xY5rySnpaRdrOAul3gQ3A==}
|
||||
'@nestjs/common@11.1.6':
|
||||
resolution: {integrity: sha512-krKwLLcFmeuKDqngG2N/RuZHCs2ycsKcxWIDgcm7i1lf3sQ0iG03ci+DsP/r3FcT/eJDFsIHnKtNta2LIi7PzQ==}
|
||||
peerDependencies:
|
||||
class-transformer: '*'
|
||||
class-validator: '*'
|
||||
class-transformer: '>=0.4.1'
|
||||
class-validator: '>=0.13.2'
|
||||
reflect-metadata: ^0.1.12 || ^0.2.0
|
||||
rxjs: ^7.1.0
|
||||
peerDependenciesMeta:
|
||||
@@ -1137,8 +1154,8 @@ packages:
|
||||
class-validator:
|
||||
optional: true
|
||||
|
||||
'@nestjs/core@11.0.20':
|
||||
resolution: {integrity: sha512-yUkEzBGiRNSEThVl6vMCXgoA9sDGWoRbJsTLdYdCC7lg7PE1iXBnna1FiBfQjT995pm0fjyM1e3WsXmyWeJXbw==}
|
||||
'@nestjs/core@11.1.6':
|
||||
resolution: {integrity: sha512-siWX7UDgErisW18VTeJA+x+/tpNZrJewjTBsRPF3JVxuWRuAB1kRoiJcxHgln8Lb5UY9NdvklITR84DUEXD0Cg==}
|
||||
engines: {node: '>= 20'}
|
||||
peerDependencies:
|
||||
'@nestjs/common': ^11.0.0
|
||||
@@ -1202,8 +1219,8 @@ packages:
|
||||
'@openapi-codegen/typescript@11.0.1':
|
||||
resolution: {integrity: sha512-01WsAQeurbDtXryHJmeZh4h/piVwqUXuMq/uWzkVcSRDc/5Oz3nxTdPyF0YoVl6c0GSTLBuxolrsgWzFyk8Ngw==}
|
||||
|
||||
'@openapitools/openapi-generator-cli@2.20.0':
|
||||
resolution: {integrity: sha512-Amtd7/9Lodaxnmfsru8R5n0CW9lyWOI40UsppGMfuNFkFFbabq51/VAJFsOHkNnDRwVUc7AGKWjN5icphDGlTQ==}
|
||||
'@openapitools/openapi-generator-cli@2.24.0':
|
||||
resolution: {integrity: sha512-VS0sfW46oe/hQq7g1YZU1cJJebAQIwKhKqjsDY1/QFmcJMXYfe339yjMDTv02kMbsx621cSH46HIdvmW+i+7mg==}
|
||||
engines: {node: '>=16'}
|
||||
hasBin: true
|
||||
|
||||
@@ -1254,56 +1271,67 @@ packages:
|
||||
resolution: {integrity: sha512-de6TFZYIvJwRNjmW3+gaXiZ2DaWL5D5yGmSYzkdzjBDS3W+B9JQ48oZEsmMvemqjtAFzE16DIBLqd6IQQRuG9Q==}
|
||||
cpu: [arm]
|
||||
os: [linux]
|
||||
libc: [glibc]
|
||||
|
||||
'@rollup/rollup-linux-arm-musleabihf@4.40.2':
|
||||
resolution: {integrity: sha512-urjaEZubdIkacKc930hUDOfQPysezKla/O9qV+O89enqsqUmQm8Xj8O/vh0gHg4LYfv7Y7UsE3QjzLQzDYN1qg==}
|
||||
cpu: [arm]
|
||||
os: [linux]
|
||||
libc: [musl]
|
||||
|
||||
'@rollup/rollup-linux-arm64-gnu@4.40.2':
|
||||
resolution: {integrity: sha512-KlE8IC0HFOC33taNt1zR8qNlBYHj31qGT1UqWqtvR/+NuCVhfufAq9fxO8BMFC22Wu0rxOwGVWxtCMvZVLmhQg==}
|
||||
cpu: [arm64]
|
||||
os: [linux]
|
||||
libc: [glibc]
|
||||
|
||||
'@rollup/rollup-linux-arm64-musl@4.40.2':
|
||||
resolution: {integrity: sha512-j8CgxvfM0kbnhu4XgjnCWJQyyBOeBI1Zq91Z850aUddUmPeQvuAy6OiMdPS46gNFgy8gN1xkYyLgwLYZG3rBOg==}
|
||||
cpu: [arm64]
|
||||
os: [linux]
|
||||
libc: [musl]
|
||||
|
||||
'@rollup/rollup-linux-loongarch64-gnu@4.40.2':
|
||||
resolution: {integrity: sha512-Ybc/1qUampKuRF4tQXc7G7QY9YRyeVSykfK36Y5Qc5dmrIxwFhrOzqaVTNoZygqZ1ZieSWTibfFhQ5qK8jpWxw==}
|
||||
cpu: [loong64]
|
||||
os: [linux]
|
||||
libc: [glibc]
|
||||
|
||||
'@rollup/rollup-linux-powerpc64le-gnu@4.40.2':
|
||||
resolution: {integrity: sha512-3FCIrnrt03CCsZqSYAOW/k9n625pjpuMzVfeI+ZBUSDT3MVIFDSPfSUgIl9FqUftxcUXInvFah79hE1c9abD+Q==}
|
||||
cpu: [ppc64]
|
||||
os: [linux]
|
||||
libc: [glibc]
|
||||
|
||||
'@rollup/rollup-linux-riscv64-gnu@4.40.2':
|
||||
resolution: {integrity: sha512-QNU7BFHEvHMp2ESSY3SozIkBPaPBDTsfVNGx3Xhv+TdvWXFGOSH2NJvhD1zKAT6AyuuErJgbdvaJhYVhVqrWTg==}
|
||||
cpu: [riscv64]
|
||||
os: [linux]
|
||||
libc: [glibc]
|
||||
|
||||
'@rollup/rollup-linux-riscv64-musl@4.40.2':
|
||||
resolution: {integrity: sha512-5W6vNYkhgfh7URiXTO1E9a0cy4fSgfE4+Hl5agb/U1sa0kjOLMLC1wObxwKxecE17j0URxuTrYZZME4/VH57Hg==}
|
||||
cpu: [riscv64]
|
||||
os: [linux]
|
||||
libc: [musl]
|
||||
|
||||
'@rollup/rollup-linux-s390x-gnu@4.40.2':
|
||||
resolution: {integrity: sha512-B7LKIz+0+p348JoAL4X/YxGx9zOx3sR+o6Hj15Y3aaApNfAshK8+mWZEf759DXfRLeL2vg5LYJBB7DdcleYCoQ==}
|
||||
cpu: [s390x]
|
||||
os: [linux]
|
||||
libc: [glibc]
|
||||
|
||||
'@rollup/rollup-linux-x64-gnu@4.40.2':
|
||||
resolution: {integrity: sha512-lG7Xa+BmBNwpjmVUbmyKxdQJ3Q6whHjMjzQplOs5Z+Gj7mxPtWakGHqzMqNER68G67kmCX9qX57aRsW5V0VOng==}
|
||||
cpu: [x64]
|
||||
os: [linux]
|
||||
libc: [glibc]
|
||||
|
||||
'@rollup/rollup-linux-x64-musl@4.40.2':
|
||||
resolution: {integrity: sha512-tD46wKHd+KJvsmije4bUskNuvWKFcTOIM9tZ/RrmIvcXnbi0YK/cKS9FzFtAm7Oxi2EhV5N2OpfFB348vSQRXA==}
|
||||
cpu: [x64]
|
||||
os: [linux]
|
||||
libc: [musl]
|
||||
|
||||
'@rollup/rollup-win32-arm64-msvc@4.40.2':
|
||||
resolution: {integrity: sha512-Bjv/HG8RRWLNkXwQQemdsWw4Mg+IJ29LK+bJPW2SCzPKOUaMmPEppQlu/Fqk1d7+DX3V7JbFdbkh/NMmurT6Pg==}
|
||||
@@ -1351,24 +1379,28 @@ packages:
|
||||
engines: {node: '>=10'}
|
||||
cpu: [arm64]
|
||||
os: [linux]
|
||||
libc: [glibc]
|
||||
|
||||
'@swc/core-linux-arm64-musl@1.11.24':
|
||||
resolution: {integrity: sha512-ypXLIdszRo0re7PNNaXN0+2lD454G8l9LPK/rbfRXnhLWDBPURxzKlLlU/YGd2zP98wPcVooMmegRSNOKfvErw==}
|
||||
engines: {node: '>=10'}
|
||||
cpu: [arm64]
|
||||
os: [linux]
|
||||
libc: [musl]
|
||||
|
||||
'@swc/core-linux-x64-gnu@1.11.24':
|
||||
resolution: {integrity: sha512-IM7d+STVZD48zxcgo69L0yYptfhaaE9cMZ+9OoMxirNafhKKXwoZuufol1+alEFKc+Wbwp+aUPe/DeWC/Lh3dg==}
|
||||
engines: {node: '>=10'}
|
||||
cpu: [x64]
|
||||
os: [linux]
|
||||
libc: [glibc]
|
||||
|
||||
'@swc/core-linux-x64-musl@1.11.24':
|
||||
resolution: {integrity: sha512-DZByJaMVzSfjQKKQn3cqSeqwy6lpMaQDQQ4HPlch9FWtDx/dLcpdIhxssqZXcR2rhaQVIaRQsCqwV6orSDGAGw==}
|
||||
engines: {node: '>=10'}
|
||||
cpu: [x64]
|
||||
os: [linux]
|
||||
libc: [musl]
|
||||
|
||||
'@swc/core-win32-arm64-msvc@1.11.24':
|
||||
resolution: {integrity: sha512-Q64Ytn23y9aVDKN5iryFi8mRgyHw3/kyjTjT4qFCa8AEb5sGUuSj//AUZ6c0J7hQKMHlg9do5Etvoe61V98/JQ==}
|
||||
@@ -1802,8 +1834,8 @@ packages:
|
||||
peerDependencies:
|
||||
postcss: ^8.1.0
|
||||
|
||||
axios@1.8.4:
|
||||
resolution: {integrity: sha512-eBSYY4Y68NNlHbHBMdeDmKNtDgXWhQsJcGqzO3iLUM0GraQFSS9cVgPX5I9b3lbdFKyYoAEGAZF1DwhTaljNAw==}
|
||||
axios@1.12.2:
|
||||
resolution: {integrity: sha512-vMJzPewAlRyOgxV2dU0Cuz2O8zzzx9VYtbJOaBgXFeLc4IV/Eg50n4LowmehOOR61S8ZMpc2K5Sa7g6A4jfkUw==}
|
||||
|
||||
axios@1.9.0:
|
||||
resolution: {integrity: sha512-re4CqKTJaURpzbLHtIi6XpDv20/CnpXOtjRY5/CU32L8gU8ek9UIivcfvSWvmKEngmVbrUtPpdDwWDWL7DNHvg==}
|
||||
@@ -1974,8 +2006,8 @@ packages:
|
||||
character-entities@2.0.2:
|
||||
resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==}
|
||||
|
||||
chardet@0.7.0:
|
||||
resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==}
|
||||
chardet@2.1.0:
|
||||
resolution: {integrity: sha512-bNFETTG/pM5ryzQ9Ad0lJOTa6HWD/YsScAR3EnCPZRPlQh77JocYktSHOUHelyhm8IARL+o4c4F1bP5KVOjiRA==}
|
||||
|
||||
chokidar@3.6.0:
|
||||
resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
|
||||
@@ -2079,8 +2111,8 @@ packages:
|
||||
compare-func@2.0.0:
|
||||
resolution: {integrity: sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==}
|
||||
|
||||
compare-versions@4.1.4:
|
||||
resolution: {integrity: sha512-FemMreK9xNyL8gQevsdRMrvO4lFCkQP7qbuktn1q8ndcNk1+0mz7lgE7b/sNvbhVgY4w6tMN1FDp6aADjqw2rw==}
|
||||
compare-versions@6.1.1:
|
||||
resolution: {integrity: sha512-4hm4VPpIecmlg59CHXnRDnqGplJFrbLG4aFEl5vl6cK1u76ws3LLvX7ikFnTDl5vo39sjWD6AaDPYodJp/NNHg==}
|
||||
|
||||
compute-scroll-into-view@1.0.20:
|
||||
resolution: {integrity: sha512-UCB0ioiyj8CRjtrvaceBLqqhZCVP+1B8+NWQhmdsm0VXOJtobBCf1dBQmebCCo34qZmUwZfIH2MZLqNHazrfjg==}
|
||||
@@ -2088,9 +2120,9 @@ packages:
|
||||
concat-map@0.0.1:
|
||||
resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
|
||||
|
||||
concurrently@6.5.1:
|
||||
resolution: {integrity: sha512-FlSwNpGjWQfRwPLXvJ/OgysbBxPkWpiVjy1042b0U7on7S7qwwMIILRj7WTN1mTgqa582bG6NFuScOoh6Zgdag==}
|
||||
engines: {node: '>=10.0.0'}
|
||||
concurrently@9.2.1:
|
||||
resolution: {integrity: sha512-fsfrO0MxV64Znoy8/l1vVIjjHa29SZyyqPgQBwhiDcaW8wJc2W3XWVOGx4M3oJBnv/zdUZIIp1gDeS98GzP8Ng==}
|
||||
engines: {node: '>=18'}
|
||||
hasBin: true
|
||||
|
||||
confbox@0.1.8:
|
||||
@@ -2264,10 +2296,6 @@ packages:
|
||||
resolution: {integrity: sha512-7hvf7/GW8e86rW0ptuwS3OcBGDjIi6SZva7hCyWC0yYry2cOPmLIjXAUHI6DK2HsnwJd9ifmt57i8eV2n4YNpw==}
|
||||
engines: {node: '>= 14'}
|
||||
|
||||
date-fns@2.30.0:
|
||||
resolution: {integrity: sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==}
|
||||
engines: {node: '>=0.11'}
|
||||
|
||||
dayjs@1.11.13:
|
||||
resolution: {integrity: sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg==}
|
||||
|
||||
@@ -2412,6 +2440,9 @@ packages:
|
||||
duplexer3@0.1.5:
|
||||
resolution: {integrity: sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA==}
|
||||
|
||||
eastasianwidth@0.2.0:
|
||||
resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
|
||||
|
||||
easy-table@1.1.0:
|
||||
resolution: {integrity: sha512-oq33hWOSSnl2Hoh00tZWaIPi1ievrD9aFG82/IgjlycAnW9hHx5PkJiXpxPsgEE+H7BsbVQXFVFST8TEXS6/pA==}
|
||||
|
||||
@@ -2430,6 +2461,9 @@ packages:
|
||||
emoji-regex@8.0.0:
|
||||
resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
|
||||
|
||||
emoji-regex@9.2.2:
|
||||
resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
|
||||
|
||||
encodeurl@2.0.0:
|
||||
resolution: {integrity: sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==}
|
||||
engines: {node: '>= 0.8'}
|
||||
@@ -2790,10 +2824,6 @@ packages:
|
||||
extend@3.0.2:
|
||||
resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==}
|
||||
|
||||
external-editor@3.1.0:
|
||||
resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==}
|
||||
engines: {node: '>=4'}
|
||||
|
||||
fast-content-type-parse@2.0.1:
|
||||
resolution: {integrity: sha512-nGqtvLrj5w0naR6tDPfB4cUmYCqouzyQiz6C5y/LtcDllJdrcc6WaWW6iXyIIOErTa/XRybj28aasdn4LkVk6Q==}
|
||||
|
||||
@@ -2859,9 +2889,9 @@ packages:
|
||||
resolution: {integrity: sha512-UssQP5ZgIOKelfsaB5CuGAL+Y+q7EmONuiwF3N5HAH0t27rvrttgi6Ra9k/+DVaY9UF6+ybxu5pOXLUdA8N7Vg==}
|
||||
engines: {node: '>=8'}
|
||||
|
||||
file-type@20.4.1:
|
||||
resolution: {integrity: sha512-hw9gNZXUfZ02Jo0uafWLaFVPter5/k2rfcrjFJJHX/77xtSDOfJuEFb6oKlFV86FLP1SuyHMW1PSk0U9M5tKkQ==}
|
||||
engines: {node: '>=18'}
|
||||
file-type@21.0.0:
|
||||
resolution: {integrity: sha512-ek5xNX2YBYlXhiUXui3D/BXa3LdqPmoLJ7rqEx2bKJ7EAUEfmXgW0Das7Dc6Nr9MvqaOnIqiPV0mZk/r/UpNAg==}
|
||||
engines: {node: '>=20'}
|
||||
|
||||
file-type@3.9.0:
|
||||
resolution: {integrity: sha512-RLoqTXE8/vPmMuTI88DAzhMYC99I8BWv7zYP4A1puo5HIjEJ5EX48ighy4ZyKMG9EDXxBgW6e++cn7d1xuFghA==}
|
||||
@@ -2938,6 +2968,10 @@ packages:
|
||||
debug:
|
||||
optional: true
|
||||
|
||||
foreground-child@3.3.1:
|
||||
resolution: {integrity: sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==}
|
||||
engines: {node: '>=14'}
|
||||
|
||||
form-data-encoder@2.1.4:
|
||||
resolution: {integrity: sha512-yDYSgNMraqvnxiEXO4hi88+YZxaHC6QKzb5N84iRCTDeRO7ZALpir/lVmf/uXUhnwUr2O4HU8s/n6x+yNjQkHw==}
|
||||
engines: {node: '>= 14.17'}
|
||||
@@ -2946,6 +2980,10 @@ packages:
|
||||
resolution: {integrity: sha512-hGfm/slu0ZabnNt4oaRZ6uREyfCj6P4fT/n6A1rGV+Z0VdGXjfOhVUpkn6qVQONHGIFwmveGXyDs75+nr6FM8w==}
|
||||
engines: {node: '>= 6'}
|
||||
|
||||
form-data@4.0.4:
|
||||
resolution: {integrity: sha512-KrGhL9Q4zjj0kiUt5OO4Mr/A/jlI2jDYs5eHBpYHPcBEVSiipAvn2Ko2HnPe20rmcuuvMHNdZFp+4IlGTMF0Ow==}
|
||||
engines: {node: '>= 6'}
|
||||
|
||||
forwarded@0.2.0:
|
||||
resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==}
|
||||
engines: {node: '>= 0.6'}
|
||||
@@ -2967,8 +3005,8 @@ packages:
|
||||
resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==}
|
||||
engines: {node: '>=12'}
|
||||
|
||||
fs-extra@11.3.0:
|
||||
resolution: {integrity: sha512-Z4XaCL6dUDHfP/jT25jJKMmtxvuwbkrD1vNSMFlo9lNLY2c5FHYSQgHPRZUjAB26TpDEoW9HCOgplrdbaPV/ew==}
|
||||
fs-extra@11.3.2:
|
||||
resolution: {integrity: sha512-Xr9F6z6up6Ws+NjzMCZc6WXg2YFRlrLP9NQDO3VQrWrfiojdhS56TzueT88ze0uBdCTwEIhQ3ptnmKeWGFAe0A==}
|
||||
engines: {node: '>=14.14'}
|
||||
|
||||
fs.realpath@1.0.0:
|
||||
@@ -3059,14 +3097,15 @@ packages:
|
||||
resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
|
||||
engines: {node: '>=10.13.0'}
|
||||
|
||||
glob@11.0.3:
|
||||
resolution: {integrity: sha512-2Nim7dha1KVkaiF4q6Dj+ngPPMdfvLJEOpZk/jKiUAkqKebpGAWQXAq9z1xu9HKu5lWfqw/FASuccEjyznjPaA==}
|
||||
engines: {node: 20 || >=22}
|
||||
hasBin: true
|
||||
|
||||
glob@7.2.3:
|
||||
resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
|
||||
deprecated: Glob versions prior to v9 are no longer supported
|
||||
|
||||
glob@9.3.5:
|
||||
resolution: {integrity: sha512-e1LleDykUz2Iu+MTYdkSsuWX8lvAjAcs0Xef0lNIu0S2wOAzuTxCJtcd9S3cijlwYF18EsU3rzb8jPVobxDh9Q==}
|
||||
engines: {node: '>=16 || 14 >=14.17'}
|
||||
|
||||
global-directory@4.0.1:
|
||||
resolution: {integrity: sha512-wHTUcDUoZ1H5/0iVqEudYW4/kAlN5cZ3j/bXn0Dpbizl9iaUVeWSHqiOjsgk6OW2bkLclbBjzewBz6weQ1zA2Q==}
|
||||
engines: {node: '>=18'}
|
||||
@@ -3218,14 +3257,14 @@ packages:
|
||||
engines: {node: '>=14'}
|
||||
hasBin: true
|
||||
|
||||
iconv-lite@0.4.24:
|
||||
resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==}
|
||||
engines: {node: '>=0.10.0'}
|
||||
|
||||
iconv-lite@0.6.3:
|
||||
resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==}
|
||||
engines: {node: '>=0.10.0'}
|
||||
|
||||
iconv-lite@0.7.0:
|
||||
resolution: {integrity: sha512-cf6L2Ds3h57VVmkZe+Pn+5APsT7FpqJtEhhieDCvrE2MK5Qk9MyffgQyuxQTm6BChfeZNtcOLHp9IcWRVcIcBQ==}
|
||||
engines: {node: '>=0.10.0'}
|
||||
|
||||
ieee754@1.2.1:
|
||||
resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
|
||||
|
||||
@@ -3307,8 +3346,8 @@ packages:
|
||||
resolution: {integrity: sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g==}
|
||||
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
|
||||
|
||||
inquirer@8.2.6:
|
||||
resolution: {integrity: sha512-M1WuAmb7pn9zdFRtQYk26ZBoY043Sse0wVDdk4Bppr+JOXyQYybdtvK+l9wUibhtjdjvtoiNy8tk+EgsYIUqKg==}
|
||||
inquirer@8.2.7:
|
||||
resolution: {integrity: sha512-UjOaSel/iddGZJ5xP/Eixh6dY1XghiBw4XK13rCCIJcJfyhhoul/7KhLLUGtebEj6GDYM6Vnx/mVsjx2L/mFIA==}
|
||||
engines: {node: '>=12.0.0'}
|
||||
|
||||
into-stream@3.1.0:
|
||||
@@ -3466,6 +3505,10 @@ packages:
|
||||
resolution: {integrity: sha512-RKYVTCjAnRthyJes037NX/IiqeidgN1xc3j1RjFfECFp28A1GVwK9nA+i0rJPaHqSZwygLzRnFlzUuHFoWWy+Q==}
|
||||
engines: {node: '>=6'}
|
||||
|
||||
jackspeak@4.1.1:
|
||||
resolution: {integrity: sha512-zptv57P3GpL+O0I7VdMJNBZCu+BPHVQUk55Ft8/QCJjTVxrnJHuVuX/0Bl2A6/+2oyR/ZMEuFKwmzqqZ/U5nPQ==}
|
||||
engines: {node: 20 || >=22}
|
||||
|
||||
jiti@2.4.2:
|
||||
resolution: {integrity: sha512-rg9zJN+G4n2nfJl5MW3BMygZX56zKPNVEYYqq7adpmMh4Jn2QNEwhvQlFy6jPVdcod7txZtKHWnyZiA3a0zP7A==}
|
||||
hasBin: true
|
||||
@@ -3676,8 +3719,9 @@ packages:
|
||||
engines: {node: '>=0.10.0'}
|
||||
hasBin: true
|
||||
|
||||
lru-cache@10.4.3:
|
||||
resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==}
|
||||
lru-cache@11.2.2:
|
||||
resolution: {integrity: sha512-F9ODfyqML2coTIsQpSkRHnLSZMtkU8Q+mSfcaIyKwy58u+8k5nvAYeiNhsyMARvzNcXJ9QfWVrcPsC9e9rAxtg==}
|
||||
engines: {node: 20 || >=22}
|
||||
|
||||
lru-cache@4.1.5:
|
||||
resolution: {integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==}
|
||||
@@ -3935,13 +3979,13 @@ packages:
|
||||
resolution: {integrity: sha512-e5ISH9xMYU0DzrT+jl8q2ze9D6eWBto+I8CNpe+VI+K2J/F/k3PdkdTdz4wvGVH4NTpo+NRYTVIuMQEMMcsLqg==}
|
||||
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
|
||||
|
||||
minimatch@10.0.3:
|
||||
resolution: {integrity: sha512-IPZ167aShDZZUMdRk66cyQAW3qr0WzbHkPdMYa8bzZhlHhO3jALbKdxcaak7W9FfT2rZNpQuUu4Od7ILEpXSaw==}
|
||||
engines: {node: 20 || >=22}
|
||||
|
||||
minimatch@3.1.2:
|
||||
resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
|
||||
|
||||
minimatch@8.0.4:
|
||||
resolution: {integrity: sha512-W0Wvr9HyFXZRGIDgCicunpQ299OKXs9RgZfaukz4qAW/pJhcpUfupc9c+OObPOFueNy8VSrZgEmDtk6Kh4WzDA==}
|
||||
engines: {node: '>=16 || 14 >=14.17'}
|
||||
|
||||
minimatch@9.0.5:
|
||||
resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==}
|
||||
engines: {node: '>=16 || 14 >=14.17'}
|
||||
@@ -3949,10 +3993,6 @@ packages:
|
||||
minimist@1.2.8:
|
||||
resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
|
||||
|
||||
minipass@4.2.8:
|
||||
resolution: {integrity: sha512-fNzuVyifolSLFL4NzpF+wEF4qrgqaaKX0haXPQEdQ7NKAN+WecoKMHV09YcuL/DHxrUsYQOK3MiuDf7Ip2OXfQ==}
|
||||
engines: {node: '>=8'}
|
||||
|
||||
minipass@7.1.2:
|
||||
resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==}
|
||||
engines: {node: '>=16 || 14 >=14.17'}
|
||||
@@ -4146,10 +4186,6 @@ packages:
|
||||
resolution: {integrity: sha512-uksVLsqG3pVdzzPvmAHpBK0wKxYItuzZr7SziusRPoz67tGV8rL1szZ6IdeUrbqLjGDwApBtN29eEE3IqGHOjg==}
|
||||
engines: {node: '>=4'}
|
||||
|
||||
os-tmpdir@1.0.2:
|
||||
resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==}
|
||||
engines: {node: '>=0.10.0'}
|
||||
|
||||
ow@0.17.0:
|
||||
resolution: {integrity: sha512-i3keDzDQP5lWIe4oODyDFey1qVrq2hXKTuTH2VpqwpYtzPiKZt2ziRI4NBQmgW40AnV5Euz17OyWweCb+bNEQA==}
|
||||
engines: {node: '>=10'}
|
||||
@@ -4226,6 +4262,9 @@ packages:
|
||||
resolution: {integrity: sha512-5NPgf87AT2STgwa2ntRMr45jTKrYBGkVU36yT0ig/n/GMAa3oPqhZfIQ2kMEimReg0+t9kZViDVZ83qfVUlckg==}
|
||||
engines: {node: '>= 14'}
|
||||
|
||||
package-json-from-dist@1.0.1:
|
||||
resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==}
|
||||
|
||||
parent-module@1.0.1:
|
||||
resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
|
||||
engines: {node: '>=6'}
|
||||
@@ -4289,9 +4328,9 @@ packages:
|
||||
path-parse@1.0.7:
|
||||
resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
|
||||
|
||||
path-scurry@1.11.1:
|
||||
resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==}
|
||||
engines: {node: '>=16 || 14 >=14.18'}
|
||||
path-scurry@2.0.0:
|
||||
resolution: {integrity: sha512-ypGJsmGtdXUOeM5u93TyeIEfEhM6s+ljAhrk5vAvSx8uyY/02OvrZnA0YNGUrPXfpJMgI1ODd3nwz8Npx4O4cg==}
|
||||
engines: {node: 20 || >=22}
|
||||
|
||||
path-to-regexp@8.2.0:
|
||||
resolution: {integrity: sha512-TdrF7fW9Rphjq4RjrW0Kp2AW0Ahwu9sRGTkS6bvDi0SCwZlEZYmcfDbEsTz8RVk0EHIS/Vd1bv3JhG+1xZuAyQ==}
|
||||
@@ -4708,10 +4747,6 @@ packages:
|
||||
run-parallel@1.2.0:
|
||||
resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
|
||||
|
||||
rxjs@6.6.7:
|
||||
resolution: {integrity: sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==}
|
||||
engines: {npm: '>=2.0.0'}
|
||||
|
||||
rxjs@7.8.2:
|
||||
resolution: {integrity: sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==}
|
||||
|
||||
@@ -4782,6 +4817,10 @@ packages:
|
||||
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
|
||||
engines: {node: '>=8'}
|
||||
|
||||
shell-quote@1.8.3:
|
||||
resolution: {integrity: sha512-ObmnIF4hXNg1BqhnHmgbDETF8dLPCggZWBjkQfhZpbszZnYur5DUljTcCHii5LC3J5E0yeO/1LIMyH+UvHQgyw==}
|
||||
engines: {node: '>= 0.4'}
|
||||
|
||||
should-equal@2.0.0:
|
||||
resolution: {integrity: sha512-ZP36TMrK9euEuWQYBig9W55WPC7uo37qzAEmbjHz4gfyuXrEUgF8cUvQVO+w+d3OMfPvSRQJ22lSm8MQJ43LTA==}
|
||||
|
||||
@@ -4888,9 +4927,6 @@ packages:
|
||||
resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==}
|
||||
engines: {node: '>= 8'}
|
||||
|
||||
spawn-command@0.0.2:
|
||||
resolution: {integrity: sha512-zC8zGoGkmc8J9ndvml8Xksr1Amk9qBujgbF0JAIWO7kXr43w0h/0GJNM/Vustixu+YE8N/MTrQ7N31FvHUACxQ==}
|
||||
|
||||
spdx-correct@3.2.0:
|
||||
resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==}
|
||||
|
||||
@@ -4938,6 +4974,10 @@ packages:
|
||||
resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
|
||||
engines: {node: '>=8'}
|
||||
|
||||
string-width@5.1.2:
|
||||
resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==}
|
||||
engines: {node: '>=12'}
|
||||
|
||||
string-width@7.2.0:
|
||||
resolution: {integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==}
|
||||
engines: {node: '>=18'}
|
||||
@@ -5177,10 +5217,6 @@ packages:
|
||||
tinyexec@1.0.1:
|
||||
resolution: {integrity: sha512-5uC6DDlmeqiOwCPmK9jMSdOuZTh8bU39Ys6yidB+UTt5hfZUPGAypSgFRiEp+jbi9qH40BLDvy85jIU88wKSqw==}
|
||||
|
||||
tmp@0.0.33:
|
||||
resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==}
|
||||
engines: {node: '>=0.6.0'}
|
||||
|
||||
to-buffer@1.1.1:
|
||||
resolution: {integrity: sha512-lx9B5iv7msuFYE3dytT+KE5tap+rNYw+K4jVkb9R/asAb+pbBSM17jtunHplhBe6RRJdZx3Pn2Jph24O32mOVg==}
|
||||
|
||||
@@ -5552,6 +5588,10 @@ packages:
|
||||
resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
|
||||
engines: {node: '>=10'}
|
||||
|
||||
wrap-ansi@8.1.0:
|
||||
resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==}
|
||||
engines: {node: '>=12'}
|
||||
|
||||
wrap-ansi@9.0.0:
|
||||
resolution: {integrity: sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q==}
|
||||
engines: {node: '>=18'}
|
||||
@@ -5813,8 +5853,6 @@ snapshots:
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
||||
'@babel/runtime@7.27.1': {}
|
||||
|
||||
'@babel/template@7.27.2':
|
||||
dependencies:
|
||||
'@babel/code-frame': 7.27.1
|
||||
@@ -6442,6 +6480,28 @@ snapshots:
|
||||
|
||||
'@humanwhocodes/retry@0.4.3': {}
|
||||
|
||||
'@inquirer/external-editor@1.0.2(@types/node@22.15.18)':
|
||||
dependencies:
|
||||
chardet: 2.1.0
|
||||
iconv-lite: 0.7.0
|
||||
optionalDependencies:
|
||||
'@types/node': 22.15.18
|
||||
|
||||
'@isaacs/balanced-match@4.0.1': {}
|
||||
|
||||
'@isaacs/brace-expansion@5.0.0':
|
||||
dependencies:
|
||||
'@isaacs/balanced-match': 4.0.1
|
||||
|
||||
'@isaacs/cliui@8.0.2':
|
||||
dependencies:
|
||||
string-width: 5.1.2
|
||||
string-width-cjs: string-width@4.2.3
|
||||
strip-ansi: 7.1.0
|
||||
strip-ansi-cjs: strip-ansi@6.0.1
|
||||
wrap-ansi: 8.1.0
|
||||
wrap-ansi-cjs: wrap-ansi@7.0.0
|
||||
|
||||
'@jridgewell/gen-mapping@0.3.8':
|
||||
dependencies:
|
||||
'@jridgewell/set-array': 1.2.1
|
||||
@@ -6897,15 +6957,15 @@ snapshots:
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
||||
'@nestjs/axios@4.0.0(@nestjs/common@11.0.20(reflect-metadata@0.2.2)(rxjs@7.8.2))(axios@1.8.4)(rxjs@7.8.2)':
|
||||
'@nestjs/axios@4.0.1(@nestjs/common@11.1.6(reflect-metadata@0.2.2)(rxjs@7.8.2))(axios@1.12.2)(rxjs@7.8.2)':
|
||||
dependencies:
|
||||
'@nestjs/common': 11.0.20(reflect-metadata@0.2.2)(rxjs@7.8.2)
|
||||
axios: 1.8.4
|
||||
'@nestjs/common': 11.1.6(reflect-metadata@0.2.2)(rxjs@7.8.2)
|
||||
axios: 1.12.2
|
||||
rxjs: 7.8.2
|
||||
|
||||
'@nestjs/common@11.0.20(reflect-metadata@0.2.2)(rxjs@7.8.2)':
|
||||
'@nestjs/common@11.1.6(reflect-metadata@0.2.2)(rxjs@7.8.2)':
|
||||
dependencies:
|
||||
file-type: 20.4.1
|
||||
file-type: 21.0.0
|
||||
iterare: 1.2.1
|
||||
load-esm: 1.0.2
|
||||
reflect-metadata: 0.2.2
|
||||
@@ -6915,9 +6975,9 @@ snapshots:
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
||||
'@nestjs/core@11.0.20(@nestjs/common@11.0.20(reflect-metadata@0.2.2)(rxjs@7.8.2))(reflect-metadata@0.2.2)(rxjs@7.8.2)':
|
||||
'@nestjs/core@11.1.6(@nestjs/common@11.1.6(reflect-metadata@0.2.2)(rxjs@7.8.2))(reflect-metadata@0.2.2)(rxjs@7.8.2)':
|
||||
dependencies:
|
||||
'@nestjs/common': 11.0.20(reflect-metadata@0.2.2)(rxjs@7.8.2)
|
||||
'@nestjs/common': 11.1.6(reflect-metadata@0.2.2)(rxjs@7.8.2)
|
||||
'@nuxt/opencollective': 0.4.1
|
||||
fast-safe-stringify: 2.1.1
|
||||
iterare: 1.2.1
|
||||
@@ -7007,22 +7067,21 @@ snapshots:
|
||||
tsutils: 3.21.0(typescript@4.8.2)
|
||||
typescript: 4.8.2
|
||||
|
||||
'@openapitools/openapi-generator-cli@2.20.0':
|
||||
'@openapitools/openapi-generator-cli@2.24.0(@types/node@22.15.18)':
|
||||
dependencies:
|
||||
'@nestjs/axios': 4.0.0(@nestjs/common@11.0.20(reflect-metadata@0.2.2)(rxjs@7.8.2))(axios@1.8.4)(rxjs@7.8.2)
|
||||
'@nestjs/common': 11.0.20(reflect-metadata@0.2.2)(rxjs@7.8.2)
|
||||
'@nestjs/core': 11.0.20(@nestjs/common@11.0.20(reflect-metadata@0.2.2)(rxjs@7.8.2))(reflect-metadata@0.2.2)(rxjs@7.8.2)
|
||||
'@nestjs/axios': 4.0.1(@nestjs/common@11.1.6(reflect-metadata@0.2.2)(rxjs@7.8.2))(axios@1.12.2)(rxjs@7.8.2)
|
||||
'@nestjs/common': 11.1.6(reflect-metadata@0.2.2)(rxjs@7.8.2)
|
||||
'@nestjs/core': 11.1.6(@nestjs/common@11.1.6(reflect-metadata@0.2.2)(rxjs@7.8.2))(reflect-metadata@0.2.2)(rxjs@7.8.2)
|
||||
'@nuxtjs/opencollective': 0.3.2
|
||||
axios: 1.8.4
|
||||
axios: 1.12.2
|
||||
chalk: 4.1.2
|
||||
commander: 8.3.0
|
||||
compare-versions: 4.1.4
|
||||
concurrently: 6.5.1
|
||||
compare-versions: 6.1.1
|
||||
concurrently: 9.2.1
|
||||
console.table: 0.10.0
|
||||
fs-extra: 11.3.0
|
||||
glob: 9.3.5
|
||||
inquirer: 8.2.6
|
||||
lodash: 4.17.21
|
||||
fs-extra: 11.3.2
|
||||
glob: 11.0.3
|
||||
inquirer: 8.2.7(@types/node@22.15.18)
|
||||
proxy-agent: 6.5.0
|
||||
reflect-metadata: 0.2.2
|
||||
rxjs: 7.8.2
|
||||
@@ -7031,6 +7090,7 @@ snapshots:
|
||||
- '@nestjs/microservices'
|
||||
- '@nestjs/platform-express'
|
||||
- '@nestjs/websockets'
|
||||
- '@types/node'
|
||||
- class-transformer
|
||||
- class-validator
|
||||
- debug
|
||||
@@ -7635,10 +7695,10 @@ snapshots:
|
||||
postcss: 8.5.3
|
||||
postcss-value-parser: 4.2.0
|
||||
|
||||
axios@1.8.4:
|
||||
axios@1.12.2:
|
||||
dependencies:
|
||||
follow-redirects: 1.15.9
|
||||
form-data: 4.0.2
|
||||
form-data: 4.0.4
|
||||
proxy-from-env: 1.1.0
|
||||
transitivePeerDependencies:
|
||||
- debug
|
||||
@@ -7851,7 +7911,7 @@ snapshots:
|
||||
|
||||
character-entities@2.0.2: {}
|
||||
|
||||
chardet@0.7.0: {}
|
||||
chardet@2.1.0: {}
|
||||
|
||||
chokidar@3.6.0:
|
||||
dependencies:
|
||||
@@ -7968,22 +8028,20 @@ snapshots:
|
||||
array-ify: 1.0.0
|
||||
dot-prop: 5.3.0
|
||||
|
||||
compare-versions@4.1.4: {}
|
||||
compare-versions@6.1.1: {}
|
||||
|
||||
compute-scroll-into-view@1.0.20: {}
|
||||
|
||||
concat-map@0.0.1: {}
|
||||
|
||||
concurrently@6.5.1:
|
||||
concurrently@9.2.1:
|
||||
dependencies:
|
||||
chalk: 4.1.2
|
||||
date-fns: 2.30.0
|
||||
lodash: 4.17.21
|
||||
rxjs: 6.6.7
|
||||
spawn-command: 0.0.2
|
||||
rxjs: 7.8.2
|
||||
shell-quote: 1.8.3
|
||||
supports-color: 8.1.1
|
||||
tree-kill: 1.2.2
|
||||
yargs: 16.2.0
|
||||
yargs: 17.7.2
|
||||
|
||||
confbox@0.1.8: {}
|
||||
|
||||
@@ -8155,10 +8213,6 @@ snapshots:
|
||||
|
||||
data-uri-to-buffer@6.0.2: {}
|
||||
|
||||
date-fns@2.30.0:
|
||||
dependencies:
|
||||
'@babel/runtime': 7.27.1
|
||||
|
||||
dayjs@1.11.13: {}
|
||||
|
||||
de-indent@1.0.2: {}
|
||||
@@ -8334,6 +8388,8 @@ snapshots:
|
||||
|
||||
duplexer3@0.1.5: {}
|
||||
|
||||
eastasianwidth@0.2.0: {}
|
||||
|
||||
easy-table@1.1.0:
|
||||
optionalDependencies:
|
||||
wcwidth: 1.0.1
|
||||
@@ -8351,6 +8407,8 @@ snapshots:
|
||||
|
||||
emoji-regex@8.0.0: {}
|
||||
|
||||
emoji-regex@9.2.2: {}
|
||||
|
||||
encodeurl@2.0.0: {}
|
||||
|
||||
end-of-stream@1.4.4:
|
||||
@@ -8787,12 +8845,6 @@ snapshots:
|
||||
|
||||
extend@3.0.2: {}
|
||||
|
||||
external-editor@3.1.0:
|
||||
dependencies:
|
||||
chardet: 0.7.0
|
||||
iconv-lite: 0.4.24
|
||||
tmp: 0.0.33
|
||||
|
||||
fast-content-type-parse@2.0.1: {}
|
||||
|
||||
fast-deep-equal@3.1.3: {}
|
||||
@@ -8852,7 +8904,7 @@ snapshots:
|
||||
|
||||
file-type@12.4.2: {}
|
||||
|
||||
file-type@20.4.1:
|
||||
file-type@21.0.0:
|
||||
dependencies:
|
||||
'@tokenizer/inflate': 0.2.7
|
||||
strtok3: 10.2.2
|
||||
@@ -8931,6 +8983,11 @@ snapshots:
|
||||
|
||||
follow-redirects@1.15.9: {}
|
||||
|
||||
foreground-child@3.3.1:
|
||||
dependencies:
|
||||
cross-spawn: 7.0.6
|
||||
signal-exit: 4.1.0
|
||||
|
||||
form-data-encoder@2.1.4: {}
|
||||
|
||||
form-data@4.0.2:
|
||||
@@ -8940,6 +8997,14 @@ snapshots:
|
||||
es-set-tostringtag: 2.1.0
|
||||
mime-types: 2.1.35
|
||||
|
||||
form-data@4.0.4:
|
||||
dependencies:
|
||||
asynckit: 0.4.0
|
||||
combined-stream: 1.0.8
|
||||
es-set-tostringtag: 2.1.0
|
||||
hasown: 2.0.2
|
||||
mime-types: 2.1.35
|
||||
|
||||
forwarded@0.2.0: {}
|
||||
|
||||
fraction.js@4.3.7: {}
|
||||
@@ -8959,7 +9024,7 @@ snapshots:
|
||||
jsonfile: 6.1.0
|
||||
universalify: 2.0.1
|
||||
|
||||
fs-extra@11.3.0:
|
||||
fs-extra@11.3.2:
|
||||
dependencies:
|
||||
graceful-fs: 4.2.11
|
||||
jsonfile: 6.1.0
|
||||
@@ -9054,6 +9119,15 @@ snapshots:
|
||||
dependencies:
|
||||
is-glob: 4.0.3
|
||||
|
||||
glob@11.0.3:
|
||||
dependencies:
|
||||
foreground-child: 3.3.1
|
||||
jackspeak: 4.1.1
|
||||
minimatch: 10.0.3
|
||||
minipass: 7.1.2
|
||||
package-json-from-dist: 1.0.1
|
||||
path-scurry: 2.0.0
|
||||
|
||||
glob@7.2.3:
|
||||
dependencies:
|
||||
fs.realpath: 1.0.0
|
||||
@@ -9063,13 +9137,6 @@ snapshots:
|
||||
once: 1.4.0
|
||||
path-is-absolute: 1.0.1
|
||||
|
||||
glob@9.3.5:
|
||||
dependencies:
|
||||
fs.realpath: 1.0.0
|
||||
minimatch: 8.0.4
|
||||
minipass: 4.2.8
|
||||
path-scurry: 1.11.1
|
||||
|
||||
global-directory@4.0.1:
|
||||
dependencies:
|
||||
ini: 4.1.1
|
||||
@@ -9259,11 +9326,11 @@ snapshots:
|
||||
|
||||
husky@8.0.3: {}
|
||||
|
||||
iconv-lite@0.4.24:
|
||||
iconv-lite@0.6.3:
|
||||
dependencies:
|
||||
safer-buffer: 2.1.2
|
||||
|
||||
iconv-lite@0.6.3:
|
||||
iconv-lite@0.7.0:
|
||||
dependencies:
|
||||
safer-buffer: 2.1.2
|
||||
|
||||
@@ -9355,13 +9422,13 @@ snapshots:
|
||||
|
||||
ini@4.1.1: {}
|
||||
|
||||
inquirer@8.2.6:
|
||||
inquirer@8.2.7(@types/node@22.15.18):
|
||||
dependencies:
|
||||
'@inquirer/external-editor': 1.0.2(@types/node@22.15.18)
|
||||
ansi-escapes: 4.3.2
|
||||
chalk: 4.1.2
|
||||
cli-cursor: 3.1.0
|
||||
cli-width: 3.0.0
|
||||
external-editor: 3.1.0
|
||||
figures: 3.2.0
|
||||
lodash: 4.17.21
|
||||
mute-stream: 0.0.8
|
||||
@@ -9372,6 +9439,8 @@ snapshots:
|
||||
strip-ansi: 6.0.1
|
||||
through: 2.3.8
|
||||
wrap-ansi: 6.2.0
|
||||
transitivePeerDependencies:
|
||||
- '@types/node'
|
||||
|
||||
into-stream@3.1.0:
|
||||
dependencies:
|
||||
@@ -9482,6 +9551,10 @@ snapshots:
|
||||
|
||||
iterare@1.2.1: {}
|
||||
|
||||
jackspeak@4.1.1:
|
||||
dependencies:
|
||||
'@isaacs/cliui': 8.0.2
|
||||
|
||||
jiti@2.4.2: {}
|
||||
|
||||
jpegtran-bin@5.0.2:
|
||||
@@ -9687,7 +9760,7 @@ snapshots:
|
||||
longest: 1.0.1
|
||||
meow: 3.7.0
|
||||
|
||||
lru-cache@10.4.3: {}
|
||||
lru-cache@11.2.2: {}
|
||||
|
||||
lru-cache@4.1.5:
|
||||
dependencies:
|
||||
@@ -10114,22 +10187,20 @@ snapshots:
|
||||
|
||||
mimic-response@4.0.0: {}
|
||||
|
||||
minimatch@10.0.3:
|
||||
dependencies:
|
||||
'@isaacs/brace-expansion': 5.0.0
|
||||
|
||||
minimatch@3.1.2:
|
||||
dependencies:
|
||||
brace-expansion: 1.1.11
|
||||
|
||||
minimatch@8.0.4:
|
||||
dependencies:
|
||||
brace-expansion: 2.0.1
|
||||
|
||||
minimatch@9.0.5:
|
||||
dependencies:
|
||||
brace-expansion: 2.0.1
|
||||
|
||||
minimist@1.2.8: {}
|
||||
|
||||
minipass@4.2.8: {}
|
||||
|
||||
minipass@7.1.2: {}
|
||||
|
||||
mitt@3.0.1: {}
|
||||
@@ -10335,8 +10406,6 @@ snapshots:
|
||||
dependencies:
|
||||
arch: 2.2.0
|
||||
|
||||
os-tmpdir@1.0.2: {}
|
||||
|
||||
ow@0.17.0:
|
||||
dependencies:
|
||||
type-fest: 0.11.0
|
||||
@@ -10409,6 +10478,8 @@ snapshots:
|
||||
degenerator: 5.0.1
|
||||
netmask: 2.0.2
|
||||
|
||||
package-json-from-dist@1.0.1: {}
|
||||
|
||||
parent-module@1.0.1:
|
||||
dependencies:
|
||||
callsites: 3.1.0
|
||||
@@ -10456,9 +10527,9 @@ snapshots:
|
||||
|
||||
path-parse@1.0.7: {}
|
||||
|
||||
path-scurry@1.11.1:
|
||||
path-scurry@2.0.0:
|
||||
dependencies:
|
||||
lru-cache: 10.4.3
|
||||
lru-cache: 11.2.2
|
||||
minipass: 7.1.2
|
||||
|
||||
path-to-regexp@8.2.0: {}
|
||||
@@ -10929,10 +11000,6 @@ snapshots:
|
||||
dependencies:
|
||||
queue-microtask: 1.2.3
|
||||
|
||||
rxjs@6.6.7:
|
||||
dependencies:
|
||||
tslib: 1.14.1
|
||||
|
||||
rxjs@7.8.2:
|
||||
dependencies:
|
||||
tslib: 2.8.1
|
||||
@@ -11005,6 +11072,8 @@ snapshots:
|
||||
|
||||
shebang-regex@3.0.0: {}
|
||||
|
||||
shell-quote@1.8.3: {}
|
||||
|
||||
should-equal@2.0.0:
|
||||
dependencies:
|
||||
should-type: 1.4.0
|
||||
@@ -11124,8 +11193,6 @@ snapshots:
|
||||
|
||||
source-map@0.7.4: {}
|
||||
|
||||
spawn-command@0.0.2: {}
|
||||
|
||||
spdx-correct@3.2.0:
|
||||
dependencies:
|
||||
spdx-expression-parse: 3.0.1
|
||||
@@ -11166,6 +11233,12 @@ snapshots:
|
||||
is-fullwidth-code-point: 3.0.0
|
||||
strip-ansi: 6.0.1
|
||||
|
||||
string-width@5.1.2:
|
||||
dependencies:
|
||||
eastasianwidth: 0.2.0
|
||||
emoji-regex: 9.2.2
|
||||
strip-ansi: 7.1.0
|
||||
|
||||
string-width@7.2.0:
|
||||
dependencies:
|
||||
emoji-regex: 10.4.0
|
||||
@@ -11454,10 +11527,6 @@ snapshots:
|
||||
|
||||
tinyexec@1.0.1: {}
|
||||
|
||||
tmp@0.0.33:
|
||||
dependencies:
|
||||
os-tmpdir: 1.0.2
|
||||
|
||||
to-buffer@1.1.1: {}
|
||||
|
||||
to-regex-range@5.0.1:
|
||||
@@ -11820,6 +11889,12 @@ snapshots:
|
||||
string-width: 4.2.3
|
||||
strip-ansi: 6.0.1
|
||||
|
||||
wrap-ansi@8.1.0:
|
||||
dependencies:
|
||||
ansi-styles: 6.2.1
|
||||
string-width: 5.1.2
|
||||
strip-ansi: 7.1.0
|
||||
|
||||
wrap-ansi@9.0.0:
|
||||
dependencies:
|
||||
ansi-styles: 6.2.1
|
||||
|
||||
@@ -1,14 +1,19 @@
|
||||
.gitignore
|
||||
.npmignore
|
||||
.openapi-generator-ignore
|
||||
api.ts
|
||||
apis/ck-api.ts
|
||||
apis/default-api.ts
|
||||
apis/jdcookie-management-api.ts
|
||||
apis/jdhistory-api.ts
|
||||
apis/jdorder-management-api.ts
|
||||
apis/totpapi.ts
|
||||
base.ts
|
||||
common.ts
|
||||
configuration.ts
|
||||
docs/CkApi.md
|
||||
docs/DefaultApi.md
|
||||
docs/JDCookieManagementApi.md
|
||||
docs/JDHistoryApi.md
|
||||
docs/JDOrderManagementApi.md
|
||||
docs/KamiApiCardInfoAppleV1AppleCardListRecord.md
|
||||
docs/KamiApiCardInfoAppleV1AppleCardListRecordUploadUser.md
|
||||
docs/KamiApiCardInfoAppleV1CallBackOrderManualReq.md
|
||||
@@ -212,26 +217,48 @@ docs/KamiApiCardInfoWalmartV1StatsOverviewRes.md
|
||||
docs/KamiApiCardInfoWalmartV1SubmitReq.md
|
||||
docs/KamiApiCardInfoWalmartV1V1CardRedeemAccountGroupEntity.md
|
||||
docs/KamiApiCardInfoWalmartV1V1CardRedeemAccountGroupEntityAccount.md
|
||||
docs/KamiApiCardRedeemJdV1AccountAddReq.md
|
||||
docs/KamiApiCardRedeemJdV1AccountDeleteReq.md
|
||||
docs/KamiApiCardRedeemJdV1AccountGetReq.md
|
||||
docs/KamiApiCardRedeemJdV1AccountGetRes.md
|
||||
docs/KamiApiCardRedeemJdV1AccountListReq.md
|
||||
docs/KamiApiCardRedeemJdV1AccountListRes.md
|
||||
docs/KamiApiCardRedeemJdV1AccountStatusReq.md
|
||||
docs/KamiApiCardRedeemJdV1AccountUpdateReq.md
|
||||
docs/KamiApiCardRedeemJdV1CookieInfo.md
|
||||
docs/KamiApiCardRedeemJdV1OrderListReq.md
|
||||
docs/KamiApiCardRedeemJdV1OrderListRes.md
|
||||
docs/KamiApiCardRedeemJdV1OrderListSchema.md
|
||||
docs/KamiApiCardRedeemJdV1PlaceOrderReq.md
|
||||
docs/KamiApiCardRedeemJdV1PlaceOrderRes.md
|
||||
docs/KamiApiChannelV2EntranceCreateReq.md
|
||||
docs/KamiApiChannelV2EntranceDeleteReq.md
|
||||
docs/KamiApiChannelV2EntranceListReq.md
|
||||
docs/KamiApiChannelV2EntranceListRes.md
|
||||
docs/KamiApiChannelV2EntranceParams.md
|
||||
docs/KamiApiChannelV2EntranceUpdateReq.md
|
||||
docs/KamiApiJdCookieV1BatchCheckReq.md
|
||||
docs/KamiApiJdCookieV1BatchCheckRes.md
|
||||
docs/KamiApiJdCookieV1BatchCreateReq.md
|
||||
docs/KamiApiJdCookieV1BatchCreateRes.md
|
||||
docs/KamiApiJdCookieV1CheckJdOrderPaymentReq.md
|
||||
docs/KamiApiJdCookieV1CheckJdOrderPaymentRes.md
|
||||
docs/KamiApiJdCookieV1CookieAccountInfo.md
|
||||
docs/KamiApiJdCookieV1CookieCheckResult.md
|
||||
docs/KamiApiJdCookieV1CookieHistoryInfo.md
|
||||
docs/KamiApiJdCookieV1CookieHistoryReq.md
|
||||
docs/KamiApiJdCookieV1CookieHistoryRes.md
|
||||
docs/KamiApiJdCookieV1CreateAccountReq.md
|
||||
docs/KamiApiJdCookieV1CreateAccountRes.md
|
||||
docs/KamiApiJdCookieV1CreateOrderReq.md
|
||||
docs/KamiApiJdCookieV1CreateOrderRes.md
|
||||
docs/KamiApiJdCookieV1DeleteAccountReq.md
|
||||
docs/KamiApiJdCookieV1GetAccountReq.md
|
||||
docs/KamiApiJdCookieV1GetAccountRes.md
|
||||
docs/KamiApiJdCookieV1GetJdOrderReq.md
|
||||
docs/KamiApiJdCookieV1GetJdOrderRes.md
|
||||
docs/KamiApiJdCookieV1GetOrderReq.md
|
||||
docs/KamiApiJdCookieV1GetOrderRes.md
|
||||
docs/KamiApiJdCookieV1GetOrderStatusReq.md
|
||||
docs/KamiApiJdCookieV1GetOrderStatusRes.md
|
||||
docs/KamiApiJdCookieV1GetPaymentUrlReq.md
|
||||
docs/KamiApiJdCookieV1GetPaymentUrlRes.md
|
||||
docs/KamiApiJdCookieV1JdOrderInfo.md
|
||||
docs/KamiApiJdCookieV1ListAccountReq.md
|
||||
docs/KamiApiJdCookieV1ListAccountRes.md
|
||||
docs/KamiApiJdCookieV1ListOrderReq.md
|
||||
docs/KamiApiJdCookieV1ListOrderRes.md
|
||||
docs/KamiApiJdCookieV1OrderHistoryInfo.md
|
||||
docs/KamiApiJdCookieV1OrderHistoryReq.md
|
||||
docs/KamiApiJdCookieV1OrderHistoryRes.md
|
||||
docs/KamiApiJdCookieV1OrderInfo.md
|
||||
docs/KamiApiJdCookieV1UpdateAccountReq.md
|
||||
docs/KamiApiMerchantV1MerchantAllListRes.md
|
||||
docs/KamiApiMerchantV1MerchantConfigAddReq.md
|
||||
docs/KamiApiMerchantV1MerchantConfigDetailReq.md
|
||||
@@ -341,8 +368,6 @@ docs/KamiInternalModelEntityV1CardAppleHistoryInfo.md
|
||||
docs/KamiInternalModelEntityV1CardAppleRechargeInfo.md
|
||||
docs/KamiInternalModelEntityV1CardRedeemAccountGroup.md
|
||||
docs/KamiInternalModelEntityV1CardRedeemAccountHistory.md
|
||||
docs/KamiInternalModelEntityV1CardRedeemCookieInfo.md
|
||||
docs/KamiInternalModelEntityV1CardRedeemCookieOrderJd.md
|
||||
docs/KamiInternalModelEntityV1CardRedeemOrderHistory.md
|
||||
docs/KamiInternalModelEntityV1CardRedeemOrderInfo.md
|
||||
docs/KamiInternalModelEntityV1MerchantHiddenRecord.md
|
||||
@@ -565,26 +590,48 @@ models/kami-api-card-info-walmart-v1-stats-overview-res.ts
|
||||
models/kami-api-card-info-walmart-v1-submit-req.ts
|
||||
models/kami-api-card-info-walmart-v1-v1-card-redeem-account-group-entity-account.ts
|
||||
models/kami-api-card-info-walmart-v1-v1-card-redeem-account-group-entity.ts
|
||||
models/kami-api-card-redeem-jd-v1-account-add-req.ts
|
||||
models/kami-api-card-redeem-jd-v1-account-delete-req.ts
|
||||
models/kami-api-card-redeem-jd-v1-account-get-req.ts
|
||||
models/kami-api-card-redeem-jd-v1-account-get-res.ts
|
||||
models/kami-api-card-redeem-jd-v1-account-list-req.ts
|
||||
models/kami-api-card-redeem-jd-v1-account-list-res.ts
|
||||
models/kami-api-card-redeem-jd-v1-account-status-req.ts
|
||||
models/kami-api-card-redeem-jd-v1-account-update-req.ts
|
||||
models/kami-api-card-redeem-jd-v1-cookie-info.ts
|
||||
models/kami-api-card-redeem-jd-v1-order-list-req.ts
|
||||
models/kami-api-card-redeem-jd-v1-order-list-res.ts
|
||||
models/kami-api-card-redeem-jd-v1-order-list-schema.ts
|
||||
models/kami-api-card-redeem-jd-v1-place-order-req.ts
|
||||
models/kami-api-card-redeem-jd-v1-place-order-res.ts
|
||||
models/kami-api-channel-v2-entrance-create-req.ts
|
||||
models/kami-api-channel-v2-entrance-delete-req.ts
|
||||
models/kami-api-channel-v2-entrance-list-req.ts
|
||||
models/kami-api-channel-v2-entrance-list-res.ts
|
||||
models/kami-api-channel-v2-entrance-params.ts
|
||||
models/kami-api-channel-v2-entrance-update-req.ts
|
||||
models/kami-api-jd-cookie-v1-batch-check-req.ts
|
||||
models/kami-api-jd-cookie-v1-batch-check-res.ts
|
||||
models/kami-api-jd-cookie-v1-batch-create-req.ts
|
||||
models/kami-api-jd-cookie-v1-batch-create-res.ts
|
||||
models/kami-api-jd-cookie-v1-check-jd-order-payment-req.ts
|
||||
models/kami-api-jd-cookie-v1-check-jd-order-payment-res.ts
|
||||
models/kami-api-jd-cookie-v1-cookie-account-info.ts
|
||||
models/kami-api-jd-cookie-v1-cookie-check-result.ts
|
||||
models/kami-api-jd-cookie-v1-cookie-history-info.ts
|
||||
models/kami-api-jd-cookie-v1-cookie-history-req.ts
|
||||
models/kami-api-jd-cookie-v1-cookie-history-res.ts
|
||||
models/kami-api-jd-cookie-v1-create-account-req.ts
|
||||
models/kami-api-jd-cookie-v1-create-account-res.ts
|
||||
models/kami-api-jd-cookie-v1-create-order-req.ts
|
||||
models/kami-api-jd-cookie-v1-create-order-res.ts
|
||||
models/kami-api-jd-cookie-v1-delete-account-req.ts
|
||||
models/kami-api-jd-cookie-v1-get-account-req.ts
|
||||
models/kami-api-jd-cookie-v1-get-account-res.ts
|
||||
models/kami-api-jd-cookie-v1-get-jd-order-req.ts
|
||||
models/kami-api-jd-cookie-v1-get-jd-order-res.ts
|
||||
models/kami-api-jd-cookie-v1-get-order-req.ts
|
||||
models/kami-api-jd-cookie-v1-get-order-res.ts
|
||||
models/kami-api-jd-cookie-v1-get-order-status-req.ts
|
||||
models/kami-api-jd-cookie-v1-get-order-status-res.ts
|
||||
models/kami-api-jd-cookie-v1-get-payment-url-req.ts
|
||||
models/kami-api-jd-cookie-v1-get-payment-url-res.ts
|
||||
models/kami-api-jd-cookie-v1-jd-order-info.ts
|
||||
models/kami-api-jd-cookie-v1-list-account-req.ts
|
||||
models/kami-api-jd-cookie-v1-list-account-res.ts
|
||||
models/kami-api-jd-cookie-v1-list-order-req.ts
|
||||
models/kami-api-jd-cookie-v1-list-order-res.ts
|
||||
models/kami-api-jd-cookie-v1-order-history-info.ts
|
||||
models/kami-api-jd-cookie-v1-order-history-req.ts
|
||||
models/kami-api-jd-cookie-v1-order-history-res.ts
|
||||
models/kami-api-jd-cookie-v1-order-info.ts
|
||||
models/kami-api-jd-cookie-v1-update-account-req.ts
|
||||
models/kami-api-merchant-v1-merchant-all-list-res.ts
|
||||
models/kami-api-merchant-v1-merchant-config-add-req.ts
|
||||
models/kami-api-merchant-v1-merchant-config-detail-req.ts
|
||||
@@ -694,8 +741,6 @@ models/kami-internal-model-entity-v1-card-apple-history-info.ts
|
||||
models/kami-internal-model-entity-v1-card-apple-recharge-info.ts
|
||||
models/kami-internal-model-entity-v1-card-redeem-account-group.ts
|
||||
models/kami-internal-model-entity-v1-card-redeem-account-history.ts
|
||||
models/kami-internal-model-entity-v1-card-redeem-cookie-info.ts
|
||||
models/kami-internal-model-entity-v1-card-redeem-cookie-order-jd.ts
|
||||
models/kami-internal-model-entity-v1-card-redeem-order-history.ts
|
||||
models/kami-internal-model-entity-v1-card-redeem-order-info.ts
|
||||
models/kami-internal-model-entity-v1-merchant-hidden-record.ts
|
||||
|
||||
@@ -1 +1 @@
|
||||
7.13.0
|
||||
7.16.0
|
||||
|
||||
@@ -13,5 +13,7 @@
|
||||
*/
|
||||
|
||||
export * from './apis/default-api';
|
||||
export * from './apis/ck-api';
|
||||
export * from './apis/jdcookie-management-api';
|
||||
export * from './apis/jdhistory-api';
|
||||
export * from './apis/jdorder-management-api';
|
||||
export * from './apis/totpapi';
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
1105
src/api/generated/apis/jdcookie-management-api.ts
Normal file
1105
src/api/generated/apis/jdcookie-management-api.ts
Normal file
File diff suppressed because it is too large
Load Diff
469
src/api/generated/apis/jdhistory-api.ts
Normal file
469
src/api/generated/apis/jdhistory-api.ts
Normal file
@@ -0,0 +1,469 @@
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
/**
|
||||
*
|
||||
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
||||
*
|
||||
* The version of the OpenAPI document:
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
import type { Configuration } from '../configuration';
|
||||
import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
|
||||
import globalAxios from 'axios';
|
||||
// Some imports not used depending on template conditions
|
||||
// @ts-ignore
|
||||
import {
|
||||
DUMMY_BASE_URL,
|
||||
assertParamExists,
|
||||
setApiKeyToObject,
|
||||
setBasicAuthToObject,
|
||||
setBearerAuthToObject,
|
||||
setOAuthToObject,
|
||||
setSearchParams,
|
||||
serializeDataIfNeeded,
|
||||
toPathString,
|
||||
createRequestFunction
|
||||
} from '../common';
|
||||
// @ts-ignore
|
||||
import {
|
||||
BASE_PATH,
|
||||
COLLECTION_FORMATS,
|
||||
type RequestArgs,
|
||||
BaseAPI,
|
||||
RequiredError,
|
||||
operationServerMap
|
||||
} from '../base';
|
||||
// @ts-ignore
|
||||
import type { KamiApiJdCookieV1CookieHistoryRes } from '../models';
|
||||
// @ts-ignore
|
||||
import type { KamiApiJdCookieV1OrderHistoryRes } from '../models';
|
||||
/**
|
||||
* JDHistoryApi - axios parameter creator
|
||||
*/
|
||||
export const JDHistoryApiAxiosParamCreator = function (
|
||||
configuration?: Configuration
|
||||
) {
|
||||
return {
|
||||
/**
|
||||
*
|
||||
* @summary Cookie Change History
|
||||
* @param {string} cookieId Cookie ID
|
||||
* @param {number} [page] 页码
|
||||
* @param {number} [size] 每页大小
|
||||
* @param {string} [changeType] 变更类型筛选
|
||||
* @param {*} [options] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
*/
|
||||
apiJdCookieHistoryCookieGet: async (
|
||||
cookieId: string,
|
||||
page?: number,
|
||||
size?: number,
|
||||
changeType?: string,
|
||||
options: RawAxiosRequestConfig = {}
|
||||
): Promise<RequestArgs> => {
|
||||
// verify required parameter 'cookieId' is not null or undefined
|
||||
assertParamExists('apiJdCookieHistoryCookieGet', 'cookieId', cookieId);
|
||||
const localVarPath = `/api/jd-cookie/history/cookie`;
|
||||
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
||||
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
||||
let baseOptions;
|
||||
if (configuration) {
|
||||
baseOptions = configuration.baseOptions;
|
||||
}
|
||||
|
||||
const localVarRequestOptions = {
|
||||
method: 'GET',
|
||||
...baseOptions,
|
||||
...options
|
||||
};
|
||||
const localVarHeaderParameter = {} as any;
|
||||
const localVarQueryParameter = {} as any;
|
||||
|
||||
if (cookieId !== undefined) {
|
||||
localVarQueryParameter['cookieId'] = cookieId;
|
||||
}
|
||||
|
||||
if (page !== undefined) {
|
||||
localVarQueryParameter['page'] = page;
|
||||
}
|
||||
|
||||
if (size !== undefined) {
|
||||
localVarQueryParameter['size'] = size;
|
||||
}
|
||||
|
||||
if (changeType !== undefined) {
|
||||
localVarQueryParameter['changeType'] = changeType;
|
||||
}
|
||||
|
||||
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
||||
let headersFromBaseOptions =
|
||||
baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
||||
localVarRequestOptions.headers = {
|
||||
...localVarHeaderParameter,
|
||||
...headersFromBaseOptions,
|
||||
...options.headers
|
||||
};
|
||||
|
||||
return {
|
||||
url: toPathString(localVarUrlObj),
|
||||
options: localVarRequestOptions
|
||||
};
|
||||
},
|
||||
/**
|
||||
*
|
||||
* @summary Order Change History
|
||||
* @param {string} orderId 订单号
|
||||
* @param {ApiJdCookieHistoryOrderGetOrderTypeEnum} orderType 订单类型(user/jd)
|
||||
* @param {number} [page] 页码
|
||||
* @param {number} [size] 每页大小
|
||||
* @param {*} [options] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
*/
|
||||
apiJdCookieHistoryOrderGet: async (
|
||||
orderId: string,
|
||||
orderType: ApiJdCookieHistoryOrderGetOrderTypeEnum,
|
||||
page?: number,
|
||||
size?: number,
|
||||
options: RawAxiosRequestConfig = {}
|
||||
): Promise<RequestArgs> => {
|
||||
// verify required parameter 'orderId' is not null or undefined
|
||||
assertParamExists('apiJdCookieHistoryOrderGet', 'orderId', orderId);
|
||||
// verify required parameter 'orderType' is not null or undefined
|
||||
assertParamExists('apiJdCookieHistoryOrderGet', 'orderType', orderType);
|
||||
const localVarPath = `/api/jd-cookie/history/order`;
|
||||
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
||||
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
||||
let baseOptions;
|
||||
if (configuration) {
|
||||
baseOptions = configuration.baseOptions;
|
||||
}
|
||||
|
||||
const localVarRequestOptions = {
|
||||
method: 'GET',
|
||||
...baseOptions,
|
||||
...options
|
||||
};
|
||||
const localVarHeaderParameter = {} as any;
|
||||
const localVarQueryParameter = {} as any;
|
||||
|
||||
if (orderId !== undefined) {
|
||||
localVarQueryParameter['orderId'] = orderId;
|
||||
}
|
||||
|
||||
if (orderType !== undefined) {
|
||||
localVarQueryParameter['orderType'] = orderType;
|
||||
}
|
||||
|
||||
if (page !== undefined) {
|
||||
localVarQueryParameter['page'] = page;
|
||||
}
|
||||
|
||||
if (size !== undefined) {
|
||||
localVarQueryParameter['size'] = size;
|
||||
}
|
||||
|
||||
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
||||
let headersFromBaseOptions =
|
||||
baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
||||
localVarRequestOptions.headers = {
|
||||
...localVarHeaderParameter,
|
||||
...headersFromBaseOptions,
|
||||
...options.headers
|
||||
};
|
||||
|
||||
return {
|
||||
url: toPathString(localVarUrlObj),
|
||||
options: localVarRequestOptions
|
||||
};
|
||||
}
|
||||
};
|
||||
};
|
||||
|
||||
/**
|
||||
* JDHistoryApi - functional programming interface
|
||||
*/
|
||||
export const JDHistoryApiFp = function (configuration?: Configuration) {
|
||||
const localVarAxiosParamCreator =
|
||||
JDHistoryApiAxiosParamCreator(configuration);
|
||||
return {
|
||||
/**
|
||||
*
|
||||
* @summary Cookie Change History
|
||||
* @param {string} cookieId Cookie ID
|
||||
* @param {number} [page] 页码
|
||||
* @param {number} [size] 每页大小
|
||||
* @param {string} [changeType] 变更类型筛选
|
||||
* @param {*} [options] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
*/
|
||||
async apiJdCookieHistoryCookieGet(
|
||||
cookieId: string,
|
||||
page?: number,
|
||||
size?: number,
|
||||
changeType?: string,
|
||||
options?: RawAxiosRequestConfig
|
||||
): Promise<
|
||||
(
|
||||
axios?: AxiosInstance,
|
||||
basePath?: string
|
||||
) => AxiosPromise<KamiApiJdCookieV1CookieHistoryRes>
|
||||
> {
|
||||
const localVarAxiosArgs =
|
||||
await localVarAxiosParamCreator.apiJdCookieHistoryCookieGet(
|
||||
cookieId,
|
||||
page,
|
||||
size,
|
||||
changeType,
|
||||
options
|
||||
);
|
||||
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
||||
const localVarOperationServerBasePath =
|
||||
operationServerMap['JDHistoryApi.apiJdCookieHistoryCookieGet']?.[
|
||||
localVarOperationServerIndex
|
||||
]?.url;
|
||||
return (axios, basePath) =>
|
||||
createRequestFunction(
|
||||
localVarAxiosArgs,
|
||||
globalAxios,
|
||||
BASE_PATH,
|
||||
configuration
|
||||
)(axios, localVarOperationServerBasePath || basePath);
|
||||
},
|
||||
/**
|
||||
*
|
||||
* @summary Order Change History
|
||||
* @param {string} orderId 订单号
|
||||
* @param {ApiJdCookieHistoryOrderGetOrderTypeEnum} orderType 订单类型(user/jd)
|
||||
* @param {number} [page] 页码
|
||||
* @param {number} [size] 每页大小
|
||||
* @param {*} [options] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
*/
|
||||
async apiJdCookieHistoryOrderGet(
|
||||
orderId: string,
|
||||
orderType: ApiJdCookieHistoryOrderGetOrderTypeEnum,
|
||||
page?: number,
|
||||
size?: number,
|
||||
options?: RawAxiosRequestConfig
|
||||
): Promise<
|
||||
(
|
||||
axios?: AxiosInstance,
|
||||
basePath?: string
|
||||
) => AxiosPromise<KamiApiJdCookieV1OrderHistoryRes>
|
||||
> {
|
||||
const localVarAxiosArgs =
|
||||
await localVarAxiosParamCreator.apiJdCookieHistoryOrderGet(
|
||||
orderId,
|
||||
orderType,
|
||||
page,
|
||||
size,
|
||||
options
|
||||
);
|
||||
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
||||
const localVarOperationServerBasePath =
|
||||
operationServerMap['JDHistoryApi.apiJdCookieHistoryOrderGet']?.[
|
||||
localVarOperationServerIndex
|
||||
]?.url;
|
||||
return (axios, basePath) =>
|
||||
createRequestFunction(
|
||||
localVarAxiosArgs,
|
||||
globalAxios,
|
||||
BASE_PATH,
|
||||
configuration
|
||||
)(axios, localVarOperationServerBasePath || basePath);
|
||||
}
|
||||
};
|
||||
};
|
||||
|
||||
/**
|
||||
* JDHistoryApi - factory interface
|
||||
*/
|
||||
export const JDHistoryApiFactory = function (
|
||||
configuration?: Configuration,
|
||||
basePath?: string,
|
||||
axios?: AxiosInstance
|
||||
) {
|
||||
const localVarFp = JDHistoryApiFp(configuration);
|
||||
return {
|
||||
/**
|
||||
*
|
||||
* @summary Cookie Change History
|
||||
* @param {JDHistoryApiApiJdCookieHistoryCookieGetRequest} requestParameters Request parameters.
|
||||
* @param {*} [options] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
*/
|
||||
apiJdCookieHistoryCookieGet(
|
||||
requestParameters: JDHistoryApiApiJdCookieHistoryCookieGetRequest,
|
||||
options?: RawAxiosRequestConfig
|
||||
): AxiosPromise<KamiApiJdCookieV1CookieHistoryRes> {
|
||||
return localVarFp
|
||||
.apiJdCookieHistoryCookieGet(
|
||||
requestParameters.cookieId,
|
||||
requestParameters.page,
|
||||
requestParameters.size,
|
||||
requestParameters.changeType,
|
||||
options
|
||||
)
|
||||
.then(request => request(axios, basePath));
|
||||
},
|
||||
/**
|
||||
*
|
||||
* @summary Order Change History
|
||||
* @param {JDHistoryApiApiJdCookieHistoryOrderGetRequest} requestParameters Request parameters.
|
||||
* @param {*} [options] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
*/
|
||||
apiJdCookieHistoryOrderGet(
|
||||
requestParameters: JDHistoryApiApiJdCookieHistoryOrderGetRequest,
|
||||
options?: RawAxiosRequestConfig
|
||||
): AxiosPromise<KamiApiJdCookieV1OrderHistoryRes> {
|
||||
return localVarFp
|
||||
.apiJdCookieHistoryOrderGet(
|
||||
requestParameters.orderId,
|
||||
requestParameters.orderType,
|
||||
requestParameters.page,
|
||||
requestParameters.size,
|
||||
options
|
||||
)
|
||||
.then(request => request(axios, basePath));
|
||||
}
|
||||
};
|
||||
};
|
||||
|
||||
/**
|
||||
* JDHistoryApi - interface
|
||||
*/
|
||||
export interface JDHistoryApiInterface {
|
||||
/**
|
||||
*
|
||||
* @summary Cookie Change History
|
||||
* @param {JDHistoryApiApiJdCookieHistoryCookieGetRequest} requestParameters Request parameters.
|
||||
* @param {*} [options] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
*/
|
||||
apiJdCookieHistoryCookieGet(
|
||||
requestParameters: JDHistoryApiApiJdCookieHistoryCookieGetRequest,
|
||||
options?: RawAxiosRequestConfig
|
||||
): AxiosPromise<KamiApiJdCookieV1CookieHistoryRes>;
|
||||
|
||||
/**
|
||||
*
|
||||
* @summary Order Change History
|
||||
* @param {JDHistoryApiApiJdCookieHistoryOrderGetRequest} requestParameters Request parameters.
|
||||
* @param {*} [options] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
*/
|
||||
apiJdCookieHistoryOrderGet(
|
||||
requestParameters: JDHistoryApiApiJdCookieHistoryOrderGetRequest,
|
||||
options?: RawAxiosRequestConfig
|
||||
): AxiosPromise<KamiApiJdCookieV1OrderHistoryRes>;
|
||||
}
|
||||
|
||||
/**
|
||||
* Request parameters for apiJdCookieHistoryCookieGet operation in JDHistoryApi.
|
||||
*/
|
||||
export interface JDHistoryApiApiJdCookieHistoryCookieGetRequest {
|
||||
/**
|
||||
* Cookie ID
|
||||
*/
|
||||
readonly cookieId: string;
|
||||
|
||||
/**
|
||||
* 页码
|
||||
*/
|
||||
readonly page?: number;
|
||||
|
||||
/**
|
||||
* 每页大小
|
||||
*/
|
||||
readonly size?: number;
|
||||
|
||||
/**
|
||||
* 变更类型筛选
|
||||
*/
|
||||
readonly changeType?: string;
|
||||
}
|
||||
|
||||
/**
|
||||
* Request parameters for apiJdCookieHistoryOrderGet operation in JDHistoryApi.
|
||||
*/
|
||||
export interface JDHistoryApiApiJdCookieHistoryOrderGetRequest {
|
||||
/**
|
||||
* 订单号
|
||||
*/
|
||||
readonly orderId: string;
|
||||
|
||||
/**
|
||||
* 订单类型(user/jd)
|
||||
*/
|
||||
readonly orderType: ApiJdCookieHistoryOrderGetOrderTypeEnum;
|
||||
|
||||
/**
|
||||
* 页码
|
||||
*/
|
||||
readonly page?: number;
|
||||
|
||||
/**
|
||||
* 每页大小
|
||||
*/
|
||||
readonly size?: number;
|
||||
}
|
||||
|
||||
/**
|
||||
* JDHistoryApi - object-oriented interface
|
||||
*/
|
||||
export class JDHistoryApi extends BaseAPI implements JDHistoryApiInterface {
|
||||
/**
|
||||
*
|
||||
* @summary Cookie Change History
|
||||
* @param {JDHistoryApiApiJdCookieHistoryCookieGetRequest} requestParameters Request parameters.
|
||||
* @param {*} [options] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
*/
|
||||
public apiJdCookieHistoryCookieGet(
|
||||
requestParameters: JDHistoryApiApiJdCookieHistoryCookieGetRequest,
|
||||
options?: RawAxiosRequestConfig
|
||||
) {
|
||||
return JDHistoryApiFp(this.configuration)
|
||||
.apiJdCookieHistoryCookieGet(
|
||||
requestParameters.cookieId,
|
||||
requestParameters.page,
|
||||
requestParameters.size,
|
||||
requestParameters.changeType,
|
||||
options
|
||||
)
|
||||
.then(request => request(this.axios, this.basePath));
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @summary Order Change History
|
||||
* @param {JDHistoryApiApiJdCookieHistoryOrderGetRequest} requestParameters Request parameters.
|
||||
* @param {*} [options] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
*/
|
||||
public apiJdCookieHistoryOrderGet(
|
||||
requestParameters: JDHistoryApiApiJdCookieHistoryOrderGetRequest,
|
||||
options?: RawAxiosRequestConfig
|
||||
) {
|
||||
return JDHistoryApiFp(this.configuration)
|
||||
.apiJdCookieHistoryOrderGet(
|
||||
requestParameters.orderId,
|
||||
requestParameters.orderType,
|
||||
requestParameters.page,
|
||||
requestParameters.size,
|
||||
options
|
||||
)
|
||||
.then(request => request(this.axios, this.basePath));
|
||||
}
|
||||
}
|
||||
|
||||
export enum ApiJdCookieHistoryOrderGetOrderTypeEnum {
|
||||
User = 'user',
|
||||
Jd = 'jd'
|
||||
}
|
||||
1123
src/api/generated/apis/jdorder-management-api.ts
Normal file
1123
src/api/generated/apis/jdorder-management-api.ts
Normal file
File diff suppressed because it is too large
Load Diff
@@ -50,7 +50,6 @@ import type { KamiApiSysUserV1TotpSetReq } from '../models';
|
||||
import type { KamiApiSysUserV1TotpStatusGetRes } from '../models';
|
||||
/**
|
||||
* TOTPApi - axios parameter creator
|
||||
* @export
|
||||
*/
|
||||
export const TOTPApiAxiosParamCreator = function (
|
||||
configuration?: Configuration
|
||||
@@ -243,7 +242,6 @@ export const TOTPApiAxiosParamCreator = function (
|
||||
|
||||
/**
|
||||
* TOTPApi - functional programming interface
|
||||
* @export
|
||||
*/
|
||||
export const TOTPApiFp = function (configuration?: Configuration) {
|
||||
const localVarAxiosParamCreator = TOTPApiAxiosParamCreator(configuration);
|
||||
@@ -378,7 +376,6 @@ export const TOTPApiFp = function (configuration?: Configuration) {
|
||||
|
||||
/**
|
||||
* TOTPApi - factory interface
|
||||
* @export
|
||||
*/
|
||||
export const TOTPApiFactory = function (
|
||||
configuration?: Configuration,
|
||||
@@ -456,8 +453,6 @@ export const TOTPApiFactory = function (
|
||||
|
||||
/**
|
||||
* TOTPApi - interface
|
||||
* @export
|
||||
* @interface TOTPApi
|
||||
*/
|
||||
export interface TOTPApiInterface {
|
||||
/**
|
||||
@@ -466,7 +461,6 @@ export interface TOTPApiInterface {
|
||||
* @param {TOTPApiApiUserTotpImageGetRequest} requestParameters Request parameters.
|
||||
* @param {*} [options] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
* @memberof TOTPApiInterface
|
||||
*/
|
||||
apiUserTotpImageGet(
|
||||
requestParameters: TOTPApiApiUserTotpImageGetRequest,
|
||||
@@ -479,7 +473,6 @@ export interface TOTPApiInterface {
|
||||
* @param {TOTPApiApiUserTotpResetPostRequest} requestParameters Request parameters.
|
||||
* @param {*} [options] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
* @memberof TOTPApiInterface
|
||||
*/
|
||||
apiUserTotpResetPost(
|
||||
requestParameters?: TOTPApiApiUserTotpResetPostRequest,
|
||||
@@ -492,7 +485,6 @@ export interface TOTPApiInterface {
|
||||
* @param {TOTPApiApiUserTotpSetPostRequest} requestParameters Request parameters.
|
||||
* @param {*} [options] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
* @memberof TOTPApiInterface
|
||||
*/
|
||||
apiUserTotpSetPost(
|
||||
requestParameters?: TOTPApiApiUserTotpSetPostRequest,
|
||||
@@ -504,7 +496,6 @@ export interface TOTPApiInterface {
|
||||
* @summary 确认当前用户是否开启totp
|
||||
* @param {*} [options] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
* @memberof TOTPApiInterface
|
||||
*/
|
||||
apiUserTotpStatusGet(
|
||||
options?: RawAxiosRequestConfig
|
||||
@@ -513,51 +504,27 @@ export interface TOTPApiInterface {
|
||||
|
||||
/**
|
||||
* Request parameters for apiUserTotpImageGet operation in TOTPApi.
|
||||
* @export
|
||||
* @interface TOTPApiApiUserTotpImageGetRequest
|
||||
*/
|
||||
export interface TOTPApiApiUserTotpImageGetRequest {
|
||||
/**
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof TOTPApiApiUserTotpImageGet
|
||||
*/
|
||||
readonly code: string;
|
||||
}
|
||||
|
||||
/**
|
||||
* Request parameters for apiUserTotpResetPost operation in TOTPApi.
|
||||
* @export
|
||||
* @interface TOTPApiApiUserTotpResetPostRequest
|
||||
*/
|
||||
export interface TOTPApiApiUserTotpResetPostRequest {
|
||||
/**
|
||||
*
|
||||
* @type {KamiApiSysUserV1TotpResetReq}
|
||||
* @memberof TOTPApiApiUserTotpResetPost
|
||||
*/
|
||||
readonly kamiApiSysUserV1TotpResetReq?: KamiApiSysUserV1TotpResetReq;
|
||||
}
|
||||
|
||||
/**
|
||||
* Request parameters for apiUserTotpSetPost operation in TOTPApi.
|
||||
* @export
|
||||
* @interface TOTPApiApiUserTotpSetPostRequest
|
||||
*/
|
||||
export interface TOTPApiApiUserTotpSetPostRequest {
|
||||
/**
|
||||
*
|
||||
* @type {KamiApiSysUserV1TotpSetReq}
|
||||
* @memberof TOTPApiApiUserTotpSetPost
|
||||
*/
|
||||
readonly kamiApiSysUserV1TotpSetReq?: KamiApiSysUserV1TotpSetReq;
|
||||
}
|
||||
|
||||
/**
|
||||
* TOTPApi - object-oriented interface
|
||||
* @export
|
||||
* @class TOTPApi
|
||||
* @extends {BaseAPI}
|
||||
*/
|
||||
export class TOTPApi extends BaseAPI implements TOTPApiInterface {
|
||||
/**
|
||||
@@ -566,7 +533,6 @@ export class TOTPApi extends BaseAPI implements TOTPApiInterface {
|
||||
* @param {TOTPApiApiUserTotpImageGetRequest} requestParameters Request parameters.
|
||||
* @param {*} [options] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
* @memberof TOTPApi
|
||||
*/
|
||||
public apiUserTotpImageGet(
|
||||
requestParameters: TOTPApiApiUserTotpImageGetRequest,
|
||||
@@ -583,7 +549,6 @@ export class TOTPApi extends BaseAPI implements TOTPApiInterface {
|
||||
* @param {TOTPApiApiUserTotpResetPostRequest} requestParameters Request parameters.
|
||||
* @param {*} [options] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
* @memberof TOTPApi
|
||||
*/
|
||||
public apiUserTotpResetPost(
|
||||
requestParameters: TOTPApiApiUserTotpResetPostRequest = {},
|
||||
@@ -603,7 +568,6 @@ export class TOTPApi extends BaseAPI implements TOTPApiInterface {
|
||||
* @param {TOTPApiApiUserTotpSetPostRequest} requestParameters Request parameters.
|
||||
* @param {*} [options] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
* @memberof TOTPApi
|
||||
*/
|
||||
public apiUserTotpSetPost(
|
||||
requestParameters: TOTPApiApiUserTotpSetPostRequest = {},
|
||||
@@ -619,7 +583,6 @@ export class TOTPApi extends BaseAPI implements TOTPApiInterface {
|
||||
* @summary 确认当前用户是否开启totp
|
||||
* @param {*} [options] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
* @memberof TOTPApi
|
||||
*/
|
||||
public apiUserTotpStatusGet(options?: RawAxiosRequestConfig) {
|
||||
return TOTPApiFp(this.configuration)
|
||||
|
||||
@@ -20,10 +20,6 @@ import globalAxios from 'axios';
|
||||
|
||||
export const BASE_PATH = 'http://localhost'.replace(/\/+$/, '');
|
||||
|
||||
/**
|
||||
*
|
||||
* @export
|
||||
*/
|
||||
export const COLLECTION_FORMATS = {
|
||||
csv: ',',
|
||||
ssv: ' ',
|
||||
@@ -31,21 +27,11 @@ export const COLLECTION_FORMATS = {
|
||||
pipes: '|'
|
||||
};
|
||||
|
||||
/**
|
||||
*
|
||||
* @export
|
||||
* @interface RequestArgs
|
||||
*/
|
||||
export interface RequestArgs {
|
||||
url: string;
|
||||
options: RawAxiosRequestConfig;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @export
|
||||
* @class BaseAPI
|
||||
*/
|
||||
export class BaseAPI {
|
||||
protected configuration: Configuration | undefined;
|
||||
|
||||
@@ -61,12 +47,6 @@ export class BaseAPI {
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @export
|
||||
* @class RequiredError
|
||||
* @extends {Error}
|
||||
*/
|
||||
export class RequiredError extends Error {
|
||||
constructor(
|
||||
public field: string,
|
||||
@@ -84,8 +64,4 @@ interface ServerMap {
|
||||
}[];
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @export
|
||||
*/
|
||||
export const operationServerMap: ServerMap = {};
|
||||
|
||||
@@ -17,16 +17,11 @@ import type { RequestArgs } from './base';
|
||||
import type { AxiosInstance, AxiosResponse } from 'axios';
|
||||
import { RequiredError } from './base';
|
||||
|
||||
/**
|
||||
*
|
||||
* @export
|
||||
*/
|
||||
export const DUMMY_BASE_URL = 'https://example.com';
|
||||
|
||||
/**
|
||||
*
|
||||
* @throws {RequiredError}
|
||||
* @export
|
||||
*/
|
||||
export const assertParamExists = function (
|
||||
functionName: string,
|
||||
@@ -41,10 +36,6 @@ export const assertParamExists = function (
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
*
|
||||
* @export
|
||||
*/
|
||||
export const setApiKeyToObject = async function (
|
||||
object: any,
|
||||
keyParamName: string,
|
||||
@@ -59,10 +50,6 @@ export const setApiKeyToObject = async function (
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
*
|
||||
* @export
|
||||
*/
|
||||
export const setBasicAuthToObject = function (
|
||||
object: any,
|
||||
configuration?: Configuration
|
||||
@@ -75,10 +62,6 @@ export const setBasicAuthToObject = function (
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
*
|
||||
* @export
|
||||
*/
|
||||
export const setBearerAuthToObject = async function (
|
||||
object: any,
|
||||
configuration?: Configuration
|
||||
@@ -92,10 +75,6 @@ export const setBearerAuthToObject = async function (
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
*
|
||||
* @export
|
||||
*/
|
||||
export const setOAuthToObject = async function (
|
||||
object: any,
|
||||
name: string,
|
||||
@@ -140,20 +119,12 @@ function setFlattenedQueryParams(
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @export
|
||||
*/
|
||||
export const setSearchParams = function (url: URL, ...objects: any[]) {
|
||||
const searchParams = new URLSearchParams(url.search);
|
||||
setFlattenedQueryParams(searchParams, objects);
|
||||
url.search = searchParams.toString();
|
||||
};
|
||||
|
||||
/**
|
||||
*
|
||||
* @export
|
||||
*/
|
||||
export const serializeDataIfNeeded = function (
|
||||
value: any,
|
||||
requestOptions: any,
|
||||
@@ -169,18 +140,10 @@ export const serializeDataIfNeeded = function (
|
||||
: value || '';
|
||||
};
|
||||
|
||||
/**
|
||||
*
|
||||
* @export
|
||||
*/
|
||||
export const toPathString = function (url: URL) {
|
||||
return url.pathname + url.search + url.hash;
|
||||
};
|
||||
|
||||
/**
|
||||
*
|
||||
* @export
|
||||
*/
|
||||
export const createRequestFunction = function (
|
||||
axiosArgs: RequestArgs,
|
||||
globalAxios: AxiosInstance,
|
||||
|
||||
@@ -35,7 +35,6 @@ export class Configuration {
|
||||
/**
|
||||
* parameter for apiKey security
|
||||
* @param name security name
|
||||
* @memberof Configuration
|
||||
*/
|
||||
apiKey?:
|
||||
| string
|
||||
@@ -44,23 +43,16 @@ export class Configuration {
|
||||
| ((name: string) => Promise<string>);
|
||||
/**
|
||||
* parameter for basic security
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof Configuration
|
||||
*/
|
||||
username?: string;
|
||||
/**
|
||||
* parameter for basic security
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof Configuration
|
||||
*/
|
||||
password?: string;
|
||||
/**
|
||||
* parameter for oauth2 security
|
||||
* @param name security name
|
||||
* @param scopes oauth2 scope
|
||||
* @memberof Configuration
|
||||
*/
|
||||
accessToken?:
|
||||
| string
|
||||
@@ -69,23 +61,14 @@ export class Configuration {
|
||||
| ((name?: string, scopes?: string[]) => Promise<string>);
|
||||
/**
|
||||
* override base path
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof Configuration
|
||||
*/
|
||||
basePath?: string;
|
||||
/**
|
||||
* override server index
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof Configuration
|
||||
*/
|
||||
serverIndex?: number;
|
||||
/**
|
||||
* base options for axios calls
|
||||
*
|
||||
* @type {any}
|
||||
* @memberof Configuration
|
||||
*/
|
||||
baseOptions?: any;
|
||||
/**
|
||||
|
||||
@@ -1,419 +0,0 @@
|
||||
# CkApi
|
||||
|
||||
All URIs are relative to _http://localhost_
|
||||
|
||||
| Method | HTTP request | Description |
|
||||
| ----------------------------------------------------------------------------- | -------------------------------------------- | -------------- |
|
||||
| [**apiCookieInfoJdAccountAddPost**](#apicookieinfojdaccountaddpost) | **POST** /api/cookieInfo/jd/account/add | 添加京东ck |
|
||||
| [**apiCookieInfoJdAccountDeleteDelete**](#apicookieinfojdaccountdeletedelete) | **DELETE** /api/cookieInfo/jd/account/delete | 删除京东ck |
|
||||
| [**apiCookieInfoJdAccountGetGet**](#apicookieinfojdaccountgetget) | **GET** /api/cookieInfo/jd/account/get | 获取京东ck |
|
||||
| [**apiCookieInfoJdAccountListGet**](#apicookieinfojdaccountlistget) | **GET** /api/cookieInfo/jd/account/list | 获取京东ck列表 |
|
||||
| [**apiCookieInfoJdAccountStatusPut**](#apicookieinfojdaccountstatusput) | **PUT** /api/cookieInfo/jd/account/status | 修改京东ck状态 |
|
||||
| [**apiCookieInfoJdAccountUpdatePut**](#apicookieinfojdaccountupdateput) | **PUT** /api/cookieInfo/jd/account/update | 更新京东ck |
|
||||
| [**apiCookieInfoJdOrderListGet**](#apicookieinfojdorderlistget) | **GET** /api/cookieInfo/jd/order/list | 获取订单列表 |
|
||||
| [**apiCookieInfoJdOrderPlaceOrderPost**](#apicookieinfojdorderplaceorderpost) | **POST** /api/cookieInfo/jd/order/placeOrder | 下单 |
|
||||
|
||||
# **apiCookieInfoJdAccountAddPost**
|
||||
|
||||
> object apiCookieInfoJdAccountAddPost()
|
||||
|
||||
### Example
|
||||
|
||||
```typescript
|
||||
import {
|
||||
CkApi,
|
||||
Configuration,
|
||||
KamiApiCardRedeemJdV1AccountAddReq
|
||||
} from './api';
|
||||
|
||||
const configuration = new Configuration();
|
||||
const apiInstance = new CkApi(configuration);
|
||||
|
||||
let kamiApiCardRedeemJdV1AccountAddReq: KamiApiCardRedeemJdV1AccountAddReq; // (optional)
|
||||
|
||||
const { status, data } = await apiInstance.apiCookieInfoJdAccountAddPost(
|
||||
kamiApiCardRedeemJdV1AccountAddReq
|
||||
);
|
||||
```
|
||||
|
||||
### Parameters
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| -------------------------------------- | -------------------------------------- | ----------- | ----- |
|
||||
| **kamiApiCardRedeemJdV1AccountAddReq** | **KamiApiCardRedeemJdV1AccountAddReq** | | |
|
||||
|
||||
### Return type
|
||||
|
||||
**object**
|
||||
|
||||
### Authorization
|
||||
|
||||
No authorization required
|
||||
|
||||
### HTTP request headers
|
||||
|
||||
- **Content-Type**: application/json
|
||||
- **Accept**: application/json
|
||||
|
||||
### HTTP response details
|
||||
|
||||
| Status code | Description | Response headers |
|
||||
| ----------- | ----------- | ---------------- |
|
||||
| **200** | | - |
|
||||
|
||||
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
||||
|
||||
# **apiCookieInfoJdAccountDeleteDelete**
|
||||
|
||||
> object apiCookieInfoJdAccountDeleteDelete()
|
||||
|
||||
### Example
|
||||
|
||||
```typescript
|
||||
import { CkApi, Configuration } from './api';
|
||||
|
||||
const configuration = new Configuration();
|
||||
const apiInstance = new CkApi(configuration);
|
||||
|
||||
let id: number; // (default to undefined)
|
||||
|
||||
const { status, data } =
|
||||
await apiInstance.apiCookieInfoJdAccountDeleteDelete(id);
|
||||
```
|
||||
|
||||
### Parameters
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| ------ | ------------ | ----------- | --------------------- |
|
||||
| **id** | [**number**] | | defaults to undefined |
|
||||
|
||||
### Return type
|
||||
|
||||
**object**
|
||||
|
||||
### Authorization
|
||||
|
||||
No authorization required
|
||||
|
||||
### HTTP request headers
|
||||
|
||||
- **Content-Type**: Not defined
|
||||
- **Accept**: application/json
|
||||
|
||||
### HTTP response details
|
||||
|
||||
| Status code | Description | Response headers |
|
||||
| ----------- | ----------- | ---------------- |
|
||||
| **200** | | - |
|
||||
|
||||
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
||||
|
||||
# **apiCookieInfoJdAccountGetGet**
|
||||
|
||||
> KamiApiCardRedeemJdV1AccountGetRes apiCookieInfoJdAccountGetGet()
|
||||
|
||||
### Example
|
||||
|
||||
```typescript
|
||||
import { CkApi, Configuration } from './api';
|
||||
|
||||
const configuration = new Configuration();
|
||||
const apiInstance = new CkApi(configuration);
|
||||
|
||||
let id: number; // (default to undefined)
|
||||
|
||||
const { status, data } = await apiInstance.apiCookieInfoJdAccountGetGet(id);
|
||||
```
|
||||
|
||||
### Parameters
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| ------ | ------------ | ----------- | --------------------- |
|
||||
| **id** | [**number**] | | defaults to undefined |
|
||||
|
||||
### Return type
|
||||
|
||||
**KamiApiCardRedeemJdV1AccountGetRes**
|
||||
|
||||
### Authorization
|
||||
|
||||
No authorization required
|
||||
|
||||
### HTTP request headers
|
||||
|
||||
- **Content-Type**: Not defined
|
||||
- **Accept**: application/json
|
||||
|
||||
### HTTP response details
|
||||
|
||||
| Status code | Description | Response headers |
|
||||
| ----------- | ----------- | ---------------- |
|
||||
| **200** | | - |
|
||||
|
||||
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
||||
|
||||
# **apiCookieInfoJdAccountListGet**
|
||||
|
||||
> KamiApiCardRedeemJdV1AccountListRes apiCookieInfoJdAccountListGet()
|
||||
|
||||
### Example
|
||||
|
||||
```typescript
|
||||
import { CkApi, Configuration } from './api';
|
||||
|
||||
const configuration = new Configuration();
|
||||
const apiInstance = new CkApi(configuration);
|
||||
|
||||
let current: number; //页数 (default to undefined)
|
||||
let pageSize: 5 | 10 | 15 | 20 | 50 | 100; //页码 (default to undefined)
|
||||
let status: 'dailyDisable' | 'disable' | 'expired' | 'normal' | 'tmpDisable'; //状态 (optional) (default to undefined)
|
||||
let name: string; //昵称 (optional) (default to undefined)
|
||||
let cookie: string; //ck (optional) (default to undefined)
|
||||
|
||||
const { status, data } = await apiInstance.apiCookieInfoJdAccountListGet(
|
||||
current,
|
||||
pageSize,
|
||||
status,
|
||||
name,
|
||||
cookie
|
||||
);
|
||||
```
|
||||
|
||||
### Parameters
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| ------------ | --------------------------- | ----------------- | -------------------------------- | ---------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------- | -------------------------------- | --------------------- |
|
||||
| **current** | [**number**] | 页数 | defaults to undefined |
|
||||
| **pageSize** | [\*\*5 | 10 | 15 | 20 | 50 | 100**]**Array<5 | 10 | 15 | 20 | 50 | 100>\*\* | 页码 | defaults to undefined |
|
||||
| **status** | [\*\*'dailyDisable' | 'disable' | 'expired' | 'normal' | 'tmpDisable'**]**Array<'dailyDisable' | 'disable' | 'expired' | 'normal' | 'tmpDisable'>\*\* | 状态 | (optional) defaults to undefined |
|
||||
| **name** | [**string**] | 昵称 | (optional) defaults to undefined |
|
||||
| **cookie** | [**string**] | ck | (optional) defaults to undefined |
|
||||
|
||||
### Return type
|
||||
|
||||
**KamiApiCardRedeemJdV1AccountListRes**
|
||||
|
||||
### Authorization
|
||||
|
||||
No authorization required
|
||||
|
||||
### HTTP request headers
|
||||
|
||||
- **Content-Type**: Not defined
|
||||
- **Accept**: application/json
|
||||
|
||||
### HTTP response details
|
||||
|
||||
| Status code | Description | Response headers |
|
||||
| ----------- | ----------- | ---------------- |
|
||||
| **200** | | - |
|
||||
|
||||
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
||||
|
||||
# **apiCookieInfoJdAccountStatusPut**
|
||||
|
||||
> object apiCookieInfoJdAccountStatusPut()
|
||||
|
||||
### Example
|
||||
|
||||
```typescript
|
||||
import {
|
||||
CkApi,
|
||||
Configuration,
|
||||
KamiApiCardRedeemJdV1AccountStatusReq
|
||||
} from './api';
|
||||
|
||||
const configuration = new Configuration();
|
||||
const apiInstance = new CkApi(configuration);
|
||||
|
||||
let kamiApiCardRedeemJdV1AccountStatusReq: KamiApiCardRedeemJdV1AccountStatusReq; // (optional)
|
||||
|
||||
const { status, data } = await apiInstance.apiCookieInfoJdAccountStatusPut(
|
||||
kamiApiCardRedeemJdV1AccountStatusReq
|
||||
);
|
||||
```
|
||||
|
||||
### Parameters
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| ----------------------------------------- | ----------------------------------------- | ----------- | ----- |
|
||||
| **kamiApiCardRedeemJdV1AccountStatusReq** | **KamiApiCardRedeemJdV1AccountStatusReq** | | |
|
||||
|
||||
### Return type
|
||||
|
||||
**object**
|
||||
|
||||
### Authorization
|
||||
|
||||
No authorization required
|
||||
|
||||
### HTTP request headers
|
||||
|
||||
- **Content-Type**: application/json
|
||||
- **Accept**: application/json
|
||||
|
||||
### HTTP response details
|
||||
|
||||
| Status code | Description | Response headers |
|
||||
| ----------- | ----------- | ---------------- |
|
||||
| **200** | | - |
|
||||
|
||||
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
||||
|
||||
# **apiCookieInfoJdAccountUpdatePut**
|
||||
|
||||
> object apiCookieInfoJdAccountUpdatePut()
|
||||
|
||||
### Example
|
||||
|
||||
```typescript
|
||||
import {
|
||||
CkApi,
|
||||
Configuration,
|
||||
KamiApiCardRedeemJdV1AccountUpdateReq
|
||||
} from './api';
|
||||
|
||||
const configuration = new Configuration();
|
||||
const apiInstance = new CkApi(configuration);
|
||||
|
||||
let kamiApiCardRedeemJdV1AccountUpdateReq: KamiApiCardRedeemJdV1AccountUpdateReq; // (optional)
|
||||
|
||||
const { status, data } = await apiInstance.apiCookieInfoJdAccountUpdatePut(
|
||||
kamiApiCardRedeemJdV1AccountUpdateReq
|
||||
);
|
||||
```
|
||||
|
||||
### Parameters
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| ----------------------------------------- | ----------------------------------------- | ----------- | ----- |
|
||||
| **kamiApiCardRedeemJdV1AccountUpdateReq** | **KamiApiCardRedeemJdV1AccountUpdateReq** | | |
|
||||
|
||||
### Return type
|
||||
|
||||
**object**
|
||||
|
||||
### Authorization
|
||||
|
||||
No authorization required
|
||||
|
||||
### HTTP request headers
|
||||
|
||||
- **Content-Type**: application/json
|
||||
- **Accept**: application/json
|
||||
|
||||
### HTTP response details
|
||||
|
||||
| Status code | Description | Response headers |
|
||||
| ----------- | ----------- | ---------------- |
|
||||
| **200** | | - |
|
||||
|
||||
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
||||
|
||||
# **apiCookieInfoJdOrderListGet**
|
||||
|
||||
> KamiApiCardRedeemJdV1OrderListRes apiCookieInfoJdOrderListGet()
|
||||
|
||||
### Example
|
||||
|
||||
```typescript
|
||||
import { CkApi, Configuration } from './api';
|
||||
|
||||
const configuration = new Configuration();
|
||||
const apiInstance = new CkApi(configuration);
|
||||
|
||||
let current: number; //页数 (default to undefined)
|
||||
let pageSize: 5 | 10 | 15 | 20 | 50 | 100; //页码 (default to undefined)
|
||||
let cookieId: number; //cookieId (optional) (default to undefined)
|
||||
let cookie: string; //cookie (optional) (default to undefined)
|
||||
let status: 'init' | 'placeFail' | 'placeSuccess'; //状态 (optional) (default to undefined)
|
||||
|
||||
const { status, data } = await apiInstance.apiCookieInfoJdOrderListGet(
|
||||
current,
|
||||
pageSize,
|
||||
cookieId,
|
||||
cookie,
|
||||
status
|
||||
);
|
||||
```
|
||||
|
||||
### Parameters
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| ------------ | ------------------- | ------------------- | ------------------------------------------------------------------------------------------------------------- | ---- | -------------------------------- | ----------------------------------------------------------------------- | ---- | --------------------- |
|
||||
| **current** | [**number**] | 页数 | defaults to undefined |
|
||||
| **pageSize** | [\*\*5 | 10 | 15 | 20 | 50 | 100**]**Array<5 | 10 | 15 | 20 | 50 | 100>\*\* | 页码 | defaults to undefined |
|
||||
| **cookieId** | [**number**] | cookieId | (optional) defaults to undefined |
|
||||
| **cookie** | [**string**] | cookie | (optional) defaults to undefined |
|
||||
| **status** | [\*\*'init' | 'placeFail' | 'placeSuccess'**]**Array<'init' | 'placeFail' | 'placeSuccess'>\*\* | 状态 | (optional) defaults to undefined |
|
||||
|
||||
### Return type
|
||||
|
||||
**KamiApiCardRedeemJdV1OrderListRes**
|
||||
|
||||
### Authorization
|
||||
|
||||
No authorization required
|
||||
|
||||
### HTTP request headers
|
||||
|
||||
- **Content-Type**: Not defined
|
||||
- **Accept**: application/json
|
||||
|
||||
### HTTP response details
|
||||
|
||||
| Status code | Description | Response headers |
|
||||
| ----------- | ----------- | ---------------- |
|
||||
| **200** | | - |
|
||||
|
||||
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
||||
|
||||
# **apiCookieInfoJdOrderPlaceOrderPost**
|
||||
|
||||
> KamiApiCardRedeemJdV1PlaceOrderRes apiCookieInfoJdOrderPlaceOrderPost()
|
||||
|
||||
### Example
|
||||
|
||||
```typescript
|
||||
import {
|
||||
CkApi,
|
||||
Configuration,
|
||||
KamiApiCardRedeemJdV1PlaceOrderReq
|
||||
} from './api';
|
||||
|
||||
const configuration = new Configuration();
|
||||
const apiInstance = new CkApi(configuration);
|
||||
|
||||
let kamiApiCardRedeemJdV1PlaceOrderReq: KamiApiCardRedeemJdV1PlaceOrderReq; // (optional)
|
||||
|
||||
const { status, data } = await apiInstance.apiCookieInfoJdOrderPlaceOrderPost(
|
||||
kamiApiCardRedeemJdV1PlaceOrderReq
|
||||
);
|
||||
```
|
||||
|
||||
### Parameters
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| -------------------------------------- | -------------------------------------- | ----------- | ----- |
|
||||
| **kamiApiCardRedeemJdV1PlaceOrderReq** | **KamiApiCardRedeemJdV1PlaceOrderReq** | | |
|
||||
|
||||
### Return type
|
||||
|
||||
**KamiApiCardRedeemJdV1PlaceOrderRes**
|
||||
|
||||
### Authorization
|
||||
|
||||
No authorization required
|
||||
|
||||
### HTTP request headers
|
||||
|
||||
- **Content-Type**: application/json
|
||||
- **Accept**: application/json
|
||||
|
||||
### HTTP response details
|
||||
|
||||
| Status code | Description | Response headers |
|
||||
| ----------- | ----------- | ---------------- |
|
||||
| **200** | | - |
|
||||
|
||||
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
||||
@@ -2055,6 +2055,7 @@ let current: number; //页数 (default to undefined)
|
||||
let pageSize: 5 | 10 | 15 | 20 | 50 | 100; //页码 (default to undefined)
|
||||
let name: string; //账户名称 (optional) (default to undefined)
|
||||
let nickName: string; //用户昵称 (optional) (default to undefined)
|
||||
let status: number; //状态筛选 (optional) (default to undefined)
|
||||
let cookie: string; // (optional) (default to undefined)
|
||||
|
||||
const { status, data } = await apiInstance.apiCardInfoCTripAccountGetListGet(
|
||||
@@ -2062,6 +2063,7 @@ const { status, data } = await apiInstance.apiCardInfoCTripAccountGetListGet(
|
||||
pageSize,
|
||||
name,
|
||||
nickName,
|
||||
status,
|
||||
cookie
|
||||
);
|
||||
```
|
||||
@@ -2074,6 +2076,7 @@ const { status, data } = await apiInstance.apiCardInfoCTripAccountGetListGet(
|
||||
| **pageSize** | [\*\*5 | 10 | 15 | 20 | 50 | 100**]**Array<5 | 10 | 15 | 20 | 50 | 100>\*\* | 页码 | defaults to undefined |
|
||||
| **name** | [**string**] | 账户名称 | (optional) defaults to undefined |
|
||||
| **nickName** | [**string**] | 用户昵称 | (optional) defaults to undefined |
|
||||
| **status** | [**number**] | 状态筛选 | (optional) defaults to undefined |
|
||||
| **cookie** | [**string**] | | (optional) defaults to undefined |
|
||||
|
||||
### Return type
|
||||
@@ -9841,19 +9844,14 @@ const configuration = new Configuration();
|
||||
const apiInstance = new DefaultApi(configuration);
|
||||
|
||||
let authorization: string; //Bearer {{token}} (optional) (default to undefined)
|
||||
let body: object; // (optional)
|
||||
|
||||
const { status, data } = await apiInstance.apiUserLogoutPost(
|
||||
authorization,
|
||||
body
|
||||
);
|
||||
const { status, data } = await apiInstance.apiUserLogoutPost(authorization);
|
||||
```
|
||||
|
||||
### Parameters
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| ----------------- | ------------ | ---------------- | -------------------------------- |
|
||||
| **body** | **object** | | |
|
||||
| **authorization** | [**string**] | Bearer {{token}} | (optional) defaults to undefined |
|
||||
|
||||
### Return type
|
||||
@@ -9866,7 +9864,7 @@ No authorization required
|
||||
|
||||
### HTTP request headers
|
||||
|
||||
- **Content-Type**: application/json
|
||||
- **Content-Type**: Not defined
|
||||
- **Accept**: application/json
|
||||
|
||||
### HTTP response details
|
||||
|
||||
357
src/api/generated/docs/JDCookieManagementApi.md
Normal file
357
src/api/generated/docs/JDCookieManagementApi.md
Normal file
@@ -0,0 +1,357 @@
|
||||
# JDCookieManagementApi
|
||||
|
||||
All URIs are relative to _http://localhost_
|
||||
|
||||
| Method | HTTP request | Description |
|
||||
| --------------------------------------------------------------------------- | -------------------------------------------- | ---------------------------- |
|
||||
| [**apiJdCookieAccountBatchCheckPost**](#apijdcookieaccountbatchcheckpost) | **POST** /api/jd-cookie/account/batch-check | Batch Check Cookie Status |
|
||||
| [**apiJdCookieAccountBatchCreatePost**](#apijdcookieaccountbatchcreatepost) | **POST** /api/jd-cookie/account/batch-create | Batch Create Cookie Accounts |
|
||||
| [**apiJdCookieAccountCreatePost**](#apijdcookieaccountcreatepost) | **POST** /api/jd-cookie/account/create | Create Cookie Account |
|
||||
| [**apiJdCookieAccountDeleteDelete**](#apijdcookieaccountdeletedelete) | **DELETE** /api/jd-cookie/account/delete | Delete Cookie Account |
|
||||
| [**apiJdCookieAccountGetGet**](#apijdcookieaccountgetget) | **GET** /api/jd-cookie/account/get | Get Single Cookie Account |
|
||||
| [**apiJdCookieAccountListGet**](#apijdcookieaccountlistget) | **GET** /api/jd-cookie/account/list | Query Cookie Account List |
|
||||
| [**apiJdCookieAccountUpdatePut**](#apijdcookieaccountupdateput) | **PUT** /api/jd-cookie/account/update | Update Cookie Account |
|
||||
|
||||
# **apiJdCookieAccountBatchCheckPost**
|
||||
|
||||
> KamiApiJdCookieV1BatchCheckRes apiJdCookieAccountBatchCheckPost()
|
||||
|
||||
### Example
|
||||
|
||||
```typescript
|
||||
import {
|
||||
JDCookieManagementApi,
|
||||
Configuration,
|
||||
KamiApiJdCookieV1BatchCheckReq
|
||||
} from './api';
|
||||
|
||||
const configuration = new Configuration();
|
||||
const apiInstance = new JDCookieManagementApi(configuration);
|
||||
|
||||
let kamiApiJdCookieV1BatchCheckReq: KamiApiJdCookieV1BatchCheckReq; // (optional)
|
||||
|
||||
const { status, data } = await apiInstance.apiJdCookieAccountBatchCheckPost(
|
||||
kamiApiJdCookieV1BatchCheckReq
|
||||
);
|
||||
```
|
||||
|
||||
### Parameters
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| ---------------------------------- | ---------------------------------- | ----------- | ----- |
|
||||
| **kamiApiJdCookieV1BatchCheckReq** | **KamiApiJdCookieV1BatchCheckReq** | | |
|
||||
|
||||
### Return type
|
||||
|
||||
**KamiApiJdCookieV1BatchCheckRes**
|
||||
|
||||
### Authorization
|
||||
|
||||
No authorization required
|
||||
|
||||
### HTTP request headers
|
||||
|
||||
- **Content-Type**: application/json
|
||||
- **Accept**: application/json
|
||||
|
||||
### HTTP response details
|
||||
|
||||
| Status code | Description | Response headers |
|
||||
| ----------- | ----------- | ---------------- |
|
||||
| **200** | | - |
|
||||
|
||||
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
||||
|
||||
# **apiJdCookieAccountBatchCreatePost**
|
||||
|
||||
> KamiApiJdCookieV1BatchCreateRes apiJdCookieAccountBatchCreatePost()
|
||||
|
||||
### Example
|
||||
|
||||
```typescript
|
||||
import {
|
||||
JDCookieManagementApi,
|
||||
Configuration,
|
||||
KamiApiJdCookieV1BatchCreateReq
|
||||
} from './api';
|
||||
|
||||
const configuration = new Configuration();
|
||||
const apiInstance = new JDCookieManagementApi(configuration);
|
||||
|
||||
let kamiApiJdCookieV1BatchCreateReq: KamiApiJdCookieV1BatchCreateReq; // (optional)
|
||||
|
||||
const { status, data } = await apiInstance.apiJdCookieAccountBatchCreatePost(
|
||||
kamiApiJdCookieV1BatchCreateReq
|
||||
);
|
||||
```
|
||||
|
||||
### Parameters
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| ----------------------------------- | ----------------------------------- | ----------- | ----- |
|
||||
| **kamiApiJdCookieV1BatchCreateReq** | **KamiApiJdCookieV1BatchCreateReq** | | |
|
||||
|
||||
### Return type
|
||||
|
||||
**KamiApiJdCookieV1BatchCreateRes**
|
||||
|
||||
### Authorization
|
||||
|
||||
No authorization required
|
||||
|
||||
### HTTP request headers
|
||||
|
||||
- **Content-Type**: application/json
|
||||
- **Accept**: application/json
|
||||
|
||||
### HTTP response details
|
||||
|
||||
| Status code | Description | Response headers |
|
||||
| ----------- | ----------- | ---------------- |
|
||||
| **200** | | - |
|
||||
|
||||
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
||||
|
||||
# **apiJdCookieAccountCreatePost**
|
||||
|
||||
> KamiApiJdCookieV1CreateAccountRes apiJdCookieAccountCreatePost()
|
||||
|
||||
### Example
|
||||
|
||||
```typescript
|
||||
import {
|
||||
JDCookieManagementApi,
|
||||
Configuration,
|
||||
KamiApiJdCookieV1CreateAccountReq
|
||||
} from './api';
|
||||
|
||||
const configuration = new Configuration();
|
||||
const apiInstance = new JDCookieManagementApi(configuration);
|
||||
|
||||
let kamiApiJdCookieV1CreateAccountReq: KamiApiJdCookieV1CreateAccountReq; // (optional)
|
||||
|
||||
const { status, data } = await apiInstance.apiJdCookieAccountCreatePost(
|
||||
kamiApiJdCookieV1CreateAccountReq
|
||||
);
|
||||
```
|
||||
|
||||
### Parameters
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| ------------------------------------- | ------------------------------------- | ----------- | ----- |
|
||||
| **kamiApiJdCookieV1CreateAccountReq** | **KamiApiJdCookieV1CreateAccountReq** | | |
|
||||
|
||||
### Return type
|
||||
|
||||
**KamiApiJdCookieV1CreateAccountRes**
|
||||
|
||||
### Authorization
|
||||
|
||||
No authorization required
|
||||
|
||||
### HTTP request headers
|
||||
|
||||
- **Content-Type**: application/json
|
||||
- **Accept**: application/json
|
||||
|
||||
### HTTP response details
|
||||
|
||||
| Status code | Description | Response headers |
|
||||
| ----------- | ----------- | ---------------- |
|
||||
| **200** | | - |
|
||||
|
||||
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
||||
|
||||
# **apiJdCookieAccountDeleteDelete**
|
||||
|
||||
> object apiJdCookieAccountDeleteDelete()
|
||||
|
||||
### Example
|
||||
|
||||
```typescript
|
||||
import { JDCookieManagementApi, Configuration } from './api';
|
||||
|
||||
const configuration = new Configuration();
|
||||
const apiInstance = new JDCookieManagementApi(configuration);
|
||||
|
||||
let cookieId: string; //Cookie ID (default to undefined)
|
||||
|
||||
const { status, data } =
|
||||
await apiInstance.apiJdCookieAccountDeleteDelete(cookieId);
|
||||
```
|
||||
|
||||
### Parameters
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| ------------ | ------------ | ----------- | --------------------- |
|
||||
| **cookieId** | [**string**] | Cookie ID | defaults to undefined |
|
||||
|
||||
### Return type
|
||||
|
||||
**object**
|
||||
|
||||
### Authorization
|
||||
|
||||
No authorization required
|
||||
|
||||
### HTTP request headers
|
||||
|
||||
- **Content-Type**: Not defined
|
||||
- **Accept**: application/json
|
||||
|
||||
### HTTP response details
|
||||
|
||||
| Status code | Description | Response headers |
|
||||
| ----------- | ----------- | ---------------- |
|
||||
| **200** | | - |
|
||||
|
||||
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
||||
|
||||
# **apiJdCookieAccountGetGet**
|
||||
|
||||
> KamiApiJdCookieV1GetAccountRes apiJdCookieAccountGetGet()
|
||||
|
||||
### Example
|
||||
|
||||
```typescript
|
||||
import { JDCookieManagementApi, Configuration } from './api';
|
||||
|
||||
const configuration = new Configuration();
|
||||
const apiInstance = new JDCookieManagementApi(configuration);
|
||||
|
||||
let cookieId: string; //Cookie ID (default to undefined)
|
||||
|
||||
const { status, data } = await apiInstance.apiJdCookieAccountGetGet(cookieId);
|
||||
```
|
||||
|
||||
### Parameters
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| ------------ | ------------ | ----------- | --------------------- |
|
||||
| **cookieId** | [**string**] | Cookie ID | defaults to undefined |
|
||||
|
||||
### Return type
|
||||
|
||||
**KamiApiJdCookieV1GetAccountRes**
|
||||
|
||||
### Authorization
|
||||
|
||||
No authorization required
|
||||
|
||||
### HTTP request headers
|
||||
|
||||
- **Content-Type**: Not defined
|
||||
- **Accept**: application/json
|
||||
|
||||
### HTTP response details
|
||||
|
||||
| Status code | Description | Response headers |
|
||||
| ----------- | ----------- | ---------------- |
|
||||
| **200** | | - |
|
||||
|
||||
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
||||
|
||||
# **apiJdCookieAccountListGet**
|
||||
|
||||
> KamiApiJdCookieV1ListAccountRes apiJdCookieAccountListGet()
|
||||
|
||||
### Example
|
||||
|
||||
```typescript
|
||||
import { JDCookieManagementApi, Configuration } from './api';
|
||||
|
||||
const configuration = new Configuration();
|
||||
const apiInstance = new JDCookieManagementApi(configuration);
|
||||
|
||||
let page: number; //页码 (optional) (default to 1)
|
||||
let size: number; //每页大小 (optional) (default to 20)
|
||||
let status: number; //状态筛选 (optional) (default to undefined)
|
||||
let keyword: string; //关键字搜索 (optional) (default to undefined)
|
||||
|
||||
const { status, data } = await apiInstance.apiJdCookieAccountListGet(
|
||||
page,
|
||||
size,
|
||||
status,
|
||||
keyword
|
||||
);
|
||||
```
|
||||
|
||||
### Parameters
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| ----------- | ------------ | ----------- | -------------------------------- |
|
||||
| **page** | [**number**] | 页码 | (optional) defaults to 1 |
|
||||
| **size** | [**number**] | 每页大小 | (optional) defaults to 20 |
|
||||
| **status** | [**number**] | 状态筛选 | (optional) defaults to undefined |
|
||||
| **keyword** | [**string**] | 关键字搜索 | (optional) defaults to undefined |
|
||||
|
||||
### Return type
|
||||
|
||||
**KamiApiJdCookieV1ListAccountRes**
|
||||
|
||||
### Authorization
|
||||
|
||||
No authorization required
|
||||
|
||||
### HTTP request headers
|
||||
|
||||
- **Content-Type**: Not defined
|
||||
- **Accept**: application/json
|
||||
|
||||
### HTTP response details
|
||||
|
||||
| Status code | Description | Response headers |
|
||||
| ----------- | ----------- | ---------------- |
|
||||
| **200** | | - |
|
||||
|
||||
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
||||
|
||||
# **apiJdCookieAccountUpdatePut**
|
||||
|
||||
> object apiJdCookieAccountUpdatePut()
|
||||
|
||||
### Example
|
||||
|
||||
```typescript
|
||||
import {
|
||||
JDCookieManagementApi,
|
||||
Configuration,
|
||||
KamiApiJdCookieV1UpdateAccountReq
|
||||
} from './api';
|
||||
|
||||
const configuration = new Configuration();
|
||||
const apiInstance = new JDCookieManagementApi(configuration);
|
||||
|
||||
let kamiApiJdCookieV1UpdateAccountReq: KamiApiJdCookieV1UpdateAccountReq; // (optional)
|
||||
|
||||
const { status, data } = await apiInstance.apiJdCookieAccountUpdatePut(
|
||||
kamiApiJdCookieV1UpdateAccountReq
|
||||
);
|
||||
```
|
||||
|
||||
### Parameters
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| ------------------------------------- | ------------------------------------- | ----------- | ----- |
|
||||
| **kamiApiJdCookieV1UpdateAccountReq** | **KamiApiJdCookieV1UpdateAccountReq** | | |
|
||||
|
||||
### Return type
|
||||
|
||||
**object**
|
||||
|
||||
### Authorization
|
||||
|
||||
No authorization required
|
||||
|
||||
### HTTP request headers
|
||||
|
||||
- **Content-Type**: application/json
|
||||
- **Accept**: application/json
|
||||
|
||||
### HTTP response details
|
||||
|
||||
| Status code | Description | Response headers |
|
||||
| ----------- | ----------- | ---------------- |
|
||||
| **200** | | - |
|
||||
|
||||
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
||||
118
src/api/generated/docs/JDHistoryApi.md
Normal file
118
src/api/generated/docs/JDHistoryApi.md
Normal file
@@ -0,0 +1,118 @@
|
||||
# JDHistoryApi
|
||||
|
||||
All URIs are relative to _http://localhost_
|
||||
|
||||
| Method | HTTP request | Description |
|
||||
| --------------------------------------------------------------- | ------------------------------------- | --------------------- |
|
||||
| [**apiJdCookieHistoryCookieGet**](#apijdcookiehistorycookieget) | **GET** /api/jd-cookie/history/cookie | Cookie Change History |
|
||||
| [**apiJdCookieHistoryOrderGet**](#apijdcookiehistoryorderget) | **GET** /api/jd-cookie/history/order | Order Change History |
|
||||
|
||||
# **apiJdCookieHistoryCookieGet**
|
||||
|
||||
> KamiApiJdCookieV1CookieHistoryRes apiJdCookieHistoryCookieGet()
|
||||
|
||||
### Example
|
||||
|
||||
```typescript
|
||||
import { JDHistoryApi, Configuration } from './api';
|
||||
|
||||
const configuration = new Configuration();
|
||||
const apiInstance = new JDHistoryApi(configuration);
|
||||
|
||||
let cookieId: string; //Cookie ID (default to undefined)
|
||||
let page: number; //页码 (optional) (default to 1)
|
||||
let size: number; //每页大小 (optional) (default to 20)
|
||||
let changeType: string; //变更类型筛选 (optional) (default to undefined)
|
||||
|
||||
const { status, data } = await apiInstance.apiJdCookieHistoryCookieGet(
|
||||
cookieId,
|
||||
page,
|
||||
size,
|
||||
changeType
|
||||
);
|
||||
```
|
||||
|
||||
### Parameters
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| -------------- | ------------ | ------------ | -------------------------------- |
|
||||
| **cookieId** | [**string**] | Cookie ID | defaults to undefined |
|
||||
| **page** | [**number**] | 页码 | (optional) defaults to 1 |
|
||||
| **size** | [**number**] | 每页大小 | (optional) defaults to 20 |
|
||||
| **changeType** | [**string**] | 变更类型筛选 | (optional) defaults to undefined |
|
||||
|
||||
### Return type
|
||||
|
||||
**KamiApiJdCookieV1CookieHistoryRes**
|
||||
|
||||
### Authorization
|
||||
|
||||
No authorization required
|
||||
|
||||
### HTTP request headers
|
||||
|
||||
- **Content-Type**: Not defined
|
||||
- **Accept**: application/json
|
||||
|
||||
### HTTP response details
|
||||
|
||||
| Status code | Description | Response headers |
|
||||
| ----------- | ----------- | ---------------- |
|
||||
| **200** | | - |
|
||||
|
||||
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
||||
|
||||
# **apiJdCookieHistoryOrderGet**
|
||||
|
||||
> KamiApiJdCookieV1OrderHistoryRes apiJdCookieHistoryOrderGet()
|
||||
|
||||
### Example
|
||||
|
||||
```typescript
|
||||
import { JDHistoryApi, Configuration } from './api';
|
||||
|
||||
const configuration = new Configuration();
|
||||
const apiInstance = new JDHistoryApi(configuration);
|
||||
|
||||
let orderId: string; //订单号 (default to undefined)
|
||||
let orderType: 'user' | 'jd'; //订单类型(user/jd) (default to undefined)
|
||||
let page: number; //页码 (optional) (default to 1)
|
||||
let size: number; //每页大小 (optional) (default to 20)
|
||||
|
||||
const { status, data } = await apiInstance.apiJdCookieHistoryOrderGet(
|
||||
orderId,
|
||||
orderType,
|
||||
page,
|
||||
size
|
||||
);
|
||||
```
|
||||
|
||||
### Parameters
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| ------------- | ------------------- | -------------------------------------------------------------- | ------------------------- | --------------------- |
|
||||
| **orderId** | [**string**] | 订单号 | defaults to undefined |
|
||||
| **orderType** | [\*\*'user' | 'jd'**]**Array<'user' | 'jd'>\*\* | 订单类型(user/jd) | defaults to undefined |
|
||||
| **page** | [**number**] | 页码 | (optional) defaults to 1 |
|
||||
| **size** | [**number**] | 每页大小 | (optional) defaults to 20 |
|
||||
|
||||
### Return type
|
||||
|
||||
**KamiApiJdCookieV1OrderHistoryRes**
|
||||
|
||||
### Authorization
|
||||
|
||||
No authorization required
|
||||
|
||||
### HTTP request headers
|
||||
|
||||
- **Content-Type**: Not defined
|
||||
- **Accept**: application/json
|
||||
|
||||
### HTTP response details
|
||||
|
||||
| Status code | Description | Response headers |
|
||||
| ----------- | ----------- | ---------------- |
|
||||
| **200** | | - |
|
||||
|
||||
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
||||
354
src/api/generated/docs/JDOrderManagementApi.md
Normal file
354
src/api/generated/docs/JDOrderManagementApi.md
Normal file
@@ -0,0 +1,354 @@
|
||||
# JDOrderManagementApi
|
||||
|
||||
All URIs are relative to _http://localhost_
|
||||
|
||||
| Method | HTTP request | Description |
|
||||
| ------------------------------------------------------------------------------- | ----------------------------------------------- | ----------------------------- |
|
||||
| [**apiJdCookieOrderCreatePost**](#apijdcookieordercreatepost) | **POST** /api/jd-cookie/order/create | Create Order |
|
||||
| [**apiJdCookieOrderGetGet**](#apijdcookieordergetget) | **GET** /api/jd-cookie/order/get | Get Single Order |
|
||||
| [**apiJdCookieOrderJdOrderGet**](#apijdcookieorderjdorderget) | **GET** /api/jd-cookie/order/jd-order | Get Single JD Order |
|
||||
| [**apiJdCookieOrderJdPaymentStatusPost**](#apijdcookieorderjdpaymentstatuspost) | **POST** /api/jd-cookie/order/jd-payment-status | Check JD Order Payment Status |
|
||||
| [**apiJdCookieOrderListGet**](#apijdcookieorderlistget) | **GET** /api/jd-cookie/order/list | Order List Query |
|
||||
| [**apiJdCookieOrderPaymentUrlPost**](#apijdcookieorderpaymenturlpost) | **POST** /api/jd-cookie/order/payment-url | Get Payment URL |
|
||||
| [**apiJdCookieOrderStatusGet**](#apijdcookieorderstatusget) | **GET** /api/jd-cookie/order/status | Query Order Status |
|
||||
|
||||
# **apiJdCookieOrderCreatePost**
|
||||
|
||||
> KamiApiJdCookieV1CreateOrderRes apiJdCookieOrderCreatePost()
|
||||
|
||||
### Example
|
||||
|
||||
```typescript
|
||||
import {
|
||||
JDOrderManagementApi,
|
||||
Configuration,
|
||||
KamiApiJdCookieV1CreateOrderReq
|
||||
} from './api';
|
||||
|
||||
const configuration = new Configuration();
|
||||
const apiInstance = new JDOrderManagementApi(configuration);
|
||||
|
||||
let kamiApiJdCookieV1CreateOrderReq: KamiApiJdCookieV1CreateOrderReq; // (optional)
|
||||
|
||||
const { status, data } = await apiInstance.apiJdCookieOrderCreatePost(
|
||||
kamiApiJdCookieV1CreateOrderReq
|
||||
);
|
||||
```
|
||||
|
||||
### Parameters
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| ----------------------------------- | ----------------------------------- | ----------- | ----- |
|
||||
| **kamiApiJdCookieV1CreateOrderReq** | **KamiApiJdCookieV1CreateOrderReq** | | |
|
||||
|
||||
### Return type
|
||||
|
||||
**KamiApiJdCookieV1CreateOrderRes**
|
||||
|
||||
### Authorization
|
||||
|
||||
No authorization required
|
||||
|
||||
### HTTP request headers
|
||||
|
||||
- **Content-Type**: application/json
|
||||
- **Accept**: application/json
|
||||
|
||||
### HTTP response details
|
||||
|
||||
| Status code | Description | Response headers |
|
||||
| ----------- | ----------- | ---------------- |
|
||||
| **200** | | - |
|
||||
|
||||
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
||||
|
||||
# **apiJdCookieOrderGetGet**
|
||||
|
||||
> KamiApiJdCookieV1GetOrderRes apiJdCookieOrderGetGet()
|
||||
|
||||
### Example
|
||||
|
||||
```typescript
|
||||
import { JDOrderManagementApi, Configuration } from './api';
|
||||
|
||||
const configuration = new Configuration();
|
||||
const apiInstance = new JDOrderManagementApi(configuration);
|
||||
|
||||
let orderId: string; //订单号 (default to undefined)
|
||||
|
||||
const { status, data } = await apiInstance.apiJdCookieOrderGetGet(orderId);
|
||||
```
|
||||
|
||||
### Parameters
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| ----------- | ------------ | ----------- | --------------------- |
|
||||
| **orderId** | [**string**] | 订单号 | defaults to undefined |
|
||||
|
||||
### Return type
|
||||
|
||||
**KamiApiJdCookieV1GetOrderRes**
|
||||
|
||||
### Authorization
|
||||
|
||||
No authorization required
|
||||
|
||||
### HTTP request headers
|
||||
|
||||
- **Content-Type**: Not defined
|
||||
- **Accept**: application/json
|
||||
|
||||
### HTTP response details
|
||||
|
||||
| Status code | Description | Response headers |
|
||||
| ----------- | ----------- | ---------------- |
|
||||
| **200** | | - |
|
||||
|
||||
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
||||
|
||||
# **apiJdCookieOrderJdOrderGet**
|
||||
|
||||
> KamiApiJdCookieV1GetJdOrderRes apiJdCookieOrderJdOrderGet()
|
||||
|
||||
### Example
|
||||
|
||||
```typescript
|
||||
import { JDOrderManagementApi, Configuration } from './api';
|
||||
|
||||
const configuration = new Configuration();
|
||||
const apiInstance = new JDOrderManagementApi(configuration);
|
||||
|
||||
let jdOrderId: string; //京东订单号 (default to undefined)
|
||||
|
||||
const { status, data } =
|
||||
await apiInstance.apiJdCookieOrderJdOrderGet(jdOrderId);
|
||||
```
|
||||
|
||||
### Parameters
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| ------------- | ------------ | ----------- | --------------------- |
|
||||
| **jdOrderId** | [**string**] | 京东订单号 | defaults to undefined |
|
||||
|
||||
### Return type
|
||||
|
||||
**KamiApiJdCookieV1GetJdOrderRes**
|
||||
|
||||
### Authorization
|
||||
|
||||
No authorization required
|
||||
|
||||
### HTTP request headers
|
||||
|
||||
- **Content-Type**: Not defined
|
||||
- **Accept**: application/json
|
||||
|
||||
### HTTP response details
|
||||
|
||||
| Status code | Description | Response headers |
|
||||
| ----------- | ----------- | ---------------- |
|
||||
| **200** | | - |
|
||||
|
||||
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
||||
|
||||
# **apiJdCookieOrderJdPaymentStatusPost**
|
||||
|
||||
> KamiApiJdCookieV1CheckJdOrderPaymentRes apiJdCookieOrderJdPaymentStatusPost()
|
||||
|
||||
### Example
|
||||
|
||||
```typescript
|
||||
import {
|
||||
JDOrderManagementApi,
|
||||
Configuration,
|
||||
KamiApiJdCookieV1CheckJdOrderPaymentReq
|
||||
} from './api';
|
||||
|
||||
const configuration = new Configuration();
|
||||
const apiInstance = new JDOrderManagementApi(configuration);
|
||||
|
||||
let kamiApiJdCookieV1CheckJdOrderPaymentReq: KamiApiJdCookieV1CheckJdOrderPaymentReq; // (optional)
|
||||
|
||||
const { status, data } = await apiInstance.apiJdCookieOrderJdPaymentStatusPost(
|
||||
kamiApiJdCookieV1CheckJdOrderPaymentReq
|
||||
);
|
||||
```
|
||||
|
||||
### Parameters
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| ------------------------------------------- | ------------------------------------------- | ----------- | ----- |
|
||||
| **kamiApiJdCookieV1CheckJdOrderPaymentReq** | **KamiApiJdCookieV1CheckJdOrderPaymentReq** | | |
|
||||
|
||||
### Return type
|
||||
|
||||
**KamiApiJdCookieV1CheckJdOrderPaymentRes**
|
||||
|
||||
### Authorization
|
||||
|
||||
No authorization required
|
||||
|
||||
### HTTP request headers
|
||||
|
||||
- **Content-Type**: application/json
|
||||
- **Accept**: application/json
|
||||
|
||||
### HTTP response details
|
||||
|
||||
| Status code | Description | Response headers |
|
||||
| ----------- | ----------- | ---------------- |
|
||||
| **200** | | - |
|
||||
|
||||
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
||||
|
||||
# **apiJdCookieOrderListGet**
|
||||
|
||||
> KamiApiJdCookieV1ListOrderRes apiJdCookieOrderListGet()
|
||||
|
||||
### Example
|
||||
|
||||
```typescript
|
||||
import { JDOrderManagementApi, Configuration } from './api';
|
||||
|
||||
const configuration = new Configuration();
|
||||
const apiInstance = new JDOrderManagementApi(configuration);
|
||||
|
||||
let page: number; //页码 (optional) (default to 1)
|
||||
let size: number; //每页大小 (optional) (default to 20)
|
||||
let status: number; //状态筛选 (optional) (default to undefined)
|
||||
let startTime: string; //开始时间 (optional) (default to undefined)
|
||||
let endTime: string; //结束时间 (optional) (default to undefined)
|
||||
|
||||
const { status, data } = await apiInstance.apiJdCookieOrderListGet(
|
||||
page,
|
||||
size,
|
||||
status,
|
||||
startTime,
|
||||
endTime
|
||||
);
|
||||
```
|
||||
|
||||
### Parameters
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| ------------- | ------------ | ----------- | -------------------------------- |
|
||||
| **page** | [**number**] | 页码 | (optional) defaults to 1 |
|
||||
| **size** | [**number**] | 每页大小 | (optional) defaults to 20 |
|
||||
| **status** | [**number**] | 状态筛选 | (optional) defaults to undefined |
|
||||
| **startTime** | [**string**] | 开始时间 | (optional) defaults to undefined |
|
||||
| **endTime** | [**string**] | 结束时间 | (optional) defaults to undefined |
|
||||
|
||||
### Return type
|
||||
|
||||
**KamiApiJdCookieV1ListOrderRes**
|
||||
|
||||
### Authorization
|
||||
|
||||
No authorization required
|
||||
|
||||
### HTTP request headers
|
||||
|
||||
- **Content-Type**: Not defined
|
||||
- **Accept**: application/json
|
||||
|
||||
### HTTP response details
|
||||
|
||||
| Status code | Description | Response headers |
|
||||
| ----------- | ----------- | ---------------- |
|
||||
| **200** | | - |
|
||||
|
||||
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
||||
|
||||
# **apiJdCookieOrderPaymentUrlPost**
|
||||
|
||||
> KamiApiJdCookieV1GetPaymentUrlRes apiJdCookieOrderPaymentUrlPost()
|
||||
|
||||
### Example
|
||||
|
||||
```typescript
|
||||
import {
|
||||
JDOrderManagementApi,
|
||||
Configuration,
|
||||
KamiApiJdCookieV1GetPaymentUrlReq
|
||||
} from './api';
|
||||
|
||||
const configuration = new Configuration();
|
||||
const apiInstance = new JDOrderManagementApi(configuration);
|
||||
|
||||
let kamiApiJdCookieV1GetPaymentUrlReq: KamiApiJdCookieV1GetPaymentUrlReq; // (optional)
|
||||
|
||||
const { status, data } = await apiInstance.apiJdCookieOrderPaymentUrlPost(
|
||||
kamiApiJdCookieV1GetPaymentUrlReq
|
||||
);
|
||||
```
|
||||
|
||||
### Parameters
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| ------------------------------------- | ------------------------------------- | ----------- | ----- |
|
||||
| **kamiApiJdCookieV1GetPaymentUrlReq** | **KamiApiJdCookieV1GetPaymentUrlReq** | | |
|
||||
|
||||
### Return type
|
||||
|
||||
**KamiApiJdCookieV1GetPaymentUrlRes**
|
||||
|
||||
### Authorization
|
||||
|
||||
No authorization required
|
||||
|
||||
### HTTP request headers
|
||||
|
||||
- **Content-Type**: application/json
|
||||
- **Accept**: application/json
|
||||
|
||||
### HTTP response details
|
||||
|
||||
| Status code | Description | Response headers |
|
||||
| ----------- | ----------- | ---------------- |
|
||||
| **200** | | - |
|
||||
|
||||
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
||||
|
||||
# **apiJdCookieOrderStatusGet**
|
||||
|
||||
> KamiApiJdCookieV1GetOrderStatusRes apiJdCookieOrderStatusGet()
|
||||
|
||||
### Example
|
||||
|
||||
```typescript
|
||||
import { JDOrderManagementApi, Configuration } from './api';
|
||||
|
||||
const configuration = new Configuration();
|
||||
const apiInstance = new JDOrderManagementApi(configuration);
|
||||
|
||||
let orderId: string; //订单号 (default to undefined)
|
||||
|
||||
const { status, data } = await apiInstance.apiJdCookieOrderStatusGet(orderId);
|
||||
```
|
||||
|
||||
### Parameters
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| ----------- | ------------ | ----------- | --------------------- |
|
||||
| **orderId** | [**string**] | 订单号 | defaults to undefined |
|
||||
|
||||
### Return type
|
||||
|
||||
**KamiApiJdCookieV1GetOrderStatusRes**
|
||||
|
||||
### Authorization
|
||||
|
||||
No authorization required
|
||||
|
||||
### HTTP request headers
|
||||
|
||||
- **Content-Type**: Not defined
|
||||
- **Accept**: application/json
|
||||
|
||||
### HTTP response details
|
||||
|
||||
| Status code | Description | Response headers |
|
||||
| ----------- | ----------- | ---------------- |
|
||||
| **200** | | - |
|
||||
|
||||
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
||||
@@ -8,6 +8,7 @@
|
||||
| **pageSize** | **number** | 页码 | [default to undefined] |
|
||||
| **name** | **string** | 账户名称 | [optional] [default to undefined] |
|
||||
| **nickName** | **string** | 用户昵称 | [optional] [default to undefined] |
|
||||
| **status** | **number** | 状态筛选 | [optional] [default to undefined] |
|
||||
| **cookie** | **string** | | [optional] [default to undefined] |
|
||||
|
||||
## Example
|
||||
@@ -20,6 +21,7 @@ const instance: KamiApiCardInfoCTripV1AccountListReq = {
|
||||
pageSize,
|
||||
name,
|
||||
nickName,
|
||||
status,
|
||||
cookie
|
||||
};
|
||||
```
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
| Name | Type | Description | Notes |
|
||||
| ------------------ | ---------- | ------------ | --------------------------------- |
|
||||
| **id** | **string** | | [default to undefined] |
|
||||
| **status** | **number** | 状态 | [optional] [default to undefined] |
|
||||
| **name** | **string** | 别名 | [optional] [default to undefined] |
|
||||
| **status** | **number** | 状态 | [optional] [default to undefined] |
|
||||
| **remark** | **string** | 备注 | [optional] [default to undefined] |
|
||||
| **maxAmountLimit** | **number** | 最大充值限制 | [optional] [default to undefined] |
|
||||
| **maxCountLimit** | **number** | 最大充值次数 | [optional] [default to undefined] |
|
||||
@@ -18,8 +18,8 @@ import { KamiApiCardInfoCTripV1AccountUpdateReq } from './api';
|
||||
|
||||
const instance: KamiApiCardInfoCTripV1AccountUpdateReq = {
|
||||
id,
|
||||
status,
|
||||
name,
|
||||
status,
|
||||
remark,
|
||||
maxAmountLimit,
|
||||
maxCountLimit
|
||||
|
||||
@@ -1,25 +0,0 @@
|
||||
# KamiApiCardRedeemJdV1AccountAddReq
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| ---------- | ---------- | ----------- | --------------------------------- |
|
||||
| **name** | **string** | 用户名 | [default to undefined] |
|
||||
| **cookie** | **string** | cookie | [default to undefined] |
|
||||
| **status** | **string** | 状态 | [default to undefined] |
|
||||
| **notes** | **string** | 备注 | [optional] [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiCardRedeemJdV1AccountAddReq } from './api';
|
||||
|
||||
const instance: KamiApiCardRedeemJdV1AccountAddReq = {
|
||||
name,
|
||||
cookie,
|
||||
status,
|
||||
notes
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
@@ -1,19 +0,0 @@
|
||||
# KamiApiCardRedeemJdV1AccountDeleteReq
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| ------ | ---------- | ----------- | ---------------------- |
|
||||
| **id** | **number** | | [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiCardRedeemJdV1AccountDeleteReq } from './api';
|
||||
|
||||
const instance: KamiApiCardRedeemJdV1AccountDeleteReq = {
|
||||
id
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
@@ -1,19 +0,0 @@
|
||||
# KamiApiCardRedeemJdV1AccountGetReq
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| ------ | ---------- | ----------- | ---------------------- |
|
||||
| **id** | **number** | | [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiCardRedeemJdV1AccountGetReq } from './api';
|
||||
|
||||
const instance: KamiApiCardRedeemJdV1AccountGetReq = {
|
||||
id
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
@@ -1,45 +0,0 @@
|
||||
# KamiApiCardRedeemJdV1AccountGetRes
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| ----------------- | ---------- | ----------- | --------------------------------- |
|
||||
| **id** | **number** | | [optional] [default to undefined] |
|
||||
| **name** | **string** | | [optional] [default to undefined] |
|
||||
| **cookie** | **string** | | [optional] [default to undefined] |
|
||||
| **notes** | **string** | | [optional] [default to undefined] |
|
||||
| **status** | **string** | 状态 | [optional] [default to undefined] |
|
||||
| **category** | **string** | | [optional] [default to undefined] |
|
||||
| **failCount** | **number** | 调用次数 | [optional] [default to undefined] |
|
||||
| **createdAt** | **string** | | [optional] [default to undefined] |
|
||||
| **updatedAt** | **string** | | [optional] [default to undefined] |
|
||||
| **deletedAt** | **string** | | [optional] [default to undefined] |
|
||||
| **totalCount** | **number** | 总数量 | [optional] [default to undefined] |
|
||||
| **successCount** | **number** | 成功数量 | [optional] [default to undefined] |
|
||||
| **totalAmount** | **number** | 总金额 | [optional] [default to undefined] |
|
||||
| **successAmount** | **number** | 成功金额 | [optional] [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiCardRedeemJdV1AccountGetRes } from './api';
|
||||
|
||||
const instance: KamiApiCardRedeemJdV1AccountGetRes = {
|
||||
id,
|
||||
name,
|
||||
cookie,
|
||||
notes,
|
||||
status,
|
||||
category,
|
||||
failCount,
|
||||
createdAt,
|
||||
updatedAt,
|
||||
deletedAt,
|
||||
totalCount,
|
||||
successCount,
|
||||
totalAmount,
|
||||
successAmount
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
@@ -1,27 +0,0 @@
|
||||
# KamiApiCardRedeemJdV1AccountListReq
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| ------------ | ---------- | ----------- | --------------------------------- |
|
||||
| **current** | **number** | 页数 | [default to undefined] |
|
||||
| **pageSize** | **number** | 页码 | [default to undefined] |
|
||||
| **status** | **string** | 状态 | [optional] [default to undefined] |
|
||||
| **name** | **string** | 昵称 | [optional] [default to undefined] |
|
||||
| **cookie** | **string** | ck | [optional] [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiCardRedeemJdV1AccountListReq } from './api';
|
||||
|
||||
const instance: KamiApiCardRedeemJdV1AccountListReq = {
|
||||
current,
|
||||
pageSize,
|
||||
status,
|
||||
name,
|
||||
cookie
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
@@ -1,21 +0,0 @@
|
||||
# KamiApiCardRedeemJdV1AccountListRes
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| --------- | -------------------------------------------------------------------------------------- | ----------- | --------------------------------- |
|
||||
| **total** | **number** | | [optional] [default to undefined] |
|
||||
| **list** | [**Array<KamiApiCardRedeemJdV1CookieInfo>**](KamiApiCardRedeemJdV1CookieInfo.md) | | [optional] [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiCardRedeemJdV1AccountListRes } from './api';
|
||||
|
||||
const instance: KamiApiCardRedeemJdV1AccountListRes = {
|
||||
total,
|
||||
list
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
@@ -1,21 +0,0 @@
|
||||
# KamiApiCardRedeemJdV1AccountStatusReq
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| ---------- | ---------- | ----------- | ---------------------- |
|
||||
| **id** | **number** | | [default to undefined] |
|
||||
| **status** | **string** | 状态 | [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiCardRedeemJdV1AccountStatusReq } from './api';
|
||||
|
||||
const instance: KamiApiCardRedeemJdV1AccountStatusReq = {
|
||||
id,
|
||||
status
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
@@ -1,27 +0,0 @@
|
||||
# KamiApiCardRedeemJdV1AccountUpdateReq
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| ---------- | ---------- | ----------- | --------------------------------- |
|
||||
| **name** | **string** | 用户名 | [default to undefined] |
|
||||
| **cookie** | **string** | cookie | [default to undefined] |
|
||||
| **status** | **string** | 状态 | [default to undefined] |
|
||||
| **notes** | **string** | 备注 | [optional] [default to undefined] |
|
||||
| **id** | **number** | | [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiCardRedeemJdV1AccountUpdateReq } from './api';
|
||||
|
||||
const instance: KamiApiCardRedeemJdV1AccountUpdateReq = {
|
||||
name,
|
||||
cookie,
|
||||
status,
|
||||
notes,
|
||||
id
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
@@ -1,45 +0,0 @@
|
||||
# KamiApiCardRedeemJdV1CookieInfo
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| ----------------- | ---------- | ----------- | --------------------------------- |
|
||||
| **id** | **number** | | [optional] [default to undefined] |
|
||||
| **name** | **string** | | [optional] [default to undefined] |
|
||||
| **cookie** | **string** | | [optional] [default to undefined] |
|
||||
| **notes** | **string** | | [optional] [default to undefined] |
|
||||
| **status** | **string** | 状态 | [optional] [default to undefined] |
|
||||
| **category** | **string** | | [optional] [default to undefined] |
|
||||
| **failCount** | **number** | 调用次数 | [optional] [default to undefined] |
|
||||
| **createdAt** | **string** | | [optional] [default to undefined] |
|
||||
| **updatedAt** | **string** | | [optional] [default to undefined] |
|
||||
| **deletedAt** | **string** | | [optional] [default to undefined] |
|
||||
| **totalCount** | **number** | 总数量 | [optional] [default to undefined] |
|
||||
| **successCount** | **number** | 成功数量 | [optional] [default to undefined] |
|
||||
| **totalAmount** | **number** | 总金额 | [optional] [default to undefined] |
|
||||
| **successAmount** | **number** | 成功金额 | [optional] [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiCardRedeemJdV1CookieInfo } from './api';
|
||||
|
||||
const instance: KamiApiCardRedeemJdV1CookieInfo = {
|
||||
id,
|
||||
name,
|
||||
cookie,
|
||||
notes,
|
||||
status,
|
||||
category,
|
||||
failCount,
|
||||
createdAt,
|
||||
updatedAt,
|
||||
deletedAt,
|
||||
totalCount,
|
||||
successCount,
|
||||
totalAmount,
|
||||
successAmount
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
@@ -1,27 +0,0 @@
|
||||
# KamiApiCardRedeemJdV1OrderListReq
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| ------------ | ---------- | ----------- | --------------------------------- |
|
||||
| **current** | **number** | 页数 | [default to undefined] |
|
||||
| **pageSize** | **number** | 页码 | [default to undefined] |
|
||||
| **cookieId** | **number** | cookieId | [optional] [default to undefined] |
|
||||
| **cookie** | **string** | cookie | [optional] [default to undefined] |
|
||||
| **status** | **string** | 状态 | [optional] [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiCardRedeemJdV1OrderListReq } from './api';
|
||||
|
||||
const instance: KamiApiCardRedeemJdV1OrderListReq = {
|
||||
current,
|
||||
pageSize,
|
||||
cookieId,
|
||||
cookie,
|
||||
status
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
@@ -1,21 +0,0 @@
|
||||
# KamiApiCardRedeemJdV1OrderListRes
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| --------- | ------------------------------------------------------------------------------------------------ | ----------- | --------------------------------- |
|
||||
| **total** | **number** | | [optional] [default to undefined] |
|
||||
| **list** | [**Array<KamiApiCardRedeemJdV1OrderListSchema>**](KamiApiCardRedeemJdV1OrderListSchema.md) | | [optional] [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiCardRedeemJdV1OrderListRes } from './api';
|
||||
|
||||
const instance: KamiApiCardRedeemJdV1OrderListRes = {
|
||||
total,
|
||||
list
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
@@ -1,43 +0,0 @@
|
||||
# KamiApiCardRedeemJdV1OrderListSchema
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| --------------- | ----------------------------------------------------------------------------------------------------------- | ----------- | --------------------------------- |
|
||||
| **id** | **number** | | [optional] [default to undefined] |
|
||||
| **bankOrderId** | **string** | 订单id | [optional] [default to undefined] |
|
||||
| **orderAmount** | **number** | 订单金额 | [optional] [default to undefined] |
|
||||
| **cookieId** | **number** | | [optional] [default to undefined] |
|
||||
| **cookie** | [**KamiInternalModelEntityV1CardRedeemCookieInfo**](KamiInternalModelEntityV1CardRedeemCookieInfo.md) | | [optional] [default to undefined] |
|
||||
| **orderNo** | **string** | 订单编号 | [optional] [default to undefined] |
|
||||
| **jdOrderNo** | **string** | | [optional] [default to undefined] |
|
||||
| **status** | **string** | | [optional] [default to undefined] |
|
||||
| **note** | **string** | | [optional] [default to undefined] |
|
||||
| **deletedAt** | **string** | | [optional] [default to undefined] |
|
||||
| **createdAt** | **string** | | [optional] [default to undefined] |
|
||||
| **updatedAt** | **string** | | [optional] [default to undefined] |
|
||||
| **jdOrder** | [**KamiInternalModelEntityV1CardRedeemCookieOrderJd**](KamiInternalModelEntityV1CardRedeemCookieOrderJd.md) | | [optional] [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiCardRedeemJdV1OrderListSchema } from './api';
|
||||
|
||||
const instance: KamiApiCardRedeemJdV1OrderListSchema = {
|
||||
id,
|
||||
bankOrderId,
|
||||
orderAmount,
|
||||
cookieId,
|
||||
cookie,
|
||||
orderNo,
|
||||
jdOrderNo,
|
||||
status,
|
||||
note,
|
||||
deletedAt,
|
||||
createdAt,
|
||||
updatedAt,
|
||||
jdOrder
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
@@ -1,23 +0,0 @@
|
||||
# KamiApiCardRedeemJdV1PlaceOrderReq
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| ------------------- | ---------- | ----------- | --------------------------------- |
|
||||
| **merchantOrderId** | **string** | 银行订单id | [default to undefined] |
|
||||
| **orderAmount** | **number** | 订单金额 | [default to undefined] |
|
||||
| **userAgent** | **string** | 用户代理 | [optional] [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiCardRedeemJdV1PlaceOrderReq } from './api';
|
||||
|
||||
const instance: KamiApiCardRedeemJdV1PlaceOrderReq = {
|
||||
merchantOrderId,
|
||||
orderAmount,
|
||||
userAgent
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
@@ -1,27 +0,0 @@
|
||||
# KamiApiCardRedeemJdV1PlaceOrderRes
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| ----------------- | ---------- | ----------- | --------------------------------- |
|
||||
| **wxPay** | **string** | 微信支付 | [optional] [default to undefined] |
|
||||
| **merchantOrder** | **string** | 银行订单id | [optional] [default to undefined] |
|
||||
| **orderNo** | **string** | 订单号 | [optional] [default to undefined] |
|
||||
| **orderAmount** | **number** | 订单金额 | [optional] [default to undefined] |
|
||||
| **orderStatus** | **string** | 订单状态 | [optional] [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiCardRedeemJdV1PlaceOrderRes } from './api';
|
||||
|
||||
const instance: KamiApiCardRedeemJdV1PlaceOrderRes = {
|
||||
wxPay,
|
||||
merchantOrder,
|
||||
orderNo,
|
||||
orderAmount,
|
||||
orderStatus
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
19
src/api/generated/docs/KamiApiJdCookieV1BatchCheckReq.md
Normal file
19
src/api/generated/docs/KamiApiJdCookieV1BatchCheckReq.md
Normal file
@@ -0,0 +1,19 @@
|
||||
# KamiApiJdCookieV1BatchCheckReq
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| ------------- | ----------------------- | ------------- | ---------------------- |
|
||||
| **cookieIds** | **Array<string>** | Cookie ID列表 | [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiJdCookieV1BatchCheckReq } from './api';
|
||||
|
||||
const instance: KamiApiJdCookieV1BatchCheckReq = {
|
||||
cookieIds
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
19
src/api/generated/docs/KamiApiJdCookieV1BatchCheckRes.md
Normal file
19
src/api/generated/docs/KamiApiJdCookieV1BatchCheckRes.md
Normal file
@@ -0,0 +1,19 @@
|
||||
# KamiApiJdCookieV1BatchCheckRes
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| ----------- | -------------------------------------------------------------------------------------------- | ----------- | --------------------------------- |
|
||||
| **results** | [**Array<KamiApiJdCookieV1CookieCheckResult>**](KamiApiJdCookieV1CookieCheckResult.md) | 检测结果 | [optional] [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiJdCookieV1BatchCheckRes } from './api';
|
||||
|
||||
const instance: KamiApiJdCookieV1BatchCheckRes = {
|
||||
results
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
19
src/api/generated/docs/KamiApiJdCookieV1BatchCreateReq.md
Normal file
19
src/api/generated/docs/KamiApiJdCookieV1BatchCreateReq.md
Normal file
@@ -0,0 +1,19 @@
|
||||
# KamiApiJdCookieV1BatchCreateReq
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| ----------- | ------------------------------------------------------------------------------------------ | ----------- | ---------------------- |
|
||||
| **cookies** | [**Array<KamiApiJdCookieV1CreateAccountReq>**](KamiApiJdCookieV1CreateAccountReq.md) | Cookie列表 | [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiJdCookieV1BatchCreateReq } from './api';
|
||||
|
||||
const instance: KamiApiJdCookieV1BatchCreateReq = {
|
||||
cookies
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
21
src/api/generated/docs/KamiApiJdCookieV1BatchCreateRes.md
Normal file
21
src/api/generated/docs/KamiApiJdCookieV1BatchCreateRes.md
Normal file
@@ -0,0 +1,21 @@
|
||||
# KamiApiJdCookieV1BatchCreateRes
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| --------------- | ----------------------- | ----------------------- | --------------------------------- |
|
||||
| **successIds** | **Array<string>** | 成功创建的Cookie ID列表 | [optional] [default to undefined] |
|
||||
| **failedCount** | **number** | 失败数量 | [optional] [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiJdCookieV1BatchCreateRes } from './api';
|
||||
|
||||
const instance: KamiApiJdCookieV1BatchCreateRes = {
|
||||
successIds,
|
||||
failedCount
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
@@ -0,0 +1,19 @@
|
||||
# KamiApiJdCookieV1CheckJdOrderPaymentReq
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| --------------- | ---------- | ----------- | ---------------------- |
|
||||
| **jd_order_id** | **string** | 京东订单号 | [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiJdCookieV1CheckJdOrderPaymentReq } from './api';
|
||||
|
||||
const instance: KamiApiJdCookieV1CheckJdOrderPaymentReq = {
|
||||
jd_order_id
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
@@ -0,0 +1,27 @@
|
||||
# KamiApiJdCookieV1CheckJdOrderPaymentRes
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| ------------------ | ----------- | ----------------------------------------- | --------------------------------- |
|
||||
| **jd_order_id** | **string** | 京东订单号 | [optional] [default to undefined] |
|
||||
| **is_paid** | **boolean** | 是否已支付 | [optional] [default to undefined] |
|
||||
| **payment_status** | **number** | 支付状态:1待支付 2已支付 3已过期 4已取消 | [optional] [default to undefined] |
|
||||
| **message** | **string** | 状态描述 | [optional] [default to undefined] |
|
||||
| **can_reuse** | **boolean** | 是否可以复用 | [optional] [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiJdCookieV1CheckJdOrderPaymentRes } from './api';
|
||||
|
||||
const instance: KamiApiJdCookieV1CheckJdOrderPaymentRes = {
|
||||
jd_order_id,
|
||||
is_paid,
|
||||
payment_status,
|
||||
message,
|
||||
can_reuse
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
33
src/api/generated/docs/KamiApiJdCookieV1CookieAccountInfo.md
Normal file
33
src/api/generated/docs/KamiApiJdCookieV1CookieAccountInfo.md
Normal file
@@ -0,0 +1,33 @@
|
||||
# KamiApiJdCookieV1CookieAccountInfo
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| ---------------- | ---------- | ----------------------- | --------------------------------- |
|
||||
| **cookieId** | **string** | Cookie ID | [optional] [default to undefined] |
|
||||
| **accountName** | **string** | 账户名称 | [optional] [default to undefined] |
|
||||
| **status** | **number** | 状态:1正常 2暂停 3失效 | [optional] [default to undefined] |
|
||||
| **failureCount** | **number** | 连续失败次数 | [optional] [default to undefined] |
|
||||
| **lastUsedAt** | **string** | 最后使用时间 | [optional] [default to undefined] |
|
||||
| **suspendUntil** | **string** | 暂停解除时间 | [optional] [default to undefined] |
|
||||
| **createdAt** | **string** | 创建时间 | [optional] [default to undefined] |
|
||||
| **remark** | **string** | 备注信息 | [optional] [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiJdCookieV1CookieAccountInfo } from './api';
|
||||
|
||||
const instance: KamiApiJdCookieV1CookieAccountInfo = {
|
||||
cookieId,
|
||||
accountName,
|
||||
status,
|
||||
failureCount,
|
||||
lastUsedAt,
|
||||
suspendUntil,
|
||||
createdAt,
|
||||
remark
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
23
src/api/generated/docs/KamiApiJdCookieV1CookieCheckResult.md
Normal file
23
src/api/generated/docs/KamiApiJdCookieV1CookieCheckResult.md
Normal file
@@ -0,0 +1,23 @@
|
||||
# KamiApiJdCookieV1CookieCheckResult
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| ------------ | ---------- | ----------- | --------------------------------- |
|
||||
| **cookieId** | **string** | Cookie ID | [optional] [default to undefined] |
|
||||
| **status** | **number** | 状态 | [optional] [default to undefined] |
|
||||
| **message** | **string** | 检测信息 | [optional] [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiJdCookieV1CookieCheckResult } from './api';
|
||||
|
||||
const instance: KamiApiJdCookieV1CookieCheckResult = {
|
||||
cookieId,
|
||||
status,
|
||||
message
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
33
src/api/generated/docs/KamiApiJdCookieV1CookieHistoryInfo.md
Normal file
33
src/api/generated/docs/KamiApiJdCookieV1CookieHistoryInfo.md
Normal file
@@ -0,0 +1,33 @@
|
||||
# KamiApiJdCookieV1CookieHistoryInfo
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| ---------------- | ---------- | ---------------- | --------------------------------- |
|
||||
| **historyUuid** | **string** | 历史记录唯一标识 | [optional] [default to undefined] |
|
||||
| **cookieId** | **string** | Cookie ID | [optional] [default to undefined] |
|
||||
| **changeType** | **string** | 变更类型 | [optional] [default to undefined] |
|
||||
| **statusBefore** | **number** | 变更前状态 | [optional] [default to undefined] |
|
||||
| **statusAfter** | **number** | 变更后状态 | [optional] [default to undefined] |
|
||||
| **userOrderId** | **string** | 关联的订单号 | [optional] [default to undefined] |
|
||||
| **failureCount** | **number** | 失败次数 | [optional] [default to undefined] |
|
||||
| **createdAt** | **string** | 创建时间 | [optional] [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiJdCookieV1CookieHistoryInfo } from './api';
|
||||
|
||||
const instance: KamiApiJdCookieV1CookieHistoryInfo = {
|
||||
historyUuid,
|
||||
cookieId,
|
||||
changeType,
|
||||
statusBefore,
|
||||
statusAfter,
|
||||
userOrderId,
|
||||
failureCount,
|
||||
createdAt
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
25
src/api/generated/docs/KamiApiJdCookieV1CookieHistoryReq.md
Normal file
25
src/api/generated/docs/KamiApiJdCookieV1CookieHistoryReq.md
Normal file
@@ -0,0 +1,25 @@
|
||||
# KamiApiJdCookieV1CookieHistoryReq
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| -------------- | ---------- | ------------ | --------------------------------- |
|
||||
| **cookieId** | **string** | Cookie ID | [default to undefined] |
|
||||
| **page** | **number** | 页码 | [optional] [default to 1] |
|
||||
| **size** | **number** | 每页大小 | [optional] [default to 20] |
|
||||
| **changeType** | **string** | 变更类型筛选 | [optional] [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiJdCookieV1CookieHistoryReq } from './api';
|
||||
|
||||
const instance: KamiApiJdCookieV1CookieHistoryReq = {
|
||||
cookieId,
|
||||
page,
|
||||
size,
|
||||
changeType
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
21
src/api/generated/docs/KamiApiJdCookieV1CookieHistoryRes.md
Normal file
21
src/api/generated/docs/KamiApiJdCookieV1CookieHistoryRes.md
Normal file
@@ -0,0 +1,21 @@
|
||||
# KamiApiJdCookieV1CookieHistoryRes
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| --------- | -------------------------------------------------------------------------------------------- | ------------ | --------------------------------- |
|
||||
| **list** | [**Array<KamiApiJdCookieV1CookieHistoryInfo>**](KamiApiJdCookieV1CookieHistoryInfo.md) | 变更历史列表 | [optional] [default to undefined] |
|
||||
| **total** | **number** | 总数 | [optional] [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiJdCookieV1CookieHistoryRes } from './api';
|
||||
|
||||
const instance: KamiApiJdCookieV1CookieHistoryRes = {
|
||||
list,
|
||||
total
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
23
src/api/generated/docs/KamiApiJdCookieV1CreateAccountReq.md
Normal file
23
src/api/generated/docs/KamiApiJdCookieV1CreateAccountReq.md
Normal file
@@ -0,0 +1,23 @@
|
||||
# KamiApiJdCookieV1CreateAccountReq
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| --------------- | ---------- | ----------- | --------------------------------- |
|
||||
| **cookieValue** | **string** | Cookie内容 | [default to undefined] |
|
||||
| **accountName** | **string** | 账户名称 | [optional] [default to undefined] |
|
||||
| **remark** | **string** | 备注信息 | [optional] [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiJdCookieV1CreateAccountReq } from './api';
|
||||
|
||||
const instance: KamiApiJdCookieV1CreateAccountReq = {
|
||||
cookieValue,
|
||||
accountName,
|
||||
remark
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
21
src/api/generated/docs/KamiApiJdCookieV1CreateAccountRes.md
Normal file
21
src/api/generated/docs/KamiApiJdCookieV1CreateAccountRes.md
Normal file
@@ -0,0 +1,21 @@
|
||||
# KamiApiJdCookieV1CreateAccountRes
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| ------------ | ---------- | -------------- | --------------------------------- |
|
||||
| **cookieId** | **string** | Cookie唯一标识 | [optional] [default to undefined] |
|
||||
| **status** | **number** | 账户状态 | [optional] [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiJdCookieV1CreateAccountRes } from './api';
|
||||
|
||||
const instance: KamiApiJdCookieV1CreateAccountRes = {
|
||||
cookieId,
|
||||
status
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
23
src/api/generated/docs/KamiApiJdCookieV1CreateOrderReq.md
Normal file
23
src/api/generated/docs/KamiApiJdCookieV1CreateOrderReq.md
Normal file
@@ -0,0 +1,23 @@
|
||||
# KamiApiJdCookieV1CreateOrderReq
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| ------------ | ---------- | ----------- | ---------------------- |
|
||||
| **orderId** | **string** | 订单号 | [default to undefined] |
|
||||
| **amount** | **number** | 订单金额 | [default to undefined] |
|
||||
| **category** | **string** | 商品品类 | [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiJdCookieV1CreateOrderReq } from './api';
|
||||
|
||||
const instance: KamiApiJdCookieV1CreateOrderReq = {
|
||||
orderId,
|
||||
amount,
|
||||
category
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
23
src/api/generated/docs/KamiApiJdCookieV1CreateOrderRes.md
Normal file
23
src/api/generated/docs/KamiApiJdCookieV1CreateOrderRes.md
Normal file
@@ -0,0 +1,23 @@
|
||||
# KamiApiJdCookieV1CreateOrderRes
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| -------------- | ---------- | ------------ | --------------------------------- |
|
||||
| **wxPayUrl** | **string** | 微信支付链接 | [optional] [default to undefined] |
|
||||
| **expireTime** | **string** | 链接过期时间 | [optional] [default to undefined] |
|
||||
| **jdOrderId** | **string** | 京东订单号 | [optional] [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiJdCookieV1CreateOrderRes } from './api';
|
||||
|
||||
const instance: KamiApiJdCookieV1CreateOrderRes = {
|
||||
wxPayUrl,
|
||||
expireTime,
|
||||
jdOrderId
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
19
src/api/generated/docs/KamiApiJdCookieV1DeleteAccountReq.md
Normal file
19
src/api/generated/docs/KamiApiJdCookieV1DeleteAccountReq.md
Normal file
@@ -0,0 +1,19 @@
|
||||
# KamiApiJdCookieV1DeleteAccountReq
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| ------------ | ---------- | ----------- | ---------------------- |
|
||||
| **cookieId** | **string** | Cookie ID | [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiJdCookieV1DeleteAccountReq } from './api';
|
||||
|
||||
const instance: KamiApiJdCookieV1DeleteAccountReq = {
|
||||
cookieId
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
19
src/api/generated/docs/KamiApiJdCookieV1GetAccountReq.md
Normal file
19
src/api/generated/docs/KamiApiJdCookieV1GetAccountReq.md
Normal file
@@ -0,0 +1,19 @@
|
||||
# KamiApiJdCookieV1GetAccountReq
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| ------------ | ---------- | ----------- | ---------------------- |
|
||||
| **cookieId** | **string** | Cookie ID | [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiJdCookieV1GetAccountReq } from './api';
|
||||
|
||||
const instance: KamiApiJdCookieV1GetAccountReq = {
|
||||
cookieId
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
19
src/api/generated/docs/KamiApiJdCookieV1GetAccountRes.md
Normal file
19
src/api/generated/docs/KamiApiJdCookieV1GetAccountRes.md
Normal file
@@ -0,0 +1,19 @@
|
||||
# KamiApiJdCookieV1GetAccountRes
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| ----------- | ------------------------------------------------------------------------------- | ----------- | --------------------------------- |
|
||||
| **account** | [**KamiApiJdCookieV1CookieAccountInfo**](KamiApiJdCookieV1CookieAccountInfo.md) | | [optional] [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiJdCookieV1GetAccountRes } from './api';
|
||||
|
||||
const instance: KamiApiJdCookieV1GetAccountRes = {
|
||||
account
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
19
src/api/generated/docs/KamiApiJdCookieV1GetJdOrderReq.md
Normal file
19
src/api/generated/docs/KamiApiJdCookieV1GetJdOrderReq.md
Normal file
@@ -0,0 +1,19 @@
|
||||
# KamiApiJdCookieV1GetJdOrderReq
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| ------------- | ---------- | ----------- | ---------------------- |
|
||||
| **jdOrderId** | **string** | 京东订单号 | [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiJdCookieV1GetJdOrderReq } from './api';
|
||||
|
||||
const instance: KamiApiJdCookieV1GetJdOrderReq = {
|
||||
jdOrderId
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
19
src/api/generated/docs/KamiApiJdCookieV1GetJdOrderRes.md
Normal file
19
src/api/generated/docs/KamiApiJdCookieV1GetJdOrderRes.md
Normal file
@@ -0,0 +1,19 @@
|
||||
# KamiApiJdCookieV1GetJdOrderRes
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| --------- | ------------------------------------------------------------------- | ----------- | --------------------------------- |
|
||||
| **order** | [**KamiApiJdCookieV1JdOrderInfo**](KamiApiJdCookieV1JdOrderInfo.md) | | [optional] [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiJdCookieV1GetJdOrderRes } from './api';
|
||||
|
||||
const instance: KamiApiJdCookieV1GetJdOrderRes = {
|
||||
order
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
19
src/api/generated/docs/KamiApiJdCookieV1GetOrderReq.md
Normal file
19
src/api/generated/docs/KamiApiJdCookieV1GetOrderReq.md
Normal file
@@ -0,0 +1,19 @@
|
||||
# KamiApiJdCookieV1GetOrderReq
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| ----------- | ---------- | ----------- | ---------------------- |
|
||||
| **orderId** | **string** | 订单号 | [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiJdCookieV1GetOrderReq } from './api';
|
||||
|
||||
const instance: KamiApiJdCookieV1GetOrderReq = {
|
||||
orderId
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
19
src/api/generated/docs/KamiApiJdCookieV1GetOrderRes.md
Normal file
19
src/api/generated/docs/KamiApiJdCookieV1GetOrderRes.md
Normal file
@@ -0,0 +1,19 @@
|
||||
# KamiApiJdCookieV1GetOrderRes
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| --------- | --------------------------------------------------------------- | ----------- | --------------------------------- |
|
||||
| **order** | [**KamiApiJdCookieV1OrderInfo**](KamiApiJdCookieV1OrderInfo.md) | | [optional] [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiJdCookieV1GetOrderRes } from './api';
|
||||
|
||||
const instance: KamiApiJdCookieV1GetOrderRes = {
|
||||
order
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
19
src/api/generated/docs/KamiApiJdCookieV1GetOrderStatusReq.md
Normal file
19
src/api/generated/docs/KamiApiJdCookieV1GetOrderStatusReq.md
Normal file
@@ -0,0 +1,19 @@
|
||||
# KamiApiJdCookieV1GetOrderStatusReq
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| ----------- | ---------- | ----------- | ---------------------- |
|
||||
| **orderId** | **string** | 订单号 | [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiJdCookieV1GetOrderStatusReq } from './api';
|
||||
|
||||
const instance: KamiApiJdCookieV1GetOrderStatusReq = {
|
||||
orderId
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
19
src/api/generated/docs/KamiApiJdCookieV1GetOrderStatusRes.md
Normal file
19
src/api/generated/docs/KamiApiJdCookieV1GetOrderStatusRes.md
Normal file
@@ -0,0 +1,19 @@
|
||||
# KamiApiJdCookieV1GetOrderStatusRes
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| --------- | --------------------------------------------------------------- | ----------- | --------------------------------- |
|
||||
| **order** | [**KamiApiJdCookieV1OrderInfo**](KamiApiJdCookieV1OrderInfo.md) | | [optional] [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiJdCookieV1GetOrderStatusRes } from './api';
|
||||
|
||||
const instance: KamiApiJdCookieV1GetOrderStatusRes = {
|
||||
order
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
19
src/api/generated/docs/KamiApiJdCookieV1GetPaymentUrlReq.md
Normal file
19
src/api/generated/docs/KamiApiJdCookieV1GetPaymentUrlReq.md
Normal file
@@ -0,0 +1,19 @@
|
||||
# KamiApiJdCookieV1GetPaymentUrlReq
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| ----------- | ---------- | ----------- | ---------------------- |
|
||||
| **orderId** | **string** | 订单号 | [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiJdCookieV1GetPaymentUrlReq } from './api';
|
||||
|
||||
const instance: KamiApiJdCookieV1GetPaymentUrlReq = {
|
||||
orderId
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
21
src/api/generated/docs/KamiApiJdCookieV1GetPaymentUrlRes.md
Normal file
21
src/api/generated/docs/KamiApiJdCookieV1GetPaymentUrlRes.md
Normal file
@@ -0,0 +1,21 @@
|
||||
# KamiApiJdCookieV1GetPaymentUrlRes
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| -------------- | ---------- | ------------ | --------------------------------- |
|
||||
| **wxPayUrl** | **string** | 微信支付链接 | [optional] [default to undefined] |
|
||||
| **expireTime** | **string** | 链接过期时间 | [optional] [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiJdCookieV1GetPaymentUrlRes } from './api';
|
||||
|
||||
const instance: KamiApiJdCookieV1GetPaymentUrlRes = {
|
||||
wxPayUrl,
|
||||
expireTime
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
33
src/api/generated/docs/KamiApiJdCookieV1JdOrderInfo.md
Normal file
33
src/api/generated/docs/KamiApiJdCookieV1JdOrderInfo.md
Normal file
@@ -0,0 +1,33 @@
|
||||
# KamiApiJdCookieV1JdOrderInfo
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| ------------- | ---------- | ------------------------------------- | --------------------------------- |
|
||||
| **jdOrderId** | **string** | 京东订单号 | [optional] [default to undefined] |
|
||||
| **orderId** | **string** | 关联的内部订单号 | [optional] [default to undefined] |
|
||||
| **amount** | **number** | 订单金额 | [optional] [default to undefined] |
|
||||
| **category** | **string** | 商品品类 | [optional] [default to undefined] |
|
||||
| **status** | **number** | 状态:1待支付 2已支付 3已过期 4已取消 | [optional] [default to undefined] |
|
||||
| **paidAt** | **string** | 支付时间 | [optional] [default to undefined] |
|
||||
| **createdAt** | **string** | 创建时间 | [optional] [default to undefined] |
|
||||
| **updatedAt** | **string** | 更新时间 | [optional] [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiJdCookieV1JdOrderInfo } from './api';
|
||||
|
||||
const instance: KamiApiJdCookieV1JdOrderInfo = {
|
||||
jdOrderId,
|
||||
orderId,
|
||||
amount,
|
||||
category,
|
||||
status,
|
||||
paidAt,
|
||||
createdAt,
|
||||
updatedAt
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
25
src/api/generated/docs/KamiApiJdCookieV1ListAccountReq.md
Normal file
25
src/api/generated/docs/KamiApiJdCookieV1ListAccountReq.md
Normal file
@@ -0,0 +1,25 @@
|
||||
# KamiApiJdCookieV1ListAccountReq
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| ----------- | ---------- | ----------- | --------------------------------- |
|
||||
| **page** | **number** | 页码 | [optional] [default to 1] |
|
||||
| **size** | **number** | 每页大小 | [optional] [default to 20] |
|
||||
| **status** | **number** | 状态筛选 | [optional] [default to undefined] |
|
||||
| **keyword** | **string** | 关键字搜索 | [optional] [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiJdCookieV1ListAccountReq } from './api';
|
||||
|
||||
const instance: KamiApiJdCookieV1ListAccountReq = {
|
||||
page,
|
||||
size,
|
||||
status,
|
||||
keyword
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
21
src/api/generated/docs/KamiApiJdCookieV1ListAccountRes.md
Normal file
21
src/api/generated/docs/KamiApiJdCookieV1ListAccountRes.md
Normal file
@@ -0,0 +1,21 @@
|
||||
# KamiApiJdCookieV1ListAccountRes
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| --------- | -------------------------------------------------------------------------------------------- | ----------- | --------------------------------- |
|
||||
| **list** | [**Array<KamiApiJdCookieV1CookieAccountInfo>**](KamiApiJdCookieV1CookieAccountInfo.md) | Cookie列表 | [optional] [default to undefined] |
|
||||
| **total** | **number** | 总数 | [optional] [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiJdCookieV1ListAccountRes } from './api';
|
||||
|
||||
const instance: KamiApiJdCookieV1ListAccountRes = {
|
||||
list,
|
||||
total
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
27
src/api/generated/docs/KamiApiJdCookieV1ListOrderReq.md
Normal file
27
src/api/generated/docs/KamiApiJdCookieV1ListOrderReq.md
Normal file
@@ -0,0 +1,27 @@
|
||||
# KamiApiJdCookieV1ListOrderReq
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| ------------- | ---------- | ----------- | --------------------------------- |
|
||||
| **page** | **number** | 页码 | [optional] [default to 1] |
|
||||
| **size** | **number** | 每页大小 | [optional] [default to 20] |
|
||||
| **status** | **number** | 状态筛选 | [optional] [default to undefined] |
|
||||
| **startTime** | **string** | 开始时间 | [optional] [default to undefined] |
|
||||
| **endTime** | **string** | 结束时间 | [optional] [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiJdCookieV1ListOrderReq } from './api';
|
||||
|
||||
const instance: KamiApiJdCookieV1ListOrderReq = {
|
||||
page,
|
||||
size,
|
||||
status,
|
||||
startTime,
|
||||
endTime
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
21
src/api/generated/docs/KamiApiJdCookieV1ListOrderRes.md
Normal file
21
src/api/generated/docs/KamiApiJdCookieV1ListOrderRes.md
Normal file
@@ -0,0 +1,21 @@
|
||||
# KamiApiJdCookieV1ListOrderRes
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| --------- | ---------------------------------------------------------------------------- | ----------- | --------------------------------- |
|
||||
| **list** | [**Array<KamiApiJdCookieV1OrderInfo>**](KamiApiJdCookieV1OrderInfo.md) | 订单列表 | [optional] [default to undefined] |
|
||||
| **total** | **number** | 总数 | [optional] [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiJdCookieV1ListOrderRes } from './api';
|
||||
|
||||
const instance: KamiApiJdCookieV1ListOrderRes = {
|
||||
list,
|
||||
total
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
29
src/api/generated/docs/KamiApiJdCookieV1OrderHistoryInfo.md
Normal file
29
src/api/generated/docs/KamiApiJdCookieV1OrderHistoryInfo.md
Normal file
@@ -0,0 +1,29 @@
|
||||
# KamiApiJdCookieV1OrderHistoryInfo
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| --------------- | ---------- | ---------------- | --------------------------------- |
|
||||
| **historyUuid** | **string** | 历史记录唯一标识 | [optional] [default to undefined] |
|
||||
| **orderId** | **string** | 订单号 | [optional] [default to undefined] |
|
||||
| **changeType** | **string** | 变更类型 | [optional] [default to undefined] |
|
||||
| **jdOrderId** | **string** | 关联的京东订单号 | [optional] [default to undefined] |
|
||||
| **wxPayUrl** | **string** | 微信支付链接 | [optional] [default to undefined] |
|
||||
| **createdAt** | **string** | 创建时间 | [optional] [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiJdCookieV1OrderHistoryInfo } from './api';
|
||||
|
||||
const instance: KamiApiJdCookieV1OrderHistoryInfo = {
|
||||
historyUuid,
|
||||
orderId,
|
||||
changeType,
|
||||
jdOrderId,
|
||||
wxPayUrl,
|
||||
createdAt
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
25
src/api/generated/docs/KamiApiJdCookieV1OrderHistoryReq.md
Normal file
25
src/api/generated/docs/KamiApiJdCookieV1OrderHistoryReq.md
Normal file
@@ -0,0 +1,25 @@
|
||||
# KamiApiJdCookieV1OrderHistoryReq
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| ------------- | ---------- | ----------------- | -------------------------- |
|
||||
| **orderId** | **string** | 订单号 | [default to undefined] |
|
||||
| **orderType** | **string** | 订单类型(user/jd) | [default to undefined] |
|
||||
| **page** | **number** | 页码 | [optional] [default to 1] |
|
||||
| **size** | **number** | 每页大小 | [optional] [default to 20] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiJdCookieV1OrderHistoryReq } from './api';
|
||||
|
||||
const instance: KamiApiJdCookieV1OrderHistoryReq = {
|
||||
orderId,
|
||||
orderType,
|
||||
page,
|
||||
size
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
21
src/api/generated/docs/KamiApiJdCookieV1OrderHistoryRes.md
Normal file
21
src/api/generated/docs/KamiApiJdCookieV1OrderHistoryRes.md
Normal file
@@ -0,0 +1,21 @@
|
||||
# KamiApiJdCookieV1OrderHistoryRes
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| --------- | ------------------------------------------------------------------------------------------ | ------------ | --------------------------------- |
|
||||
| **list** | [**Array<KamiApiJdCookieV1OrderHistoryInfo>**](KamiApiJdCookieV1OrderHistoryInfo.md) | 变更历史列表 | [optional] [default to undefined] |
|
||||
| **total** | **number** | 总数 | [optional] [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiJdCookieV1OrderHistoryRes } from './api';
|
||||
|
||||
const instance: KamiApiJdCookieV1OrderHistoryRes = {
|
||||
list,
|
||||
total
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
33
src/api/generated/docs/KamiApiJdCookieV1OrderInfo.md
Normal file
33
src/api/generated/docs/KamiApiJdCookieV1OrderInfo.md
Normal file
@@ -0,0 +1,33 @@
|
||||
# KamiApiJdCookieV1OrderInfo
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| ----------------- | ---------- | ------------------------------------- | --------------------------------- |
|
||||
| **orderId** | **string** | 订单号 | [optional] [default to undefined] |
|
||||
| **amount** | **number** | 订单金额 | [optional] [default to undefined] |
|
||||
| **category** | **string** | 商品品类 | [optional] [default to undefined] |
|
||||
| **jdOrderId** | **string** | 关联的京东订单号 | [optional] [default to undefined] |
|
||||
| **status** | **number** | 状态:1待支付 2已支付 3已过期 4已取消 | [optional] [default to undefined] |
|
||||
| **wxPayUrl** | **string** | 当前有效的微信支付链接 | [optional] [default to undefined] |
|
||||
| **lastRequestAt** | **string** | 最后请求时间 | [optional] [default to undefined] |
|
||||
| **createdAt** | **string** | 创建时间 | [optional] [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiJdCookieV1OrderInfo } from './api';
|
||||
|
||||
const instance: KamiApiJdCookieV1OrderInfo = {
|
||||
orderId,
|
||||
amount,
|
||||
category,
|
||||
jdOrderId,
|
||||
status,
|
||||
wxPayUrl,
|
||||
lastRequestAt,
|
||||
createdAt
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
27
src/api/generated/docs/KamiApiJdCookieV1UpdateAccountReq.md
Normal file
27
src/api/generated/docs/KamiApiJdCookieV1UpdateAccountReq.md
Normal file
@@ -0,0 +1,27 @@
|
||||
# KamiApiJdCookieV1UpdateAccountReq
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| --------------- | ---------- | ----------- | --------------------------------- |
|
||||
| **cookieId** | **string** | Cookie ID | [default to undefined] |
|
||||
| **cookieValue** | **string** | Cookie内容 | [optional] [default to undefined] |
|
||||
| **accountName** | **string** | 账户名称 | [optional] [default to undefined] |
|
||||
| **status** | **number** | 状态 | [optional] [default to undefined] |
|
||||
| **remark** | **string** | 备注信息 | [optional] [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiJdCookieV1UpdateAccountReq } from './api';
|
||||
|
||||
const instance: KamiApiJdCookieV1UpdateAccountReq = {
|
||||
cookieId,
|
||||
cookieValue,
|
||||
accountName,
|
||||
status,
|
||||
remark
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
@@ -1,37 +0,0 @@
|
||||
# KamiInternalModelEntityV1CardRedeemCookieInfo
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| ------------- | ---------- | ----------- | --------------------------------- |
|
||||
| **id** | **number** | | [optional] [default to undefined] |
|
||||
| **name** | **string** | | [optional] [default to undefined] |
|
||||
| **cookie** | **string** | | [optional] [default to undefined] |
|
||||
| **notes** | **string** | | [optional] [default to undefined] |
|
||||
| **status** | **string** | | [optional] [default to undefined] |
|
||||
| **category** | **string** | | [optional] [default to undefined] |
|
||||
| **failCount** | **number** | 调用次数 | [optional] [default to undefined] |
|
||||
| **createdAt** | **string** | | [optional] [default to undefined] |
|
||||
| **updatedAt** | **string** | | [optional] [default to undefined] |
|
||||
| **deletedAt** | **string** | | [optional] [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiInternalModelEntityV1CardRedeemCookieInfo } from './api';
|
||||
|
||||
const instance: KamiInternalModelEntityV1CardRedeemCookieInfo = {
|
||||
id,
|
||||
name,
|
||||
cookie,
|
||||
notes,
|
||||
status,
|
||||
category,
|
||||
failCount,
|
||||
createdAt,
|
||||
updatedAt,
|
||||
deletedAt
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
@@ -1,51 +0,0 @@
|
||||
# KamiInternalModelEntityV1CardRedeemCookieOrderJd
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| ------------------- | ---------- | ----------- | --------------------------------- |
|
||||
| **id** | **number** | | [optional] [default to undefined] |
|
||||
| **cookieOrderId** | **number** | 订单 id | [optional] [default to undefined] |
|
||||
| **cookieAccountId** | **number** | cookieid | [optional] [default to undefined] |
|
||||
| **responseData** | **string** | 返回值 | [optional] [default to undefined] |
|
||||
| **status** | **string** | | [optional] [default to undefined] |
|
||||
| **payId** | **string** | | [optional] [default to undefined] |
|
||||
| **webPayLink** | **string** | | [optional] [default to undefined] |
|
||||
| **clientPayLink** | **string** | | [optional] [default to undefined] |
|
||||
| **orderNo** | **string** | | [optional] [default to undefined] |
|
||||
| **userAgent** | **string** | | [optional] [default to undefined] |
|
||||
| **userClient** | **string** | | [optional] [default to undefined] |
|
||||
| **note** | **string** | | [optional] [default to undefined] |
|
||||
| **createdAt** | **string** | | [optional] [default to undefined] |
|
||||
| **updatedAt** | **string** | | [optional] [default to undefined] |
|
||||
| **deletedAt** | **string** | | [optional] [default to undefined] |
|
||||
| **cardNo** | **string** | | [optional] [default to undefined] |
|
||||
| **cardPassword** | **string** | | [optional] [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiInternalModelEntityV1CardRedeemCookieOrderJd } from './api';
|
||||
|
||||
const instance: KamiInternalModelEntityV1CardRedeemCookieOrderJd = {
|
||||
id,
|
||||
cookieOrderId,
|
||||
cookieAccountId,
|
||||
responseData,
|
||||
status,
|
||||
payId,
|
||||
webPayLink,
|
||||
clientPayLink,
|
||||
orderNo,
|
||||
userAgent,
|
||||
userClient,
|
||||
note,
|
||||
createdAt,
|
||||
updatedAt,
|
||||
deletedAt,
|
||||
cardNo,
|
||||
cardPassword
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
@@ -201,26 +201,48 @@ export * from './kami-api-card-info-walmart-v1-stats-overview-res';
|
||||
export * from './kami-api-card-info-walmart-v1-submit-req';
|
||||
export * from './kami-api-card-info-walmart-v1-v1-card-redeem-account-group-entity';
|
||||
export * from './kami-api-card-info-walmart-v1-v1-card-redeem-account-group-entity-account';
|
||||
export * from './kami-api-card-redeem-jd-v1-account-add-req';
|
||||
export * from './kami-api-card-redeem-jd-v1-account-delete-req';
|
||||
export * from './kami-api-card-redeem-jd-v1-account-get-req';
|
||||
export * from './kami-api-card-redeem-jd-v1-account-get-res';
|
||||
export * from './kami-api-card-redeem-jd-v1-account-list-req';
|
||||
export * from './kami-api-card-redeem-jd-v1-account-list-res';
|
||||
export * from './kami-api-card-redeem-jd-v1-account-status-req';
|
||||
export * from './kami-api-card-redeem-jd-v1-account-update-req';
|
||||
export * from './kami-api-card-redeem-jd-v1-cookie-info';
|
||||
export * from './kami-api-card-redeem-jd-v1-order-list-req';
|
||||
export * from './kami-api-card-redeem-jd-v1-order-list-res';
|
||||
export * from './kami-api-card-redeem-jd-v1-order-list-schema';
|
||||
export * from './kami-api-card-redeem-jd-v1-place-order-req';
|
||||
export * from './kami-api-card-redeem-jd-v1-place-order-res';
|
||||
export * from './kami-api-channel-v2-entrance-create-req';
|
||||
export * from './kami-api-channel-v2-entrance-delete-req';
|
||||
export * from './kami-api-channel-v2-entrance-list-req';
|
||||
export * from './kami-api-channel-v2-entrance-list-res';
|
||||
export * from './kami-api-channel-v2-entrance-params';
|
||||
export * from './kami-api-channel-v2-entrance-update-req';
|
||||
export * from './kami-api-jd-cookie-v1-batch-check-req';
|
||||
export * from './kami-api-jd-cookie-v1-batch-check-res';
|
||||
export * from './kami-api-jd-cookie-v1-batch-create-req';
|
||||
export * from './kami-api-jd-cookie-v1-batch-create-res';
|
||||
export * from './kami-api-jd-cookie-v1-check-jd-order-payment-req';
|
||||
export * from './kami-api-jd-cookie-v1-check-jd-order-payment-res';
|
||||
export * from './kami-api-jd-cookie-v1-cookie-account-info';
|
||||
export * from './kami-api-jd-cookie-v1-cookie-check-result';
|
||||
export * from './kami-api-jd-cookie-v1-cookie-history-info';
|
||||
export * from './kami-api-jd-cookie-v1-cookie-history-req';
|
||||
export * from './kami-api-jd-cookie-v1-cookie-history-res';
|
||||
export * from './kami-api-jd-cookie-v1-create-account-req';
|
||||
export * from './kami-api-jd-cookie-v1-create-account-res';
|
||||
export * from './kami-api-jd-cookie-v1-create-order-req';
|
||||
export * from './kami-api-jd-cookie-v1-create-order-res';
|
||||
export * from './kami-api-jd-cookie-v1-delete-account-req';
|
||||
export * from './kami-api-jd-cookie-v1-get-account-req';
|
||||
export * from './kami-api-jd-cookie-v1-get-account-res';
|
||||
export * from './kami-api-jd-cookie-v1-get-jd-order-req';
|
||||
export * from './kami-api-jd-cookie-v1-get-jd-order-res';
|
||||
export * from './kami-api-jd-cookie-v1-get-order-req';
|
||||
export * from './kami-api-jd-cookie-v1-get-order-res';
|
||||
export * from './kami-api-jd-cookie-v1-get-order-status-req';
|
||||
export * from './kami-api-jd-cookie-v1-get-order-status-res';
|
||||
export * from './kami-api-jd-cookie-v1-get-payment-url-req';
|
||||
export * from './kami-api-jd-cookie-v1-get-payment-url-res';
|
||||
export * from './kami-api-jd-cookie-v1-jd-order-info';
|
||||
export * from './kami-api-jd-cookie-v1-list-account-req';
|
||||
export * from './kami-api-jd-cookie-v1-list-account-res';
|
||||
export * from './kami-api-jd-cookie-v1-list-order-req';
|
||||
export * from './kami-api-jd-cookie-v1-list-order-res';
|
||||
export * from './kami-api-jd-cookie-v1-order-history-info';
|
||||
export * from './kami-api-jd-cookie-v1-order-history-req';
|
||||
export * from './kami-api-jd-cookie-v1-order-history-res';
|
||||
export * from './kami-api-jd-cookie-v1-order-info';
|
||||
export * from './kami-api-jd-cookie-v1-update-account-req';
|
||||
export * from './kami-api-merchant-v1-merchant-all-list-res';
|
||||
export * from './kami-api-merchant-v1-merchant-config-add-req';
|
||||
export * from './kami-api-merchant-v1-merchant-config-detail-req';
|
||||
@@ -330,8 +352,6 @@ export * from './kami-internal-model-entity-v1-card-apple-history-info';
|
||||
export * from './kami-internal-model-entity-v1-card-apple-recharge-info';
|
||||
export * from './kami-internal-model-entity-v1-card-redeem-account-group';
|
||||
export * from './kami-internal-model-entity-v1-card-redeem-account-history';
|
||||
export * from './kami-internal-model-entity-v1-card-redeem-cookie-info';
|
||||
export * from './kami-internal-model-entity-v1-card-redeem-cookie-order-jd';
|
||||
export * from './kami-internal-model-entity-v1-card-redeem-order-history';
|
||||
export * from './kami-internal-model-entity-v1-card-redeem-order-info';
|
||||
export * from './kami-internal-model-entity-v1-merchant-hidden-record';
|
||||
|
||||
@@ -12,28 +12,8 @@
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
/**
|
||||
*
|
||||
* @export
|
||||
* @interface KamiApiCardInfoAppleV1AppleCardListRecordUploadUser
|
||||
*/
|
||||
export interface KamiApiCardInfoAppleV1AppleCardListRecordUploadUser {
|
||||
/**
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof KamiApiCardInfoAppleV1AppleCardListRecordUploadUser
|
||||
*/
|
||||
id?: string;
|
||||
/**
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof KamiApiCardInfoAppleV1AppleCardListRecordUploadUser
|
||||
*/
|
||||
username?: string;
|
||||
/**
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof KamiApiCardInfoAppleV1AppleCardListRecordUploadUser
|
||||
*/
|
||||
nickname?: string;
|
||||
}
|
||||
|
||||
@@ -16,118 +16,68 @@
|
||||
// @ts-ignore
|
||||
import type { KamiApiCardInfoAppleV1AppleCardListRecordUploadUser } from './kami-api-card-info-apple-v1-apple-card-list-record-upload-user';
|
||||
|
||||
/**
|
||||
*
|
||||
* @export
|
||||
* @interface KamiApiCardInfoAppleV1AppleCardListRecord
|
||||
*/
|
||||
export interface KamiApiCardInfoAppleV1AppleCardListRecord {
|
||||
/**
|
||||
* 主键
|
||||
* @type {string}
|
||||
* @memberof KamiApiCardInfoAppleV1AppleCardListRecord
|
||||
*/
|
||||
id?: string;
|
||||
/**
|
||||
* 账户
|
||||
* @type {string}
|
||||
* @memberof KamiApiCardInfoAppleV1AppleCardListRecord
|
||||
*/
|
||||
account?: string;
|
||||
/**
|
||||
* 密码
|
||||
* @type {string}
|
||||
* @memberof KamiApiCardInfoAppleV1AppleCardListRecord
|
||||
*/
|
||||
password?: string;
|
||||
/**
|
||||
* 余额
|
||||
* @type {number}
|
||||
* @memberof KamiApiCardInfoAppleV1AppleCardListRecord
|
||||
*/
|
||||
balance?: number;
|
||||
/**
|
||||
* itunes充值后余额
|
||||
* @type {number}
|
||||
* @memberof KamiApiCardInfoAppleV1AppleCardListRecord
|
||||
*/
|
||||
balanceItunes?: number;
|
||||
/**
|
||||
* 状态 0.停用 1.正常使用(待充值) 2.正在充值 3.已达到单日充值限制
|
||||
* @type {number}
|
||||
* @memberof KamiApiCardInfoAppleV1AppleCardListRecord
|
||||
*/
|
||||
status?: number;
|
||||
/**
|
||||
* 今日充值金额,临时字段,方便查询
|
||||
* @type {number}
|
||||
* @memberof KamiApiCardInfoAppleV1AppleCardListRecord
|
||||
*/
|
||||
todayRechargeAmount?: number;
|
||||
/**
|
||||
* 今日充值笔数,临时字段,方便查询
|
||||
* @type {number}
|
||||
* @memberof KamiApiCardInfoAppleV1AppleCardListRecord
|
||||
*/
|
||||
todayRechargeCount?: number;
|
||||
/**
|
||||
* 今日日期,临时字段,方便查询
|
||||
* @type {string}
|
||||
* @memberof KamiApiCardInfoAppleV1AppleCardListRecord
|
||||
*/
|
||||
todayRechargeDatetime?: string;
|
||||
/**
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof KamiApiCardInfoAppleV1AppleCardListRecord
|
||||
*/
|
||||
createdUserId?: string;
|
||||
/**
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof KamiApiCardInfoAppleV1AppleCardListRecord
|
||||
*/
|
||||
createdUserRole?: string;
|
||||
/**
|
||||
* 最大充值限制金额
|
||||
* @type {number}
|
||||
* @memberof KamiApiCardInfoAppleV1AppleCardListRecord
|
||||
*/
|
||||
maxAmountLimit?: number;
|
||||
/**
|
||||
* 最大充值限制次数
|
||||
* @type {number}
|
||||
* @memberof KamiApiCardInfoAppleV1AppleCardListRecord
|
||||
*/
|
||||
maxCountLimit?: number;
|
||||
/**
|
||||
* 备注
|
||||
* @type {string}
|
||||
* @memberof KamiApiCardInfoAppleV1AppleCardListRecord
|
||||
*/
|
||||
remark?: string;
|
||||
/**
|
||||
* 创建日期
|
||||
* @type {string}
|
||||
* @memberof KamiApiCardInfoAppleV1AppleCardListRecord
|
||||
*/
|
||||
createdAt?: string;
|
||||
/**
|
||||
* 更新日期
|
||||
* @type {string}
|
||||
* @memberof KamiApiCardInfoAppleV1AppleCardListRecord
|
||||
*/
|
||||
updatedAt?: string;
|
||||
/**
|
||||
* 删除日期
|
||||
* @type {string}
|
||||
* @memberof KamiApiCardInfoAppleV1AppleCardListRecord
|
||||
*/
|
||||
deletedAt?: string;
|
||||
/**
|
||||
*
|
||||
* @type {KamiApiCardInfoAppleV1AppleCardListRecordUploadUser}
|
||||
* @memberof KamiApiCardInfoAppleV1AppleCardListRecord
|
||||
*/
|
||||
uploadUser?: KamiApiCardInfoAppleV1AppleCardListRecordUploadUser;
|
||||
}
|
||||
|
||||
@@ -12,22 +12,13 @@
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
/**
|
||||
*
|
||||
* @export
|
||||
* @interface KamiApiCardInfoAppleV1CallBackOrderManualReq
|
||||
*/
|
||||
export interface KamiApiCardInfoAppleV1CallBackOrderManualReq {
|
||||
/**
|
||||
* 订单ID
|
||||
* @type {string}
|
||||
* @memberof KamiApiCardInfoAppleV1CallBackOrderManualReq
|
||||
*/
|
||||
orderNo: string;
|
||||
/**
|
||||
* 充值ID
|
||||
* @type {number}
|
||||
* @memberof KamiApiCardInfoAppleV1CallBackOrderManualReq
|
||||
*/
|
||||
id?: number;
|
||||
}
|
||||
|
||||
@@ -12,42 +12,25 @@
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
/**
|
||||
*
|
||||
* @export
|
||||
* @interface KamiApiCardInfoAppleV1CardHistoryInfoListReq
|
||||
*/
|
||||
export interface KamiApiCardInfoAppleV1CardHistoryInfoListReq {
|
||||
/**
|
||||
* 页数
|
||||
* @type {number}
|
||||
* @memberof KamiApiCardInfoAppleV1CardHistoryInfoListReq
|
||||
*/
|
||||
current: number;
|
||||
/**
|
||||
* 页码
|
||||
* @type {number}
|
||||
* @memberof KamiApiCardInfoAppleV1CardHistoryInfoListReq
|
||||
*/
|
||||
pageSize: KamiApiCardInfoAppleV1CardHistoryInfoListReqPageSizeEnum;
|
||||
/**
|
||||
* 苹果账户名
|
||||
* @type {string}
|
||||
* @memberof KamiApiCardInfoAppleV1CardHistoryInfoListReq
|
||||
*/
|
||||
accountName?: string;
|
||||
/**
|
||||
* 苹果账户ID
|
||||
* @type {string}
|
||||
* @memberof KamiApiCardInfoAppleV1CardHistoryInfoListReq
|
||||
*/
|
||||
accountId?: string;
|
||||
}
|
||||
|
||||
/**
|
||||
* @export
|
||||
* @enum {string}
|
||||
*/
|
||||
export enum KamiApiCardInfoAppleV1CardHistoryInfoListReqPageSizeEnum {
|
||||
NUMBER_5 = 5,
|
||||
NUMBER_10 = 10,
|
||||
|
||||
@@ -16,22 +16,7 @@
|
||||
// @ts-ignore
|
||||
import type { KamiApiCardInfoAppleV1CardHistoryModel } from './kami-api-card-info-apple-v1-card-history-model';
|
||||
|
||||
/**
|
||||
*
|
||||
* @export
|
||||
* @interface KamiApiCardInfoAppleV1CardHistoryInfoListRes
|
||||
*/
|
||||
export interface KamiApiCardInfoAppleV1CardHistoryInfoListRes {
|
||||
/**
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof KamiApiCardInfoAppleV1CardHistoryInfoListRes
|
||||
*/
|
||||
total?: number;
|
||||
/**
|
||||
*
|
||||
* @type {Array<KamiApiCardInfoAppleV1CardHistoryModel>}
|
||||
* @memberof KamiApiCardInfoAppleV1CardHistoryInfoListRes
|
||||
*/
|
||||
list?: Array<KamiApiCardInfoAppleV1CardHistoryModel>;
|
||||
}
|
||||
|
||||
@@ -12,70 +12,45 @@
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
/**
|
||||
*
|
||||
* @export
|
||||
* @interface KamiApiCardInfoAppleV1CardHistoryModel
|
||||
*/
|
||||
export interface KamiApiCardInfoAppleV1CardHistoryModel {
|
||||
/**
|
||||
* 账户ID
|
||||
* @type {string}
|
||||
* @memberof KamiApiCardInfoAppleV1CardHistoryModel
|
||||
*/
|
||||
accountId?: string;
|
||||
/**
|
||||
* 账户
|
||||
* @type {string}
|
||||
* @memberof KamiApiCardInfoAppleV1CardHistoryModel
|
||||
*/
|
||||
accountName?: string;
|
||||
/**
|
||||
* 订单号
|
||||
* @type {string}
|
||||
* @memberof KamiApiCardInfoAppleV1CardHistoryModel
|
||||
*/
|
||||
orderNo?: string;
|
||||
/**
|
||||
* 余额(itunes)
|
||||
* @type {number}
|
||||
* @memberof KamiApiCardInfoAppleV1CardHistoryModel
|
||||
*/
|
||||
balanceBeforeItunes?: number;
|
||||
/**
|
||||
* 余额增长后(itunes)
|
||||
* @type {number}
|
||||
* @memberof KamiApiCardInfoAppleV1CardHistoryModel
|
||||
*/
|
||||
balanceAfterItunes?: number;
|
||||
/**
|
||||
* 余额(自动计算)
|
||||
* @type {number}
|
||||
* @memberof KamiApiCardInfoAppleV1CardHistoryModel
|
||||
*/
|
||||
balanceBeforeAutoIncrement?: number;
|
||||
/**
|
||||
* 余额增长后(自动计算)
|
||||
* @type {number}
|
||||
* @memberof KamiApiCardInfoAppleV1CardHistoryModel
|
||||
*/
|
||||
balanceAfterAutoIncrement?: number;
|
||||
/**
|
||||
* 充值金额
|
||||
* @type {number}
|
||||
* @memberof KamiApiCardInfoAppleV1CardHistoryModel
|
||||
*/
|
||||
amount?: number;
|
||||
/**
|
||||
* 描述
|
||||
* @type {string}
|
||||
* @memberof KamiApiCardInfoAppleV1CardHistoryModel
|
||||
*/
|
||||
description?: string;
|
||||
/**
|
||||
* 创建时间
|
||||
* @type {string}
|
||||
* @memberof KamiApiCardInfoAppleV1CardHistoryModel
|
||||
*/
|
||||
createdAt?: string;
|
||||
}
|
||||
|
||||
@@ -12,16 +12,9 @@
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
/**
|
||||
*
|
||||
* @export
|
||||
* @interface KamiApiCardInfoAppleV1CardInfoBatchAddFromXlsxReq
|
||||
*/
|
||||
export interface KamiApiCardInfoAppleV1CardInfoBatchAddFromXlsxReq {
|
||||
/**
|
||||
* 选择上传文件
|
||||
* @type {any}
|
||||
* @memberof KamiApiCardInfoAppleV1CardInfoBatchAddFromXlsxReq
|
||||
*/
|
||||
file: any;
|
||||
}
|
||||
|
||||
@@ -12,16 +12,9 @@
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
/**
|
||||
*
|
||||
* @export
|
||||
* @interface KamiApiCardInfoAppleV1CardInfoBatchAddFromXlsxRes
|
||||
*/
|
||||
export interface KamiApiCardInfoAppleV1CardInfoBatchAddFromXlsxRes {
|
||||
/**
|
||||
* 导入结果
|
||||
* @type {string}
|
||||
* @memberof KamiApiCardInfoAppleV1CardInfoBatchAddFromXlsxRes
|
||||
*/
|
||||
msg?: string;
|
||||
}
|
||||
|
||||
@@ -12,40 +12,25 @@
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
/**
|
||||
*
|
||||
* @export
|
||||
* @interface KamiApiCardInfoAppleV1CardInfoCreateReq
|
||||
*/
|
||||
export interface KamiApiCardInfoAppleV1CardInfoCreateReq {
|
||||
/**
|
||||
* 账户
|
||||
* @type {string}
|
||||
* @memberof KamiApiCardInfoAppleV1CardInfoCreateReq
|
||||
*/
|
||||
account: string;
|
||||
/**
|
||||
* 密码
|
||||
* @type {string}
|
||||
* @memberof KamiApiCardInfoAppleV1CardInfoCreateReq
|
||||
*/
|
||||
password: string;
|
||||
/**
|
||||
* 最大充值金额
|
||||
* @type {number}
|
||||
* @memberof KamiApiCardInfoAppleV1CardInfoCreateReq
|
||||
*/
|
||||
maxAmountLimit: number;
|
||||
/**
|
||||
* 最大充值次数
|
||||
* @type {number}
|
||||
* @memberof KamiApiCardInfoAppleV1CardInfoCreateReq
|
||||
*/
|
||||
maxCountLimit: number;
|
||||
/**
|
||||
* 备注
|
||||
* @type {string}
|
||||
* @memberof KamiApiCardInfoAppleV1CardInfoCreateReq
|
||||
*/
|
||||
remark?: string;
|
||||
}
|
||||
|
||||
@@ -12,16 +12,6 @@
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
/**
|
||||
*
|
||||
* @export
|
||||
* @interface KamiApiCardInfoAppleV1CardInfoDeleteReq
|
||||
*/
|
||||
export interface KamiApiCardInfoAppleV1CardInfoDeleteReq {
|
||||
/**
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof KamiApiCardInfoAppleV1CardInfoDeleteReq
|
||||
*/
|
||||
id: string;
|
||||
}
|
||||
|
||||
@@ -12,36 +12,21 @@
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
/**
|
||||
*
|
||||
* @export
|
||||
* @interface KamiApiCardInfoAppleV1CardInfoListReq
|
||||
*/
|
||||
export interface KamiApiCardInfoAppleV1CardInfoListReq {
|
||||
/**
|
||||
* 账户
|
||||
* @type {string}
|
||||
* @memberof KamiApiCardInfoAppleV1CardInfoListReq
|
||||
*/
|
||||
account?: string;
|
||||
/**
|
||||
* 页数
|
||||
* @type {number}
|
||||
* @memberof KamiApiCardInfoAppleV1CardInfoListReq
|
||||
*/
|
||||
current: number;
|
||||
/**
|
||||
* 页码
|
||||
* @type {number}
|
||||
* @memberof KamiApiCardInfoAppleV1CardInfoListReq
|
||||
*/
|
||||
pageSize: KamiApiCardInfoAppleV1CardInfoListReqPageSizeEnum;
|
||||
}
|
||||
|
||||
/**
|
||||
* @export
|
||||
* @enum {string}
|
||||
*/
|
||||
export enum KamiApiCardInfoAppleV1CardInfoListReqPageSizeEnum {
|
||||
NUMBER_5 = 5,
|
||||
NUMBER_10 = 10,
|
||||
|
||||
@@ -16,22 +16,7 @@
|
||||
// @ts-ignore
|
||||
import type { KamiApiCardInfoAppleV1AppleCardListRecord } from './kami-api-card-info-apple-v1-apple-card-list-record';
|
||||
|
||||
/**
|
||||
*
|
||||
* @export
|
||||
* @interface KamiApiCardInfoAppleV1CardInfoListRes
|
||||
*/
|
||||
export interface KamiApiCardInfoAppleV1CardInfoListRes {
|
||||
/**
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof KamiApiCardInfoAppleV1CardInfoListRes
|
||||
*/
|
||||
total?: number;
|
||||
/**
|
||||
*
|
||||
* @type {Array<KamiApiCardInfoAppleV1AppleCardListRecord>}
|
||||
* @memberof KamiApiCardInfoAppleV1CardInfoListRes
|
||||
*/
|
||||
list?: Array<KamiApiCardInfoAppleV1AppleCardListRecord>;
|
||||
}
|
||||
|
||||
@@ -12,16 +12,6 @@
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
/**
|
||||
*
|
||||
* @export
|
||||
* @interface KamiApiCardInfoAppleV1CardInfoSuspendOrContinueReq
|
||||
*/
|
||||
export interface KamiApiCardInfoAppleV1CardInfoSuspendOrContinueReq {
|
||||
/**
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof KamiApiCardInfoAppleV1CardInfoSuspendOrContinueReq
|
||||
*/
|
||||
id: string;
|
||||
}
|
||||
|
||||
@@ -12,46 +12,26 @@
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
/**
|
||||
*
|
||||
* @export
|
||||
* @interface KamiApiCardInfoAppleV1CardInfoUpdateReq
|
||||
*/
|
||||
export interface KamiApiCardInfoAppleV1CardInfoUpdateReq {
|
||||
/**
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof KamiApiCardInfoAppleV1CardInfoUpdateReq
|
||||
*/
|
||||
id: string;
|
||||
/**
|
||||
* 账户
|
||||
* @type {string}
|
||||
* @memberof KamiApiCardInfoAppleV1CardInfoUpdateReq
|
||||
*/
|
||||
account: string;
|
||||
/**
|
||||
* 密码
|
||||
* @type {string}
|
||||
* @memberof KamiApiCardInfoAppleV1CardInfoUpdateReq
|
||||
*/
|
||||
password: string;
|
||||
/**
|
||||
* 最大充值金额
|
||||
* @type {number}
|
||||
* @memberof KamiApiCardInfoAppleV1CardInfoUpdateReq
|
||||
*/
|
||||
maxAmountLimit: number;
|
||||
/**
|
||||
* 最大充值次数
|
||||
* @type {number}
|
||||
* @memberof KamiApiCardInfoAppleV1CardInfoUpdateReq
|
||||
*/
|
||||
maxCountLimit: number;
|
||||
/**
|
||||
* 备注
|
||||
* @type {string}
|
||||
* @memberof KamiApiCardInfoAppleV1CardInfoUpdateReq
|
||||
*/
|
||||
remark?: string;
|
||||
}
|
||||
|
||||
@@ -12,30 +12,14 @@
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
/**
|
||||
*
|
||||
* @export
|
||||
* @interface KamiApiCardInfoAppleV1CardInfoUpdateStatusReq
|
||||
*/
|
||||
export interface KamiApiCardInfoAppleV1CardInfoUpdateStatusReq {
|
||||
/**
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof KamiApiCardInfoAppleV1CardInfoUpdateStatusReq
|
||||
*/
|
||||
id: string;
|
||||
/**
|
||||
* 状态
|
||||
* @type {number}
|
||||
* @memberof KamiApiCardInfoAppleV1CardInfoUpdateStatusReq
|
||||
*/
|
||||
status: KamiApiCardInfoAppleV1CardInfoUpdateStatusReqStatusEnum;
|
||||
}
|
||||
|
||||
/**
|
||||
* @export
|
||||
* @enum {string}
|
||||
*/
|
||||
export enum KamiApiCardInfoAppleV1CardInfoUpdateStatusReqStatusEnum {
|
||||
NUMBER_1 = 1,
|
||||
NUMBER_5 = 5,
|
||||
|
||||
@@ -12,46 +12,29 @@
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
/**
|
||||
*
|
||||
* @export
|
||||
* @interface KamiApiCardInfoAppleV1ConfigGetRes
|
||||
*/
|
||||
export interface KamiApiCardInfoAppleV1ConfigGetRes {
|
||||
/**
|
||||
* 是否允许金额异议充值
|
||||
* @type {boolean}
|
||||
* @memberof KamiApiCardInfoAppleV1ConfigGetRes
|
||||
*/
|
||||
isAllowDifferentAmount?: boolean;
|
||||
/**
|
||||
* 是否允许金额异议回调(充值成功)
|
||||
* @type {boolean}
|
||||
* @memberof KamiApiCardInfoAppleV1ConfigGetRes
|
||||
*/
|
||||
isAllowDifferentSucceedCallback?: boolean;
|
||||
/**
|
||||
* 是否允许金额异议回调(充值失败)
|
||||
* @type {boolean}
|
||||
* @memberof KamiApiCardInfoAppleV1ConfigGetRes
|
||||
*/
|
||||
isAllowDifferentFailCallback?: boolean;
|
||||
/**
|
||||
* 充值卡最小充值金额
|
||||
* @type {number}
|
||||
* @memberof KamiApiCardInfoAppleV1ConfigGetRes
|
||||
*/
|
||||
redeemCardMinAmount?: number;
|
||||
/**
|
||||
* 是否允许补卡自动回调
|
||||
* @type {boolean}
|
||||
* @memberof KamiApiCardInfoAppleV1ConfigGetRes
|
||||
*/
|
||||
isAllowCompensatedCallback?: boolean;
|
||||
/**
|
||||
* 充值卡充值速率
|
||||
* @type {number}
|
||||
* @memberof KamiApiCardInfoAppleV1ConfigGetRes
|
||||
*/
|
||||
redeemCardRate?: number;
|
||||
}
|
||||
|
||||
@@ -12,46 +12,29 @@
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
/**
|
||||
*
|
||||
* @export
|
||||
* @interface KamiApiCardInfoAppleV1ConfigSetReq
|
||||
*/
|
||||
export interface KamiApiCardInfoAppleV1ConfigSetReq {
|
||||
/**
|
||||
* 是否允许金额异议充值
|
||||
* @type {boolean}
|
||||
* @memberof KamiApiCardInfoAppleV1ConfigSetReq
|
||||
*/
|
||||
isAllowDifferentAmount: boolean;
|
||||
/**
|
||||
* 是否允许金额异议回调(充值成功)
|
||||
* @type {boolean}
|
||||
* @memberof KamiApiCardInfoAppleV1ConfigSetReq
|
||||
*/
|
||||
isAllowDifferentSucceedCallback: boolean;
|
||||
/**
|
||||
* 是否允许金额异议回调(充值失败)
|
||||
* @type {boolean}
|
||||
* @memberof KamiApiCardInfoAppleV1ConfigSetReq
|
||||
*/
|
||||
isAllowDifferentFailCallback: boolean;
|
||||
/**
|
||||
* 账号单日最大充值次数
|
||||
* @type {number}
|
||||
* @memberof KamiApiCardInfoAppleV1ConfigSetReq
|
||||
*/
|
||||
redeemCardMinAmount: number;
|
||||
/**
|
||||
* 是否允许补卡自动回调
|
||||
* @type {boolean}
|
||||
* @memberof KamiApiCardInfoAppleV1ConfigSetReq
|
||||
*/
|
||||
isAllowCompensatedCallback: boolean;
|
||||
/**
|
||||
* 充值卡充值速率
|
||||
* @type {number}
|
||||
* @memberof KamiApiCardInfoAppleV1ConfigSetReq
|
||||
*/
|
||||
redeemCardRate: number;
|
||||
}
|
||||
|
||||
@@ -12,16 +12,9 @@
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
/**
|
||||
*
|
||||
* @export
|
||||
* @interface KamiApiCardInfoAppleV1RechargeDuplicatedCardPassReq
|
||||
*/
|
||||
export interface KamiApiCardInfoAppleV1RechargeDuplicatedCardPassReq {
|
||||
/**
|
||||
* 订单ID
|
||||
* @type {string}
|
||||
* @memberof KamiApiCardInfoAppleV1RechargeDuplicatedCardPassReq
|
||||
*/
|
||||
orderNo: string;
|
||||
}
|
||||
|
||||
@@ -12,16 +12,9 @@
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
/**
|
||||
*
|
||||
* @export
|
||||
* @interface KamiApiCardInfoAppleV1RechargeHandlerReq
|
||||
*/
|
||||
export interface KamiApiCardInfoAppleV1RechargeHandlerReq {
|
||||
/**
|
||||
* 机器ID
|
||||
* @type {string}
|
||||
* @memberof KamiApiCardInfoAppleV1RechargeHandlerReq
|
||||
*/
|
||||
machineId: string;
|
||||
}
|
||||
|
||||
@@ -12,46 +12,29 @@
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
/**
|
||||
*
|
||||
* @export
|
||||
* @interface KamiApiCardInfoAppleV1RechargeHandlerRes
|
||||
*/
|
||||
export interface KamiApiCardInfoAppleV1RechargeHandlerRes {
|
||||
/**
|
||||
* 订单ID
|
||||
* @type {string}
|
||||
* @memberof KamiApiCardInfoAppleV1RechargeHandlerRes
|
||||
*/
|
||||
orderNo?: string;
|
||||
/**
|
||||
* 卡号
|
||||
* @type {string}
|
||||
* @memberof KamiApiCardInfoAppleV1RechargeHandlerRes
|
||||
*/
|
||||
cardNo?: string;
|
||||
/**
|
||||
* 卡密
|
||||
* @type {string}
|
||||
* @memberof KamiApiCardInfoAppleV1RechargeHandlerRes
|
||||
*/
|
||||
cardPass?: string;
|
||||
/**
|
||||
* 账户
|
||||
* @type {string}
|
||||
* @memberof KamiApiCardInfoAppleV1RechargeHandlerRes
|
||||
*/
|
||||
account?: string;
|
||||
/**
|
||||
* 密码
|
||||
* @type {string}
|
||||
* @memberof KamiApiCardInfoAppleV1RechargeHandlerRes
|
||||
*/
|
||||
password?: string;
|
||||
/**
|
||||
* 账户ID
|
||||
* @type {string}
|
||||
* @memberof KamiApiCardInfoAppleV1RechargeHandlerRes
|
||||
*/
|
||||
accountId?: string;
|
||||
}
|
||||
|
||||
@@ -12,16 +12,9 @@
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
/**
|
||||
*
|
||||
* @export
|
||||
* @interface KamiApiCardInfoAppleV1RechargeHistoryListReq
|
||||
*/
|
||||
export interface KamiApiCardInfoAppleV1RechargeHistoryListReq {
|
||||
/**
|
||||
* 订单ID
|
||||
* @type {string}
|
||||
* @memberof KamiApiCardInfoAppleV1RechargeHistoryListReq
|
||||
*/
|
||||
orderNo: string;
|
||||
}
|
||||
|
||||
@@ -16,16 +16,6 @@
|
||||
// @ts-ignore
|
||||
import type { KamiInternalModelEntityV1CardAppleHistoryInfo } from './kami-internal-model-entity-v1-card-apple-history-info';
|
||||
|
||||
/**
|
||||
*
|
||||
* @export
|
||||
* @interface KamiApiCardInfoAppleV1RechargeHistoryListRes
|
||||
*/
|
||||
export interface KamiApiCardInfoAppleV1RechargeHistoryListRes {
|
||||
/**
|
||||
*
|
||||
* @type {Array<KamiInternalModelEntityV1CardAppleHistoryInfo>}
|
||||
* @memberof KamiApiCardInfoAppleV1RechargeHistoryListRes
|
||||
*/
|
||||
list?: Array<KamiInternalModelEntityV1CardAppleHistoryInfo>;
|
||||
}
|
||||
|
||||
@@ -12,60 +12,37 @@
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
/**
|
||||
*
|
||||
* @export
|
||||
* @interface KamiApiCardInfoAppleV1RechargeItunesCallbackReq
|
||||
*/
|
||||
export interface KamiApiCardInfoAppleV1RechargeItunesCallbackReq {
|
||||
/**
|
||||
* 金额
|
||||
* @type {number}
|
||||
* @memberof KamiApiCardInfoAppleV1RechargeItunesCallbackReq
|
||||
*/
|
||||
amount: number;
|
||||
/**
|
||||
* 金额
|
||||
* @type {number}
|
||||
* @memberof KamiApiCardInfoAppleV1RechargeItunesCallbackReq
|
||||
*/
|
||||
accountAmount: number;
|
||||
/**
|
||||
* 账户ID
|
||||
* @type {string}
|
||||
* @memberof KamiApiCardInfoAppleV1RechargeItunesCallbackReq
|
||||
*/
|
||||
accountId: string;
|
||||
/**
|
||||
* 机器ID
|
||||
* @type {string}
|
||||
* @memberof KamiApiCardInfoAppleV1RechargeItunesCallbackReq
|
||||
*/
|
||||
machineId: string;
|
||||
/**
|
||||
* 订单ID
|
||||
* @type {string}
|
||||
* @memberof KamiApiCardInfoAppleV1RechargeItunesCallbackReq
|
||||
*/
|
||||
orderNo: string;
|
||||
/**
|
||||
* 状态
|
||||
* @type {number}
|
||||
* @memberof KamiApiCardInfoAppleV1RechargeItunesCallbackReq
|
||||
*/
|
||||
status: KamiApiCardInfoAppleV1RechargeItunesCallbackReqStatusEnum;
|
||||
/**
|
||||
* 备注
|
||||
* @type {string}
|
||||
* @memberof KamiApiCardInfoAppleV1RechargeItunesCallbackReq
|
||||
*/
|
||||
remark?: string;
|
||||
}
|
||||
|
||||
/**
|
||||
* @export
|
||||
* @enum {string}
|
||||
*/
|
||||
export enum KamiApiCardInfoAppleV1RechargeItunesCallbackReqStatusEnum {
|
||||
NUMBER_30 = 30,
|
||||
NUMBER_31 = 31,
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user