tencentcloud-sdk-nodejs-intl-en 3.0.1414 → 3.0.1416
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,2 +1,2 @@
|
|
|
1
|
-
const sdkVersion = "3.0.
|
|
1
|
+
const sdkVersion = "3.0.1416";
|
|
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
|
|
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
|
|
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
|
}
|
|
@@ -2281,7 +2281,7 @@ Live stream processing event notification supports HTTP callback and also suppor
|
|
|
2281
2281
|
}
|
|
2282
2282
|
|
|
2283
2283
|
/**
|
|
2284
|
-
*
|
|
2284
|
+
* This API is used to translate text. The "subtitle translation (additional languages)" billing item is used. Billing is calculated by converting characters to minutes at a rate of 1,100 characters per minute (based on Unicode code points. For example, "hello" counts as 5 characters).
|
|
2285
2285
|
* @param {TextTranslationRequest} req
|
|
2286
2286
|
* @param {function(string, TextTranslationResponse):void} cb
|
|
2287
2287
|
* @public
|
|
@@ -4318,9 +4318,7 @@ class GeneralAccurateOCRRequest extends AbstractModel {
|
|
|
4318
4318
|
this.ImageBase64 = null;
|
|
4319
4319
|
|
|
4320
4320
|
/**
|
|
4321
|
-
* URL address of image.
|
|
4322
|
-
The image cannot exceed 10 MB after being Base64-encoded. A resolution above 600x800 is recommended. PNG, JPG, JPEG, and BMP formats are supported.
|
|
4323
|
-
We recommend you store the image in Tencent Cloud, as a Tencent Cloud URL can guarantee higher download speed and stability. The download speed and stability of non-Tencent Cloud URLs may be low.
|
|
4321
|
+
* URL address of image/PDF. The image cannot exceed 10 MB after being Base64-encoded. A resolution above 600x800 is recommended. PNG, JPG, JPEG, and BMP formats are supported.The download time of the image cannot exceed 3s.We recommend you store the image in Tencent Cloud, as a Tencent Cloud URL can guarantee higher download speed and stability. The download speed and stability of non-Tencent Cloud URLs may be low.
|
|
4324
4322
|
* @type {string || null}
|
|
4325
4323
|
*/
|
|
4326
4324
|
this.ImageUrl = null;
|
|
@@ -161,7 +161,7 @@ It is suitable for scenarios with a lot of characters in complex layouts and req
|
|
|
161
161
|
|
|
162
162
|
Strengths: compared with general print recognition, it provides higher-precision character recognition services. Its accuracy and recall rate are higher in difficult scenarios such as a large number of characters, long strings of digits, small characters, blurry characters, and tilted text.
|
|
163
163
|
|
|
164
|
-
|
|
164
|
+
A maximum of 10 requests can be initiated per second for this API.
|
|
165
165
|
* @param {GeneralAccurateOCRRequest} req
|
|
166
166
|
* @param {function(string, GeneralAccurateOCRResponse):void} cb
|
|
167
167
|
* @public
|