@antchain/riskplus 1.16.5 → 1.16.6
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 +1 -0
- package/dist/client.js +5 -1
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +7 -1
package/package.json
CHANGED
package/src/client.ts
CHANGED
|
@@ -7971,6 +7971,8 @@ export class ApplyDubbridgeUsecreditRequest extends $tea.Model {
|
|
|
7971
7971
|
channelType?: string;
|
|
7972
7972
|
// 客户类型
|
|
7973
7973
|
customType?: string;
|
|
7974
|
+
// 风险数据对象(json字符串)
|
|
7975
|
+
riskData?: string;
|
|
7974
7976
|
static names(): { [key: string]: string } {
|
|
7975
7977
|
return {
|
|
7976
7978
|
authToken: 'auth_token',
|
|
@@ -7985,6 +7987,7 @@ export class ApplyDubbridgeUsecreditRequest extends $tea.Model {
|
|
|
7985
7987
|
repayDate: 'repay_date',
|
|
7986
7988
|
channelType: 'channel_type',
|
|
7987
7989
|
customType: 'custom_type',
|
|
7990
|
+
riskData: 'risk_data',
|
|
7988
7991
|
};
|
|
7989
7992
|
}
|
|
7990
7993
|
|
|
@@ -8002,6 +8005,7 @@ export class ApplyDubbridgeUsecreditRequest extends $tea.Model {
|
|
|
8002
8005
|
repayDate: 'string',
|
|
8003
8006
|
channelType: 'string',
|
|
8004
8007
|
customType: 'string',
|
|
8008
|
+
riskData: 'string',
|
|
8005
8009
|
};
|
|
8006
8010
|
}
|
|
8007
8011
|
|
|
@@ -14433,7 +14437,9 @@ export default class Client {
|
|
|
14433
14437
|
req_msg_id: AntchainUtil.getNonce(),
|
|
14434
14438
|
access_key: this._accessKeyId,
|
|
14435
14439
|
base_sdk_version: "TeaSDK-2.0",
|
|
14436
|
-
sdk_version: "1.16.
|
|
14440
|
+
sdk_version: "1.16.6",
|
|
14441
|
+
_prod_code: "RISKPLUS",
|
|
14442
|
+
_prod_channel: "undefined",
|
|
14437
14443
|
};
|
|
14438
14444
|
if (!Util.empty(this._securityToken)) {
|
|
14439
14445
|
request_.query["security_token"] = this._securityToken;
|