@yuntijs/arcadia-bff-sdk 1.2.90 → 1.2.91
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 +8 -0
- package/dist/esm/sdk.d.ts +8 -0
- package/dist/esm/sdk.js +2 -0
- 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
|
+
URL: Scalars['String']['output'];
|
|
2197
|
+
name: Scalars['String']['output'];
|
|
2198
|
+
type: Scalars['String']['output'];
|
|
2199
|
+
};
|
|
2192
2200
|
export type Mutation = {
|
|
2193
2201
|
__typename?: 'Mutation';
|
|
2194
2202
|
Agent?: Maybe<AgentMutation>;
|
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
|
+
URL: Scalars['String']['output'];
|
|
2197
|
+
name: Scalars['String']['output'];
|
|
2198
|
+
type: Scalars['String']['output'];
|
|
2199
|
+
};
|
|
2192
2200
|
export type Mutation = {
|
|
2193
2201
|
__typename?: 'Mutation';
|
|
2194
2202
|
Agent?: Maybe<AgentMutation>;
|