tencentcloud-sdk-nodejs-mps 4.1.297 → 4.1.299

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-mps",
3
- "version": "4.1.297",
3
+ "version": "4.1.299",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -4465,6 +4465,10 @@ export interface ImageTaskInput {
4465
4465
  * <p>图片理解配置</p>
4466
4466
  */
4467
4467
  UnderstandImageConfig?: UnderstandImageConfig;
4468
+ /**
4469
+ * <p>图片质量评估配置</p>
4470
+ */
4471
+ ImageQualityConfig?: ImageQualityConfig;
4468
4472
  }
4469
4473
  /**
4470
4474
  * 查询输出的HLS拉流URL信息。
@@ -7445,38 +7449,13 @@ export interface ModifyPersonSampleResponse {
7445
7449
  RequestId?: string;
7446
7450
  }
7447
7451
  /**
7448
- * 媒体质检任务结果类型
7452
+ * 图片质量评估任务。
7449
7453
  */
7450
- export interface ScheduleQualityControlTaskResult {
7451
- /**
7452
- * 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
7453
- */
7454
- Status?: string;
7455
- /**
7456
- * 错误码,空字符串表示成功,其他值表示失败,取值请参考 [媒体处理类错误码](https://cloud.tencent.com/document/product/862/50369#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
7457
- */
7458
- ErrCodeExt?: string;
7459
- /**
7460
- * 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
7461
- */
7462
- ErrCode?: number;
7463
- /**
7464
- * 错误信息。
7465
- */
7466
- Message?: string;
7467
- /**
7468
- * 媒体质检任务的输入。
7469
- */
7470
- Input?: AiQualityControlTaskInput;
7454
+ export interface ImageQualityConfig {
7471
7455
  /**
7472
- * 媒体质检任务的输出。
7473
- 注意:此字段可能返回 null,表示取不到有效值。
7456
+ * <p>图片质量评估维度</p><p>枚举值:</p><ul><li>Brightness: 亮度评估</li><li>Contrast: 对比度评估</li><li>Sharpness: 清晰度评估</li><li>IQA: 综合质量评估</li></ul>
7474
7457
  */
7475
- Output?: QualityControlData;
7476
- /**
7477
- * 任务执行进度。
7478
- */
7479
- Progress?: number;
7458
+ Attributes: Array<string>;
7480
7459
  }
7481
7460
  /**
7482
7461
  * ModifyStreamPackageSourceLocation请求参数结构体
@@ -7629,6 +7608,10 @@ export interface UnderstandImageConfig {
7629
7608
  * <p>图片理解指令</p>
7630
7609
  */
7631
7610
  Prompt: string;
7611
+ /**
7612
+ * <p>图片理解模型参数,类型为 JSON 字符串。</p>
7613
+ */
7614
+ Parameters?: string;
7632
7615
  }
7633
7616
  /**
7634
7617
  * DeleteAIAnalysisTemplate请求参数结构体
@@ -9210,21 +9193,38 @@ export interface DeleteStreamPackageLinearAssemblyChannelRequest {
9210
9193
  Id: string;
9211
9194
  }
9212
9195
  /**
9213
- * 用户自定义审核任务控制参数
9196
+ * 媒体质检任务结果类型
9214
9197
  */
9215
- export interface UserDefineConfigureInfo {
9198
+ export interface ScheduleQualityControlTaskResult {
9216
9199
  /**
9217
- * 用户自定义人物审核控制参数。
9200
+ * 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
9218
9201
  */
9219
- FaceReviewInfo?: UserDefineFaceReviewTemplateInfo;
9202
+ Status?: string;
9220
9203
  /**
9221
- * 用户自定义语音审核控制参数。
9204
+ * 错误码,空字符串表示成功,其他值表示失败,取值请参考 [媒体处理类错误码](https://cloud.tencent.com/document/product/862/50369#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
9222
9205
  */
9223
- AsrReviewInfo?: UserDefineAsrTextReviewTemplateInfo;
9206
+ ErrCodeExt?: string;
9224
9207
  /**
9225
- * 用户自定义文本审核控制参数。
9208
+ * 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
9226
9209
  */
9227
- OcrReviewInfo?: UserDefineOcrTextReviewTemplateInfo;
9210
+ ErrCode?: number;
9211
+ /**
9212
+ * 错误信息。
9213
+ */
9214
+ Message?: string;
9215
+ /**
9216
+ * 媒体质检任务的输入。
9217
+ */
9218
+ Input?: AiQualityControlTaskInput;
9219
+ /**
9220
+ * 媒体质检任务的输出。
9221
+ 注意:此字段可能返回 null,表示取不到有效值。
9222
+ */
9223
+ Output?: QualityControlData;
9224
+ /**
9225
+ * 任务执行进度。
9226
+ */
9227
+ Progress?: number;
9228
9228
  }
9229
9229
  /**
9230
9230
  * 字幕位置信息
@@ -14227,7 +14227,7 @@ export interface DescribeAigcTaskStatusRequest {
14227
14227
  */
14228
14228
  export interface DescribeDesignTaskResponse {
14229
14229
  /**
14230
- * <p>错误码,成功时返回0</p>
14230
+ * <p>错误码,成功时返回0,处理中返回100</p>
14231
14231
  */
14232
14232
  ErrorCode?: number;
14233
14233
  /**
@@ -24251,6 +24251,23 @@ export interface DescribeStreamLinkFlowRequest {
24251
24251
  */
24252
24252
  FlowId: string;
24253
24253
  }
24254
+ /**
24255
+ * 用户自定义审核任务控制参数
24256
+ */
24257
+ export interface UserDefineConfigureInfo {
24258
+ /**
24259
+ * 用户自定义人物审核控制参数。
24260
+ */
24261
+ FaceReviewInfo?: UserDefineFaceReviewTemplateInfo;
24262
+ /**
24263
+ * 用户自定义语音审核控制参数。
24264
+ */
24265
+ AsrReviewInfo?: UserDefineAsrTextReviewTemplateInfo;
24266
+ /**
24267
+ * 用户自定义文本审核控制参数。
24268
+ */
24269
+ OcrReviewInfo?: UserDefineOcrTextReviewTemplateInfo;
24270
+ }
24254
24271
  /**
24255
24272
  * 媒体处理 URL 对象信息。
24256
24273
  */