@antchain/ato 1.8.76 → 1.8.86
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 +199 -17
- package/dist/client.js +305 -24
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +483 -47
package/dist/client.d.ts
CHANGED
|
@@ -153,6 +153,26 @@ export declare class RelationPage extends $tea.Model {
|
|
|
153
153
|
[key: string]: any;
|
|
154
154
|
});
|
|
155
155
|
}
|
|
156
|
+
export declare class CompanyInfoUpdate extends $tea.Model {
|
|
157
|
+
businessLicenseFile: FileInfo;
|
|
158
|
+
productMainClass: string;
|
|
159
|
+
companyName: string;
|
|
160
|
+
companyAliasName: string;
|
|
161
|
+
tenantId?: string;
|
|
162
|
+
companyMobile: string;
|
|
163
|
+
companyAddress: string;
|
|
164
|
+
contactName: string;
|
|
165
|
+
contactMobile: string;
|
|
166
|
+
static names(): {
|
|
167
|
+
[key: string]: string;
|
|
168
|
+
};
|
|
169
|
+
static types(): {
|
|
170
|
+
[key: string]: any;
|
|
171
|
+
};
|
|
172
|
+
constructor(map?: {
|
|
173
|
+
[key: string]: any;
|
|
174
|
+
});
|
|
175
|
+
}
|
|
156
176
|
export declare class MerchantAgentPage extends $tea.Model {
|
|
157
177
|
payExpandId: string;
|
|
158
178
|
agentName: string;
|
|
@@ -169,6 +189,26 @@ export declare class MerchantAgentPage extends $tea.Model {
|
|
|
169
189
|
[key: string]: any;
|
|
170
190
|
});
|
|
171
191
|
}
|
|
192
|
+
export declare class OrderMsgInfo extends $tea.Model {
|
|
193
|
+
orderId: string;
|
|
194
|
+
msgId: string;
|
|
195
|
+
msgPublishType: string;
|
|
196
|
+
msgCreateTime: string;
|
|
197
|
+
msgStatus: string;
|
|
198
|
+
msgRetryTime: number;
|
|
199
|
+
msgContent: string;
|
|
200
|
+
msgCallbackUrl: string;
|
|
201
|
+
newMsgCallbackUrl: string;
|
|
202
|
+
static names(): {
|
|
203
|
+
[key: string]: string;
|
|
204
|
+
};
|
|
205
|
+
static types(): {
|
|
206
|
+
[key: string]: any;
|
|
207
|
+
};
|
|
208
|
+
constructor(map?: {
|
|
209
|
+
[key: string]: any;
|
|
210
|
+
});
|
|
211
|
+
}
|
|
172
212
|
export declare class OrderInfo extends $tea.Model {
|
|
173
213
|
static names(): {
|
|
174
214
|
[key: string]: string;
|
|
@@ -1105,6 +1145,7 @@ export declare class AllInnerTemplateRequest extends $tea.Model {
|
|
|
1105
1145
|
tenantId: string;
|
|
1106
1146
|
templateCode?: string;
|
|
1107
1147
|
templateName?: string;
|
|
1148
|
+
templateCodeProd?: string;
|
|
1108
1149
|
static names(): {
|
|
1109
1150
|
[key: string]: string;
|
|
1110
1151
|
};
|
|
@@ -1941,7 +1982,8 @@ export declare class PagequeryInnerMerchantagentRequest extends $tea.Model {
|
|
|
1941
1982
|
authToken?: string;
|
|
1942
1983
|
productInstanceId?: string;
|
|
1943
1984
|
tenantId: string;
|
|
1944
|
-
agentName
|
|
1985
|
+
agentName?: string;
|
|
1986
|
+
payExpandStatus?: string;
|
|
1945
1987
|
pageInfo: PageQuery;
|
|
1946
1988
|
static names(): {
|
|
1947
1989
|
[key: string]: string;
|
|
@@ -2186,6 +2228,74 @@ export declare class QueryInnerTemplateversionResponse extends $tea.Model {
|
|
|
2186
2228
|
[key: string]: any;
|
|
2187
2229
|
});
|
|
2188
2230
|
}
|
|
2231
|
+
export declare class PagequeryInnerOrdermsgRequest extends $tea.Model {
|
|
2232
|
+
authToken?: string;
|
|
2233
|
+
productInstanceId?: string;
|
|
2234
|
+
tenantId: string;
|
|
2235
|
+
orderId: string;
|
|
2236
|
+
msgPublishType?: string;
|
|
2237
|
+
msgCreateTimeFrom?: string;
|
|
2238
|
+
msgCreateTimeTo?: string;
|
|
2239
|
+
env: string;
|
|
2240
|
+
pageInfo: PageQuery;
|
|
2241
|
+
static names(): {
|
|
2242
|
+
[key: string]: string;
|
|
2243
|
+
};
|
|
2244
|
+
static types(): {
|
|
2245
|
+
[key: string]: any;
|
|
2246
|
+
};
|
|
2247
|
+
constructor(map?: {
|
|
2248
|
+
[key: string]: any;
|
|
2249
|
+
});
|
|
2250
|
+
}
|
|
2251
|
+
export declare class PagequeryInnerOrdermsgResponse extends $tea.Model {
|
|
2252
|
+
reqMsgId?: string;
|
|
2253
|
+
resultCode?: string;
|
|
2254
|
+
resultMsg?: string;
|
|
2255
|
+
totalSize?: number;
|
|
2256
|
+
orderMsgInfos?: OrderMsgInfo[];
|
|
2257
|
+
static names(): {
|
|
2258
|
+
[key: string]: string;
|
|
2259
|
+
};
|
|
2260
|
+
static types(): {
|
|
2261
|
+
[key: string]: any;
|
|
2262
|
+
};
|
|
2263
|
+
constructor(map?: {
|
|
2264
|
+
[key: string]: any;
|
|
2265
|
+
});
|
|
2266
|
+
}
|
|
2267
|
+
export declare class RetryInnerOrdermsgRequest extends $tea.Model {
|
|
2268
|
+
authToken?: string;
|
|
2269
|
+
productInstanceId?: string;
|
|
2270
|
+
tenantId: string;
|
|
2271
|
+
env: string;
|
|
2272
|
+
orderId: string;
|
|
2273
|
+
msgId: string;
|
|
2274
|
+
usingNewCallbackUrl: boolean;
|
|
2275
|
+
static names(): {
|
|
2276
|
+
[key: string]: string;
|
|
2277
|
+
};
|
|
2278
|
+
static types(): {
|
|
2279
|
+
[key: string]: any;
|
|
2280
|
+
};
|
|
2281
|
+
constructor(map?: {
|
|
2282
|
+
[key: string]: any;
|
|
2283
|
+
});
|
|
2284
|
+
}
|
|
2285
|
+
export declare class RetryInnerOrdermsgResponse extends $tea.Model {
|
|
2286
|
+
reqMsgId?: string;
|
|
2287
|
+
resultCode?: string;
|
|
2288
|
+
resultMsg?: string;
|
|
2289
|
+
static names(): {
|
|
2290
|
+
[key: string]: string;
|
|
2291
|
+
};
|
|
2292
|
+
static types(): {
|
|
2293
|
+
[key: string]: any;
|
|
2294
|
+
};
|
|
2295
|
+
constructor(map?: {
|
|
2296
|
+
[key: string]: any;
|
|
2297
|
+
});
|
|
2298
|
+
}
|
|
2189
2299
|
export declare class RegisterMerchantexpandMerchantRequest extends $tea.Model {
|
|
2190
2300
|
authToken?: string;
|
|
2191
2301
|
productInstanceId?: string;
|
|
@@ -2280,16 +2390,49 @@ export declare class QueryMerchantexpandMerchantResponse extends $tea.Model {
|
|
|
2280
2390
|
[key: string]: any;
|
|
2281
2391
|
});
|
|
2282
2392
|
}
|
|
2393
|
+
export declare class UpdateMerchantexpandMerchantRequest extends $tea.Model {
|
|
2394
|
+
authToken?: string;
|
|
2395
|
+
productInstanceId?: string;
|
|
2396
|
+
companyInfo: CompanyInfoUpdate;
|
|
2397
|
+
legalInfo: LegalInfo;
|
|
2398
|
+
applicationInfo: ApplicationInfo;
|
|
2399
|
+
expandMode: string;
|
|
2400
|
+
subTenantId?: string;
|
|
2401
|
+
payExpandId: string;
|
|
2402
|
+
static names(): {
|
|
2403
|
+
[key: string]: string;
|
|
2404
|
+
};
|
|
2405
|
+
static types(): {
|
|
2406
|
+
[key: string]: any;
|
|
2407
|
+
};
|
|
2408
|
+
constructor(map?: {
|
|
2409
|
+
[key: string]: any;
|
|
2410
|
+
});
|
|
2411
|
+
}
|
|
2412
|
+
export declare class UpdateMerchantexpandMerchantResponse extends $tea.Model {
|
|
2413
|
+
reqMsgId?: string;
|
|
2414
|
+
resultCode?: string;
|
|
2415
|
+
resultMsg?: string;
|
|
2416
|
+
payExpandId?: string;
|
|
2417
|
+
static names(): {
|
|
2418
|
+
[key: string]: string;
|
|
2419
|
+
};
|
|
2420
|
+
static types(): {
|
|
2421
|
+
[key: string]: any;
|
|
2422
|
+
};
|
|
2423
|
+
constructor(map?: {
|
|
2424
|
+
[key: string]: any;
|
|
2425
|
+
});
|
|
2426
|
+
}
|
|
2283
2427
|
export declare class CreateRealpersonFacevrfRequest extends $tea.Model {
|
|
2284
2428
|
authToken?: string;
|
|
2285
2429
|
productInstanceId?: string;
|
|
2430
|
+
solutionType: string;
|
|
2286
2431
|
certName: string;
|
|
2287
2432
|
certNo: string;
|
|
2288
|
-
identityType: string;
|
|
2289
2433
|
certType: string;
|
|
2290
|
-
|
|
2291
|
-
returnUrl
|
|
2292
|
-
orderId: string;
|
|
2434
|
+
faceReserveStrategy?: string;
|
|
2435
|
+
returnUrl?: string;
|
|
2293
2436
|
static names(): {
|
|
2294
2437
|
[key: string]: string;
|
|
2295
2438
|
};
|
|
@@ -2304,7 +2447,8 @@ export declare class CreateRealpersonFacevrfResponse extends $tea.Model {
|
|
|
2304
2447
|
reqMsgId?: string;
|
|
2305
2448
|
resultCode?: string;
|
|
2306
2449
|
resultMsg?: string;
|
|
2307
|
-
|
|
2450
|
+
realPersonVerificationCode?: string;
|
|
2451
|
+
webUrl?: string;
|
|
2308
2452
|
static names(): {
|
|
2309
2453
|
[key: string]: string;
|
|
2310
2454
|
};
|
|
@@ -2318,9 +2462,7 @@ export declare class CreateRealpersonFacevrfResponse extends $tea.Model {
|
|
|
2318
2462
|
export declare class QueryRealpersonFacevrfRequest extends $tea.Model {
|
|
2319
2463
|
authToken?: string;
|
|
2320
2464
|
productInstanceId?: string;
|
|
2321
|
-
|
|
2322
|
-
outerOrderNo: string;
|
|
2323
|
-
orderId: string;
|
|
2465
|
+
realPersonVerificationCode: string;
|
|
2324
2466
|
static names(): {
|
|
2325
2467
|
[key: string]: string;
|
|
2326
2468
|
};
|
|
@@ -2335,7 +2477,9 @@ export declare class QueryRealpersonFacevrfResponse extends $tea.Model {
|
|
|
2335
2477
|
reqMsgId?: string;
|
|
2336
2478
|
resultCode?: string;
|
|
2337
2479
|
resultMsg?: string;
|
|
2338
|
-
|
|
2480
|
+
certifyState?: string;
|
|
2481
|
+
attackFlag?: string;
|
|
2482
|
+
alivePhoto?: string;
|
|
2339
2483
|
static names(): {
|
|
2340
2484
|
[key: string]: string;
|
|
2341
2485
|
};
|
|
@@ -2670,6 +2814,7 @@ export declare class UploadSignCreditRequest extends $tea.Model {
|
|
|
2670
2814
|
contentType: string;
|
|
2671
2815
|
fileUrl?: string;
|
|
2672
2816
|
content?: string;
|
|
2817
|
+
merchantId?: string;
|
|
2673
2818
|
static names(): {
|
|
2674
2819
|
[key: string]: string;
|
|
2675
2820
|
};
|
|
@@ -2700,6 +2845,7 @@ export declare class QuerySignCreditRequest extends $tea.Model {
|
|
|
2700
2845
|
productInstanceId?: string;
|
|
2701
2846
|
orderNoType: string;
|
|
2702
2847
|
orderNo: string;
|
|
2848
|
+
merchantId?: string;
|
|
2703
2849
|
static names(): {
|
|
2704
2850
|
[key: string]: string;
|
|
2705
2851
|
};
|
|
@@ -2818,7 +2964,7 @@ export declare class SyncFrontTradeResponse extends $tea.Model {
|
|
|
2818
2964
|
export declare class SyncTradeFinanceloanapplyRequest extends $tea.Model {
|
|
2819
2965
|
authToken?: string;
|
|
2820
2966
|
productInstanceId?: string;
|
|
2821
|
-
orderId
|
|
2967
|
+
orderId?: string;
|
|
2822
2968
|
merchantId: string;
|
|
2823
2969
|
merchantName: string;
|
|
2824
2970
|
fundId?: string;
|
|
@@ -4192,6 +4338,30 @@ export default class Client {
|
|
|
4192
4338
|
queryInnerTemplateversionEx(request: QueryInnerTemplateversionRequest, headers: {
|
|
4193
4339
|
[key: string]: string;
|
|
4194
4340
|
}, runtime: $Util.RuntimeOptions): Promise<QueryInnerTemplateversionResponse>;
|
|
4341
|
+
/**
|
|
4342
|
+
* Description: 订单消息查询
|
|
4343
|
+
* Summary: 订单消息查询
|
|
4344
|
+
*/
|
|
4345
|
+
pagequeryInnerOrdermsg(request: PagequeryInnerOrdermsgRequest): Promise<PagequeryInnerOrdermsgResponse>;
|
|
4346
|
+
/**
|
|
4347
|
+
* Description: 订单消息查询
|
|
4348
|
+
* Summary: 订单消息查询
|
|
4349
|
+
*/
|
|
4350
|
+
pagequeryInnerOrdermsgEx(request: PagequeryInnerOrdermsgRequest, headers: {
|
|
4351
|
+
[key: string]: string;
|
|
4352
|
+
}, runtime: $Util.RuntimeOptions): Promise<PagequeryInnerOrdermsgResponse>;
|
|
4353
|
+
/**
|
|
4354
|
+
* Description: 订单消息重试
|
|
4355
|
+
* Summary: 订单消息重试
|
|
4356
|
+
*/
|
|
4357
|
+
retryInnerOrdermsg(request: RetryInnerOrdermsgRequest): Promise<RetryInnerOrdermsgResponse>;
|
|
4358
|
+
/**
|
|
4359
|
+
* Description: 订单消息重试
|
|
4360
|
+
* Summary: 订单消息重试
|
|
4361
|
+
*/
|
|
4362
|
+
retryInnerOrdermsgEx(request: RetryInnerOrdermsgRequest, headers: {
|
|
4363
|
+
[key: string]: string;
|
|
4364
|
+
}, runtime: $Util.RuntimeOptions): Promise<RetryInnerOrdermsgResponse>;
|
|
4195
4365
|
/**
|
|
4196
4366
|
* Description: 商户入驻
|
|
4197
4367
|
* Summary: 商户入驻
|
|
@@ -4228,6 +4398,18 @@ export default class Client {
|
|
|
4228
4398
|
queryMerchantexpandMerchantEx(request: QueryMerchantexpandMerchantRequest, headers: {
|
|
4229
4399
|
[key: string]: string;
|
|
4230
4400
|
}, runtime: $Util.RuntimeOptions): Promise<QueryMerchantexpandMerchantResponse>;
|
|
4401
|
+
/**
|
|
4402
|
+
* Description: 商家信息修改
|
|
4403
|
+
* Summary: 商家信息修改
|
|
4404
|
+
*/
|
|
4405
|
+
updateMerchantexpandMerchant(request: UpdateMerchantexpandMerchantRequest): Promise<UpdateMerchantexpandMerchantResponse>;
|
|
4406
|
+
/**
|
|
4407
|
+
* Description: 商家信息修改
|
|
4408
|
+
* Summary: 商家信息修改
|
|
4409
|
+
*/
|
|
4410
|
+
updateMerchantexpandMerchantEx(request: UpdateMerchantexpandMerchantRequest, headers: {
|
|
4411
|
+
[key: string]: string;
|
|
4412
|
+
}, runtime: $Util.RuntimeOptions): Promise<UpdateMerchantexpandMerchantResponse>;
|
|
4231
4413
|
/**
|
|
4232
4414
|
* Description: 可信身份认证,创建认证
|
|
4233
4415
|
* Summary: 创建认证
|
|
@@ -4541,16 +4723,16 @@ export default class Client {
|
|
|
4541
4723
|
[key: string]: string;
|
|
4542
4724
|
}, runtime: $Util.RuntimeOptions): Promise<CancelWithholdPlanResponse>;
|
|
4543
4725
|
/**
|
|
4544
|
-
* Description:
|
|
4545
|
-
|
|
4546
|
-
|
|
4726
|
+
* Description: 重要说明:
|
|
4727
|
+
1. 这个接口是取消订单某一期代扣计划中以其他方式还款的金额,取消之后代扣不再执行该期计划。
|
|
4728
|
+
2. 对通过其他方式还款的第三方单号留存;例如:银行流水号或微信流水号。
|
|
4547
4729
|
* Summary: 单期代扣取消
|
|
4548
4730
|
*/
|
|
4549
4731
|
repayWithholdPlan(request: RepayWithholdPlanRequest): Promise<RepayWithholdPlanResponse>;
|
|
4550
4732
|
/**
|
|
4551
|
-
* Description:
|
|
4552
|
-
|
|
4553
|
-
|
|
4733
|
+
* Description: 重要说明:
|
|
4734
|
+
1. 这个接口是取消订单某一期代扣计划中以其他方式还款的金额,取消之后代扣不再执行该期计划。
|
|
4735
|
+
2. 对通过其他方式还款的第三方单号留存;例如:银行流水号或微信流水号。
|
|
4554
4736
|
* Summary: 单期代扣取消
|
|
4555
4737
|
*/
|
|
4556
4738
|
repayWithholdPlanEx(request: RepayWithholdPlanRequest, headers: {
|