From 32f611d5eb9e43a0677f3e83899f10b6c2b7e063 Mon Sep 17 00:00:00 2001
From: zhengyiming <540361168@qq.com>
Date: 星期四, 06 三月 2025 16:59:20 +0800
Subject: [PATCH] release: @life-payment/components v0.0.3

---
 packages/services/api/typings.d.ts |  220 ++++++++++++++++++++++++++++++++++++++++++++++++++++---
 1 files changed, 208 insertions(+), 12 deletions(-)

diff --git a/packages/services/api/typings.d.ts b/packages/services/api/typings.d.ts
index 38bcbd5..e59b986 100644
--- a/packages/services/api/typings.d.ts
+++ b/packages/services/api/typings.d.ts
@@ -1466,6 +1466,11 @@
     id?: string;
   }
 
+  interface APIgetLifePayWxIndentityParams {
+    /** 鐢ㄦ埛鐧诲綍鍑瘉 */
+    code?: string;
+  }
+
   interface APIgetListParams {
     filter?: string;
     clientId?: string;
@@ -1558,6 +1563,10 @@
 
   interface APIgetParkRewardDetailParams {
     id?: string;
+  }
+
+  interface APIgetPayStatusByOrderNoParams {
+    orderNo?: string;
   }
 
   interface APIgetPersonalAttestationParams {
@@ -1879,6 +1888,12 @@
     id?: string;
   }
 
+  interface APItestAliRechargeNotifyParams {
+    outTradeNo?: string;
+    tradeNo?: string;
+    success?: boolean;
+  }
+
   interface APItestCallBackParams {
     type?: number;
   }
@@ -1889,6 +1904,14 @@
 
   interface APItestGetPlatformServicePayParams {
     id?: string;
+  }
+
+  interface APItestH5PayParams {
+    payType?: LifePayTypeEnum;
+    outTradeNo?: string;
+    description?: string;
+    amount?: number;
+    h5Type?: string;
   }
 
   interface APItestPayNotifyParams {
@@ -3989,6 +4012,10 @@
     remark?: string;
   }
 
+  interface CreateLifePayOrderOutput {
+    orderNo?: string;
+  }
+
   interface CreateOrEditAdvertiseBoardInput {
     /** Id */
     id?: string;
@@ -5454,24 +5481,55 @@
   interface ElectricParValueOutput {
     electricType?: string;
     areaName?: string;
-    parValue?: number;
+    parValue?: string[];
     rate?: number;
     comments?: string;
   }
 
   interface ElectricParValueResponse {
-    success?: string;
+    success?: boolean;
     requestNo?: string;
     partnerId?: string;
     service?: string;
     version?: string;
     protocol?: string;
     context?: string;
-    ext?: string;
+    ext?: any;
     code?: string;
     message?: string;
     detail?: string;
-    electricParValue?: ElectricParValueOutput;
+    electricParValue?: ElectricParValueOutput[];
+  }
+
+  interface ElectricSupportAreaChildCityListOutput {
+    cityName?: string;
+    cityParentId?: string;
+    ciytId?: string;
+  }
+
+  interface ElectricSupportAreaListOutput {
+    childCityList?: ElectricSupportAreaChildCityListOutput[];
+    cityName?: string;
+    cityParentId?: string;
+    ciytId?: string;
+    electricType?: string;
+    parValue?: string[];
+    rate?: number;
+  }
+
+  interface ElectricSupportAreaResponse {
+    success?: boolean;
+    requestNo?: string;
+    partnerId?: string;
+    service?: string;
+    version?: string;
+    protocol?: string;
+    context?: string;
+    ext?: any;
+    code?: string;
+    message?: string;
+    detail?: string;
+    electricAreaList?: ElectricSupportAreaListOutput[];
   }
 
   interface EnableSearchSettingInput {
@@ -7729,6 +7787,13 @@
     status?: ParkRewardStatusEnum;
     /** 濂栧姳鍚嶇О */
     rewardName?: string;
+  }
+
+  interface GetPayOrderForJsAPIInput {
+    orderNo: string;
+    lifePayType?: LifePayTypeEnum;
+    openId?: string;
+    attach?: string;
   }
 
   interface GetPermissionListResultDto {
@@ -12147,16 +12212,63 @@
     /** 鐪佷唤銆� */
     province: string;
     /** 鍩庡競銆� */
-    city: string;
+    city?: string;
     /** 瀹㈡埛韬唤璇佸悗6浣嶏紝鍗楃綉蹇呬紶銆� */
     sixID?: string;
   }
 
   interface LifeElectricDataCreateLifePayOrderInput {
     userId?: string;
-    lifePayType?: LifePayTypeEnum;
     productData?: LifeElectricData;
   }
+
+  interface LifePayOrderListOutput {
+    id?: string;
+    userId?: string;
+    /** 鐢ㄦ埛鎵嬫満鍙� */
+    phoneNumber?: string;
+    lifePayType?: LifePayTypeEnum;
+    lifePayOrderType?: LifePayOrderTypeEnum;
+    /** 璁㈠崟鍙� */
+    orderNo?: string;
+    /** 鍏呭�奸噾棰� */
+    rechargeAmount?: number;
+    /** 浼樻儬閲戦 */
+    discountAmount?: number;
+    /** 瀹炰粯閲戦 */
+    payAmount?: number;
+    /** 鏀粯鏃堕棿 */
+    payTime?: string;
+    payStatus?: LifePayStatusEnum;
+    /** 澶栭儴璁㈠崟鍙� */
+    outOrderNo?: string;
+    lifePayOrderStatus?: LifePayOrderStatusEnum;
+    /** 瀹屾垚鏃堕棿 */
+    finishTime?: string;
+    /** 閫�娆惧嚟璇� */
+    refundCredentialsImgUrl?: string;
+    /** 涓嬪崟鏃堕棿 */
+    creationTime?: string;
+  }
+
+  interface LifePayOrderListOutputPageOutput {
+    pageModel?: Pagination;
+    objectData?: any;
+    data?: LifePayOrderListOutput[];
+  }
+
+  type LifePayOrderStatusEnum = 10 | 20 | 30;
+
+  type LifePayOrderTypeEnum = 10 | 20;
+
+  interface LifePayRateListOutput {
+    rateType?: LifePayRateTypeEnum;
+    rate?: number;
+  }
+
+  type LifePayRateTypeEnum = 10 | 20;
+
+  type LifePayStatusEnum = 10 | 20 | 30 | 40;
 
   type LifePayTypeEnum = 10 | 20;
 
@@ -12167,11 +12279,12 @@
     parValue: number;
     /** 鎵嬫満鍙枫�� */
     phone: string;
+    /** 鏈轰富鍚嶇О(鐢典俊鎵嬫満鍙峰繀濉�) */
+    name?: string;
   }
 
   interface LifePhoneDataCreateLifePayOrderInput {
     userId?: string;
-    lifePayType?: LifePayTypeEnum;
     productData?: LifePhoneData;
   }
 
@@ -12585,6 +12698,12 @@
     typeSimple?: string;
     isOptional?: boolean;
     defaultValue?: any;
+  }
+
+  interface ModelPayPrePayId {
+    prepayId?: string;
+    code?: string;
+    message?: string;
   }
 
   interface ModuleApiDescriptionModel {
@@ -13439,7 +13558,8 @@
     | 29
     | 30
     | 31
-    | 32;
+    | 32
+    | 40;
 
   interface OrderChangedBzContentInput {
     outBizNo?: string;
@@ -14854,25 +14974,25 @@
   interface PhoneParValueOutput {
     ispCode?: string;
     ispName?: string;
-    parValue?: number;
+    parValue?: string[];
     rate?: number;
     phoneSection?: string;
     comments?: string;
   }
 
   interface PhoneParValueResponse {
-    success?: string;
+    success?: boolean;
     requestNo?: string;
     partnerId?: string;
     service?: string;
     version?: string;
     protocol?: string;
     context?: string;
-    ext?: string;
+    ext?: any;
     code?: string;
     message?: string;
     detail?: string;
-    phoneParValue?: PhoneParValueOutput;
+    phoneParValue?: PhoneParValueOutput[];
   }
 
   interface PhoneToken {
@@ -15968,6 +16088,23 @@
     docId?: string;
   }
 
+  interface QueryLifePayOrderListInput {
+    pageModel?: Pagination;
+    lifePayOrderType?: LifePayOrderTypeEnum;
+    /** 寮�濮嬫敮浠樻椂闂� */
+    beginPayTime?: string;
+    /** 缁撴潫鏀粯鏃堕棿 */
+    endPayTime?: string;
+    payStatus?: LifePayStatusEnum;
+    lifePayOrderStatus?: LifePayOrderStatusEnum;
+    /** 寮�濮嬪畬鎴愭椂闂� */
+    beginFinishTime?: string;
+    /** 缁撴潫瀹屾垚鏃堕棿 */
+    endFinishTime?: string;
+    /** 鐢ㄦ埛Id */
+    userId?: string;
+  }
+
   interface QueryMatchMakingApplyByOrderInput {
     pageModel?: Pagination;
     orderId?: string;
@@ -16625,6 +16762,11 @@
     refundDealRemark?: string;
     /** 鐘舵�侊細0寰呯‘璁ら獙鏀讹紝10寰呰瘎浠凤紝20浜ゆ槗瀹屾垚锛�-10鐢宠閫�娆撅紝-20閫�娆炬垚鍔燂紝-30鐢宠閫�娆鹃┏鍥� */
     status?: number;
+  }
+
+  interface RefundLifePayOrderInput {
+    id?: string;
+    refundCredentialsImgUrl?: string;
   }
 
   interface RefundOrderContactSignInput {
@@ -17325,6 +17467,14 @@
 
   interface SetInsureSettingPriceInput {
     prices?: InsurePriceModel[];
+  }
+
+  interface SetLifePayOrderPayTypeInput {
+    orderNo: string;
+    lifePayType?: LifePayTypeEnum;
+    h5Type?: string;
+    openId?: string;
+    attach?: string;
   }
 
   interface SetManyContractTemplateHandSignKeyInput {
@@ -20101,6 +20251,52 @@
     certificationChannel?: UserCertificationChannelEnum;
   }
 
+  interface UserLifePayOrderOutput {
+    id?: string;
+    lifePayType?: LifePayTypeEnum;
+    lifePayOrderType?: LifePayOrderTypeEnum;
+    /** 璁㈠崟鍙� */
+    orderNo?: string;
+    /** 鍏呭�奸噾棰� */
+    rechargeAmount?: number;
+    /** 浼樻儬閲戦 */
+    discountAmount?: number;
+    /** 瀹炰粯閲戦 */
+    payAmount?: number;
+    /** 鏀粯鏃堕棿 */
+    payTime?: string;
+    payStatus?: LifePayStatusEnum;
+    lifePayOrderStatus?: LifePayOrderStatusEnum;
+    /** 瀹屾垚鏃堕棿 */
+    finishTime?: string;
+    /** 璁㈠崟璇︾粏鏁版嵁 */
+    orderParamDetailJsonStr?: string;
+    /** 涓嬪崟鏃堕棿 */
+    creationTime?: string;
+    /** 閫�娆炬椂闂� */
+    refundTime?: string;
+  }
+
+  interface UserLifePayOrderOutputPageOutput {
+    pageModel?: Pagination;
+    objectData?: any;
+    data?: UserLifePayOrderOutput[];
+  }
+
+  interface UserListOutput {
+    id?: string;
+    /** 鐢ㄦ埛鎵嬫満鍙� */
+    phoneNumber?: string;
+    lastLoginTime?: string;
+    creationTime?: string;
+  }
+
+  interface UserListOutputPageOutput {
+    pageModel?: Pagination;
+    objectData?: any;
+    data?: UserListOutput[];
+  }
+
   interface UserMessageInfo {
     /** 娑堟伅Id */
     id?: string;

--
Gitblit v1.9.1