@forge/cli-shared 9.5.1-next.4 → 9.5.1-next.5
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/CHANGELOG.md +6 -0
- package/out/graphql/graphql-types.d.ts +22 -0
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/ui/text.d.ts +3 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +3 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -6259,6 +6259,24 @@ export type AgentAiSummary = {
|
|
|
6259
6259
|
adf?: Maybe<Scalars['String']['output']>;
|
|
6260
6260
|
text?: Maybe<Scalars['String']['output']>;
|
|
6261
6261
|
};
|
|
6262
|
+
export type AgentConversationChannel = {
|
|
6263
|
+
__typename?: 'AgentConversationChannel';
|
|
6264
|
+
createdAt?: Maybe<Scalars['Long']['output']>;
|
|
6265
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
6266
|
+
interactionChannel?: Maybe<Scalars['String']['output']>;
|
|
6267
|
+
interactionChannelAri?: Maybe<Scalars['String']['output']>;
|
|
6268
|
+
isPinned?: Maybe<Scalars['Boolean']['output']>;
|
|
6269
|
+
isPlanning?: Maybe<Scalars['Boolean']['output']>;
|
|
6270
|
+
lastAgentMessageId?: Maybe<Scalars['String']['output']>;
|
|
6271
|
+
lastAgentMessageStatus?: Maybe<Scalars['String']['output']>;
|
|
6272
|
+
lastMessage?: Maybe<Scalars['String']['output']>;
|
|
6273
|
+
lastMessageTimestamp?: Maybe<Scalars['Long']['output']>;
|
|
6274
|
+
lastMessageType?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
6275
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
6276
|
+
pinnedAt?: Maybe<Scalars['Long']['output']>;
|
|
6277
|
+
readStatus?: Maybe<Scalars['Boolean']['output']>;
|
|
6278
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
6279
|
+
};
|
|
6262
6280
|
export type AgentSession = AgentSessionNode & {
|
|
6263
6281
|
__typename?: 'AgentSession';
|
|
6264
6282
|
_type?: Maybe<Scalars['String']['output']>;
|
|
@@ -6267,6 +6285,7 @@ export type AgentSession = AgentSessionNode & {
|
|
|
6267
6285
|
agentAri?: Maybe<Scalars['ID']['output']>;
|
|
6268
6286
|
associatedEntities?: Maybe<Array<Maybe<AgentSessionLinkedEntity>>>;
|
|
6269
6287
|
author?: Maybe<User>;
|
|
6288
|
+
conversationChannel?: Maybe<AgentConversationChannel>;
|
|
6270
6289
|
convoAiAgentId?: Maybe<Scalars['String']['output']>;
|
|
6271
6290
|
expireTime?: Maybe<Scalars['DateTime']['output']>;
|
|
6272
6291
|
id?: Maybe<Scalars['ID']['output']>;
|
|
@@ -6277,6 +6296,9 @@ export type AgentSession = AgentSessionNode & {
|
|
|
6277
6296
|
studioAgent?: Maybe<AgentStudioAgent>;
|
|
6278
6297
|
version?: Maybe<Scalars['Long']['output']>;
|
|
6279
6298
|
};
|
|
6299
|
+
export type AgentSessionConversationChannelArgs = {
|
|
6300
|
+
workspaceAri: Scalars['String']['input'];
|
|
6301
|
+
};
|
|
6280
6302
|
export type AgentSessionAssociation = AgentSessionAssociationNode & {
|
|
6281
6303
|
__typename?: 'AgentSessionAssociation';
|
|
6282
6304
|
_type?: Maybe<Scalars['String']['output']>;
|