@antchain/riskplus 1.13.11 → 1.13.13

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.11",
3
+ "version": "1.13.13",
4
4
  "description": "",
5
5
  "main": "dist/client.js",
6
6
  "scripts": {
package/src/client.ts CHANGED
@@ -2158,6 +2158,10 @@ export class Contract extends $tea.Model {
2158
2158
  savePath: string;
2159
2159
  // 合同金额
2160
2160
  contractAmount: number;
2161
+ // 用信合同编号
2162
+ disburseContractNo: string;
2163
+ // 授信合同编号
2164
+ creditContractNo: string;
2161
2165
  static names(): { [key: string]: string } {
2162
2166
  return {
2163
2167
  relationNo: 'relation_no',
@@ -2167,6 +2171,8 @@ export class Contract extends $tea.Model {
2167
2171
  customNo: 'custom_no',
2168
2172
  savePath: 'save_path',
2169
2173
  contractAmount: 'contract_amount',
2174
+ disburseContractNo: 'disburse_contract_no',
2175
+ creditContractNo: 'credit_contract_no',
2170
2176
  };
2171
2177
  }
2172
2178
 
@@ -2179,6 +2185,8 @@ export class Contract extends $tea.Model {
2179
2185
  customNo: 'string',
2180
2186
  savePath: 'string',
2181
2187
  contractAmount: 'number',
2188
+ disburseContractNo: 'string',
2189
+ creditContractNo: 'string',
2182
2190
  };
2183
2191
  }
2184
2192
 
@@ -6542,6 +6550,8 @@ export class ApplyDubbridgeCustomerAgreementsignRequest extends $tea.Model {
6542
6550
  cardNo: string;
6543
6551
  // 证件类型
6544
6552
  idType?: string;
6553
+ // 资金方编号
6554
+ fundCode?: string;
6545
6555
  static names(): { [key: string]: string } {
6546
6556
  return {
6547
6557
  authToken: 'auth_token',
@@ -6551,6 +6561,7 @@ export class ApplyDubbridgeCustomerAgreementsignRequest extends $tea.Model {
6551
6561
  customName: 'custom_name',
6552
6562
  cardNo: 'card_no',
6553
6563
  idType: 'id_type',
6564
+ fundCode: 'fund_code',
6554
6565
  };
6555
6566
  }
6556
6567
 
@@ -6563,6 +6574,7 @@ export class ApplyDubbridgeCustomerAgreementsignRequest extends $tea.Model {
6563
6574
  customName: 'string',
6564
6575
  cardNo: 'string',
6565
6576
  idType: 'string',
6577
+ fundCode: 'string',
6566
6578
  };
6567
6579
  }
6568
6580
 
@@ -13767,9 +13779,7 @@ export default class Client {
13767
13779
  req_msg_id: AntchainUtil.getNonce(),
13768
13780
  access_key: this._accessKeyId,
13769
13781
  base_sdk_version: "TeaSDK-2.0",
13770
- sdk_version: "1.13.11",
13771
- _prod_code: "RISKPLUS",
13772
- _prod_channel: "undefined",
13782
+ sdk_version: "1.13.13",
13773
13783
  };
13774
13784
  if (!Util.empty(this._securityToken)) {
13775
13785
  request_.query["security_token"] = this._securityToken;