tencentcloud-sdk-nodejs-tmt 4.1.194 → 4.1.199

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-tmt",
3
- "version": "4.1.194",
3
+ "version": "4.1.199",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -70,31 +70,31 @@ export interface Coord {
70
70
  */
71
71
  export interface TransDetail {
72
72
  /**
73
- * 当前行的原文本
73
+ * <p>当前行的原文本</p>
74
74
  */
75
75
  SourceLineText?: string;
76
76
  /**
77
- * 当前行的译文
77
+ * <p>当前行的译文</p>
78
78
  */
79
79
  TargetLineText?: string;
80
80
  /**
81
- * 段落文本框位置
81
+ * <p>段落文本框位置</p>
82
82
  */
83
83
  BoundingBox?: BoundingBox;
84
84
  /**
85
- * 行数
85
+ * <p>行数</p>
86
86
  */
87
87
  LinesCount?: number;
88
88
  /**
89
- * 行高
89
+ * <p>行高</p><p>单位:px</p>
90
90
  */
91
91
  LineHeight?: number;
92
92
  /**
93
- * 正常段落spam_code字段为0;如果存在spam_code字段且值大于0(1: 命中垃圾检查;2: 命中安全策略;3: 其他。),则命中安全检查被过滤。
93
+ * <p>正常段落spam_code字段为0;如果存在spam_code字段且值大于0(1: 命中垃圾检查;2: 命中安全策略;3: 其他。),则命中安全检查被过滤。</p>
94
94
  */
95
95
  SpamCode?: number;
96
96
  /**
97
- * 段落文本旋转信息,只在valid为true时表示坐标有效
97
+ * <p>段落文本旋转信息,只在valid为true时表示坐标有效</p>
98
98
  */
99
99
  RotateParagraphRect?: RotateParagraphRect;
100
100
  }
@@ -174,19 +174,19 @@ export interface TextTranslateRequest {
174
174
  */
175
175
  export interface BoundingBox {
176
176
  /**
177
- * 左上顶点x坐标
177
+ * <p>左上顶点x坐标</p>
178
178
  */
179
179
  X?: number;
180
180
  /**
181
- * 左上顶点y坐标
181
+ * <p>左上顶点y坐标</p>
182
182
  */
183
183
  Y?: number;
184
184
  /**
185
- *
185
+ * <p>宽</p><p>单位:px</p>
186
186
  */
187
187
  Width?: number;
188
188
  /**
189
- *
189
+ * <p>高</p><p>单位:px</p>
190
190
  */
191
191
  Height?: number;
192
192
  }