@antchain/riskplus 1.13.9 → 1.13.12
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 +20 -7
- package/dist/client.js +34 -15
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +54 -29
package/package.json
CHANGED
package/src/client.ts
CHANGED
|
@@ -2142,6 +2142,51 @@ export class SecurityResultInfos extends $tea.Model {
|
|
|
2142
2142
|
}
|
|
2143
2143
|
}
|
|
2144
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
|
+
|
|
2145
2190
|
// 企业影响人数年龄分布统计
|
|
2146
2191
|
export class RtopAgeDistribution extends $tea.Model {
|
|
2147
2192
|
// 年龄
|
|
@@ -6497,6 +6542,8 @@ export class ApplyDubbridgeCustomerAgreementsignRequest extends $tea.Model {
|
|
|
6497
6542
|
cardNo: string;
|
|
6498
6543
|
// 证件类型
|
|
6499
6544
|
idType?: string;
|
|
6545
|
+
// 资金方编号
|
|
6546
|
+
fundCode?: string;
|
|
6500
6547
|
static names(): { [key: string]: string } {
|
|
6501
6548
|
return {
|
|
6502
6549
|
authToken: 'auth_token',
|
|
@@ -6506,6 +6553,7 @@ export class ApplyDubbridgeCustomerAgreementsignRequest extends $tea.Model {
|
|
|
6506
6553
|
customName: 'custom_name',
|
|
6507
6554
|
cardNo: 'card_no',
|
|
6508
6555
|
idType: 'id_type',
|
|
6556
|
+
fundCode: 'fund_code',
|
|
6509
6557
|
};
|
|
6510
6558
|
}
|
|
6511
6559
|
|
|
@@ -6518,6 +6566,7 @@ export class ApplyDubbridgeCustomerAgreementsignRequest extends $tea.Model {
|
|
|
6518
6566
|
customName: 'string',
|
|
6519
6567
|
cardNo: 'string',
|
|
6520
6568
|
idType: 'string',
|
|
6569
|
+
fundCode: 'string',
|
|
6521
6570
|
};
|
|
6522
6571
|
}
|
|
6523
6572
|
|
|
@@ -7556,32 +7605,14 @@ export class QueryDubbridgeSearchContractResponse extends $tea.Model {
|
|
|
7556
7605
|
resultCode?: string;
|
|
7557
7606
|
// 异常信息的文本描述
|
|
7558
7607
|
resultMsg?: string;
|
|
7559
|
-
//
|
|
7560
|
-
|
|
7561
|
-
// 合同编号
|
|
7562
|
-
contractNo?: string;
|
|
7563
|
-
// 合同名称
|
|
7564
|
-
contractName?: string;
|
|
7565
|
-
// 合同类型:0:电子合同签署授权协议 1:借款合同 2:抵押合同 3:担保合同 4:用信合同 5:通用合同 6:征信授权书
|
|
7566
|
-
contractType?: string;
|
|
7567
|
-
// 客户编号
|
|
7568
|
-
customNo?: string;
|
|
7569
|
-
// 下载地址
|
|
7570
|
-
savePath?: string;
|
|
7571
|
-
// 合同金额
|
|
7572
|
-
contractAmount?: number;
|
|
7608
|
+
// 合同信息列表
|
|
7609
|
+
contractResponseList?: Contract[];
|
|
7573
7610
|
static names(): { [key: string]: string } {
|
|
7574
7611
|
return {
|
|
7575
7612
|
reqMsgId: 'req_msg_id',
|
|
7576
7613
|
resultCode: 'result_code',
|
|
7577
7614
|
resultMsg: 'result_msg',
|
|
7578
|
-
|
|
7579
|
-
contractNo: 'contract_no',
|
|
7580
|
-
contractName: 'contract_name',
|
|
7581
|
-
contractType: 'contract_type',
|
|
7582
|
-
customNo: 'custom_no',
|
|
7583
|
-
savePath: 'save_path',
|
|
7584
|
-
contractAmount: 'contract_amount',
|
|
7615
|
+
contractResponseList: 'contract_response_list',
|
|
7585
7616
|
};
|
|
7586
7617
|
}
|
|
7587
7618
|
|
|
@@ -7590,13 +7621,7 @@ export class QueryDubbridgeSearchContractResponse extends $tea.Model {
|
|
|
7590
7621
|
reqMsgId: 'string',
|
|
7591
7622
|
resultCode: 'string',
|
|
7592
7623
|
resultMsg: 'string',
|
|
7593
|
-
|
|
7594
|
-
contractNo: 'string',
|
|
7595
|
-
contractName: 'string',
|
|
7596
|
-
contractType: 'string',
|
|
7597
|
-
customNo: 'string',
|
|
7598
|
-
savePath: 'string',
|
|
7599
|
-
contractAmount: 'number',
|
|
7624
|
+
contractResponseList: { 'type': 'array', 'itemType': Contract },
|
|
7600
7625
|
};
|
|
7601
7626
|
}
|
|
7602
7627
|
|
|
@@ -13746,7 +13771,7 @@ export default class Client {
|
|
|
13746
13771
|
req_msg_id: AntchainUtil.getNonce(),
|
|
13747
13772
|
access_key: this._accessKeyId,
|
|
13748
13773
|
base_sdk_version: "TeaSDK-2.0",
|
|
13749
|
-
sdk_version: "1.13.
|
|
13774
|
+
sdk_version: "1.13.12",
|
|
13750
13775
|
};
|
|
13751
13776
|
if (!Util.empty(this._securityToken)) {
|
|
13752
13777
|
request_.query["security_token"] = this._securityToken;
|