npm package diff
Package: @forge/cli-shared
Versions: 6.6.1-next.16 - 6.6.1-next.17
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
@@ -1081,8 +1081,9 @@
InsightsXperienceService = "INSIGHTS_XPERIENCE_SERVICE",
Jira = "JIRA",
Papi = "PAPI",
Polaris = "POLARIS",
+ ServiceHubAgentConfiguration = "SERVICE_HUB_AGENT_CONFIGURATION",
SurfacePlatform = "SURFACE_PLATFORM",
Teams = "TEAMS",
VirtualAgent = "VIRTUAL_AGENT",
WebTriggers = "WEB_TRIGGERS",
@@ -19542,8 +19543,62 @@
ContainAny = "CONTAIN_ANY",
IsSet = "IS_SET",
NotSet = "NOT_SET"
}
+export declare type CustomerHubAgentConfiguration = {
+ __typename?: 'CustomerHubAgentConfiguration';
+ agentIdentity?: Maybe<CustomerHubAgentConfigurationIdentityResult>;
+ id: Scalars['ID']['output'];
+};
+export declare type CustomerHubAgentConfigurationIdentity = {
+ __typename?: 'CustomerHubAgentConfigurationIdentity';
+ conversationStarters?: Maybe<Array<CustomerHubAgentConfigurationIdentityConversationStarter>>;
+ id: Scalars['ID']['output'];
+ name?: Maybe<Scalars['String']['output']>;
+ purpose?: Maybe<Scalars['String']['output']>;
+ tone?: Maybe<CustomerHubAgentConfigurationIdentityTone>;
+};
+export declare type CustomerHubAgentConfigurationIdentityConversationStarter = {
+ __typename?: 'CustomerHubAgentConfigurationIdentityConversationStarter';
+ id: Scalars['ID']['output'];
+ message?: Maybe<Scalars['String']['output']>;
+};
+export declare type CustomerHubAgentConfigurationIdentityMapping = {
+ __typename?: 'CustomerHubAgentConfigurationIdentityMapping';
+ conversationStarters?: Maybe<Array<CustomerHubAgentConfigurationIdentityConversationStarter>>;
+ id: Scalars['ID']['output'];
+ name?: Maybe<Scalars['String']['output']>;
+};
+export declare type CustomerHubAgentConfigurationIdentityMappingResult = CustomerHubAgentConfigurationIdentityMapping | QueryError;
+export declare type CustomerHubAgentConfigurationIdentityResult = CustomerHubAgentConfigurationIdentity | QueryError;
+export declare type CustomerHubAgentConfigurationIdentityTone = {
+ __typename?: 'CustomerHubAgentConfigurationIdentityTone';
+ description?: Maybe<Scalars['String']['output']>;
+ type?: Maybe<Scalars['String']['output']>;
+};
+export declare type CustomerHubAgentConfigurationIdentityToneInput = {
+ description?: InputMaybe<Scalars['String']['input']>;
+ type: Scalars['String']['input'];
+};
+export declare type CustomerHubAgentConfigurationResult = CustomerHubAgentConfiguration | QueryError;
+export declare type CustomerHubAgentConfigurationUpdateIdentityConfigurationInput = {
+ addedConversationStarters?: InputMaybe<Array<Scalars['String']['input']>>;
+ deletedConversationStarters?: InputMaybe<Array<Scalars['ID']['input']>>;
+ name?: InputMaybe<Scalars['String']['input']>;
+ purpose?: InputMaybe<Scalars['String']['input']>;
+ tone?: InputMaybe<CustomerHubAgentConfigurationIdentityToneInput>;
+ updatedConversationStarters?: InputMaybe<Array<CustomerHubAgentConfigurationUpdateIdentityConversationStarterInput>>;
+};
+export declare type CustomerHubAgentConfigurationUpdateIdentityConversationStarterInput = {
+ id: Scalars['ID']['input'];
+ message?: InputMaybe<Scalars['String']['input']>;
+};
+export declare type CustomerHubAgentConfigurationUpdateIdentityPayload = Payload & {
+ __typename?: 'CustomerHubAgentConfigurationUpdateIdentityPayload';
+ agentIdentity?: Maybe<CustomerHubAgentConfigurationIdentity>;
+ errors?: Maybe<Array<MutationError>>;
+ success: Scalars['Boolean']['output'];
+};
export declare type CustomerServiceAttribute = Node & {
__typename?: 'CustomerServiceAttribute';
config?: Maybe<CustomerServiceAttributeConfigMetadata>;
id: Scalars['ID']['output'];
@@ -21437,8 +21492,14 @@
configuration?: Maybe<DevAiAutofixConfiguration>;
errors?: Maybe<Array<MutationError>>;
success: Scalars['Boolean']['output'];
};
+export declare type DevAiUser = {
+ __typename?: 'DevAiUser';
+ atlassianAccountId: Scalars['ID']['output'];
+ hasProductAccess?: Maybe<Scalars['Boolean']['output']>;
+ isAdmin?: Maybe<Scalars['Boolean']['output']>;
+};
export declare type DevAiWorkflowRunError = {
__typename?: 'DevAiWorkflowRunError';
errorType?: Maybe<Scalars['String']['output']>;
httpStatus?: Maybe<Scalars['Int']['output']>;
@@ -25774,8 +25835,9 @@
export declare type ForgeMetricsCustomData = {
__typename?: 'ForgeMetricsCustomData';
appId: Scalars['ID']['output'];
createdAt: Scalars['String']['output'];
+ createdBy?: Maybe<User>;
creatorId: Scalars['String']['output'];
customMetricName: Scalars['String']['output'];
description?: Maybe<Scalars['String']['output']>;
id: Scalars['ID']['output'];
@@ -55003,8 +55065,26 @@
};
export declare type JiraEstimateInput = {
timeInSeconds: Scalars['Long']['input'];
};
+export declare type JiraExportIssueDetailsInput = {
+ includeComments?: InputMaybe<Scalars['Boolean']['input']>;
+ includeFields?: InputMaybe<Scalars['Boolean']['input']>;
+ includeHistory?: InputMaybe<Scalars['Boolean']['input']>;
+ includeWorklogs?: InputMaybe<Scalars['Boolean']['input']>;
+ issueId: Scalars['ID']['input'];
+};
+export declare type JiraExportIssueDetailsResponse = {
+ __typename?: 'JiraExportIssueDetailsResponse';
+ errors?: Maybe<Array<QueryError>>;
+ taskResponse?: Maybe<JiraExportIssueDetailsTaskResponse>;
+};
+export declare type JiraExportIssueDetailsTaskResponse = {
+ __typename?: 'JiraExportIssueDetailsTaskResponse';
+ taskDescription?: Maybe<Scalars['String']['output']>;
+ taskId?: Maybe<Scalars['ID']['output']>;
+ taskStatus?: Maybe<JiraLongRunningTaskStatus>;
+};
export declare type JiraExtensionRenderingContextInput = {
issueKey?: InputMaybe<Scalars['String']['input']>;
portalId?: InputMaybe<Scalars['ID']['input']>;
projectKey?: InputMaybe<Scalars['String']['input']>;
@@ -60964,8 +61044,9 @@
isAIEnabled?: Maybe<Scalars['Boolean']['output']>;
isExplicitFieldAssociationsEnabled?: Maybe<Scalars['Boolean']['output']>;
isFavourite?: Maybe<Scalars['Boolean']['output']>;
isLiveTemplate?: Maybe<Scalars['Boolean']['output']>;
+ isPlaybooksEnabled?: Maybe<Scalars['Boolean']['output']>;
isVirtualAgentEnabled?: Maybe<Scalars['Boolean']['output']>;
issueTypes?: Maybe<JiraIssueTypeConnection>;
jsmChatInitialNativeConfig?: Maybe<JsmChatInitializeNativeConfigResponse>;
jsmChatMsTeamsConfig?: Maybe<JsmChatMsTeamsConfig>;
@@ -61731,8 +61812,9 @@
deploymentsFeaturePreconditionByProjectKey?: Maybe<JiraDeploymentsFeaturePrecondition>;
devOps?: Maybe<JiraDevOpsQuery>;
devOpsProviders?: Maybe<Array<Maybe<JiraDevOpsProvider>>>;
epicLinkFieldKey?: Maybe<Scalars['String']['output']>;
+ exportIssueDetails?: Maybe<JiraExportIssueDetailsResponse>;
favouriteFilters?: Maybe<JiraFilterConnection>;
favourites?: Maybe<JiraFavouriteConnection>;
fieldSetViewQueryByProject?: Maybe<JiraFieldSetViewResult>;
fieldSetsById?: Maybe<JiraIssueSearchFieldSetConnection>;
@@ -62026,8 +62108,11 @@
};
export declare type JiraQueryEpicLinkFieldKeyArgs = {
cloudId?: InputMaybe<Scalars['ID']['input']>;
};
+export declare type JiraQueryExportIssueDetailsArgs = {
+ input: JiraExportIssueDetailsInput;
+};
export declare type JiraQueryFavouriteFiltersArgs = {
after?: InputMaybe<Scalars['String']['input']>;
before?: InputMaybe<Scalars['String']['input']>;
cloudId: Scalars['ID']['input'];
@@ -71892,8 +71977,9 @@
logoUrl?: Maybe<Scalars['String']['output']>;
slug?: Maybe<Scalars['String']['output']>;
supportAvailability?: Maybe<MarketplaceStorePartnerSupportAvailability>;
supportContact?: Maybe<MarketplaceStorePartnerSupportContact>;
+ trustCenterUrl?: Maybe<Scalars['String']['output']>;
};
export declare type MarketplaceStorePartnerResponse = {
__typename?: 'MarketplaceStorePartnerResponse';
developerSpace: MarketplaceStoreDeveloperSpace;
@@ -73958,8 +74044,9 @@
createSprint?: Maybe<CreateSprintResponse>;
createSystemSpace?: Maybe<Space>;
createTemplate?: Maybe<ContentTemplate>;
createWebTriggerUrl?: Maybe<CreateWebTriggerUrlResponse>;
+ customerHubAgentConfiguration_updateIdentityConfiguration?: Maybe<CustomerHubAgentConfigurationUpdateIdentityPayload>;
customerService?: Maybe<CustomerServiceMutationApi>;
customerSupport?: Maybe<SupportRequestCatalogMutationApi>;
deactivatePaywallContent?: Maybe<DeactivatePaywallContentPayload>;
deleteApp?: Maybe<DeleteAppResponse>;
@@ -75085,8 +75172,13 @@
export declare type MutationCreateWebTriggerUrlArgs = {
forceCreate?: InputMaybe<Scalars['Boolean']['input']>;
input: WebTriggerUrlInput;
};
+export declare type MutationCustomerHubAgentConfiguration_UpdateIdentityConfigurationArgs = {
+ agentConfigurationId: Scalars['ID']['input'];
+ helpCenterAri: Scalars['ID']['input'];
+ input?: InputMaybe<CustomerHubAgentConfigurationUpdateIdentityConfigurationInput>;
+};
export declare type MutationCustomerServiceArgs = {
cloudId: Scalars['ID']['input'];
};
export declare type MutationDeactivatePaywallContentArgs = {
@@ -78811,8 +78903,10 @@
countGroupByUser?: Maybe<CountGroupByUser>;
countUsersGroupByPage?: Maybe<CountUsersGroupByPage>;
cqlMetaData?: Maybe<Confluence_CqlMetaData>;
currentConfluenceUser?: Maybe<CurrentConfluenceUser>;
+ customerHubAgentConfiguration_configurationByHelpCenterAri?: Maybe<CustomerHubAgentConfigurationResult>;
+ customerHubAgentConfiguration_mappingByHelpCenterAri?: Maybe<CustomerHubAgentConfigurationIdentityMappingResult>;
customerService?: Maybe<CustomerServiceQueryApi>;
customerStories: ContentPlatformCustomerStorySearchConnection;
customerStory?: Maybe<ContentPlatformCustomerStory>;
customerSupport?: Maybe<SupportRequestCatalogQueryApi>;
@@ -78847,8 +78941,9 @@
devai_autodevJobLogGroups?: Maybe<DevAiAutodevLogGroupConnection>;
devai_autodevJobLogs?: Maybe<DevAiAutodevLogConnection>;
devai_autodevJobsForIssue?: Maybe<JiraAutodevJobConnection>;
devai_autodevRovoAgents?: Maybe<DevAiRovoAgentConnection>;
+ devai_rovoDevAgentsUser?: Maybe<DevAiUser>;
devai_technicalPlannerJobById?: Maybe<DevAiTechnicalPlannerJob>;
devai_technicalPlannerJobsForIssue?: Maybe<DevAiTechnicalPlannerJobConnection>;
developerLogAccess?: Maybe<Array<Maybe<DeveloperLogAccessResult>>>;
developmentInformation?: Maybe<IssueDevOpsDevelopmentInformation>;
@@ -80622,8 +80717,14 @@
pageId?: InputMaybe<Array<Scalars['ID']['input']>>;
sortOrder?: InputMaybe<Scalars['String']['input']>;
startTime: Scalars['String']['input'];
};
+export declare type QueryCustomerHubAgentConfiguration_ConfigurationByHelpCenterAriArgs = {
+ helpCenterAri: Scalars['ID']['input'];
+};
+export declare type QueryCustomerHubAgentConfiguration_MappingByHelpCenterAriArgs = {
+ helpCenterAri: Scalars['ID']['input'];
+};
export declare type QueryCustomerServiceArgs = {
cloudId: Scalars['ID']['input'];
};
export declare type QueryCustomerStoriesArgs = {
@@ -80765,8 +80866,12 @@
first?: InputMaybe<Scalars['Int']['input']>;
query?: InputMaybe<Scalars['String']['input']>;
templatesFilter?: InputMaybe<DevAiRovoAgentTemplateFilter>;
};
+export declare type QueryDevai_RovoDevAgentsUserArgs = {
+ atlassianAccountId: Scalars['ID']['input'];
+ cloudId: Scalars['ID']['input'];
+};
export declare type QueryDevai_TechnicalPlannerJobByIdArgs = {
cloudId: Scalars['ID']['input'];
jobId: Scalars['ID']['input'];
};
@@ -92507,8 +92612,9 @@
consent?: Maybe<UnifiedConsentMutation>;
createUnifiedSystem?: Maybe<UnifiedProfilePayload>;
gating?: Maybe<UnifiedGatingMutation>;
linking?: Maybe<UnifiedLinkingMutation>;
+ profile?: Maybe<UnifiedProfileMutation>;
updateUnifiedProfile?: Maybe<UnifiedProfilePayload>;
};
export declare type UnifiedMutationCreateUnifiedSystemArgs = {
aaid: Scalars['String']['input'];
@@ -92607,8 +92713,15 @@
websiteUrl?: InputMaybe<Scalars['String']['input']>;
xUrl?: InputMaybe<Scalars['String']['input']>;
youtubeUrl?: InputMaybe<Scalars['String']['input']>;
};
+export declare type UnifiedProfileMutation = {
+ __typename?: 'UnifiedProfileMutation';
+ getExistingOrNewProfileFromKhorosUserId?: Maybe<UnifiedProfilePayload>;
+};
+export declare type UnifiedProfileMutationGetExistingOrNewProfileFromKhorosUserIdArgs = {
+ khorosUserId: Scalars['String']['input'];
+};
export declare type UnifiedProfilePayload = UnifiedPayload & {
__typename?: 'UnifiedProfilePayload';
errors?: Maybe<Array<UnifiedMutationError>>;
success: Scalars['Boolean']['output'];