tencentcloud-sdk-nodejs-lowcode 4.1.53 → 4.1.56
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
|
@@ -118,6 +118,10 @@ export interface UploadKnowledgeDocumentSetRequest {
|
|
|
118
118
|
* 使用 regex 分割文档
|
|
119
119
|
*/
|
|
120
120
|
Delimiter?: string;
|
|
121
|
+
/**
|
|
122
|
+
* Cos存储文件ID
|
|
123
|
+
*/
|
|
124
|
+
FileId?: string;
|
|
121
125
|
}
|
|
122
126
|
/**
|
|
123
127
|
* UpdateKnowledgeSet返回参数结构体
|
|
@@ -176,6 +180,7 @@ export interface DescribeKnowledgeDocumentSetListResponse {
|
|
|
176
180
|
export interface UploadKnowledgeDocumentSetRsp {
|
|
177
181
|
/**
|
|
178
182
|
* 给文件分配的 ID 信息。
|
|
183
|
+
* @deprecated
|
|
179
184
|
*/
|
|
180
185
|
DocumentSetId?: string;
|
|
181
186
|
/**
|
|
@@ -190,6 +195,10 @@ export interface UploadKnowledgeDocumentSetRsp {
|
|
|
190
195
|
* 文件元信息,为jsonstring
|
|
191
196
|
*/
|
|
192
197
|
FileMetaData?: string;
|
|
198
|
+
/**
|
|
199
|
+
* Cos存储文件ID
|
|
200
|
+
*/
|
|
201
|
+
FileId?: string;
|
|
193
202
|
}
|
|
194
203
|
/**
|
|
195
204
|
* 数据源模糊查询参数
|
|
@@ -341,6 +350,10 @@ export interface SearchDocInfo {
|
|
|
341
350
|
* 文档大小
|
|
342
351
|
*/
|
|
343
352
|
FileSize?: number;
|
|
353
|
+
/**
|
|
354
|
+
* Cos存储文件ID
|
|
355
|
+
*/
|
|
356
|
+
FileId?: string;
|
|
344
357
|
}
|
|
345
358
|
/**
|
|
346
359
|
* 数据源详情列表
|
|
@@ -556,6 +569,10 @@ export interface KnowledgeSet {
|
|
|
556
569
|
* 知识库的meta信息
|
|
557
570
|
*/
|
|
558
571
|
Meta?: string;
|
|
572
|
+
/**
|
|
573
|
+
* 知识库容量,单位字节
|
|
574
|
+
*/
|
|
575
|
+
TotalSize?: string;
|
|
559
576
|
}
|
|
560
577
|
/**
|
|
561
578
|
* 文件拆分信息
|