tencentcloud-sdk-nodejs-intl-en 3.0.1414 → 3.0.1415

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.1414",
3
+ "version": "3.0.1415",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -1,2 +1,2 @@
1
- const sdkVersion = "3.0.1414";
1
+ const sdkVersion = "3.0.1415";
2
2
  module.exports = sdkVersion
@@ -1400,7 +1400,7 @@ class SubmitHunyuan3DPartJobResponse extends AbstractModel {
1400
1400
  super();
1401
1401
 
1402
1402
  /**
1403
- * Task id (valid period: 24 hours)
1403
+ * <p>Task id (valid period: 24 hours).</p>
1404
1404
  * @type {string || null}
1405
1405
  */
1406
1406
  this.JobId = null;
@@ -1701,26 +1701,29 @@ class SubmitHunyuan3DPartJobRequest extends AbstractModel {
1701
1701
  super();
1702
1702
 
1703
1703
  /**
1704
- * Recommends inputting 3D models generated by AIGC
1705
- Recommended file size not greater than 200MB
1706
- Face count not greater than 1,500,000
1707
- Only supports FBX format
1704
+ * <p>Recommends inputting 3D models generated by AIGC Recommended file size not greater than 200MB Face count not greater than 1,500,000 Only supports FBX format</p>
1708
1705
  * @type {InputFile3D || null}
1709
1706
  */
1710
1707
  this.File = null;
1711
1708
 
1712
1709
  /**
1713
- * <p>Model component segmentation data;<br>The format is a JSON string, e.g., {"MeshName_part_1":{"face_ids":[1,2,3..],"color":"#FF805C"}}.<br>Here, `face_ids` is an integer array representing the set of face IDs for the segment, and `color` specifies the color.</p>
1710
+ * <p>Model component segmentation data; The format is a JSON string, e.g., {"MeshName_part_1":{"face_ids": 1,2,3..],"color":"#FF805C"}}. Here, face_ids is an integer array representing the set of face IDs for the segment, and color specifies the color.</p>
1714
1711
  * @type {string || null}
1715
1712
  */
1716
1713
  this.PartSegmentationInfo = null;
1717
1714
 
1718
1715
  /**
1719
- * <p>Determines whether component generation is performed in a step-by-step manner.<br>When enabled, providing the original model allows for the generation of a model containing segmentation information, along with the corresponding segmentation data. Users can then edit this information before submitting the segmented model and data to proceed with the component generation process.<br>This parameter is disabled by default.</p>
1716
+ * <p>Determines whether component generation is performed in a step-by-step manner. When enabled, providing the original model allows for the generation of a model containing segmentation information, along with the corresponding segmentation data. Users can then edit this information before submitting the segmented model and data to proceed with the component generation process. </br>This parameter is disabled by default.</p>
1720
1717
  * @type {boolean || null}
1721
1718
  */
1722
1719
  this.EnableStagedGeneration = null;
1723
1720
 
1721
+ /**
1722
+ * <p>Whether post-processing is enabled. Once enabled, only one model link will be output, off by default. (After this API is enabled, an additional increase of 20 points is required.)</p>
1723
+ * @type {boolean || null}
1724
+ */
1725
+ this.EnablePostProcess = null;
1726
+
1724
1727
  }
1725
1728
 
1726
1729
  /**
@@ -1738,6 +1741,7 @@ Only supports FBX format
1738
1741
  }
1739
1742
  this.PartSegmentationInfo = 'PartSegmentationInfo' in params ? params.PartSegmentationInfo : null;
1740
1743
  this.EnableStagedGeneration = 'EnableStagedGeneration' in params ? params.EnableStagedGeneration : null;
1744
+ this.EnablePostProcess = 'EnablePostProcess' in params ? params.EnablePostProcess : null;
1741
1745
 
1742
1746
  }
1743
1747
  }