tencentcloud-sdk-nodejs-intl-en 3.0.1314 → 3.0.1315

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.1314",
3
+ "version": "3.0.1315",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -5639,13 +5639,13 @@ class AuditInstanceInfo extends AbstractModel {
5639
5639
  this.TagList = null;
5640
5640
 
5641
5641
  /**
5642
- * Database engine type.
5642
+ * Database kernel type.
5643
5643
  * @type {string || null}
5644
5644
  */
5645
5645
  this.DbType = null;
5646
5646
 
5647
5647
  /**
5648
- * Database engine version.
5648
+ * Database kernel version.
5649
5649
  * @type {string || null}
5650
5650
  */
5651
5651
  this.DbVersion = null;
@@ -1,2 +1,2 @@
1
- const sdkVersion = "3.0.1314";
1
+ const sdkVersion = "3.0.1315";
2
2
  module.exports = sdkVersion
@@ -2157,7 +2157,7 @@ class GetFaceIdResultIntlResponse extends AbstractModel {
2157
2157
 
2158
2158
  /**
2159
2159
  * The similarity, with a value range of 0-100. A greater value indicates higher similarity. This parameter is returned only in the `compare` (selfie verification) mode.
2160
- Note: This field may return `null`, indicating that no valid values can be obtained.
2160
+ Note: The Similarity metric is exclusively valid for "compare" mode. In "liveness" mode, the returned Similarity value (0.0) is non-significant and should be ignored.
2161
2161
  * @type {number || null}
2162
2162
  */
2163
2163
  this.Similarity = null;
@@ -161,7 +161,7 @@ This API is used to provide 1 concurrent task by default, which means only 1 sub
161
161
  }
162
162
 
163
163
  /**
164
- * Query 3D texture edit tasks.
164
+ * Query 3D texture edit tasks, redraw the texture of the 3D model based on semantics or images, and output a redrawn texture image.
165
165
  * @param {QueryHunyuanTo3DTextureEditJobRequest} req
166
166
  * @param {function(string, QueryHunyuanTo3DTextureEditJobResponse):void} cb
167
167
  * @public
@@ -222,7 +222,7 @@ This API is used to provide 3 concurrent tasks by default, which can process 3 s
222
222
  }
223
223
 
224
224
  /**
225
- * After inputting the 3D model, perform 3D model texture redrawing based on semantics or images.
225
+ * After inputting the 3D model, redraw the texture of the 3D model based on semantics or images, and output a redrawn texture image.
226
226
  * @param {SubmitHunyuanTo3DTextureEditJobRequest} req
227
227
  * @param {function(string, SubmitHunyuanTo3DTextureEditJobResponse):void} cb
228
228
  * @public
@@ -860,7 +860,7 @@ class SubmitHunyuanTo3DTextureEditJobResponse extends AbstractModel {
860
860
  }
861
861
 
862
862
  /**
863
- * 3D file.
863
+ * 3D model related files, files or textures.
864
864
  * @class
865
865
  */
866
866
  class File3D extends AbstractModel {
@@ -868,7 +868,7 @@ class File3D extends AbstractModel {
868
868
  super();
869
869
 
870
870
  /**
871
- * 3D file format. valid values: GIF, OBJ.
871
+ * 3D model or texture. valid values: GIF or OBJ or Image.
872
872
  * @type {string || null}
873
873
  */
874
874
  this.Type = null;
@@ -933,7 +933,7 @@ Example value: RUN
933
933
  this.ErrorMessage = null;
934
934
 
935
935
  /**
936
- * Generate the file URL with a valid period of 1 day
936
+ * The URL address for generating texture files is valid for 1 day.
937
937
  * @type {Array.<File3D> || null}
938
938
  */
939
939
  this.ResultFile3Ds = null;
@@ -1074,6 +1074,15 @@ Imagebase64, imageurl, and Prompt are required, and Prompt cannot coexist with i
1074
1074
  */
1075
1075
  this.ImageUrl = null;
1076
1076
 
1077
+ /**
1078
+ * Returns the 3D file format. valid values:
1079
+ OBJ, GLB, STL, USDZ, FBX, MP4, GIF
1080
+ Recommended input models below 50W, may timeout when selecting USDZ, MP4, or GIF format
1081
+ Example value: STL
1082
+ * @type {string || null}
1083
+ */
1084
+ this.ResultFormat = null;
1085
+
1077
1086
  /**
1078
1087
  * Specifies whether PBR material generation is enabled, false by default.
1079
1088
  * @type {boolean || null}
@@ -1101,6 +1110,7 @@ Default model file format is GLB
1101
1110
  this.Prompt = 'Prompt' in params ? params.Prompt : null;
1102
1111
  this.ImageBase64 = 'ImageBase64' in params ? params.ImageBase64 : null;
1103
1112
  this.ImageUrl = 'ImageUrl' in params ? params.ImageUrl : null;
1113
+ this.ResultFormat = 'ResultFormat' in params ? params.ResultFormat : null;
1104
1114
  this.EnablePBR = 'EnablePBR' in params ? params.EnablePBR : null;
1105
1115
  this.EnableGeometry = 'EnableGeometry' in params ? params.EnableGeometry : null;
1106
1116