@yuntijs/arcadia-bff-sdk 1.2.90 → 1.2.92
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 +14 -0
- package/dist/cjs/sdk.js +7 -0
- package/dist/esm/sdk.d.ts +14 -0
- package/dist/esm/sdk.js +3 -1
- package/dist/umd/index.min.js +1 -1
- package/dist/umd/index.min.js.map +1 -1
- package/package.json +1 -1
package/dist/cjs/sdk.d.ts
CHANGED
|
@@ -1516,6 +1516,7 @@ export type KnowledgeBaseFileChunk = {
|
|
|
1516
1516
|
fileId: Scalars['String']['output'];
|
|
1517
1517
|
id: Scalars['String']['output'];
|
|
1518
1518
|
indexInFile: Scalars['Int']['output'];
|
|
1519
|
+
multiModalArtifacts?: Maybe<Array<Maybe<MultiModalArtifact>>>;
|
|
1519
1520
|
processingPhase: Scalars['String']['output'];
|
|
1520
1521
|
processingPhaseReason: Scalars['String']['output'];
|
|
1521
1522
|
updatedAt?: Maybe<Scalars['Time']['output']>;
|
|
@@ -2189,6 +2190,13 @@ export type ModelServiceQueryGetModelServiceArgs = {
|
|
|
2189
2190
|
export type ModelServiceQueryListModelServicesArgs = {
|
|
2190
2191
|
input?: InputMaybe<ListModelServiceInput>;
|
|
2191
2192
|
};
|
|
2193
|
+
/** 多模态产物 */
|
|
2194
|
+
export type MultiModalArtifact = {
|
|
2195
|
+
__typename?: 'MultiModalArtifact';
|
|
2196
|
+
name: Scalars['String']['output'];
|
|
2197
|
+
type: Scalars['String']['output'];
|
|
2198
|
+
url: Scalars['String']['output'];
|
|
2199
|
+
};
|
|
2192
2200
|
export type Mutation = {
|
|
2193
2201
|
__typename?: 'Mutation';
|
|
2194
2202
|
Agent?: Maybe<AgentMutation>;
|
|
@@ -5916,6 +5924,12 @@ export type ListKnowledgeBaseFileChunksQuery = {
|
|
|
5916
5924
|
contentSizeInBytes: number;
|
|
5917
5925
|
processingPhase: string;
|
|
5918
5926
|
processingPhaseReason: string;
|
|
5927
|
+
multiModalArtifacts?: Array<{
|
|
5928
|
+
__typename?: 'MultiModalArtifact';
|
|
5929
|
+
name: string;
|
|
5930
|
+
type: string;
|
|
5931
|
+
url: string;
|
|
5932
|
+
} | null> | null;
|
|
5919
5933
|
} | {
|
|
5920
5934
|
__typename?: 'KnowledgeBaseStructuredFileChunk';
|
|
5921
5935
|
} | {
|
package/dist/cjs/sdk.js
CHANGED
|
@@ -1383,6 +1383,13 @@ var ListKnowledgeBaseFileChunksDocument = import_graphql_tag.default`
|
|
|
1383
1383
|
contentSizeInBytes
|
|
1384
1384
|
processingPhase
|
|
1385
1385
|
processingPhaseReason
|
|
1386
|
+
multiModalArtifacts {
|
|
1387
|
+
... on MultiModalArtifact {
|
|
1388
|
+
name
|
|
1389
|
+
type
|
|
1390
|
+
url
|
|
1391
|
+
}
|
|
1392
|
+
}
|
|
1386
1393
|
}
|
|
1387
1394
|
}
|
|
1388
1395
|
}
|
package/dist/esm/sdk.d.ts
CHANGED
|
@@ -1516,6 +1516,7 @@ export type KnowledgeBaseFileChunk = {
|
|
|
1516
1516
|
fileId: Scalars['String']['output'];
|
|
1517
1517
|
id: Scalars['String']['output'];
|
|
1518
1518
|
indexInFile: Scalars['Int']['output'];
|
|
1519
|
+
multiModalArtifacts?: Maybe<Array<Maybe<MultiModalArtifact>>>;
|
|
1519
1520
|
processingPhase: Scalars['String']['output'];
|
|
1520
1521
|
processingPhaseReason: Scalars['String']['output'];
|
|
1521
1522
|
updatedAt?: Maybe<Scalars['Time']['output']>;
|
|
@@ -2189,6 +2190,13 @@ export type ModelServiceQueryGetModelServiceArgs = {
|
|
|
2189
2190
|
export type ModelServiceQueryListModelServicesArgs = {
|
|
2190
2191
|
input?: InputMaybe<ListModelServiceInput>;
|
|
2191
2192
|
};
|
|
2193
|
+
/** 多模态产物 */
|
|
2194
|
+
export type MultiModalArtifact = {
|
|
2195
|
+
__typename?: 'MultiModalArtifact';
|
|
2196
|
+
name: Scalars['String']['output'];
|
|
2197
|
+
type: Scalars['String']['output'];
|
|
2198
|
+
url: Scalars['String']['output'];
|
|
2199
|
+
};
|
|
2192
2200
|
export type Mutation = {
|
|
2193
2201
|
__typename?: 'Mutation';
|
|
2194
2202
|
Agent?: Maybe<AgentMutation>;
|
|
@@ -5916,6 +5924,12 @@ export type ListKnowledgeBaseFileChunksQuery = {
|
|
|
5916
5924
|
contentSizeInBytes: number;
|
|
5917
5925
|
processingPhase: string;
|
|
5918
5926
|
processingPhaseReason: string;
|
|
5927
|
+
multiModalArtifacts?: Array<{
|
|
5928
|
+
__typename?: 'MultiModalArtifact';
|
|
5929
|
+
name: string;
|
|
5930
|
+
type: string;
|
|
5931
|
+
url: string;
|
|
5932
|
+
} | null> | null;
|
|
5919
5933
|
} | {
|
|
5920
5934
|
__typename?: 'KnowledgeBaseStructuredFileChunk';
|
|
5921
5935
|
} | {
|
package/dist/esm/sdk.js
CHANGED
|
@@ -108,6 +108,8 @@ import useSWR from "./useSWR";
|
|
|
108
108
|
|
|
109
109
|
/** 模型 */
|
|
110
110
|
|
|
111
|
+
/** 多模态产物 */
|
|
112
|
+
|
|
111
113
|
/** 对象存储的使用信息 */
|
|
112
114
|
|
|
113
115
|
/** 文件输入 */
|
|
@@ -213,7 +215,7 @@ export var ListKnowledgeBaseFilesDocument = gql(_templateObject55 || (_templateO
|
|
|
213
215
|
export var CreateKnowledgeBaseFileChunkDocument = gql(_templateObject56 || (_templateObject56 = _taggedTemplateLiteral(["\n mutation createKnowledgeBaseFileChunk($input: CreateKnowledgeBaseFileChunkInput!) {\n KnowledgeBase {\n createKnowledgeBaseFileChunk(input: $input)\n }\n}\n "])));
|
|
214
216
|
export var UpdateKnowledgeBaseFileChunkDocument = gql(_templateObject57 || (_templateObject57 = _taggedTemplateLiteral(["\n mutation updateKnowledgeBaseFileChunk($input: UpdateKnowledgeBaseFileChunkInput!) {\n KnowledgeBase {\n updateKnowledgeBaseFileChunk(input: $input)\n }\n}\n "])));
|
|
215
217
|
export var DeleteKnowledgeBaseFileChunkDocument = gql(_templateObject58 || (_templateObject58 = _taggedTemplateLiteral(["\n mutation deleteKnowledgeBaseFileChunk($input: DeleteKnowledgeBaseFileChunkInput!) {\n KnowledgeBase {\n deleteKnowledgeBaseFileChunk(input: $input)\n }\n}\n "])));
|
|
216
|
-
export var ListKnowledgeBaseFileChunksDocument = gql(_templateObject59 || (_templateObject59 = _taggedTemplateLiteral(["\n query listKnowledgeBaseFileChunks($input: ListKnowledgeBaseFileChunksInput!) {\n KnowledgeBase {\n listKnowledgeBaseFileChunks(input: $input) {\n totalCount\n hasNextPage\n nodes {\n ... on KnowledgeBaseFileChunk {\n id\n fileId\n createdAt\n updatedAt\n indexInFile\n content\n contentSizeInBytes\n processingPhase\n processingPhaseReason\n }\n }\n }\n }\n}\n "])));
|
|
218
|
+
export var ListKnowledgeBaseFileChunksDocument = gql(_templateObject59 || (_templateObject59 = _taggedTemplateLiteral(["\n query listKnowledgeBaseFileChunks($input: ListKnowledgeBaseFileChunksInput!) {\n KnowledgeBase {\n listKnowledgeBaseFileChunks(input: $input) {\n totalCount\n hasNextPage\n nodes {\n ... on KnowledgeBaseFileChunk {\n id\n fileId\n createdAt\n updatedAt\n indexInFile\n content\n contentSizeInBytes\n processingPhase\n processingPhaseReason\n multiModalArtifacts {\n ... on MultiModalArtifact {\n name\n type\n url\n }\n }\n }\n }\n }\n }\n}\n "])));
|
|
217
219
|
export var ShowStructuredFileInfoDocument = gql(_templateObject60 || (_templateObject60 = _taggedTemplateLiteral(["\n query showStructuredFileInfo($input: CreateKnowledgeBaseStructuredFileInput!) {\n KnowledgeBase {\n showStructuredFileInfo(input: $input) {\n sheets\n currentSheet\n totalRows\n rowHeader\n headers\n }\n }\n}\n "])));
|
|
218
220
|
export var CreateKnowledgeBaseStructuredFilesDocument = gql(_templateObject61 || (_templateObject61 = _taggedTemplateLiteral(["\n mutation createKnowledgeBaseStructuredFiles($input: CreateKnowledgeBaseStructuredFileInput!) {\n KnowledgeBase {\n createKnowledgeBaseStructuredFiles(input: $input)\n }\n}\n "])));
|
|
219
221
|
export var CreateKnowledgeBaseStructuredFileChunkDocument = gql(_templateObject62 || (_templateObject62 = _taggedTemplateLiteral(["\n mutation createKnowledgeBaseStructuredFileChunk($input: CreateKnowledgeBaseStructuredFileChunkInput!) {\n KnowledgeBase {\n createKnowledgeBaseStructuredFileChunk(input: $input)\n }\n}\n "])));
|