@antchain/riskplus 1.13.12 → 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/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
|
@@ -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
|
|
|
@@ -13771,7 +13779,7 @@ export default class Client {
|
|
|
13771
13779
|
req_msg_id: AntchainUtil.getNonce(),
|
|
13772
13780
|
access_key: this._accessKeyId,
|
|
13773
13781
|
base_sdk_version: "TeaSDK-2.0",
|
|
13774
|
-
sdk_version: "1.13.
|
|
13782
|
+
sdk_version: "1.13.13",
|
|
13775
13783
|
};
|
|
13776
13784
|
if (!Util.empty(this._securityToken)) {
|
|
13777
13785
|
request_.query["security_token"] = this._securityToken;
|