tencentcloud-sdk-nodejs-intl-en 3.0.939 → 3.0.941

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tencentcloud-sdk-nodejs-intl-en",
3
- "version": "3.0.939",
3
+ "version": "3.0.941",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -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, which is returned for each request. RequestId is required for locating a problem.
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.939";
1
+ const sdkVersion = "3.0.941";
2
2
  module.exports = sdkVersion
@@ -1734,6 +1734,30 @@ class CreateStreamPackageChannelEndpointRequest extends AbstractModel {
1734
1734
  */
1735
1735
  this.AuthInfo = null;
1736
1736
 
1737
+ /**
1738
+ * Endpoint protocol type, supports HLS, DASH, CMAF (only HLS type input can create CMAF Endpoint).
1739
+ * @type {string || null}
1740
+ */
1741
+ this.Protocol = null;
1742
+
1743
+ /**
1744
+ * Mainifest name, default is main.
1745
+ * @type {string || null}
1746
+ */
1747
+ this.Manifest = null;
1748
+
1749
+ /**
1750
+ * Whether to turn on the TimeShift function, true: on, false: off, the default is off.
1751
+ * @type {boolean || null}
1752
+ */
1753
+ this.TimeShiftEnable = null;
1754
+
1755
+ /**
1756
+ * The number of days to look back in TimeShift, up to 30 days is supported.
1757
+ * @type {number || null}
1758
+ */
1759
+ this.TimeShiftDuration = null;
1760
+
1737
1761
  }
1738
1762
 
1739
1763
  /**
@@ -1751,6 +1775,10 @@ class CreateStreamPackageChannelEndpointRequest extends AbstractModel {
1751
1775
  obj.deserialize(params.AuthInfo)
1752
1776
  this.AuthInfo = obj;
1753
1777
  }
1778
+ this.Protocol = 'Protocol' in params ? params.Protocol : null;
1779
+ this.Manifest = 'Manifest' in params ? params.Manifest : null;
1780
+ this.TimeShiftEnable = 'TimeShiftEnable' in params ? params.TimeShiftEnable : null;
1781
+ this.TimeShiftDuration = 'TimeShiftDuration' in params ? params.TimeShiftDuration : null;
1754
1782
 
1755
1783
  }
1756
1784
  }