@antchain/ato 1.8.69 → 1.8.70
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 -2
- package/dist/client.js +1 -1
- package/package.json +1 -1
- package/src/client.ts +3 -3
package/dist/client.d.ts
CHANGED
|
@@ -2272,11 +2272,11 @@ export declare class QueryRealpersonFacevrfResponse extends $tea.Model {
|
|
|
2272
2272
|
export declare class QueryRiskRequest extends $tea.Model {
|
|
2273
2273
|
authToken?: string;
|
|
2274
2274
|
productInstanceId?: string;
|
|
2275
|
-
userId
|
|
2275
|
+
userId?: string;
|
|
2276
2276
|
userName: string;
|
|
2277
2277
|
certNo: string;
|
|
2278
2278
|
mobile: string;
|
|
2279
|
-
ip
|
|
2279
|
+
ip?: string;
|
|
2280
2280
|
static names(): {
|
|
2281
2281
|
[key: string]: string;
|
|
2282
2282
|
};
|
package/dist/client.js
CHANGED
|
@@ -5100,7 +5100,7 @@ class Client {
|
|
|
5100
5100
|
req_msg_id: alipay_util_1.default.getNonce(),
|
|
5101
5101
|
access_key: this._accessKeyId,
|
|
5102
5102
|
base_sdk_version: "TeaSDK-2.0",
|
|
5103
|
-
sdk_version: "1.8.
|
|
5103
|
+
sdk_version: "1.8.70",
|
|
5104
5104
|
_prod_code: "ATO",
|
|
5105
5105
|
_prod_channel: "undefined",
|
|
5106
5106
|
};
|
package/package.json
CHANGED
package/src/client.ts
CHANGED
|
@@ -5083,7 +5083,7 @@ export class QueryRiskRequest extends $tea.Model {
|
|
|
5083
5083
|
authToken?: string;
|
|
5084
5084
|
productInstanceId?: string;
|
|
5085
5085
|
// 账户ID
|
|
5086
|
-
userId
|
|
5086
|
+
userId?: string;
|
|
5087
5087
|
// 用户姓名
|
|
5088
5088
|
userName: string;
|
|
5089
5089
|
// 用户证件号码
|
|
@@ -5091,7 +5091,7 @@ export class QueryRiskRequest extends $tea.Model {
|
|
|
5091
5091
|
// 用户手机号码
|
|
5092
5092
|
mobile: string;
|
|
5093
5093
|
// 用户ip地址
|
|
5094
|
-
ip
|
|
5094
|
+
ip?: string;
|
|
5095
5095
|
static names(): { [key: string]: string } {
|
|
5096
5096
|
return {
|
|
5097
5097
|
authToken: 'auth_token',
|
|
@@ -7648,7 +7648,7 @@ export default class Client {
|
|
|
7648
7648
|
req_msg_id: AntchainUtil.getNonce(),
|
|
7649
7649
|
access_key: this._accessKeyId,
|
|
7650
7650
|
base_sdk_version: "TeaSDK-2.0",
|
|
7651
|
-
sdk_version: "1.8.
|
|
7651
|
+
sdk_version: "1.8.70",
|
|
7652
7652
|
_prod_code: "ATO",
|
|
7653
7653
|
_prod_channel: "undefined",
|
|
7654
7654
|
};
|