npm package diff

Package: @forge/cli-shared

Versions: 5.5.2-next.0 - 5.5.2-next.1

File: package/out/graphql/graphql-types.d.ts

Index: package/out/graphql/graphql-types.d.ts
===================================================================
--- package/out/graphql/graphql-types.d.ts
+++ package/out/graphql/graphql-types.d.ts
@@ -53953,8 +53953,15 @@
     url: Scalars['String']['output'];
 };
 export declare type KnowledgeDiscoveryAdminhubBookmarkResult = KnowledgeDiscoveryAdminhubBookmark | QueryError;
 export declare type KnowledgeDiscoveryAdminhubBookmarksResult = KnowledgeDiscoveryAdminhubBookmarkConnection | QueryError;
+export declare type KnowledgeDiscoveryAutoDefinition = {
+    __typename?: 'KnowledgeDiscoveryAutoDefinition';
+    confluenceEntity?: Maybe<KnowledgeDiscoveryConfluenceEntity>;
+    createdAt: Scalars['String']['output'];
+    definition: Scalars['String']['output'];
+};
+export declare type KnowledgeDiscoveryAutoDefinitionResult = KnowledgeDiscoveryAutoDefinition | QueryError;
 export declare type KnowledgeDiscoveryBookmark = {
     __typename?: 'KnowledgeDiscoveryBookmark';
     properties?: Maybe<KnowledgeDiscoveryBookmarkProperties>;
     url?: Maybe<Scalars['String']['output']>;
@@ -54162,8 +54169,9 @@
 export declare type KnowledgeDiscoveryQueryApi = {
     __typename?: 'KnowledgeDiscoveryQueryApi';
     adminhubBookmark?: Maybe<KnowledgeDiscoveryAdminhubBookmarkResult>;
     adminhubBookmarks?: Maybe<KnowledgeDiscoveryAdminhubBookmarksResult>;
+    autoDefinition?: Maybe<KnowledgeDiscoveryAutoDefinitionResult>;
     bookmark?: Maybe<KnowledgeDiscoveryBookmarkResult>;
     definition?: Maybe<KnowledgeDiscoveryDefinitionResult>;
     definitionHistory?: Maybe<KnowledgeDiscoveryDefinitionHistoryResult>;
     extendedTopic?: Maybe<KnowledgeDiscoveryExtendedTopicResult>;
@@ -54182,8 +54190,13 @@
     cloudId: Scalars['ID']['input'];
     first?: InputMaybe<Scalars['Int']['input']>;
     orgId: Scalars['String']['input'];
 };
+export declare type KnowledgeDiscoveryQueryApiAutoDefinitionArgs = {
+    contentId: Scalars['String']['input'];
+    keyPhrase: Scalars['String']['input'];
+    workspaceId: Scalars['String']['input'];
+};
 export declare type KnowledgeDiscoveryQueryApiBookmarkArgs = {
     cloudId: Scalars['String']['input'];
     keyPhrase: Scalars['String']['input'];
     workspaceId?: InputMaybe<Scalars['String']['input']>;
@@ -67453,8 +67466,16 @@
 export declare type TownsquareEditGoalPayload = {
     __typename?: 'TownsquareEditGoalPayload';
     goal?: Maybe<TownsquareGoal>;
 };
+export declare type TownsquareEditGoalTypeInput = {
+    goalTypeAri: Scalars['String']['input'];
+    state?: InputMaybe<TownsquareGoalTypeState>;
+};
+export declare type TownsquareEditGoalTypePayload = {
+    __typename?: 'TownsquareEditGoalTypePayload';
+    goalType?: Maybe<TownsquareGoalType>;
+};
 export declare type TownsquareGoal = Node & {
     __typename?: 'TownsquareGoal';
     archived: Scalars['Boolean']['output'];
     creationDate: Scalars['DateTime']['output'];
@@ -67576,8 +67597,9 @@
     createGoal?: Maybe<TownsquareCreateGoalPayload>;
     createRelationships?: Maybe<TownsquareCreateRelationshipsPayload>;
     deleteRelationships?: Maybe<TownsquareDeleteRelationshipsPayload>;
     editGoal?: Maybe<TownsquareEditGoalPayload>;
+    editGoalType?: Maybe<TownsquareEditGoalTypePayload>;
     setParentGoal?: Maybe<TownsquareSetParentGoalPayload>;
     unarchiveGoal?: Maybe<TownsquareArchiveGoalPayload>;
 };
 export declare type TownsquareMutationApiArchiveGoalArgs = {
@@ -67594,8 +67616,11 @@
 };
 export declare type TownsquareMutationApiEditGoalArgs = {
     input: TownsquareEditGoalInput;
 };
+export declare type TownsquareMutationApiEditGoalTypeArgs = {
+    input: TownsquareEditGoalTypeInput;
+};
 export declare type TownsquareMutationApiSetParentGoalArgs = {
     input?: InputMaybe<TownsquareSetParentGoalInput>;
 };
 export declare type TownsquareMutationApiUnarchiveGoalArgs = {
@@ -70405,8 +70430,9 @@
 export declare type VirtualAgentConfigurationResult = VirtualAgentConfiguration | VirtualAgentQueryError;
 export declare type VirtualAgentConversation = Node & {
     __typename?: 'VirtualAgentConversation';
     action?: Maybe<VirtualAgentConversationActionType>;
+    channel?: Maybe<VirtualAgentConversationChannel>;
     csat?: Maybe<Scalars['Int']['output']>;
     firstMessageContent?: Maybe<Scalars['String']['output']>;
     id: Scalars['ID']['output'];
     intentProjectionTmp?: Maybe<VirtualAgentIntentProjectionTmp>;
@@ -70418,8 +70444,14 @@
     AiAnswered = "AI_ANSWERED",
     Matched = "MATCHED",
     Unhandled = "UNHANDLED"
 }
+export declare enum VirtualAgentConversationChannel {
+    HelpCenter = "HELP_CENTER",
+    JsmPortal = "JSM_PORTAL",
+    MsTeams = "MS_TEAMS",
+    Slack = "SLACK"
+}
 export declare enum VirtualAgentConversationCsatOptionType {
     CsatOption_1 = "CSAT_OPTION_1",
     CsatOption_2 = "CSAT_OPTION_2",
     CsatOption_3 = "CSAT_OPTION_3",
@@ -70444,8 +70476,9 @@
     pageInfo: PageInfo;
 };
 export declare type VirtualAgentConversationsFilter = {
     actions?: InputMaybe<Array<VirtualAgentConversationActionType>>;
+    channels?: InputMaybe<Array<VirtualAgentConversationChannel>>;
     csatOptions?: InputMaybe<Array<VirtualAgentConversationCsatOptionType>>;
     endDate: Scalars['DateTime']['input'];
     startDate: Scalars['DateTime']['input'];
     states?: InputMaybe<Array<VirtualAgentConversationState>>;