@antchain/riskplus 1.19.16 → 1.19.17
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 +3 -5
- package/dist/client.js +7 -11
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +13 -21
package/package.json
CHANGED
package/src/client.ts
CHANGED
|
@@ -13405,6 +13405,10 @@ export class PushRbbCustomerInformationRequest extends $tea.Model {
|
|
|
13405
13405
|
idCard: string;
|
|
13406
13406
|
// 手机号
|
|
13407
13407
|
phoneNumber: string;
|
|
13408
|
+
// 合作伙伴
|
|
13409
|
+
businessPartner: string;
|
|
13410
|
+
// 指定产品方
|
|
13411
|
+
productSide: string;
|
|
13408
13412
|
// 账号
|
|
13409
13413
|
account: string;
|
|
13410
13414
|
// 密码
|
|
@@ -13418,6 +13422,8 @@ export class PushRbbCustomerInformationRequest extends $tea.Model {
|
|
|
13418
13422
|
name: 'name',
|
|
13419
13423
|
idCard: 'id_card',
|
|
13420
13424
|
phoneNumber: 'phone_number',
|
|
13425
|
+
businessPartner: 'business_partner',
|
|
13426
|
+
productSide: 'product_side',
|
|
13421
13427
|
account: 'account',
|
|
13422
13428
|
password: 'password',
|
|
13423
13429
|
};
|
|
@@ -13432,6 +13438,8 @@ export class PushRbbCustomerInformationRequest extends $tea.Model {
|
|
|
13432
13438
|
name: 'string',
|
|
13433
13439
|
idCard: 'string',
|
|
13434
13440
|
phoneNumber: 'string',
|
|
13441
|
+
businessPartner: 'string',
|
|
13442
|
+
productSide: 'string',
|
|
13435
13443
|
account: 'string',
|
|
13436
13444
|
password: 'string',
|
|
13437
13445
|
};
|
|
@@ -13545,25 +13553,13 @@ export class PushRbbCustomerStatusRequest extends $tea.Model {
|
|
|
13545
13553
|
// OAuth模式下的授权token
|
|
13546
13554
|
authToken?: string;
|
|
13547
13555
|
productInstanceId?: string;
|
|
13548
|
-
//
|
|
13549
|
-
|
|
13550
|
-
// 相关产品id
|
|
13551
|
-
productCode: string;
|
|
13552
|
-
// 企业名称
|
|
13553
|
-
companyName: string;
|
|
13554
|
-
// 状态编号
|
|
13555
|
-
statusCode: string;
|
|
13556
|
-
// 状态文本
|
|
13557
|
-
status: string;
|
|
13556
|
+
// 结果数据
|
|
13557
|
+
resultData: string;
|
|
13558
13558
|
static names(): { [key: string]: string } {
|
|
13559
13559
|
return {
|
|
13560
13560
|
authToken: 'auth_token',
|
|
13561
13561
|
productInstanceId: 'product_instance_id',
|
|
13562
|
-
|
|
13563
|
-
productCode: 'product_code',
|
|
13564
|
-
companyName: 'company_name',
|
|
13565
|
-
statusCode: 'status_code',
|
|
13566
|
-
status: 'status',
|
|
13562
|
+
resultData: 'result_data',
|
|
13567
13563
|
};
|
|
13568
13564
|
}
|
|
13569
13565
|
|
|
@@ -13571,11 +13567,7 @@ export class PushRbbCustomerStatusRequest extends $tea.Model {
|
|
|
13571
13567
|
return {
|
|
13572
13568
|
authToken: 'string',
|
|
13573
13569
|
productInstanceId: 'string',
|
|
13574
|
-
|
|
13575
|
-
productCode: 'string',
|
|
13576
|
-
companyName: 'string',
|
|
13577
|
-
statusCode: 'string',
|
|
13578
|
-
status: 'string',
|
|
13570
|
+
resultData: 'string',
|
|
13579
13571
|
};
|
|
13580
13572
|
}
|
|
13581
13573
|
|
|
@@ -19848,7 +19840,7 @@ export default class Client {
|
|
|
19848
19840
|
req_msg_id: AntchainUtil.getNonce(),
|
|
19849
19841
|
access_key: this._accessKeyId,
|
|
19850
19842
|
base_sdk_version: "TeaSDK-2.0",
|
|
19851
|
-
sdk_version: "1.19.
|
|
19843
|
+
sdk_version: "1.19.17",
|
|
19852
19844
|
_prod_code: "RISKPLUS",
|
|
19853
19845
|
_prod_channel: "undefined",
|
|
19854
19846
|
};
|