tencentcloud-sdk-nodejs-mps 4.1.43 → 4.1.44
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
|
@@ -269,6 +269,7 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
269
269
|
* 发起图片处理,功能包括:
|
|
270
270
|
1. 格式转换;
|
|
271
271
|
2. 图像增强;
|
|
272
|
+
3. 图像擦除;
|
|
272
273
|
*/
|
|
273
274
|
ProcessImage(req: ProcessImageRequest, cb?: (error: string, rep: ProcessImageResponse) => void): Promise<ProcessImageResponse>;
|
|
274
275
|
/**
|
|
@@ -9479,8 +9479,8 @@ export interface AiReviewTerrorismTaskOutput {
|
|
|
9479
9479
|
export interface ModifyAsrHotwordsRequest {
|
|
9480
9480
|
/**
|
|
9481
9481
|
* 热词库 id
|
|
9482
|
-
|
|
9483
|
-
|
|
9482
|
+
如果热词库是临时热词:Name 和 Content 至少填一个
|
|
9483
|
+
如果热词库是文件热词:Name、FileContent 和 FileName 至少填一个
|
|
9484
9484
|
|
|
9485
9485
|
*/
|
|
9486
9486
|
HotwordsId: string;
|
|
@@ -14169,7 +14169,7 @@ export interface ImageAreaBoxInfo {
|
|
|
14169
14169
|
/**
|
|
14170
14170
|
* 图片框选区域类型,可选值:
|
|
14171
14171
|
<li>logo:图标;</li>
|
|
14172
|
-
<li>text
|
|
14172
|
+
<li>text:文字;</li>
|
|
14173
14173
|
默认值:logo。
|
|
14174
14174
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
14175
14175
|
*/
|
|
@@ -14180,6 +14180,13 @@ export interface ImageAreaBoxInfo {
|
|
|
14180
14180
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
14181
14181
|
*/
|
|
14182
14182
|
AreaCoordSet?: Array<number | bigint>;
|
|
14183
|
+
/**
|
|
14184
|
+
* 图片框选区域坐标,[x1, y1, x2, y2],即左上角坐标、右下角坐标, 当AreaCoordSet未指定时生效。
|
|
14185
|
+
- [0.1, 0.1, 0.3, 0.3] : 表示比例 (数值小于1)
|
|
14186
|
+
- [50, 50, 350, 280] : 表示像素 (数值大于等于1)
|
|
14187
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
14188
|
+
*/
|
|
14189
|
+
BoundingBox?: Array<number>;
|
|
14183
14190
|
}
|
|
14184
14191
|
/**
|
|
14185
14192
|
* 直播流 AI 审核结果
|
|
@@ -15446,7 +15453,7 @@ export interface AsrHotwordsSet {
|
|
|
15446
15453
|
HotwordsId?: string;
|
|
15447
15454
|
/**
|
|
15448
15455
|
* 当前热词库状态,数值表示绑定该热词库的智能字幕模板数量。
|
|
15449
|
-
Status 为 0
|
|
15456
|
+
Status 为 0 ,表示该热词库没有被智能字幕模板引用可以删除;
|
|
15450
15457
|
Status 不为 0,表示该热词库不能被删除。
|
|
15451
15458
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
15452
15459
|
*/
|