tencentcloud-sdk-nodejs-lke 4.1.136 → 4.1.145
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
|
@@ -470,6 +470,26 @@ export interface ListDocCateRequest {
|
|
|
470
470
|
* 应用ID
|
|
471
471
|
*/
|
|
472
472
|
BotBizId: string;
|
|
473
|
+
/**
|
|
474
|
+
* 分类查询类型:0-全量查询整棵标签树,1-根据父节点BizId分页查询子节点,2-关键词检索所有匹配的分类链路
|
|
475
|
+
*/
|
|
476
|
+
QueryType?: number;
|
|
477
|
+
/**
|
|
478
|
+
* QueryType=1时,父节点分类ID
|
|
479
|
+
*/
|
|
480
|
+
ParentCateBizId?: string;
|
|
481
|
+
/**
|
|
482
|
+
* QueryType=1时,页码(从1开始)
|
|
483
|
+
*/
|
|
484
|
+
PageNumber?: number;
|
|
485
|
+
/**
|
|
486
|
+
* 每页数量(默认10)
|
|
487
|
+
*/
|
|
488
|
+
PageSize?: number;
|
|
489
|
+
/**
|
|
490
|
+
* QueryType=2时,搜索内容
|
|
491
|
+
*/
|
|
492
|
+
Query?: string;
|
|
473
493
|
}
|
|
474
494
|
/**
|
|
475
495
|
* DescribeDoc返回参数结构体
|
|
@@ -765,6 +785,10 @@ export interface AgentToolInfo {
|
|
|
765
785
|
* 工具计费状态 0-不计费 1-可用 2-不可用(欠费、无资源等)
|
|
766
786
|
*/
|
|
767
787
|
FinanceStatus?: number;
|
|
788
|
+
/**
|
|
789
|
+
* 工具来源: 0-来自插件,1-来自工作流
|
|
790
|
+
*/
|
|
791
|
+
ToolSource?: number;
|
|
768
792
|
}
|
|
769
793
|
/**
|
|
770
794
|
* RenameDoc请求参数结构体
|
|
@@ -3782,6 +3806,11 @@ export interface CateInfo {
|
|
|
3782
3806
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3783
3807
|
*/
|
|
3784
3808
|
Children?: Array<CateInfo>;
|
|
3809
|
+
/**
|
|
3810
|
+
* 是否为叶子节点
|
|
3811
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3812
|
+
*/
|
|
3813
|
+
IsLeaf?: boolean;
|
|
3785
3814
|
}
|
|
3786
3815
|
/**
|
|
3787
3816
|
* 智能通话
|
|
@@ -4058,6 +4087,26 @@ export interface ListQACateRequest {
|
|
|
4058
4087
|
* 应用ID
|
|
4059
4088
|
*/
|
|
4060
4089
|
BotBizId: string;
|
|
4090
|
+
/**
|
|
4091
|
+
* 分类查询类型:0-全量查询整棵标签树,1-根据父节点BizId分页查询子节点,2-关键词检索所有匹配的分类链路
|
|
4092
|
+
*/
|
|
4093
|
+
QueryType?: number;
|
|
4094
|
+
/**
|
|
4095
|
+
* QueryType=1时,父节点分类ID
|
|
4096
|
+
*/
|
|
4097
|
+
ParentCateBizId?: string;
|
|
4098
|
+
/**
|
|
4099
|
+
* QueryType=1时,页码(从1开始)
|
|
4100
|
+
*/
|
|
4101
|
+
PageNumber?: number;
|
|
4102
|
+
/**
|
|
4103
|
+
* 每页数量(默认10)
|
|
4104
|
+
*/
|
|
4105
|
+
PageSize?: number;
|
|
4106
|
+
/**
|
|
4107
|
+
* QueryType=2时,搜索内容
|
|
4108
|
+
*/
|
|
4109
|
+
Query?: string;
|
|
4061
4110
|
}
|
|
4062
4111
|
/**
|
|
4063
4112
|
* ListReleaseQAPreview请求参数结构体
|
|
@@ -5226,6 +5275,10 @@ export interface RateMsgRecordRequest {
|
|
|
5226
5275
|
* 原因,只有Score参数为2即点踩的时候才需要输入
|
|
5227
5276
|
*/
|
|
5228
5277
|
Reasons?: Array<string>;
|
|
5278
|
+
/**
|
|
5279
|
+
* 用户自定义反馈内容
|
|
5280
|
+
*/
|
|
5281
|
+
FeedbackContent?: string;
|
|
5229
5282
|
}
|
|
5230
5283
|
/**
|
|
5231
5284
|
* RenameDoc返回参数结构体
|
|
@@ -5728,6 +5781,10 @@ export interface UnsatisfiedReply {
|
|
|
5728
5781
|
* 操作人
|
|
5729
5782
|
*/
|
|
5730
5783
|
Operator?: string;
|
|
5784
|
+
/**
|
|
5785
|
+
* 自定义反馈
|
|
5786
|
+
*/
|
|
5787
|
+
FeedbackContent?: string;
|
|
5731
5788
|
}
|
|
5732
5789
|
/**
|
|
5733
5790
|
* Agent工具的响应参数定义
|
|
@@ -7259,6 +7316,11 @@ export interface QACate {
|
|
|
7259
7316
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
7260
7317
|
*/
|
|
7261
7318
|
Children?: Array<QACate>;
|
|
7319
|
+
/**
|
|
7320
|
+
* 是否是叶子节点
|
|
7321
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7322
|
+
*/
|
|
7323
|
+
IsLeaf?: boolean;
|
|
7262
7324
|
}
|
|
7263
7325
|
/**
|
|
7264
7326
|
* ListRejectedQuestion请求参数结构体
|