@antchain/riskplus 1.13.7 → 1.13.11
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 +21 -7
- package/dist/client.js +38 -15
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +60 -29
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
|
|
|
@@ -2138,6 +2142,51 @@ export class SecurityResultInfos extends $tea.Model {
|
|
|
2138
2142
|
}
|
|
2139
2143
|
}
|
|
2140
2144
|
|
|
2145
|
+
// 天枢合同
|
|
2146
|
+
export class Contract extends $tea.Model {
|
|
2147
|
+
// 关联编号
|
|
2148
|
+
relationNo: string;
|
|
2149
|
+
// 合同编号
|
|
2150
|
+
contractNo: string;
|
|
2151
|
+
// 合同名称
|
|
2152
|
+
contractName: string;
|
|
2153
|
+
// 合同类型
|
|
2154
|
+
contractType: string;
|
|
2155
|
+
// 客户编号
|
|
2156
|
+
customNo: string;
|
|
2157
|
+
// 合同存放目录
|
|
2158
|
+
savePath: string;
|
|
2159
|
+
// 合同金额
|
|
2160
|
+
contractAmount: number;
|
|
2161
|
+
static names(): { [key: string]: string } {
|
|
2162
|
+
return {
|
|
2163
|
+
relationNo: 'relation_no',
|
|
2164
|
+
contractNo: 'contract_no',
|
|
2165
|
+
contractName: 'contract_name',
|
|
2166
|
+
contractType: 'contract_type',
|
|
2167
|
+
customNo: 'custom_no',
|
|
2168
|
+
savePath: 'save_path',
|
|
2169
|
+
contractAmount: 'contract_amount',
|
|
2170
|
+
};
|
|
2171
|
+
}
|
|
2172
|
+
|
|
2173
|
+
static types(): { [key: string]: any } {
|
|
2174
|
+
return {
|
|
2175
|
+
relationNo: 'string',
|
|
2176
|
+
contractNo: 'string',
|
|
2177
|
+
contractName: 'string',
|
|
2178
|
+
contractType: 'string',
|
|
2179
|
+
customNo: 'string',
|
|
2180
|
+
savePath: 'string',
|
|
2181
|
+
contractAmount: 'number',
|
|
2182
|
+
};
|
|
2183
|
+
}
|
|
2184
|
+
|
|
2185
|
+
constructor(map?: { [key: string]: any }) {
|
|
2186
|
+
super(map);
|
|
2187
|
+
}
|
|
2188
|
+
}
|
|
2189
|
+
|
|
2141
2190
|
// 企业影响人数年龄分布统计
|
|
2142
2191
|
export class RtopAgeDistribution extends $tea.Model {
|
|
2143
2192
|
// 年龄
|
|
@@ -7518,12 +7567,15 @@ export class QueryDubbridgeSearchContractRequest extends $tea.Model {
|
|
|
7518
7567
|
originalOrderNo: string;
|
|
7519
7568
|
// 客户号
|
|
7520
7569
|
customerNo: string;
|
|
7570
|
+
// 合同类型
|
|
7571
|
+
contractType?: string;
|
|
7521
7572
|
static names(): { [key: string]: string } {
|
|
7522
7573
|
return {
|
|
7523
7574
|
authToken: 'auth_token',
|
|
7524
7575
|
productInstanceId: 'product_instance_id',
|
|
7525
7576
|
originalOrderNo: 'original_order_no',
|
|
7526
7577
|
customerNo: 'customer_no',
|
|
7578
|
+
contractType: 'contract_type',
|
|
7527
7579
|
};
|
|
7528
7580
|
}
|
|
7529
7581
|
|
|
@@ -7533,6 +7585,7 @@ export class QueryDubbridgeSearchContractRequest extends $tea.Model {
|
|
|
7533
7585
|
productInstanceId: 'string',
|
|
7534
7586
|
originalOrderNo: 'string',
|
|
7535
7587
|
customerNo: 'string',
|
|
7588
|
+
contractType: 'string',
|
|
7536
7589
|
};
|
|
7537
7590
|
}
|
|
7538
7591
|
|
|
@@ -7548,32 +7601,14 @@ export class QueryDubbridgeSearchContractResponse extends $tea.Model {
|
|
|
7548
7601
|
resultCode?: string;
|
|
7549
7602
|
// 异常信息的文本描述
|
|
7550
7603
|
resultMsg?: string;
|
|
7551
|
-
//
|
|
7552
|
-
|
|
7553
|
-
// 合同编号
|
|
7554
|
-
contractNo?: string;
|
|
7555
|
-
// 合同名称
|
|
7556
|
-
contractName?: string;
|
|
7557
|
-
// 合同类型:0:电子合同签署授权协议 1:借款合同 2:抵押合同 3:担保合同 4:用信合同 5:通用合同 6:征信授权书
|
|
7558
|
-
contractType?: string;
|
|
7559
|
-
// 客户编号
|
|
7560
|
-
customNo?: string;
|
|
7561
|
-
// 下载地址
|
|
7562
|
-
savePath?: string;
|
|
7563
|
-
// 合同金额
|
|
7564
|
-
contractAmount?: number;
|
|
7604
|
+
// 合同信息列表
|
|
7605
|
+
contractResponseList?: Contract[];
|
|
7565
7606
|
static names(): { [key: string]: string } {
|
|
7566
7607
|
return {
|
|
7567
7608
|
reqMsgId: 'req_msg_id',
|
|
7568
7609
|
resultCode: 'result_code',
|
|
7569
7610
|
resultMsg: 'result_msg',
|
|
7570
|
-
|
|
7571
|
-
contractNo: 'contract_no',
|
|
7572
|
-
contractName: 'contract_name',
|
|
7573
|
-
contractType: 'contract_type',
|
|
7574
|
-
customNo: 'custom_no',
|
|
7575
|
-
savePath: 'save_path',
|
|
7576
|
-
contractAmount: 'contract_amount',
|
|
7611
|
+
contractResponseList: 'contract_response_list',
|
|
7577
7612
|
};
|
|
7578
7613
|
}
|
|
7579
7614
|
|
|
@@ -7582,13 +7617,7 @@ export class QueryDubbridgeSearchContractResponse extends $tea.Model {
|
|
|
7582
7617
|
reqMsgId: 'string',
|
|
7583
7618
|
resultCode: 'string',
|
|
7584
7619
|
resultMsg: 'string',
|
|
7585
|
-
|
|
7586
|
-
contractNo: 'string',
|
|
7587
|
-
contractName: 'string',
|
|
7588
|
-
contractType: 'string',
|
|
7589
|
-
customNo: 'string',
|
|
7590
|
-
savePath: 'string',
|
|
7591
|
-
contractAmount: 'number',
|
|
7620
|
+
contractResponseList: { 'type': 'array', 'itemType': Contract },
|
|
7592
7621
|
};
|
|
7593
7622
|
}
|
|
7594
7623
|
|
|
@@ -13738,7 +13767,9 @@ export default class Client {
|
|
|
13738
13767
|
req_msg_id: AntchainUtil.getNonce(),
|
|
13739
13768
|
access_key: this._accessKeyId,
|
|
13740
13769
|
base_sdk_version: "TeaSDK-2.0",
|
|
13741
|
-
sdk_version: "1.13.
|
|
13770
|
+
sdk_version: "1.13.11",
|
|
13771
|
+
_prod_code: "RISKPLUS",
|
|
13772
|
+
_prod_channel: "undefined",
|
|
13742
13773
|
};
|
|
13743
13774
|
if (!Util.empty(this._securityToken)) {
|
|
13744
13775
|
request_.query["security_token"] = this._securityToken;
|