npm package diff
Package: @forge/cli-shared
Versions: 6.7.1-next.0 - 6.7.1-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
@@ -36618,8 +36618,9 @@
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
};
export declare type GraphStoreCreateTeamConnectedToContainerInput = {
relationships: Array<GraphStoreCreateTeamConnectedToContainerRelationshipInput>;
+ synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
};
export declare type GraphStoreCreateTeamConnectedToContainerPayload = Payload & {
__typename?: 'GraphStoreCreateTeamConnectedToContainerPayload';
errors?: Maybe<Array<MutationError>>;
@@ -50162,8 +50163,15 @@
errors?: Maybe<Array<MutationError>>;
success: Scalars['Boolean']['output'];
};
export declare type HelpCenterPermissionSettingsResult = HelpCenterPermissionSettings | QueryError;
+export declare type HelpCenterPermissions = {
+ __typename?: 'HelpCenterPermissions';
+ isAdvancedCustomizationEnabled: Scalars['Boolean']['output'];
+ isHelpCenterAdmin: Scalars['Boolean']['output'];
+ isLayoutEditable: Scalars['Boolean']['output'];
+};
+export declare type HelpCenterPermissionsResult = HelpCenterPermissions | QueryError;
export declare type HelpCenterPortal = {
__typename?: 'HelpCenterPortal';
description?: Maybe<Scalars['String']['output']>;
id: Scalars['String']['output'];
@@ -50244,8 +50252,9 @@
helpCenterById?: Maybe<HelpCenterQueryResult>;
helpCenterPageById?: Maybe<HelpCenterPageQueryResult>;
helpCenterPages?: Maybe<HelpCenterPageQueryResultConnection>;
helpCenterPermissionSettings?: Maybe<HelpCenterPermissionSettingsResult>;
+ helpCenterPermissions?: Maybe<HelpCenterPermissionsResult>;
helpCenterReportingById?: Maybe<HelpCenterReportingResult>;
helpCenterTopicById?: Maybe<HelpCenterTopicResult>;
helpCenters?: Maybe<HelpCenterQueryResultConnection>;
helpCentersByProjectId?: Maybe<HelpCenterQueryResultConnection>;
@@ -50277,8 +50286,12 @@
first?: InputMaybe<Scalars['Int']['input']>;
helpCenterAri: Scalars['ID']['input'];
last?: InputMaybe<Scalars['Int']['input']>;
};
+export declare type HelpCenterQueryApiHelpCenterPermissionsArgs = {
+ slug?: InputMaybe<Scalars['String']['input']>;
+ workspaceAri: Scalars['ID']['input'];
+};
export declare type HelpCenterQueryApiHelpCenterReportingByIdArgs = {
helpCenterAri: Scalars['ID']['input'];
};
export declare type HelpCenterQueryApiHelpCenterTopicByIdArgs = {
@@ -52036,8 +52049,37 @@
export declare type InstanceAnalyticsCount = {
__typename?: 'InstanceAnalyticsCount';
user: Scalars['Int']['output'];
};
+export declare type IntentDetectionResponse = {
+ __typename?: 'IntentDetectionResponse';
+ intentDetectionResults?: Maybe<Array<Maybe<IntentDetectionResult>>>;
+};
+export declare type IntentDetectionResult = {
+ __typename?: 'IntentDetectionResult';
+ entity?: Maybe<Scalars['String']['output']>;
+ intent?: Maybe<IntentDetectionTopLevelIntent>;
+ probability?: Maybe<Scalars['Float']['output']>;
+ subintents?: Maybe<Array<Maybe<IntentDetectionSubType>>>;
+};
+export declare enum IntentDetectionSubType {
+ Command = "COMMAND",
+ Confluence = "CONFLUENCE",
+ Evaluate = "EVALUATE",
+ Jira = "JIRA",
+ JobTitle = "JOB_TITLE",
+ Llm = "LLM",
+ Question = "QUESTION"
+}
+export declare enum IntentDetectionTopLevelIntent {
+ JobTitle = "JOB_TITLE",
+ KeywordOrAcronym = "KEYWORD_OR_ACRONYM",
+ NaturalLanguageQuery = "NATURAL_LANGUAGE_QUERY",
+ Navigational = "NAVIGATIONAL",
+ None = "NONE",
+ Person = "PERSON",
+ Team = "TEAM"
+}
export declare type IntervalFilter = {
end: Scalars['String']['input'];
start: Scalars['String']['input'];
};
@@ -80760,8 +80802,9 @@
insights?: Maybe<Insights>;
installationContexts?: Maybe<Array<InstallationContext>>;
installationContextsWithLogAccess?: Maybe<Array<InstallationContextWithLogAccess>>;
instanceAnalyticsCount?: Maybe<InstanceAnalyticsCount>;
+ intentdetection_getIntent?: Maybe<IntentDetectionResponse>;
internalFrontendResource?: Maybe<FrontendResourceRenderResponse>;
ipmFlag?: Maybe<ContentPlatformIpmFlag>;
ipmFlags: ContentPlatformIpmFlagSearchConnection;
ipmImageModal?: Maybe<ContentPlatformIpmImageModal>;
@@ -82905,8 +82948,14 @@
endTime?: InputMaybe<Scalars['String']['input']>;
eventName: Array<AnalyticsEventName>;
startTime: Scalars['String']['input'];
};
+export declare type QueryIntentdetection_GetIntentArgs = {
+ accountId?: InputMaybe<Scalars['ID']['input']>;
+ cloudId?: InputMaybe<Scalars['ID']['input']>;
+ locale?: InputMaybe<Scalars['String']['input']>;
+ query?: InputMaybe<Scalars['String']['input']>;
+};
export declare type QueryIpmFlagArgs = {
id: Scalars['String']['input'];
locale?: InputMaybe<Scalars['String']['input']>;
publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;