@antchain/riskplus 1.19.16 → 1.19.18
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 +4 -5
- package/dist/client.js +9 -11
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +17 -21
package/package.json
CHANGED
package/src/client.ts
CHANGED
|
@@ -3464,6 +3464,8 @@ export class GetAgreementUrlResponseData extends $tea.Model {
|
|
|
3464
3464
|
fileBase64?: string;
|
|
3465
3465
|
// 协议图片文件base64集合
|
|
3466
3466
|
picFileBase64List?: string[];
|
|
3467
|
+
// 图片文件oss集合
|
|
3468
|
+
picOssPathList?: string[];
|
|
3467
3469
|
// 机构名称
|
|
3468
3470
|
organizationName: string;
|
|
3469
3471
|
// 协议类型-code
|
|
@@ -3476,6 +3478,7 @@ export class GetAgreementUrlResponseData extends $tea.Model {
|
|
|
3476
3478
|
agreementUrl: 'agreement_url',
|
|
3477
3479
|
fileBase64: 'file_base64',
|
|
3478
3480
|
picFileBase64List: 'pic_file_base64_list',
|
|
3481
|
+
picOssPathList: 'pic_oss_path_list',
|
|
3479
3482
|
organizationName: 'organization_name',
|
|
3480
3483
|
fileType: 'file_type',
|
|
3481
3484
|
fileTypeName: 'file_type_name',
|
|
@@ -3488,6 +3491,7 @@ export class GetAgreementUrlResponseData extends $tea.Model {
|
|
|
3488
3491
|
agreementUrl: 'string',
|
|
3489
3492
|
fileBase64: 'string',
|
|
3490
3493
|
picFileBase64List: { 'type': 'array', 'itemType': 'string' },
|
|
3494
|
+
picOssPathList: { 'type': 'array', 'itemType': 'string' },
|
|
3491
3495
|
organizationName: 'string',
|
|
3492
3496
|
fileType: 'string',
|
|
3493
3497
|
fileTypeName: 'string',
|
|
@@ -13405,6 +13409,10 @@ export class PushRbbCustomerInformationRequest extends $tea.Model {
|
|
|
13405
13409
|
idCard: string;
|
|
13406
13410
|
// 手机号
|
|
13407
13411
|
phoneNumber: string;
|
|
13412
|
+
// 合作伙伴
|
|
13413
|
+
businessPartner: string;
|
|
13414
|
+
// 指定产品方
|
|
13415
|
+
productSide: string;
|
|
13408
13416
|
// 账号
|
|
13409
13417
|
account: string;
|
|
13410
13418
|
// 密码
|
|
@@ -13418,6 +13426,8 @@ export class PushRbbCustomerInformationRequest extends $tea.Model {
|
|
|
13418
13426
|
name: 'name',
|
|
13419
13427
|
idCard: 'id_card',
|
|
13420
13428
|
phoneNumber: 'phone_number',
|
|
13429
|
+
businessPartner: 'business_partner',
|
|
13430
|
+
productSide: 'product_side',
|
|
13421
13431
|
account: 'account',
|
|
13422
13432
|
password: 'password',
|
|
13423
13433
|
};
|
|
@@ -13432,6 +13442,8 @@ export class PushRbbCustomerInformationRequest extends $tea.Model {
|
|
|
13432
13442
|
name: 'string',
|
|
13433
13443
|
idCard: 'string',
|
|
13434
13444
|
phoneNumber: 'string',
|
|
13445
|
+
businessPartner: 'string',
|
|
13446
|
+
productSide: 'string',
|
|
13435
13447
|
account: 'string',
|
|
13436
13448
|
password: 'string',
|
|
13437
13449
|
};
|
|
@@ -13545,25 +13557,13 @@ export class PushRbbCustomerStatusRequest extends $tea.Model {
|
|
|
13545
13557
|
// OAuth模式下的授权token
|
|
13546
13558
|
authToken?: string;
|
|
13547
13559
|
productInstanceId?: string;
|
|
13548
|
-
//
|
|
13549
|
-
|
|
13550
|
-
// 相关产品id
|
|
13551
|
-
productCode: string;
|
|
13552
|
-
// 企业名称
|
|
13553
|
-
companyName: string;
|
|
13554
|
-
// 状态编号
|
|
13555
|
-
statusCode: string;
|
|
13556
|
-
// 状态文本
|
|
13557
|
-
status: string;
|
|
13560
|
+
// 结果数据
|
|
13561
|
+
resultData: string;
|
|
13558
13562
|
static names(): { [key: string]: string } {
|
|
13559
13563
|
return {
|
|
13560
13564
|
authToken: 'auth_token',
|
|
13561
13565
|
productInstanceId: 'product_instance_id',
|
|
13562
|
-
|
|
13563
|
-
productCode: 'product_code',
|
|
13564
|
-
companyName: 'company_name',
|
|
13565
|
-
statusCode: 'status_code',
|
|
13566
|
-
status: 'status',
|
|
13566
|
+
resultData: 'result_data',
|
|
13567
13567
|
};
|
|
13568
13568
|
}
|
|
13569
13569
|
|
|
@@ -13571,11 +13571,7 @@ export class PushRbbCustomerStatusRequest extends $tea.Model {
|
|
|
13571
13571
|
return {
|
|
13572
13572
|
authToken: 'string',
|
|
13573
13573
|
productInstanceId: 'string',
|
|
13574
|
-
|
|
13575
|
-
productCode: 'string',
|
|
13576
|
-
companyName: 'string',
|
|
13577
|
-
statusCode: 'string',
|
|
13578
|
-
status: 'string',
|
|
13574
|
+
resultData: 'string',
|
|
13579
13575
|
};
|
|
13580
13576
|
}
|
|
13581
13577
|
|
|
@@ -19848,7 +19844,7 @@ export default class Client {
|
|
|
19848
19844
|
req_msg_id: AntchainUtil.getNonce(),
|
|
19849
19845
|
access_key: this._accessKeyId,
|
|
19850
19846
|
base_sdk_version: "TeaSDK-2.0",
|
|
19851
|
-
sdk_version: "1.19.
|
|
19847
|
+
sdk_version: "1.19.18",
|
|
19852
19848
|
_prod_code: "RISKPLUS",
|
|
19853
19849
|
_prod_channel: "undefined",
|
|
19854
19850
|
};
|