tencentcloud-sdk-nodejs-dataagent 4.1.186 → 4.1.200
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
|
@@ -827,55 +827,57 @@ export interface QueryUserAuthorityRequest {
|
|
|
827
827
|
*/
|
|
828
828
|
export interface FileInfo {
|
|
829
829
|
/**
|
|
830
|
-
*
|
|
830
|
+
* <p>文件名称</p>
|
|
831
831
|
*/
|
|
832
832
|
FileName: string;
|
|
833
833
|
/**
|
|
834
|
-
*
|
|
834
|
+
* <p>文件大小,字节</p>
|
|
835
835
|
*/
|
|
836
836
|
FileSize: number;
|
|
837
837
|
/**
|
|
838
|
-
*
|
|
839
|
-
|
|
838
|
+
* <p>文件类型,0=文本,1=表格,默认0</p>
|
|
840
839
|
*/
|
|
841
840
|
Type: number;
|
|
842
841
|
/**
|
|
843
|
-
*
|
|
842
|
+
* <p>文件ID</p>
|
|
844
843
|
*/
|
|
845
844
|
FileId: string;
|
|
846
845
|
/**
|
|
847
|
-
*
|
|
846
|
+
* <p>状态,0:数据处理中 1:可用 -1:错误</p>
|
|
848
847
|
*/
|
|
849
848
|
Status?: number;
|
|
850
849
|
/**
|
|
851
|
-
*
|
|
852
|
-
|
|
850
|
+
* <p>操作者</p>
|
|
853
851
|
*/
|
|
854
852
|
CreateUser?: string;
|
|
855
853
|
/**
|
|
856
|
-
*
|
|
854
|
+
* <p>创建时间</p>
|
|
857
855
|
*/
|
|
858
856
|
CreateTime?: string;
|
|
859
857
|
/**
|
|
860
|
-
*
|
|
858
|
+
* <p>分片策略</p>
|
|
861
859
|
*/
|
|
862
860
|
ChunkConfig?: KnowledgeTaskConfig;
|
|
863
861
|
/**
|
|
864
|
-
*
|
|
862
|
+
* <p>文件来源0=unknow,1=user_cos,2=local</p>
|
|
865
863
|
*/
|
|
866
864
|
Source?: number;
|
|
867
865
|
/**
|
|
868
|
-
*
|
|
866
|
+
* <p>文件url</p>
|
|
869
867
|
*/
|
|
870
868
|
FileUrl?: string;
|
|
871
869
|
/**
|
|
872
|
-
*
|
|
870
|
+
* <p>是否官方示例,0=否,1=是</p>
|
|
873
871
|
*/
|
|
874
872
|
IsShowCase?: number;
|
|
875
873
|
/**
|
|
876
|
-
*
|
|
874
|
+
* <p>文档摘要</p>
|
|
877
875
|
*/
|
|
878
876
|
DocumentSummary?: string;
|
|
877
|
+
/**
|
|
878
|
+
* <p>网页地址</p>
|
|
879
|
+
*/
|
|
880
|
+
WebUrl?: string;
|
|
879
881
|
}
|
|
880
882
|
/**
|
|
881
883
|
* GetKnowledgeBaseFileList请求参数结构体
|