@antchain/ato 1.13.11 → 1.13.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client.d.ts +259 -0
- package/dist/client.js +389 -2
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +558 -1
package/dist/client.d.ts
CHANGED
|
@@ -735,6 +735,23 @@ export declare class MarketingScoreInfo extends $tea.Model {
|
|
|
735
735
|
[key: string]: any;
|
|
736
736
|
});
|
|
737
737
|
}
|
|
738
|
+
export declare class PendingEventInfo extends $tea.Model {
|
|
739
|
+
eventId?: string;
|
|
740
|
+
type?: string;
|
|
741
|
+
status?: string;
|
|
742
|
+
contentSubject?: string;
|
|
743
|
+
effectiveStartTime?: string;
|
|
744
|
+
effectiveEndTime?: string;
|
|
745
|
+
static names(): {
|
|
746
|
+
[key: string]: string;
|
|
747
|
+
};
|
|
748
|
+
static types(): {
|
|
749
|
+
[key: string]: any;
|
|
750
|
+
};
|
|
751
|
+
constructor(map?: {
|
|
752
|
+
[key: string]: any;
|
|
753
|
+
});
|
|
754
|
+
}
|
|
738
755
|
export declare class PriceDetail extends $tea.Model {
|
|
739
756
|
periodNum: number;
|
|
740
757
|
depositPrice: number;
|
|
@@ -904,6 +921,20 @@ export declare class OrderProductInfo extends $tea.Model {
|
|
|
904
921
|
[key: string]: any;
|
|
905
922
|
});
|
|
906
923
|
}
|
|
924
|
+
export declare class CreditUtilizationOrder extends $tea.Model {
|
|
925
|
+
orderId: string;
|
|
926
|
+
orderCreditLine: number;
|
|
927
|
+
orderMerchantRepaymentMoney: number;
|
|
928
|
+
static names(): {
|
|
929
|
+
[key: string]: string;
|
|
930
|
+
};
|
|
931
|
+
static types(): {
|
|
932
|
+
[key: string]: any;
|
|
933
|
+
};
|
|
934
|
+
constructor(map?: {
|
|
935
|
+
[key: string]: any;
|
|
936
|
+
});
|
|
937
|
+
}
|
|
907
938
|
export declare class ActivePayOrder extends $tea.Model {
|
|
908
939
|
tradeNo: string;
|
|
909
940
|
tradeStatus: string;
|
|
@@ -1791,6 +1822,42 @@ export declare class QueryFundDividerelationResponse extends $tea.Model {
|
|
|
1791
1822
|
[key: string]: any;
|
|
1792
1823
|
});
|
|
1793
1824
|
}
|
|
1825
|
+
export declare class ApplyFundCreditutilizationRequest extends $tea.Model {
|
|
1826
|
+
authToken?: string;
|
|
1827
|
+
productInstanceId?: string;
|
|
1828
|
+
orderList: CreditUtilizationOrder[];
|
|
1829
|
+
tenantId: string;
|
|
1830
|
+
merchantId: string;
|
|
1831
|
+
fundId: string;
|
|
1832
|
+
grantingId: string;
|
|
1833
|
+
utilizationAuthId: string;
|
|
1834
|
+
utilizationId: string;
|
|
1835
|
+
static names(): {
|
|
1836
|
+
[key: string]: string;
|
|
1837
|
+
};
|
|
1838
|
+
static types(): {
|
|
1839
|
+
[key: string]: any;
|
|
1840
|
+
};
|
|
1841
|
+
constructor(map?: {
|
|
1842
|
+
[key: string]: any;
|
|
1843
|
+
});
|
|
1844
|
+
}
|
|
1845
|
+
export declare class ApplyFundCreditutilizationResponse extends $tea.Model {
|
|
1846
|
+
reqMsgId?: string;
|
|
1847
|
+
resultCode?: string;
|
|
1848
|
+
resultMsg?: string;
|
|
1849
|
+
utilizationId?: string;
|
|
1850
|
+
utilizationAuthId?: string;
|
|
1851
|
+
static names(): {
|
|
1852
|
+
[key: string]: string;
|
|
1853
|
+
};
|
|
1854
|
+
static types(): {
|
|
1855
|
+
[key: string]: any;
|
|
1856
|
+
};
|
|
1857
|
+
constructor(map?: {
|
|
1858
|
+
[key: string]: any;
|
|
1859
|
+
});
|
|
1860
|
+
}
|
|
1794
1861
|
export declare class GetInnerProductRequest extends $tea.Model {
|
|
1795
1862
|
authToken?: string;
|
|
1796
1863
|
productInstanceId?: string;
|
|
@@ -4048,6 +4115,136 @@ export declare class SubmitInnerTemplatesyncreviewResponse extends $tea.Model {
|
|
|
4048
4115
|
[key: string]: any;
|
|
4049
4116
|
});
|
|
4050
4117
|
}
|
|
4118
|
+
export declare class SubmitInnerPendingeventRequest extends $tea.Model {
|
|
4119
|
+
authToken?: string;
|
|
4120
|
+
productInstanceId?: string;
|
|
4121
|
+
tenantId: string;
|
|
4122
|
+
eventId: string;
|
|
4123
|
+
action: string;
|
|
4124
|
+
operator: string;
|
|
4125
|
+
static names(): {
|
|
4126
|
+
[key: string]: string;
|
|
4127
|
+
};
|
|
4128
|
+
static types(): {
|
|
4129
|
+
[key: string]: any;
|
|
4130
|
+
};
|
|
4131
|
+
constructor(map?: {
|
|
4132
|
+
[key: string]: any;
|
|
4133
|
+
});
|
|
4134
|
+
}
|
|
4135
|
+
export declare class SubmitInnerPendingeventResponse extends $tea.Model {
|
|
4136
|
+
reqMsgId?: string;
|
|
4137
|
+
resultCode?: string;
|
|
4138
|
+
resultMsg?: string;
|
|
4139
|
+
static names(): {
|
|
4140
|
+
[key: string]: string;
|
|
4141
|
+
};
|
|
4142
|
+
static types(): {
|
|
4143
|
+
[key: string]: any;
|
|
4144
|
+
};
|
|
4145
|
+
constructor(map?: {
|
|
4146
|
+
[key: string]: any;
|
|
4147
|
+
});
|
|
4148
|
+
}
|
|
4149
|
+
export declare class DetailInnerPendingeventRequest extends $tea.Model {
|
|
4150
|
+
authToken?: string;
|
|
4151
|
+
productInstanceId?: string;
|
|
4152
|
+
tenantId: string;
|
|
4153
|
+
eventId: string;
|
|
4154
|
+
static names(): {
|
|
4155
|
+
[key: string]: string;
|
|
4156
|
+
};
|
|
4157
|
+
static types(): {
|
|
4158
|
+
[key: string]: any;
|
|
4159
|
+
};
|
|
4160
|
+
constructor(map?: {
|
|
4161
|
+
[key: string]: any;
|
|
4162
|
+
});
|
|
4163
|
+
}
|
|
4164
|
+
export declare class DetailInnerPendingeventResponse extends $tea.Model {
|
|
4165
|
+
reqMsgId?: string;
|
|
4166
|
+
resultCode?: string;
|
|
4167
|
+
resultMsg?: string;
|
|
4168
|
+
eventId?: string;
|
|
4169
|
+
type?: string;
|
|
4170
|
+
status?: string;
|
|
4171
|
+
contentSubject?: string;
|
|
4172
|
+
contentDetails?: string;
|
|
4173
|
+
actionOptionsConfig?: string;
|
|
4174
|
+
effectiveStartTime?: string;
|
|
4175
|
+
effectiveEndTime?: string;
|
|
4176
|
+
static names(): {
|
|
4177
|
+
[key: string]: string;
|
|
4178
|
+
};
|
|
4179
|
+
static types(): {
|
|
4180
|
+
[key: string]: any;
|
|
4181
|
+
};
|
|
4182
|
+
constructor(map?: {
|
|
4183
|
+
[key: string]: any;
|
|
4184
|
+
});
|
|
4185
|
+
}
|
|
4186
|
+
export declare class AddInnerTemplateRequest extends $tea.Model {
|
|
4187
|
+
authToken?: string;
|
|
4188
|
+
productInstanceId?: string;
|
|
4189
|
+
tenantId: string;
|
|
4190
|
+
templateCode: string;
|
|
4191
|
+
static names(): {
|
|
4192
|
+
[key: string]: string;
|
|
4193
|
+
};
|
|
4194
|
+
static types(): {
|
|
4195
|
+
[key: string]: any;
|
|
4196
|
+
};
|
|
4197
|
+
constructor(map?: {
|
|
4198
|
+
[key: string]: any;
|
|
4199
|
+
});
|
|
4200
|
+
}
|
|
4201
|
+
export declare class AddInnerTemplateResponse extends $tea.Model {
|
|
4202
|
+
reqMsgId?: string;
|
|
4203
|
+
resultCode?: string;
|
|
4204
|
+
resultMsg?: string;
|
|
4205
|
+
static names(): {
|
|
4206
|
+
[key: string]: string;
|
|
4207
|
+
};
|
|
4208
|
+
static types(): {
|
|
4209
|
+
[key: string]: any;
|
|
4210
|
+
};
|
|
4211
|
+
constructor(map?: {
|
|
4212
|
+
[key: string]: any;
|
|
4213
|
+
});
|
|
4214
|
+
}
|
|
4215
|
+
export declare class PagequeryInnerPendingeventRequest extends $tea.Model {
|
|
4216
|
+
authToken?: string;
|
|
4217
|
+
productInstanceId?: string;
|
|
4218
|
+
tenantId: string;
|
|
4219
|
+
statusList?: string[];
|
|
4220
|
+
type?: string;
|
|
4221
|
+
pageInfo: PageQuery;
|
|
4222
|
+
static names(): {
|
|
4223
|
+
[key: string]: string;
|
|
4224
|
+
};
|
|
4225
|
+
static types(): {
|
|
4226
|
+
[key: string]: any;
|
|
4227
|
+
};
|
|
4228
|
+
constructor(map?: {
|
|
4229
|
+
[key: string]: any;
|
|
4230
|
+
});
|
|
4231
|
+
}
|
|
4232
|
+
export declare class PagequeryInnerPendingeventResponse extends $tea.Model {
|
|
4233
|
+
reqMsgId?: string;
|
|
4234
|
+
resultCode?: string;
|
|
4235
|
+
resultMsg?: string;
|
|
4236
|
+
total?: number;
|
|
4237
|
+
pendingEventInfoList?: PendingEventInfo[];
|
|
4238
|
+
static names(): {
|
|
4239
|
+
[key: string]: string;
|
|
4240
|
+
};
|
|
4241
|
+
static types(): {
|
|
4242
|
+
[key: string]: any;
|
|
4243
|
+
};
|
|
4244
|
+
constructor(map?: {
|
|
4245
|
+
[key: string]: any;
|
|
4246
|
+
});
|
|
4247
|
+
}
|
|
4051
4248
|
export declare class CreateInsureRequest extends $tea.Model {
|
|
4052
4249
|
authToken?: string;
|
|
4053
4250
|
productInstanceId?: string;
|
|
@@ -6360,6 +6557,20 @@ export default class Client {
|
|
|
6360
6557
|
queryFundDividerelationEx(request: QueryFundDividerelationRequest, headers: {
|
|
6361
6558
|
[key: string]: string;
|
|
6362
6559
|
}, runtime: $Util.RuntimeOptions): Promise<QueryFundDividerelationResponse>;
|
|
6560
|
+
/**
|
|
6561
|
+
* Description: ● 本接口获取用信授权
|
|
6562
|
+
● 本接口返回成功后,仅代表用信申请成功;不代表订单融资发起申请成功,融资申请结果通过异步消息通知
|
|
6563
|
+
* Summary: 用信申请接口
|
|
6564
|
+
*/
|
|
6565
|
+
applyFundCreditutilization(request: ApplyFundCreditutilizationRequest): Promise<ApplyFundCreditutilizationResponse>;
|
|
6566
|
+
/**
|
|
6567
|
+
* Description: ● 本接口获取用信授权
|
|
6568
|
+
● 本接口返回成功后,仅代表用信申请成功;不代表订单融资发起申请成功,融资申请结果通过异步消息通知
|
|
6569
|
+
* Summary: 用信申请接口
|
|
6570
|
+
*/
|
|
6571
|
+
applyFundCreditutilizationEx(request: ApplyFundCreditutilizationRequest, headers: {
|
|
6572
|
+
[key: string]: string;
|
|
6573
|
+
}, runtime: $Util.RuntimeOptions): Promise<ApplyFundCreditutilizationResponse>;
|
|
6363
6574
|
/**
|
|
6364
6575
|
* Description: 内部调用,商品信息获取
|
|
6365
6576
|
* Summary: 商品信息获取
|
|
@@ -7190,6 +7401,54 @@ export default class Client {
|
|
|
7190
7401
|
submitInnerTemplatesyncreviewEx(request: SubmitInnerTemplatesyncreviewRequest, headers: {
|
|
7191
7402
|
[key: string]: string;
|
|
7192
7403
|
}, runtime: $Util.RuntimeOptions): Promise<SubmitInnerTemplatesyncreviewResponse>;
|
|
7404
|
+
/**
|
|
7405
|
+
* Description: 待办事件处理
|
|
7406
|
+
* Summary: 待办事件处理
|
|
7407
|
+
*/
|
|
7408
|
+
submitInnerPendingevent(request: SubmitInnerPendingeventRequest): Promise<SubmitInnerPendingeventResponse>;
|
|
7409
|
+
/**
|
|
7410
|
+
* Description: 待办事件处理
|
|
7411
|
+
* Summary: 待办事件处理
|
|
7412
|
+
*/
|
|
7413
|
+
submitInnerPendingeventEx(request: SubmitInnerPendingeventRequest, headers: {
|
|
7414
|
+
[key: string]: string;
|
|
7415
|
+
}, runtime: $Util.RuntimeOptions): Promise<SubmitInnerPendingeventResponse>;
|
|
7416
|
+
/**
|
|
7417
|
+
* Description: 待办事件详情查询
|
|
7418
|
+
* Summary: 待办事件详情查询
|
|
7419
|
+
*/
|
|
7420
|
+
detailInnerPendingevent(request: DetailInnerPendingeventRequest): Promise<DetailInnerPendingeventResponse>;
|
|
7421
|
+
/**
|
|
7422
|
+
* Description: 待办事件详情查询
|
|
7423
|
+
* Summary: 待办事件详情查询
|
|
7424
|
+
*/
|
|
7425
|
+
detailInnerPendingeventEx(request: DetailInnerPendingeventRequest, headers: {
|
|
7426
|
+
[key: string]: string;
|
|
7427
|
+
}, runtime: $Util.RuntimeOptions): Promise<DetailInnerPendingeventResponse>;
|
|
7428
|
+
/**
|
|
7429
|
+
* Description: 合同模板制作根据已有模板新增合同模板文件
|
|
7430
|
+
* Summary: 根据已有模板新增合同模板文件
|
|
7431
|
+
*/
|
|
7432
|
+
addInnerTemplate(request: AddInnerTemplateRequest): Promise<AddInnerTemplateResponse>;
|
|
7433
|
+
/**
|
|
7434
|
+
* Description: 合同模板制作根据已有模板新增合同模板文件
|
|
7435
|
+
* Summary: 根据已有模板新增合同模板文件
|
|
7436
|
+
*/
|
|
7437
|
+
addInnerTemplateEx(request: AddInnerTemplateRequest, headers: {
|
|
7438
|
+
[key: string]: string;
|
|
7439
|
+
}, runtime: $Util.RuntimeOptions): Promise<AddInnerTemplateResponse>;
|
|
7440
|
+
/**
|
|
7441
|
+
* Description: 查询待办列表
|
|
7442
|
+
* Summary: 查询待办列表
|
|
7443
|
+
*/
|
|
7444
|
+
pagequeryInnerPendingevent(request: PagequeryInnerPendingeventRequest): Promise<PagequeryInnerPendingeventResponse>;
|
|
7445
|
+
/**
|
|
7446
|
+
* Description: 查询待办列表
|
|
7447
|
+
* Summary: 查询待办列表
|
|
7448
|
+
*/
|
|
7449
|
+
pagequeryInnerPendingeventEx(request: PagequeryInnerPendingeventRequest, headers: {
|
|
7450
|
+
[key: string]: string;
|
|
7451
|
+
}, runtime: $Util.RuntimeOptions): Promise<PagequeryInnerPendingeventResponse>;
|
|
7193
7452
|
/**
|
|
7194
7453
|
* Description: 一键投保
|
|
7195
7454
|
* Summary: 投保
|