tencentcloud-sdk-nodejs-intl-en 3.0.939 → 3.0.940
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
|
@@ -3376,6 +3376,18 @@ class LoginActionFlag extends AbstractModel {
|
|
|
3376
3376
|
*/
|
|
3377
3377
|
this.Custom = null;
|
|
3378
3378
|
|
|
3379
|
+
/**
|
|
3380
|
+
* Mail
|
|
3381
|
+
* @type {number || null}
|
|
3382
|
+
*/
|
|
3383
|
+
this.Mail = null;
|
|
3384
|
+
|
|
3385
|
+
/**
|
|
3386
|
+
* U2F token
|
|
3387
|
+
* @type {number || null}
|
|
3388
|
+
*/
|
|
3389
|
+
this.U2FToken = null;
|
|
3390
|
+
|
|
3379
3391
|
}
|
|
3380
3392
|
|
|
3381
3393
|
/**
|
|
@@ -3390,6 +3402,8 @@ class LoginActionFlag extends AbstractModel {
|
|
|
3390
3402
|
this.Stoken = 'Stoken' in params ? params.Stoken : null;
|
|
3391
3403
|
this.Wechat = 'Wechat' in params ? params.Wechat : null;
|
|
3392
3404
|
this.Custom = 'Custom' in params ? params.Custom : null;
|
|
3405
|
+
this.Mail = 'Mail' in params ? params.Mail : null;
|
|
3406
|
+
this.U2FToken = 'U2FToken' in params ? params.U2FToken : null;
|
|
3393
3407
|
|
|
3394
3408
|
}
|
|
3395
3409
|
}
|
|
@@ -7522,7 +7536,7 @@ class DescribeSafeAuthFlagCollResponse extends AbstractModel {
|
|
|
7522
7536
|
this.OffsiteFlag = null;
|
|
7523
7537
|
|
|
7524
7538
|
/**
|
|
7525
|
-
* The unique request ID,
|
|
7539
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
7526
7540
|
* @type {string || null}
|
|
7527
7541
|
*/
|
|
7528
7542
|
this.RequestId = null;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
const sdkVersion = "3.0.
|
|
1
|
+
const sdkVersion = "3.0.940";
|
|
2
2
|
module.exports = sdkVersion
|