tencentcloud-sdk-nodejs-intl-en 3.0.1349 → 3.0.1351

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.
Files changed (34) hide show
  1. package/package.json +1 -1
  2. package/tencentcloud/advisor/v20200721/models.js +11 -24
  3. package/tencentcloud/asr/v20190614/models.js +9 -2
  4. package/tencentcloud/billing/v20180709/billing_client.js +242 -64
  5. package/tencentcloud/billing/v20180709/models.js +10788 -4645
  6. package/tencentcloud/ciam/index.js +1 -1
  7. package/tencentcloud/cloudaudit/v20190319/cloudaudit_client.js +2 -30
  8. package/tencentcloud/cloudaudit/v20190319/models.js +132 -247
  9. package/tencentcloud/common/sdk_version.js +1 -1
  10. package/tencentcloud/edgezone/index.js +3 -0
  11. package/tencentcloud/edgezone/v20260401/edgezone_client.js +280 -0
  12. package/tencentcloud/edgezone/v20260401/index.js +4 -0
  13. package/tencentcloud/edgezone/v20260401/models.js +2349 -0
  14. package/tencentcloud/faceid/v20180301/faceid_client.js +260 -143
  15. package/tencentcloud/faceid/v20180301/models.js +4283 -3113
  16. package/tencentcloud/index.js +1 -0
  17. package/tencentcloud/mdl/v20200326/models.js +3 -3
  18. package/tencentcloud/organization/index.js +1 -1
  19. package/tencentcloud/organization/v20210331/models.js +1 -1
  20. package/tencentcloud/sms/index.js +1 -1
  21. package/tencentcloud/sms/v20210111/models.js +250 -31
  22. package/tencentcloud/sms/v20210111/sms_client.js +16 -3
  23. package/tencentcloud/sts/v20180813/models.js +42 -26
  24. package/tencentcloud/sts/v20180813/sts_client.js +30 -4
  25. package/tencentcloud/tag/v20180813/tag_client.js +1 -1
  26. package/tencentcloud/tchd/v20230306/models.js +1 -1
  27. package/tencentcloud/tcsas/v20250106/models.js +213 -100
  28. package/tencentcloud/tcsas/v20250106/tcsas_client.js +17 -3
  29. package/tencentcloud/tem/index.js +1 -1
  30. package/tencentcloud/tke/index.js +1 -1
  31. package/tencentcloud/trtc/v20190722/models.js +263 -168
  32. package/tencentcloud/trtc/v20190722/trtc_client.js +11 -13
  33. package/tencentcloud/vod/index.js +1 -1
  34. package/tencentcloud/wedata/index.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tencentcloud-sdk-nodejs-intl-en",
3
- "version": "3.0.1349",
3
+ "version": "3.0.1351",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -25,8 +25,7 @@ class DescribeStrategiesResponse extends AbstractModel {
25
25
  super();
26
26
 
27
27
  /**
28
- * Assessment item list
29
- Note: This field may return null, indicating that no valid values can be obtained.
28
+ * Assessment item list.
30
29
  * @type {Array.<Strategies> || null}
31
30
  */
32
31
  this.Strategies = null;
@@ -356,63 +355,54 @@ class Strategies extends AbstractModel {
356
355
 
357
356
  /**
358
357
  * Assessment item ID
359
- Note: This field may return null, indicating that no valid values can be obtained.
360
358
  * @type {number || null}
361
359
  */
362
360
  this.StrategyId = null;
363
361
 
364
362
  /**
365
- * Assessment item name
366
- Note: This field may return null, indicating that no valid values can be obtained.
363
+ * Assessment item name.
367
364
  * @type {string || null}
368
365
  */
369
366
  this.Name = null;
370
367
 
371
368
  /**
372
- * Assessment item description
373
- Note: This field may return null, indicating that no valid values can be obtained.
369
+ * Assessment item description.
374
370
  * @type {string || null}
375
371
  */
376
372
  this.Desc = null;
377
373
 
378
374
  /**
379
- * Product ID corresponding to the assessment item
380
- Note: This field may return null, indicating that no valid values can be obtained.
375
+ * Product ID corresponding to the assessment item.
381
376
  * @type {string || null}
382
377
  */
383
378
  this.Product = null;
384
379
 
385
380
  /**
386
- * Product name corresponding to the assessment item
387
- Note: This field may return null, indicating that no valid values can be obtained.
381
+ * Assessment item corresponding product name.
388
382
  * @type {string || null}
389
383
  */
390
384
  this.ProductDesc = null;
391
385
 
392
386
  /**
393
- * Optimization suggestions for the assessment item
394
- Note: This field may return null, indicating that no valid values can be obtained.
387
+ * Specifies optimization suggestions for the assessment item.
395
388
  * @type {string || null}
396
389
  */
397
390
  this.Repair = null;
398
391
 
399
392
  /**
400
- * Category ID of the assessment item
401
- Note: This field may return null, indicating that no valid values can be obtained.
393
+ * Assessment item category ID.
402
394
  * @type {number || null}
403
395
  */
404
396
  this.GroupId = null;
405
397
 
406
398
  /**
407
- * Category name of the assessment item
408
- Note: This field may return null, indicating that no valid values can be obtained.
399
+ * Specifies the category name of the assessment item.
409
400
  * @type {string || null}
410
401
  */
411
402
  this.GroupName = null;
412
403
 
413
404
  /**
414
- * Risk list of the assessment item
415
- Note: This field may return null, indicating that no valid values can be obtained.
405
+ * Specifies the evaluation item risk list.
416
406
  * @type {Array.<Conditions> || null}
417
407
  */
418
408
  this.Conditions = null;
@@ -456,22 +446,19 @@ class Conditions extends AbstractModel {
456
446
  super();
457
447
 
458
448
  /**
459
- * Warning condition ID
460
- Note: This field may return null, indicating that no valid values can be obtained.
449
+ * Warning condition ID.
461
450
  * @type {number || null}
462
451
  */
463
452
  this.ConditionId = null;
464
453
 
465
454
  /**
466
455
  * Warning level. 2: medium risk; 3: high risk.
467
- Note: This field may return null, indicating that no valid values can be obtained.
468
456
  * @type {number || null}
469
457
  */
470
458
  this.Level = null;
471
459
 
472
460
  /**
473
- * Warning level description
474
- Note: This field may return null, indicating that no valid values can be obtained.
461
+ * Describes the warning level.
475
462
  * @type {string || null}
476
463
  */
477
464
  this.LevelDesc = null;
@@ -299,7 +299,7 @@ If this parameter is set to 5, make sure that an [oral-to-written resource packa
299
299
  /**
300
300
  * Audio source.
301
301
  0: Audio URL.
302
- 1: Local audio file (body of the POST request).
302
+ 1: Local audio file (body of the POST request)
303
303
  * @type {number || null}
304
304
  */
305
305
  this.SourceType = null;
@@ -314,7 +314,7 @@ Note: The audio data size cannot exceed 5 MB.
314
314
  this.Data = null;
315
315
 
316
316
  /**
317
- * Data length (before Base64 encoding).
317
+ * Data length (before Base64 encoding)
318
318
  * @type {number || null}
319
319
  */
320
320
  this.DataLen = null;
@@ -488,6 +488,12 @@ Notes:
488
488
  */
489
489
  this.KeyWordLibIdList = null;
490
490
 
491
+ /**
492
+ *
493
+ * @type {string || null}
494
+ */
495
+ this.ReplaceTextId = null;
496
+
491
497
  }
492
498
 
493
499
  /**
@@ -520,6 +526,7 @@ Notes:
520
526
  this.Extra = 'Extra' in params ? params.Extra : null;
521
527
  this.HotwordList = 'HotwordList' in params ? params.HotwordList : null;
522
528
  this.KeyWordLibIdList = 'KeyWordLibIdList' in params ? params.KeyWordLibIdList : null;
529
+ this.ReplaceTextId = 'ReplaceTextId' in params ? params.ReplaceTextId : null;
523
530
 
524
531
  }
525
532
  }