@yuntijs/arcadia-bff-sdk 1.2.100 → 1.2.101
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/dist/cjs/sdk.d.ts +12 -0
- package/dist/esm/sdk.d.ts +12 -0
- package/dist/umd/index.min.js.map +1 -1
- package/package.json +1 -1
package/dist/cjs/sdk.d.ts
CHANGED
|
@@ -521,6 +521,10 @@ export type CreateDatasourceInput = {
|
|
|
521
521
|
};
|
|
522
522
|
export type CreateKnowledgeBaseFileChunkInput = {
|
|
523
523
|
content: Scalars['String']['input'];
|
|
524
|
+
/** 数据类型: text,QA */
|
|
525
|
+
contentType: Scalars['String']['input'];
|
|
526
|
+
/** 数据血缘关系 */
|
|
527
|
+
dataLineage: DataLineageInput;
|
|
524
528
|
/** fileId文件的UID */
|
|
525
529
|
fileId: Scalars['String']['input'];
|
|
526
530
|
};
|
|
@@ -840,6 +844,11 @@ export type DataLineage = {
|
|
|
840
844
|
page: Scalars['String']['output'];
|
|
841
845
|
sourceContent: Scalars['String']['output'];
|
|
842
846
|
};
|
|
847
|
+
export type DataLineageInput = {
|
|
848
|
+
file: Scalars['String']['input'];
|
|
849
|
+
page: Scalars['String']['input'];
|
|
850
|
+
sourceContent: Scalars['String']['input'];
|
|
851
|
+
};
|
|
843
852
|
export type DataProcessConfig = {
|
|
844
853
|
__typename?: 'DataProcessConfig';
|
|
845
854
|
children?: Maybe<Array<Maybe<DataProcessConfigChildren>>>;
|
|
@@ -1528,6 +1537,7 @@ export type KnowledgeBaseFileChunk = {
|
|
|
1528
1537
|
__typename?: 'KnowledgeBaseFileChunk';
|
|
1529
1538
|
content: Scalars['String']['output'];
|
|
1530
1539
|
contentSizeInBytes: Scalars['Int']['output'];
|
|
1540
|
+
contentType: Scalars['String']['output'];
|
|
1531
1541
|
createdAt?: Maybe<Scalars['Time']['output']>;
|
|
1532
1542
|
dataLineage: DataLineage;
|
|
1533
1543
|
fileId: Scalars['String']['output'];
|
|
@@ -3344,6 +3354,8 @@ export type UpdateDatasourceInput = {
|
|
|
3344
3354
|
export type UpdateKnowledgeBaseFileChunkInput = {
|
|
3345
3355
|
/** 新的内容 */
|
|
3346
3356
|
content: Scalars['String']['input'];
|
|
3357
|
+
/** 数据类型: text,QA */
|
|
3358
|
+
contentType: Scalars['String']['input'];
|
|
3347
3359
|
/** chunk id */
|
|
3348
3360
|
id: Scalars['String']['input'];
|
|
3349
3361
|
};
|
package/dist/esm/sdk.d.ts
CHANGED
|
@@ -521,6 +521,10 @@ export type CreateDatasourceInput = {
|
|
|
521
521
|
};
|
|
522
522
|
export type CreateKnowledgeBaseFileChunkInput = {
|
|
523
523
|
content: Scalars['String']['input'];
|
|
524
|
+
/** 数据类型: text,QA */
|
|
525
|
+
contentType: Scalars['String']['input'];
|
|
526
|
+
/** 数据血缘关系 */
|
|
527
|
+
dataLineage: DataLineageInput;
|
|
524
528
|
/** fileId文件的UID */
|
|
525
529
|
fileId: Scalars['String']['input'];
|
|
526
530
|
};
|
|
@@ -840,6 +844,11 @@ export type DataLineage = {
|
|
|
840
844
|
page: Scalars['String']['output'];
|
|
841
845
|
sourceContent: Scalars['String']['output'];
|
|
842
846
|
};
|
|
847
|
+
export type DataLineageInput = {
|
|
848
|
+
file: Scalars['String']['input'];
|
|
849
|
+
page: Scalars['String']['input'];
|
|
850
|
+
sourceContent: Scalars['String']['input'];
|
|
851
|
+
};
|
|
843
852
|
export type DataProcessConfig = {
|
|
844
853
|
__typename?: 'DataProcessConfig';
|
|
845
854
|
children?: Maybe<Array<Maybe<DataProcessConfigChildren>>>;
|
|
@@ -1528,6 +1537,7 @@ export type KnowledgeBaseFileChunk = {
|
|
|
1528
1537
|
__typename?: 'KnowledgeBaseFileChunk';
|
|
1529
1538
|
content: Scalars['String']['output'];
|
|
1530
1539
|
contentSizeInBytes: Scalars['Int']['output'];
|
|
1540
|
+
contentType: Scalars['String']['output'];
|
|
1531
1541
|
createdAt?: Maybe<Scalars['Time']['output']>;
|
|
1532
1542
|
dataLineage: DataLineage;
|
|
1533
1543
|
fileId: Scalars['String']['output'];
|
|
@@ -3344,6 +3354,8 @@ export type UpdateDatasourceInput = {
|
|
|
3344
3354
|
export type UpdateKnowledgeBaseFileChunkInput = {
|
|
3345
3355
|
/** 新的内容 */
|
|
3346
3356
|
content: Scalars['String']['input'];
|
|
3357
|
+
/** 数据类型: text,QA */
|
|
3358
|
+
contentType: Scalars['String']['input'];
|
|
3347
3359
|
/** chunk id */
|
|
3348
3360
|
id: Scalars['String']['input'];
|
|
3349
3361
|
};
|