tencentcloud-sdk-nodejs-intl-en 3.0.1404 → 3.0.1406

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.1404",
3
+ "version": "3.0.1406",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -15018,8 +15018,8 @@ class AnalyseConditions extends AbstractModel {
15018
15018
  cashPayAmount: Cash
15019
15019
  incentivePayAmount: Bonus
15020
15020
  voucherPayAmount: Coupon
15021
- tax: tax.
15022
- costBeforeTax: pre-tax price
15021
+ tax: tax
15022
+ amountBeforeTax: pre-tax price
15023
15023
  * @type {string || null}
15024
15024
  */
15025
15025
  this.FeeType = null;
@@ -1,2 +1,2 @@
1
- const sdkVersion = "3.0.1404";
1
+ const sdkVersion = "3.0.1406";
2
2
  module.exports = sdkVersion
@@ -383,6 +383,12 @@ class CreateAigcVideoRedrawTaskRequest extends AbstractModel {
383
383
  */
384
384
  this.FileInfo = null;
385
385
 
386
+ /**
387
+ * <p>Parameters for the AIGC video conversion task.</p>
388
+ * @type {AigcVideoRedrawTaskInfo || null}
389
+ */
390
+ this.TaskInfo = null;
391
+
386
392
  /**
387
393
  * <p>Output media file configuration for the AIGC video conversion task.</p>
388
394
  * @type {AigcVideoRedrawOutputConfig || null}
@@ -430,6 +436,12 @@ class CreateAigcVideoRedrawTaskRequest extends AbstractModel {
430
436
  this.FileInfo = obj;
431
437
  }
432
438
 
439
+ if (params.TaskInfo) {
440
+ let obj = new AigcVideoRedrawTaskInfo();
441
+ obj.deserialize(params.TaskInfo)
442
+ this.TaskInfo = obj;
443
+ }
444
+
433
445
  if (params.OutputConfig) {
434
446
  let obj = new AigcVideoRedrawOutputConfig();
435
447
  obj.deserialize(params.OutputConfig)