@antchain/riskplus 1.13.9 → 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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@antchain/riskplus",
3
- "version": "1.13.9",
3
+ "version": "1.13.11",
4
4
  "description": "",
5
5
  "main": "dist/client.js",
6
6
  "scripts": {
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
  // 年龄
@@ -7556,32 +7601,14 @@ export class QueryDubbridgeSearchContractResponse extends $tea.Model {
7556
7601
  resultCode?: string;
7557
7602
  // 异常信息的文本描述
7558
7603
  resultMsg?: string;
7559
- // 关联编号(授信/用信)
7560
- relationNo?: string;
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;
7604
+ // 合同信息列表
7605
+ contractResponseList?: Contract[];
7573
7606
  static names(): { [key: string]: string } {
7574
7607
  return {
7575
7608
  reqMsgId: 'req_msg_id',
7576
7609
  resultCode: 'result_code',
7577
7610
  resultMsg: 'result_msg',
7578
- relationNo: 'relation_no',
7579
- contractNo: 'contract_no',
7580
- contractName: 'contract_name',
7581
- contractType: 'contract_type',
7582
- customNo: 'custom_no',
7583
- savePath: 'save_path',
7584
- contractAmount: 'contract_amount',
7611
+ contractResponseList: 'contract_response_list',
7585
7612
  };
7586
7613
  }
7587
7614
 
@@ -7590,13 +7617,7 @@ export class QueryDubbridgeSearchContractResponse extends $tea.Model {
7590
7617
  reqMsgId: 'string',
7591
7618
  resultCode: 'string',
7592
7619
  resultMsg: 'string',
7593
- relationNo: 'string',
7594
- contractNo: 'string',
7595
- contractName: 'string',
7596
- contractType: 'string',
7597
- customNo: 'string',
7598
- savePath: 'string',
7599
- contractAmount: 'number',
7620
+ contractResponseList: { 'type': 'array', 'itemType': Contract },
7600
7621
  };
7601
7622
  }
7602
7623
 
@@ -13746,7 +13767,9 @@ export default class Client {
13746
13767
  req_msg_id: AntchainUtil.getNonce(),
13747
13768
  access_key: this._accessKeyId,
13748
13769
  base_sdk_version: "TeaSDK-2.0",
13749
- sdk_version: "1.13.9",
13770
+ sdk_version: "1.13.11",
13771
+ _prod_code: "RISKPLUS",
13772
+ _prod_channel: "undefined",
13750
13773
  };
13751
13774
  if (!Util.empty(this._securityToken)) {
13752
13775
  request_.query["security_token"] = this._securityToken;