- 新增批量校验Cookie接口及数据模型 - 新增单个校验Cookie接口及数据模型 - 扩展批量导入弹窗以支持Cookie校验展示 - 添加校验状态列和对应的状态标签显示 - 实现校验按钮及校验结果汇总提示 - 更新相关API文档和类型定义文件
37 lines
827 B
TypeScript
37 lines
827 B
TypeScript
/* tslint: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.
|
|
*/
|
|
|
|
// May contain unused imports in some cases
|
|
// @ts-ignore
|
|
import type { KamiApiJdCookieV1BatchValidateResult } from './kami-api-jd-cookie-v1-batch-validate-result';
|
|
|
|
export interface KamiApiJdCookieV1BatchValidateRes {
|
|
/**
|
|
* 总数量
|
|
*/
|
|
totalCount?: number;
|
|
/**
|
|
* 有效数量
|
|
*/
|
|
validCount?: number;
|
|
/**
|
|
* 无效数量
|
|
*/
|
|
invalidCount?: number;
|
|
/**
|
|
* 验证结果详情
|
|
*/
|
|
results?: Array<KamiApiJdCookieV1BatchValidateResult>;
|
|
}
|