@yuntijs/arcadia-bff-sdk 1.2.91 → 1.2.93

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 CHANGED
@@ -2193,9 +2193,9 @@ export type ModelServiceQueryListModelServicesArgs = {
2193
2193
  /** 多模态产物 */
2194
2194
  export type MultiModalArtifact = {
2195
2195
  __typename?: 'MultiModalArtifact';
2196
- URL: Scalars['String']['output'];
2197
2196
  name: Scalars['String']['output'];
2198
2197
  type: Scalars['String']['output'];
2198
+ url: Scalars['String']['output'];
2199
2199
  };
2200
2200
  export type Mutation = {
2201
2201
  __typename?: 'Mutation';
@@ -5924,6 +5924,12 @@ export type ListKnowledgeBaseFileChunksQuery = {
5924
5924
  contentSizeInBytes: number;
5925
5925
  processingPhase: string;
5926
5926
  processingPhaseReason: string;
5927
+ multiModalArtifacts?: Array<{
5928
+ __typename?: 'MultiModalArtifact';
5929
+ name: string;
5930
+ type: string;
5931
+ url: string;
5932
+ } | null> | null;
5927
5933
  } | {
5928
5934
  __typename?: 'KnowledgeBaseStructuredFileChunk';
5929
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
@@ -2193,9 +2193,9 @@ export type ModelServiceQueryListModelServicesArgs = {
2193
2193
  /** 多模态产物 */
2194
2194
  export type MultiModalArtifact = {
2195
2195
  __typename?: 'MultiModalArtifact';
2196
- URL: Scalars['String']['output'];
2197
2196
  name: Scalars['String']['output'];
2198
2197
  type: Scalars['String']['output'];
2198
+ url: Scalars['String']['output'];
2199
2199
  };
2200
2200
  export type Mutation = {
2201
2201
  __typename?: 'Mutation';
@@ -5924,6 +5924,12 @@ export type ListKnowledgeBaseFileChunksQuery = {
5924
5924
  contentSizeInBytes: number;
5925
5925
  processingPhase: string;
5926
5926
  processingPhaseReason: string;
5927
+ multiModalArtifacts?: Array<{
5928
+ __typename?: 'MultiModalArtifact';
5929
+ name: string;
5930
+ type: string;
5931
+ url: string;
5932
+ } | null> | null;
5927
5933
  } | {
5928
5934
  __typename?: 'KnowledgeBaseStructuredFileChunk';
5929
5935
  } | {
package/dist/esm/sdk.js CHANGED
@@ -215,7 +215,7 @@ export var ListKnowledgeBaseFilesDocument = gql(_templateObject55 || (_templateO
215
215
  export var CreateKnowledgeBaseFileChunkDocument = gql(_templateObject56 || (_templateObject56 = _taggedTemplateLiteral(["\n mutation createKnowledgeBaseFileChunk($input: CreateKnowledgeBaseFileChunkInput!) {\n KnowledgeBase {\n createKnowledgeBaseFileChunk(input: $input)\n }\n}\n "])));
216
216
  export var UpdateKnowledgeBaseFileChunkDocument = gql(_templateObject57 || (_templateObject57 = _taggedTemplateLiteral(["\n mutation updateKnowledgeBaseFileChunk($input: UpdateKnowledgeBaseFileChunkInput!) {\n KnowledgeBase {\n updateKnowledgeBaseFileChunk(input: $input)\n }\n}\n "])));
217
217
  export var DeleteKnowledgeBaseFileChunkDocument = gql(_templateObject58 || (_templateObject58 = _taggedTemplateLiteral(["\n mutation deleteKnowledgeBaseFileChunk($input: DeleteKnowledgeBaseFileChunkInput!) {\n KnowledgeBase {\n deleteKnowledgeBaseFileChunk(input: $input)\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 }\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 "])));
219
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 "])));
220
220
  export var CreateKnowledgeBaseStructuredFilesDocument = gql(_templateObject61 || (_templateObject61 = _taggedTemplateLiteral(["\n mutation createKnowledgeBaseStructuredFiles($input: CreateKnowledgeBaseStructuredFileInput!) {\n KnowledgeBase {\n createKnowledgeBaseStructuredFiles(input: $input)\n }\n}\n "])));
221
221
  export var CreateKnowledgeBaseStructuredFileChunkDocument = gql(_templateObject62 || (_templateObject62 = _taggedTemplateLiteral(["\n mutation createKnowledgeBaseStructuredFileChunk($input: CreateKnowledgeBaseStructuredFileChunkInput!) {\n KnowledgeBase {\n createKnowledgeBaseStructuredFileChunk(input: $input)\n }\n}\n "])));