From 2c4474b33be9a9a5a045616c41e2b0074f6d8d4a Mon Sep 17 00:00:00 2001 From: zhengyiming <540361168@qq.com> Date: 星期二, 10 六月 2025 09:20:34 +0800 Subject: [PATCH] fix: v1.4 --- packages/services/api/typings.d.ts | 55 ++++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 files changed, 54 insertions(+), 1 deletions(-) diff --git a/packages/services/api/typings.d.ts b/packages/services/api/typings.d.ts index c8bf145..4225410 100644 --- a/packages/services/api/typings.d.ts +++ b/packages/services/api/typings.d.ts @@ -15,7 +15,7 @@ scope?: string; } - type ACOOLYStatusEnum = 10 | 20 | 30 | 40 | 50 | 60; + type ACOOLYStatusEnum = 10 | 20 | 30 | 40 | 50 | 51 | 60; interface ActionApiDescriptionModel { uniqueName?: string; @@ -240,6 +240,10 @@ orderNo?: string; } + interface APIgetChannelConsultationByIdParams { + id?: string; + } + interface APIgetChannelConsultationFollowupListParams { /** 娓犻亾鍜ㄨId */ id?: string; @@ -317,6 +321,10 @@ interface APIgetParams { id?: string; + } + + interface APIgetPromoterParams { + phoneNumber?: string; } interface APIgetRolesIdRolesParams { @@ -752,6 +760,13 @@ phoneNumber?: string; /** 澶囨敞 */ remark?: string; + } + + interface CreateOrUpdatePromoterOutput { + /** Id */ + id?: string; + /** IdNumber */ + idNumber?: string; } interface CreateOrUpdateRoleInput { @@ -2000,6 +2015,15 @@ permissions?: PermissionGrantInfoDto[]; } + interface PhoneChargeOrderOutput { + outOrderNo?: string; + busiOrderNo?: string; + parValue?: number; + payAmount?: number; + status?: string; + statusText?: string; + } + interface PhoneParValueOutput { ispCode?: string; ispName?: string; @@ -2138,6 +2162,35 @@ operateHistoryType?: OperateHistoryTypeEnum; } + interface QueryPhoneOrderRequestInput { + requestNo?: string; + partnerId?: string; + service?: string; + version?: string; + protocol?: string; + context?: string; + ext?: string; + returnUrl?: string; + notifyUrl?: string; + outOrderNo?: string; + busiOrderNo?: string; + } + + interface QueryPhoneOrderResponse { + success?: boolean; + requestNo?: string; + partnerId?: string; + service?: string; + version?: string; + protocol?: string; + context?: string; + ext?: any; + code?: string; + message?: string; + detail?: string; + phoneChargeOrder?: PhoneChargeOrderOutput; + } + interface QueryUserAccountAllListInput { pageModel?: Pagination; checkChannelId?: string; -- Gitblit v1.9.1