tencentcloud-sdk-nodejs-iotexplorer 4.1.93 → 4.1.103

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-iotexplorer",
3
- "version": "4.1.93",
3
+ "version": "4.1.103",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -4054,6 +4054,16 @@ export interface CreateTWeSeeRecognitionTaskRequest {
4054
4054
  * 摘要输出配置
4055
4055
  */
4056
4056
  SummaryConfig?: VisionSummaryConfig;
4057
+ /**
4058
+ * 算法类型,可能取值:
4059
+ - `Summary`:视频/图片摘要
4060
+ - `ObjectDetect`:目标检测
4061
+ */
4062
+ ServiceType?: string;
4063
+ /**
4064
+ * 目标检测配置
4065
+ */
4066
+ ObjectDetectConfig?: VisionObjectDetectConfig;
4057
4067
  }
4058
4068
  /**
4059
4069
  * InvokeCloudStorageAIServiceTask返回参数结构体
@@ -4337,6 +4347,16 @@ export interface InvokeTWeSeeRecognitionTaskRequest {
4337
4347
  * 摘要输出配置
4338
4348
  */
4339
4349
  SummaryConfig?: VisionSummaryConfig;
4350
+ /**
4351
+ * 算法类型,可能取值:
4352
+ - `Summary`:视频/图片摘要
4353
+ - `ObjectDetect`:目标检测
4354
+ */
4355
+ ServiceType?: string;
4356
+ /**
4357
+ * 目标检测配置
4358
+ */
4359
+ ObjectDetectConfig?: VisionObjectDetectConfig;
4340
4360
  }
4341
4361
  /**
4342
4362
  * PauseTWeCallDevice返回参数结构体
@@ -8005,6 +8025,17 @@ export interface CreateBatchProductionResponse {
8005
8025
  */
8006
8026
  RequestId?: string;
8007
8027
  }
8028
+ /**
8029
+ * 目标检测配置
8030
+ */
8031
+ export interface VisionObjectDetectConfig {
8032
+ /**
8033
+ * 检测类别,可选值:
8034
+ - `adult`:成年人
8035
+ - `child`:儿童
8036
+ */
8037
+ DetectTypes?: Array<string>;
8038
+ }
8008
8039
  /**
8009
8040
  * 视频语义搜索结果
8010
8041
  */