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 |   65 +++++++++++++++++++++++++++++++-
 1 files changed, 63 insertions(+), 2 deletions(-)

diff --git a/packages/services/api/typings.d.ts b/packages/services/api/typings.d.ts
index df2aaef..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 {
@@ -754,6 +762,13 @@
     remark?: string;
   }
 
+  interface CreateOrUpdatePromoterOutput {
+    /** Id */
+    id?: string;
+    /** IdNumber */
+    idNumber?: string;
+  }
+
   interface CreateOrUpdateRoleInput {
     /** 鍚嶇О */
     name?: string;
@@ -1066,6 +1081,12 @@
 
   interface GetPromotersInput {
     pageModel?: Pagination;
+    /** 鍒涘缓鐨勫紑濮嬫椂闂� */
+    startDate?: string;
+    /** 鍒涘缓鐨勭粨鏉熸椂闂� */
+    endDate?: string;
+    /** 鎼滅储鍏抽敭璇� */
+    searchKey?: string;
   }
 
   interface GetRolesInput {
@@ -1291,7 +1312,7 @@
 
   type LifePayChannelAgentType = 1 | 2 | 3;
 
-  type LifePayChannelConsultationFollowupStatus = 0 | 1;
+  type LifePayChannelConsultationFollowupStatus = 1 | 2 | 3 | 4;
 
   type LifePayChannelsStatsEnum = 10 | 20;
 
@@ -1587,6 +1608,8 @@
   interface LifePayPhoneMesssageCodeLoginOutput {
     /** 鐢ㄦ埛Id */
     userId?: string;
+    /** 鎺ㄥ箍鍛業D */
+    promoterIdNumber?: string;
     /** 鏄惁鏄悗鍙扮敤鎴� */
     isBackClientUser?: boolean;
     /** 娓犻亾鍙� */
@@ -1992,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;
@@ -2130,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