@antchain/ato 1.10.16 → 1.10.24
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 +278 -14
- package/dist/client.js +429 -23
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +637 -29
package/dist/client.d.ts
CHANGED
|
@@ -34,6 +34,19 @@ export declare class Config extends $tea.Model {
|
|
|
34
34
|
[key: string]: any;
|
|
35
35
|
});
|
|
36
36
|
}
|
|
37
|
+
export declare class FileInfo extends $tea.Model {
|
|
38
|
+
fileName: string;
|
|
39
|
+
fileKey: string;
|
|
40
|
+
static names(): {
|
|
41
|
+
[key: string]: string;
|
|
42
|
+
};
|
|
43
|
+
static types(): {
|
|
44
|
+
[key: string]: any;
|
|
45
|
+
};
|
|
46
|
+
constructor(map?: {
|
|
47
|
+
[key: string]: any;
|
|
48
|
+
});
|
|
49
|
+
}
|
|
37
50
|
export declare class SubRentRiskItem extends $tea.Model {
|
|
38
51
|
riskName: string;
|
|
39
52
|
riskRank: string;
|
|
@@ -80,7 +93,7 @@ export declare class StaticDataModuleDetail extends $tea.Model {
|
|
|
80
93
|
export declare class SiteInfo extends $tea.Model {
|
|
81
94
|
tinyAppId?: string;
|
|
82
95
|
siteName?: string;
|
|
83
|
-
|
|
96
|
+
screenshotFile?: FileInfo;
|
|
84
97
|
siteUrl?: string;
|
|
85
98
|
siteType?: string;
|
|
86
99
|
static names(): {
|
|
@@ -93,19 +106,6 @@ export declare class SiteInfo extends $tea.Model {
|
|
|
93
106
|
[key: string]: any;
|
|
94
107
|
});
|
|
95
108
|
}
|
|
96
|
-
export declare class FileInfo extends $tea.Model {
|
|
97
|
-
fileName: string;
|
|
98
|
-
fileKey: string;
|
|
99
|
-
static names(): {
|
|
100
|
-
[key: string]: string;
|
|
101
|
-
};
|
|
102
|
-
static types(): {
|
|
103
|
-
[key: string]: any;
|
|
104
|
-
};
|
|
105
|
-
constructor(map?: {
|
|
106
|
-
[key: string]: any;
|
|
107
|
-
});
|
|
108
|
-
}
|
|
109
109
|
export declare class AppletRiskModel extends $tea.Model {
|
|
110
110
|
code: string;
|
|
111
111
|
recordId: string;
|
|
@@ -526,6 +526,20 @@ export declare class DeliveryDetail extends $tea.Model {
|
|
|
526
526
|
[key: string]: any;
|
|
527
527
|
});
|
|
528
528
|
}
|
|
529
|
+
export declare class CustomerServiceInfo extends $tea.Model {
|
|
530
|
+
merchantId?: string;
|
|
531
|
+
merchantName?: string;
|
|
532
|
+
processType?: string;
|
|
533
|
+
static names(): {
|
|
534
|
+
[key: string]: string;
|
|
535
|
+
};
|
|
536
|
+
static types(): {
|
|
537
|
+
[key: string]: any;
|
|
538
|
+
};
|
|
539
|
+
constructor(map?: {
|
|
540
|
+
[key: string]: any;
|
|
541
|
+
});
|
|
542
|
+
}
|
|
529
543
|
export declare class OperationDivideTransInModel extends $tea.Model {
|
|
530
544
|
transInUserId: string;
|
|
531
545
|
divideAmount: number;
|
|
@@ -2449,6 +2463,7 @@ export declare class QueryInnerMerchantpayexpandResponse extends $tea.Model {
|
|
|
2449
2463
|
expandMode?: string;
|
|
2450
2464
|
expandStatus?: string;
|
|
2451
2465
|
expandFailReason?: string;
|
|
2466
|
+
showCustomerComplaintRegistPortal?: boolean;
|
|
2452
2467
|
static names(): {
|
|
2453
2468
|
[key: string]: string;
|
|
2454
2469
|
};
|
|
@@ -3415,6 +3430,195 @@ export declare class BatchqueryInnerMarketingscoreResponse extends $tea.Model {
|
|
|
3415
3430
|
[key: string]: any;
|
|
3416
3431
|
});
|
|
3417
3432
|
}
|
|
3433
|
+
export declare class CreateInnerCustomerserviceRequest extends $tea.Model {
|
|
3434
|
+
authToken?: string;
|
|
3435
|
+
productInstanceId?: string;
|
|
3436
|
+
tenantId: string;
|
|
3437
|
+
merchantId?: string;
|
|
3438
|
+
merchantName?: string;
|
|
3439
|
+
processType: string;
|
|
3440
|
+
serviceProviderName?: string;
|
|
3441
|
+
alipayBindMobile: string;
|
|
3442
|
+
alipayLogonId: string;
|
|
3443
|
+
customerServicePhone: string;
|
|
3444
|
+
customerServiceName: string;
|
|
3445
|
+
onlineSupportSiteUrl: string;
|
|
3446
|
+
customerComplaintIssues: string;
|
|
3447
|
+
expandMode: string;
|
|
3448
|
+
static names(): {
|
|
3449
|
+
[key: string]: string;
|
|
3450
|
+
};
|
|
3451
|
+
static types(): {
|
|
3452
|
+
[key: string]: any;
|
|
3453
|
+
};
|
|
3454
|
+
constructor(map?: {
|
|
3455
|
+
[key: string]: any;
|
|
3456
|
+
});
|
|
3457
|
+
}
|
|
3458
|
+
export declare class CreateInnerCustomerserviceResponse extends $tea.Model {
|
|
3459
|
+
reqMsgId?: string;
|
|
3460
|
+
resultCode?: string;
|
|
3461
|
+
resultMsg?: string;
|
|
3462
|
+
static names(): {
|
|
3463
|
+
[key: string]: string;
|
|
3464
|
+
};
|
|
3465
|
+
static types(): {
|
|
3466
|
+
[key: string]: any;
|
|
3467
|
+
};
|
|
3468
|
+
constructor(map?: {
|
|
3469
|
+
[key: string]: any;
|
|
3470
|
+
});
|
|
3471
|
+
}
|
|
3472
|
+
export declare class UpdateInnerCustomerserviceRequest extends $tea.Model {
|
|
3473
|
+
authToken?: string;
|
|
3474
|
+
productInstanceId?: string;
|
|
3475
|
+
tenantId: string;
|
|
3476
|
+
merchantId?: string;
|
|
3477
|
+
merchantName: string;
|
|
3478
|
+
processType: string;
|
|
3479
|
+
serviceProviderName?: string;
|
|
3480
|
+
alipayBindMobile: string;
|
|
3481
|
+
alipayLogonId: string;
|
|
3482
|
+
customerServicePhone: string;
|
|
3483
|
+
customerServiceName: string;
|
|
3484
|
+
onlineSupportSiteUrl: string;
|
|
3485
|
+
customerComplaintIssues: string;
|
|
3486
|
+
expandMode: string;
|
|
3487
|
+
static names(): {
|
|
3488
|
+
[key: string]: string;
|
|
3489
|
+
};
|
|
3490
|
+
static types(): {
|
|
3491
|
+
[key: string]: any;
|
|
3492
|
+
};
|
|
3493
|
+
constructor(map?: {
|
|
3494
|
+
[key: string]: any;
|
|
3495
|
+
});
|
|
3496
|
+
}
|
|
3497
|
+
export declare class UpdateInnerCustomerserviceResponse extends $tea.Model {
|
|
3498
|
+
reqMsgId?: string;
|
|
3499
|
+
resultCode?: string;
|
|
3500
|
+
resultMsg?: string;
|
|
3501
|
+
static names(): {
|
|
3502
|
+
[key: string]: string;
|
|
3503
|
+
};
|
|
3504
|
+
static types(): {
|
|
3505
|
+
[key: string]: any;
|
|
3506
|
+
};
|
|
3507
|
+
constructor(map?: {
|
|
3508
|
+
[key: string]: any;
|
|
3509
|
+
});
|
|
3510
|
+
}
|
|
3511
|
+
export declare class PagequeryInnerCustomerserviceRequest extends $tea.Model {
|
|
3512
|
+
authToken?: string;
|
|
3513
|
+
productInstanceId?: string;
|
|
3514
|
+
tenantId: string;
|
|
3515
|
+
pageInfo: PageQuery;
|
|
3516
|
+
processType?: string;
|
|
3517
|
+
merchantId?: string;
|
|
3518
|
+
merchantName?: string;
|
|
3519
|
+
static names(): {
|
|
3520
|
+
[key: string]: string;
|
|
3521
|
+
};
|
|
3522
|
+
static types(): {
|
|
3523
|
+
[key: string]: any;
|
|
3524
|
+
};
|
|
3525
|
+
constructor(map?: {
|
|
3526
|
+
[key: string]: any;
|
|
3527
|
+
});
|
|
3528
|
+
}
|
|
3529
|
+
export declare class PagequeryInnerCustomerserviceResponse extends $tea.Model {
|
|
3530
|
+
reqMsgId?: string;
|
|
3531
|
+
resultCode?: string;
|
|
3532
|
+
resultMsg?: string;
|
|
3533
|
+
total?: number;
|
|
3534
|
+
customerServiceInfoList?: CustomerServiceInfo[];
|
|
3535
|
+
static names(): {
|
|
3536
|
+
[key: string]: string;
|
|
3537
|
+
};
|
|
3538
|
+
static types(): {
|
|
3539
|
+
[key: string]: any;
|
|
3540
|
+
};
|
|
3541
|
+
constructor(map?: {
|
|
3542
|
+
[key: string]: any;
|
|
3543
|
+
});
|
|
3544
|
+
}
|
|
3545
|
+
export declare class DetailInnerCustomerserviceRequest extends $tea.Model {
|
|
3546
|
+
authToken?: string;
|
|
3547
|
+
productInstanceId?: string;
|
|
3548
|
+
tenantId: string;
|
|
3549
|
+
merchantId?: string;
|
|
3550
|
+
expandMode: string;
|
|
3551
|
+
static names(): {
|
|
3552
|
+
[key: string]: string;
|
|
3553
|
+
};
|
|
3554
|
+
static types(): {
|
|
3555
|
+
[key: string]: any;
|
|
3556
|
+
};
|
|
3557
|
+
constructor(map?: {
|
|
3558
|
+
[key: string]: any;
|
|
3559
|
+
});
|
|
3560
|
+
}
|
|
3561
|
+
export declare class DetailInnerCustomerserviceResponse extends $tea.Model {
|
|
3562
|
+
reqMsgId?: string;
|
|
3563
|
+
resultCode?: string;
|
|
3564
|
+
resultMsg?: string;
|
|
3565
|
+
merchantId?: string;
|
|
3566
|
+
merchantName?: string;
|
|
3567
|
+
processType?: string;
|
|
3568
|
+
serviceProviderName?: string;
|
|
3569
|
+
alipayBindMobile?: string;
|
|
3570
|
+
alipayLogonId?: string;
|
|
3571
|
+
customerServicePhone?: string;
|
|
3572
|
+
customerServiceName?: string;
|
|
3573
|
+
onlineSupportSiteUrl?: string;
|
|
3574
|
+
customerComplaintIssues?: string;
|
|
3575
|
+
static names(): {
|
|
3576
|
+
[key: string]: string;
|
|
3577
|
+
};
|
|
3578
|
+
static types(): {
|
|
3579
|
+
[key: string]: any;
|
|
3580
|
+
};
|
|
3581
|
+
constructor(map?: {
|
|
3582
|
+
[key: string]: any;
|
|
3583
|
+
});
|
|
3584
|
+
}
|
|
3585
|
+
export declare class GetInnerCustomerservicetemplateRequest extends $tea.Model {
|
|
3586
|
+
authToken?: string;
|
|
3587
|
+
productInstanceId?: string;
|
|
3588
|
+
tenantId: string;
|
|
3589
|
+
expandMode: string;
|
|
3590
|
+
processType: string;
|
|
3591
|
+
static names(): {
|
|
3592
|
+
[key: string]: string;
|
|
3593
|
+
};
|
|
3594
|
+
static types(): {
|
|
3595
|
+
[key: string]: any;
|
|
3596
|
+
};
|
|
3597
|
+
constructor(map?: {
|
|
3598
|
+
[key: string]: any;
|
|
3599
|
+
});
|
|
3600
|
+
}
|
|
3601
|
+
export declare class GetInnerCustomerservicetemplateResponse extends $tea.Model {
|
|
3602
|
+
reqMsgId?: string;
|
|
3603
|
+
resultCode?: string;
|
|
3604
|
+
resultMsg?: string;
|
|
3605
|
+
serviceProviderName?: string;
|
|
3606
|
+
alipayBindMobile?: string;
|
|
3607
|
+
alipayLogonId?: string;
|
|
3608
|
+
customerServicePhone?: string;
|
|
3609
|
+
customerServiceName?: string;
|
|
3610
|
+
onlineSupportSiteUrl?: string;
|
|
3611
|
+
customerComplaintIssues?: string;
|
|
3612
|
+
static names(): {
|
|
3613
|
+
[key: string]: string;
|
|
3614
|
+
};
|
|
3615
|
+
static types(): {
|
|
3616
|
+
[key: string]: any;
|
|
3617
|
+
};
|
|
3618
|
+
constructor(map?: {
|
|
3619
|
+
[key: string]: any;
|
|
3620
|
+
});
|
|
3621
|
+
}
|
|
3418
3622
|
export declare class CreateInsureRequest extends $tea.Model {
|
|
3419
3623
|
authToken?: string;
|
|
3420
3624
|
productInstanceId?: string;
|
|
@@ -5998,6 +6202,66 @@ export default class Client {
|
|
|
5998
6202
|
batchqueryInnerMarketingscoreEx(request: BatchqueryInnerMarketingscoreRequest, headers: {
|
|
5999
6203
|
[key: string]: string;
|
|
6000
6204
|
}, runtime: $Util.RuntimeOptions): Promise<BatchqueryInnerMarketingscoreResponse>;
|
|
6205
|
+
/**
|
|
6206
|
+
* Description: 创建客服信息
|
|
6207
|
+
* Summary: 创建客服信息
|
|
6208
|
+
*/
|
|
6209
|
+
createInnerCustomerservice(request: CreateInnerCustomerserviceRequest): Promise<CreateInnerCustomerserviceResponse>;
|
|
6210
|
+
/**
|
|
6211
|
+
* Description: 创建客服信息
|
|
6212
|
+
* Summary: 创建客服信息
|
|
6213
|
+
*/
|
|
6214
|
+
createInnerCustomerserviceEx(request: CreateInnerCustomerserviceRequest, headers: {
|
|
6215
|
+
[key: string]: string;
|
|
6216
|
+
}, runtime: $Util.RuntimeOptions): Promise<CreateInnerCustomerserviceResponse>;
|
|
6217
|
+
/**
|
|
6218
|
+
* Description: 更新客服信息
|
|
6219
|
+
* Summary: 更新客服信息
|
|
6220
|
+
*/
|
|
6221
|
+
updateInnerCustomerservice(request: UpdateInnerCustomerserviceRequest): Promise<UpdateInnerCustomerserviceResponse>;
|
|
6222
|
+
/**
|
|
6223
|
+
* Description: 更新客服信息
|
|
6224
|
+
* Summary: 更新客服信息
|
|
6225
|
+
*/
|
|
6226
|
+
updateInnerCustomerserviceEx(request: UpdateInnerCustomerserviceRequest, headers: {
|
|
6227
|
+
[key: string]: string;
|
|
6228
|
+
}, runtime: $Util.RuntimeOptions): Promise<UpdateInnerCustomerserviceResponse>;
|
|
6229
|
+
/**
|
|
6230
|
+
* Description: 分页查询客服信息
|
|
6231
|
+
* Summary: 分页查询客服信息
|
|
6232
|
+
*/
|
|
6233
|
+
pagequeryInnerCustomerservice(request: PagequeryInnerCustomerserviceRequest): Promise<PagequeryInnerCustomerserviceResponse>;
|
|
6234
|
+
/**
|
|
6235
|
+
* Description: 分页查询客服信息
|
|
6236
|
+
* Summary: 分页查询客服信息
|
|
6237
|
+
*/
|
|
6238
|
+
pagequeryInnerCustomerserviceEx(request: PagequeryInnerCustomerserviceRequest, headers: {
|
|
6239
|
+
[key: string]: string;
|
|
6240
|
+
}, runtime: $Util.RuntimeOptions): Promise<PagequeryInnerCustomerserviceResponse>;
|
|
6241
|
+
/**
|
|
6242
|
+
* Description: 获取客服信息详情
|
|
6243
|
+
* Summary: 获取客服信息详情
|
|
6244
|
+
*/
|
|
6245
|
+
detailInnerCustomerservice(request: DetailInnerCustomerserviceRequest): Promise<DetailInnerCustomerserviceResponse>;
|
|
6246
|
+
/**
|
|
6247
|
+
* Description: 获取客服信息详情
|
|
6248
|
+
* Summary: 获取客服信息详情
|
|
6249
|
+
*/
|
|
6250
|
+
detailInnerCustomerserviceEx(request: DetailInnerCustomerserviceRequest, headers: {
|
|
6251
|
+
[key: string]: string;
|
|
6252
|
+
}, runtime: $Util.RuntimeOptions): Promise<DetailInnerCustomerserviceResponse>;
|
|
6253
|
+
/**
|
|
6254
|
+
* Description: 获取代理商客服信息模版
|
|
6255
|
+
* Summary: 获取代理商客服信息模版
|
|
6256
|
+
*/
|
|
6257
|
+
getInnerCustomerservicetemplate(request: GetInnerCustomerservicetemplateRequest): Promise<GetInnerCustomerservicetemplateResponse>;
|
|
6258
|
+
/**
|
|
6259
|
+
* Description: 获取代理商客服信息模版
|
|
6260
|
+
* Summary: 获取代理商客服信息模版
|
|
6261
|
+
*/
|
|
6262
|
+
getInnerCustomerservicetemplateEx(request: GetInnerCustomerservicetemplateRequest, headers: {
|
|
6263
|
+
[key: string]: string;
|
|
6264
|
+
}, runtime: $Util.RuntimeOptions): Promise<GetInnerCustomerservicetemplateResponse>;
|
|
6001
6265
|
/**
|
|
6002
6266
|
* Description: 一键投保
|
|
6003
6267
|
* Summary: 投保
|