@antchain/riskplus 1.13.7 → 1.13.9
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 +2 -0
- package/dist/client.js +5 -1
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +9 -1
package/package.json
CHANGED
package/src/client.ts
CHANGED
|
@@ -828,6 +828,8 @@ export class PersonalInfo extends $tea.Model {
|
|
|
828
828
|
sex?: string;
|
|
829
829
|
// 民族
|
|
830
830
|
nation?: string;
|
|
831
|
+
// 婚姻状态:00-未婚,01-已婚,02-离婚,03-丧偶,99-未知
|
|
832
|
+
maritalStatus?: string;
|
|
831
833
|
static names(): { [key: string]: string } {
|
|
832
834
|
return {
|
|
833
835
|
customName: 'custom_name',
|
|
@@ -844,6 +846,7 @@ export class PersonalInfo extends $tea.Model {
|
|
|
844
846
|
address: 'address',
|
|
845
847
|
sex: 'sex',
|
|
846
848
|
nation: 'nation',
|
|
849
|
+
maritalStatus: 'marital_status',
|
|
847
850
|
};
|
|
848
851
|
}
|
|
849
852
|
|
|
@@ -863,6 +866,7 @@ export class PersonalInfo extends $tea.Model {
|
|
|
863
866
|
address: 'string',
|
|
864
867
|
sex: 'string',
|
|
865
868
|
nation: 'string',
|
|
869
|
+
maritalStatus: 'string',
|
|
866
870
|
};
|
|
867
871
|
}
|
|
868
872
|
|
|
@@ -7518,12 +7522,15 @@ export class QueryDubbridgeSearchContractRequest extends $tea.Model {
|
|
|
7518
7522
|
originalOrderNo: string;
|
|
7519
7523
|
// 客户号
|
|
7520
7524
|
customerNo: string;
|
|
7525
|
+
// 合同类型
|
|
7526
|
+
contractType?: string;
|
|
7521
7527
|
static names(): { [key: string]: string } {
|
|
7522
7528
|
return {
|
|
7523
7529
|
authToken: 'auth_token',
|
|
7524
7530
|
productInstanceId: 'product_instance_id',
|
|
7525
7531
|
originalOrderNo: 'original_order_no',
|
|
7526
7532
|
customerNo: 'customer_no',
|
|
7533
|
+
contractType: 'contract_type',
|
|
7527
7534
|
};
|
|
7528
7535
|
}
|
|
7529
7536
|
|
|
@@ -7533,6 +7540,7 @@ export class QueryDubbridgeSearchContractRequest extends $tea.Model {
|
|
|
7533
7540
|
productInstanceId: 'string',
|
|
7534
7541
|
originalOrderNo: 'string',
|
|
7535
7542
|
customerNo: 'string',
|
|
7543
|
+
contractType: 'string',
|
|
7536
7544
|
};
|
|
7537
7545
|
}
|
|
7538
7546
|
|
|
@@ -13738,7 +13746,7 @@ export default class Client {
|
|
|
13738
13746
|
req_msg_id: AntchainUtil.getNonce(),
|
|
13739
13747
|
access_key: this._accessKeyId,
|
|
13740
13748
|
base_sdk_version: "TeaSDK-2.0",
|
|
13741
|
-
sdk_version: "1.13.
|
|
13749
|
+
sdk_version: "1.13.9",
|
|
13742
13750
|
};
|
|
13743
13751
|
if (!Util.empty(this._securityToken)) {
|
|
13744
13752
|
request_.query["security_token"] = this._securityToken;
|