- Add .drone.yml file to configure CI/CD pipeline - Set up Docker build and push to private registry - Add deployment configuration for development and production environments - Include health check and environment variable support
46 lines
1.2 KiB
TypeScript
46 lines
1.2 KiB
TypeScript
/* 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.
|
|
*/
|
|
|
|
/**
|
|
*
|
|
* @export
|
|
* @interface KamiApiCardInfoAppleV1RechargeStealRuleListReq
|
|
*/
|
|
export interface KamiApiCardInfoAppleV1RechargeStealRuleListReq {
|
|
/**
|
|
* 页数
|
|
* @type {number}
|
|
* @memberof KamiApiCardInfoAppleV1RechargeStealRuleListReq
|
|
*/
|
|
current: number;
|
|
/**
|
|
* 页码
|
|
* @type {number}
|
|
* @memberof KamiApiCardInfoAppleV1RechargeStealRuleListReq
|
|
*/
|
|
pageSize: KamiApiCardInfoAppleV1RechargeStealRuleListReqPageSizeEnum;
|
|
}
|
|
|
|
export const KamiApiCardInfoAppleV1RechargeStealRuleListReqPageSizeEnum = {
|
|
NUMBER_5: 5,
|
|
NUMBER_10: 10,
|
|
NUMBER_15: 15,
|
|
NUMBER_20: 20,
|
|
NUMBER_50: 50,
|
|
NUMBER_100: 100
|
|
} as const;
|
|
|
|
export type KamiApiCardInfoAppleV1RechargeStealRuleListReqPageSizeEnum =
|
|
(typeof KamiApiCardInfoAppleV1RechargeStealRuleListReqPageSizeEnum)[keyof typeof KamiApiCardInfoAppleV1RechargeStealRuleListReqPageSizeEnum];
|