tencentcloud-sdk-nodejs-lke 4.1.30 → 4.1.37

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-lke",
3
- "version": "4.1.30",
3
+ "version": "4.1.37",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -1728,6 +1728,10 @@ export interface DescribeAttributeLabelRequest {
1728
1728
  * 滚动加载游标的标签ID
1729
1729
  */
1730
1730
  LastLabelBizId?: string;
1731
+ /**
1732
+ * 查询范围 all(或者传空):标准词和相似词 standard:标准词 similar:相似词
1733
+ */
1734
+ QueryScope?: string;
1731
1735
  }
1732
1736
  /**
1733
1737
  * CreateQA请求参数结构体
@@ -2162,6 +2166,14 @@ export interface DescribeDocResponse {
2162
2166
  * 分类ID
2163
2167
  */
2164
2168
  CateBizId?: string;
2169
+ /**
2170
+ * 文档的用户自定义ID
2171
+ */
2172
+ CustomerKnowledgeId?: string;
2173
+ /**
2174
+ * 文档的属性标记,0: 不做用户外部权限校验
2175
+ */
2176
+ AttributeFlags?: Array<number | bigint>;
2165
2177
  /**
2166
2178
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2167
2179
  */
@@ -2935,7 +2947,12 @@ export interface SaveDocRequest {
2935
2947
  */
2936
2948
  FileName: string;
2937
2949
  /**
2938
- * 文件类型(md|txt|docx|pdf|xlsx)
2950
+ * 文档支持下面类型
2951
+ pdf、doc、docx、ppt、mhtml、pptx、wps、ppsx,单个文件不超过200MB;
2952
+ xlsx、xls、md、txt、csv、html,单个文件不超过20MB;
2953
+
2954
+ 图片支持下面类型:
2955
+ jpg、png、jpeg、tiff、bmp、gif,单个文件不超过50MB
2939
2956
  */
2940
2957
  FileType: string;
2941
2958
  /**
@@ -2999,6 +3016,14 @@ export interface SaveDocRequest {
2999
3016
  * 分类ID
3000
3017
  */
3001
3018
  CateBizId?: string;
3019
+ /**
3020
+ * 文档的用户自定义ID
3021
+ */
3022
+ CustomerKnowledgeId?: string;
3023
+ /**
3024
+ * 文档的属性标记,0: 不做用户外部权限校验
3025
+ */
3026
+ AttributeFlags?: Array<number | bigint>;
3002
3027
  }
3003
3028
  /**
3004
3029
  * RetryDocParse请求参数结构体
@@ -3765,6 +3790,10 @@ export interface AttrLabelDetail {
3765
3790
  注意:此字段可能返回 null,表示取不到有效值。
3766
3791
  */
3767
3792
  StatusDesc?: string;
3793
+ /**
3794
+ * 标签值总数
3795
+ */
3796
+ LabelTotalCount?: string;
3768
3797
  }
3769
3798
  /**
3770
3799
  * DescribeRefer返回参数结构体
@@ -4292,6 +4321,14 @@ export interface ListDocItem {
4292
4321
  * 文档所属分类ID
4293
4322
  */
4294
4323
  CateBizId?: string;
4324
+ /**
4325
+ * 文档的用户自定义ID
4326
+ */
4327
+ CustomerKnowledgeId?: string;
4328
+ /**
4329
+ * 文档的属性标记,0: 不做用户外部权限校验
4330
+ */
4331
+ AttributeFlags?: Array<number | bigint>;
4295
4332
  }
4296
4333
  /**
4297
4334
  * VerifyQA请求参数结构体
@@ -5300,6 +5337,10 @@ export interface ModelInfo {
5300
5337
  * 角色提示词输入长度限制
5301
5338
  */
5302
5339
  RoleLenLimit?: number;
5340
+ /**
5341
+ * 是否专属并发模型
5342
+ */
5343
+ IsExclusive?: boolean;
5303
5344
  }
5304
5345
  /**
5305
5346
  * DeleteRejectedQuestion请求参数结构体
@@ -5807,6 +5848,14 @@ export interface ModifyDocRequest {
5807
5848
  * 分类ID
5808
5849
  */
5809
5850
  CateBizId?: string;
5851
+ /**
5852
+ * 文档的用户自定义ID
5853
+ */
5854
+ CustomerKnowledgeId?: string;
5855
+ /**
5856
+ * 文档的属性标记,0: 不做用户外部权限校验
5857
+ */
5858
+ AttributeFlags?: Array<number | bigint>;
5810
5859
  }
5811
5860
  /**
5812
5861
  * DescribeTokenUsage返回参数结构体
@@ -5905,6 +5954,10 @@ export interface ListAttributeLabelRequest {
5905
5954
  * 查询内容
5906
5955
  */
5907
5956
  Query?: string;
5957
+ /**
5958
+ * 每个属性同步拉取的标签值数量
5959
+ */
5960
+ LabelSize?: number;
5908
5961
  }
5909
5962
  /**
5910
5963
  * DeleteDocCate请求参数结构体