@antchain/riskplus 1.29.2 → 1.29.3
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
|
@@ -5927,11 +5927,14 @@ export class ReceiveBenefithubRiskPayResponse extends $tea.Model {
|
|
|
5927
5927
|
resultCode?: string;
|
|
5928
5928
|
// 异常信息的文本描述
|
|
5929
5929
|
resultMsg?: string;
|
|
5930
|
+
// 响应的业务数据字段
|
|
5931
|
+
resultData?: string;
|
|
5930
5932
|
static names(): { [key: string]: string } {
|
|
5931
5933
|
return {
|
|
5932
5934
|
reqMsgId: 'req_msg_id',
|
|
5933
5935
|
resultCode: 'result_code',
|
|
5934
5936
|
resultMsg: 'result_msg',
|
|
5937
|
+
resultData: 'result_data',
|
|
5935
5938
|
};
|
|
5936
5939
|
}
|
|
5937
5940
|
|
|
@@ -5940,6 +5943,7 @@ export class ReceiveBenefithubRiskPayResponse extends $tea.Model {
|
|
|
5940
5943
|
reqMsgId: 'string',
|
|
5941
5944
|
resultCode: 'string',
|
|
5942
5945
|
resultMsg: 'string',
|
|
5946
|
+
resultData: 'string',
|
|
5943
5947
|
};
|
|
5944
5948
|
}
|
|
5945
5949
|
|
|
@@ -5965,6 +5969,8 @@ export class NotifyBenefithubRiskLoginRequest extends $tea.Model {
|
|
|
5965
5969
|
sceneConfig?: string;
|
|
5966
5970
|
// 区分流量来源
|
|
5967
5971
|
trafficSource?: string;
|
|
5972
|
+
// json字符串包含姓名md5、手机号md5、身份证md5,(非必传,针对可当-萨摩耶 必传)
|
|
5973
|
+
extraInfo?: string;
|
|
5968
5974
|
static names(): { [key: string]: string } {
|
|
5969
5975
|
return {
|
|
5970
5976
|
authToken: 'auth_token',
|
|
@@ -5975,6 +5981,7 @@ export class NotifyBenefithubRiskLoginRequest extends $tea.Model {
|
|
|
5975
5981
|
productCode: 'product_code',
|
|
5976
5982
|
sceneConfig: 'scene_config',
|
|
5977
5983
|
trafficSource: 'traffic_source',
|
|
5984
|
+
extraInfo: 'extra_info',
|
|
5978
5985
|
};
|
|
5979
5986
|
}
|
|
5980
5987
|
|
|
@@ -5988,6 +5995,7 @@ export class NotifyBenefithubRiskLoginRequest extends $tea.Model {
|
|
|
5988
5995
|
productCode: 'string',
|
|
5989
5996
|
sceneConfig: 'string',
|
|
5990
5997
|
trafficSource: 'string',
|
|
5998
|
+
extraInfo: 'string',
|
|
5991
5999
|
};
|
|
5992
6000
|
}
|
|
5993
6001
|
|
|
@@ -26189,7 +26197,7 @@ export default class Client {
|
|
|
26189
26197
|
req_msg_id: AntchainUtil.getNonce(),
|
|
26190
26198
|
access_key: this._accessKeyId,
|
|
26191
26199
|
base_sdk_version: "TeaSDK-2.0",
|
|
26192
|
-
sdk_version: "1.29.
|
|
26200
|
+
sdk_version: "1.29.3",
|
|
26193
26201
|
_prod_code: "RISKPLUS",
|
|
26194
26202
|
_prod_channel: "undefined",
|
|
26195
26203
|
};
|