npm package diff
Package: @forge/cli-shared
Versions: 8.0.0-next.14 - 8.0.0-next.15
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
@@ -4868,8 +4868,9 @@
catalogAccounts?: Maybe<Array<Maybe<CcpCatalogAccount>>>;
entitlement?: Maybe<CcpEntitlement>;
entitlementTemplates?: Maybe<Array<Maybe<CcpEntitlementTemplate>>>;
entitlements?: Maybe<Array<Maybe<CcpEntitlement>>>;
+ entitlementsV2?: Maybe<Array<Maybe<CcpEntitlement>>>;
experienceCapabilities?: Maybe<CcpRootExperienceCapabilities>;
invoiceGroups?: Maybe<Array<Maybe<CcpInvoiceGroupV2>>>;
offering?: Maybe<CcpOffering>;
offeringRelationshipTemplates?: Maybe<Array<Maybe<CcpOfferingRelationshipTemplate>>>;
@@ -4895,8 +4896,11 @@
};
export declare type CcpQueryApiEntitlementsArgs = {
ids: Array<Scalars['ID']['input']>;
};
+export declare type CcpQueryApiEntitlementsV2Args = {
+ ids: Array<Scalars['ID']['input']>;
+};
export declare type CcpQueryApiInvoiceGroupsArgs = {
ids: Array<Scalars['ID']['input']>;
};
export declare type CcpQueryApiOfferingArgs = {
@@ -21866,8 +21870,9 @@
authentication?: Maybe<CsmAiAuthentication>;
description?: Maybe<Scalars['String']['output']>;
id: Scalars['ID']['output'];
isConfirmationRequired?: Maybe<Scalars['Boolean']['output']>;
+ isEnabled?: Maybe<Scalars['Boolean']['output']>;
name?: Maybe<Scalars['String']['output']>;
variables?: Maybe<Array<Maybe<CsmAiActionVariable>>>;
};
export declare type CsmAiActionResult = CsmAiAction | QueryError;
@@ -21958,8 +21963,9 @@
apiOperation: CsmAiApiOperationInput;
authentication: CsmAiAuthenticationInput;
description: Scalars['String']['input'];
isConfirmationRequired: Scalars['Boolean']['input'];
+ isEnabled: Scalars['Boolean']['input'];
name: Scalars['String']['input'];
variables?: InputMaybe<Array<CsmAiActionVariableInput>>;
};
export declare type CsmAiCreateActionPayload = Payload & {
@@ -22001,9 +22007,13 @@
actions?: Maybe<Array<Maybe<CsmAiActionResult>>>;
agent?: Maybe<CsmAiAgentResult>;
handoffConfigs?: Maybe<Array<Maybe<CsmAiHandoffConfigResult>>>;
id: Scalars['ID']['output'];
+ widgets?: Maybe<Array<Maybe<CsmAiWidgetConfigResult>>>;
};
+export declare type CsmAiHubActionsArgs = {
+ filterEnabled?: InputMaybe<Scalars['Boolean']['input']>;
+};
export declare type CsmAiHubResult = CsmAiHub | QueryError;
export declare type CsmAiKeyValueInput = {
key: Scalars['String']['input'];
value: Scalars['String']['input'];
@@ -22032,8 +22042,9 @@
apiOperation?: InputMaybe<CsmAiApiOperationInput>;
authentication?: InputMaybe<CsmAiAuthenticationInput>;
description?: InputMaybe<Scalars['String']['input']>;
isConfirmationRequired?: InputMaybe<Scalars['Boolean']['input']>;
+ isEnabled?: InputMaybe<Scalars['Boolean']['input']>;
name?: InputMaybe<Scalars['String']['input']>;
variables?: InputMaybe<Array<InputMaybe<CsmAiActionVariableInput>>>;
};
export declare type CsmAiUpdateActionPayload = Payload & {
@@ -22073,8 +22084,80 @@
handoffConfig?: Maybe<CsmAiHandoffConfig>;
handoffConfigs?: Maybe<Array<CsmAiHandoffConfig>>;
success: Scalars['Boolean']['output'];
};
+export declare type CsmAiUpdateWidgetPayload = Payload & {
+ __typename?: 'CsmAiUpdateWidgetPayload';
+ errors?: Maybe<Array<MutationError>>;
+ success: Scalars['Boolean']['output'];
+ widget?: Maybe<CsmAiWidgetConfig>;
+};
+export declare type CsmAiWidgetBrandingAttribution = {
+ __typename?: 'CsmAiWidgetBrandingAttribution';
+ text?: Maybe<Scalars['String']['output']>;
+ url?: Maybe<Scalars['String']['output']>;
+};
+export declare type CsmAiWidgetBrandingAttributionInput = {
+ text?: InputMaybe<Scalars['String']['input']>;
+ url?: InputMaybe<Scalars['String']['input']>;
+};
+export declare enum CsmAiWidgetBrandingChatColorVibeVariant {
+ Dark = "DARK",
+ Default = "DEFAULT",
+ Light = "LIGHT",
+ Vibrant = "VIBRANT"
+}
+export declare enum CsmAiWidgetBrandingColorVibeVariant {
+ Dark = "DARK",
+ Light = "LIGHT",
+ Vibrant = "VIBRANT"
+}
+export declare enum CsmAiWidgetBrandingRadius {
+ Normal = "NORMAL",
+ Rounded = "ROUNDED",
+ Sharp = "SHARP"
+}
+export declare enum CsmAiWidgetBrandingSpaceVariant {
+ Comfortable = "COMFORTABLE",
+ Cosy = "COSY",
+ Generous = "GENEROUS"
+}
+export declare type CsmAiWidgetBrandingTheme = {
+ __typename?: 'CsmAiWidgetBrandingTheme';
+ attribution?: Maybe<CsmAiWidgetBrandingAttribution>;
+ chatColor?: Maybe<CsmAiWidgetBrandingChatColorVibeVariant>;
+ colorVibeVariant?: Maybe<CsmAiWidgetBrandingColorVibeVariant>;
+ radius?: Maybe<CsmAiWidgetBrandingRadius>;
+ space?: Maybe<CsmAiWidgetBrandingSpaceVariant>;
+};
+export declare type CsmAiWidgetBrandingThemeUpdateInput = {
+ attribution?: InputMaybe<CsmAiWidgetBrandingAttributionInput>;
+ chatColor: CsmAiWidgetBrandingChatColorVibeVariant;
+ colorVibeVariant: CsmAiWidgetBrandingColorVibeVariant;
+ radius: CsmAiWidgetBrandingRadius;
+ space: CsmAiWidgetBrandingSpaceVariant;
+};
+export declare type CsmAiWidgetConfig = {
+ __typename?: 'CsmAiWidgetConfig';
+ allowedDomains?: Maybe<Array<Scalars['String']['output']>>;
+ id: Scalars['ID']['output'];
+ isAnonymousAccessEnabled?: Maybe<Scalars['Boolean']['output']>;
+ isEnabled?: Maybe<Scalars['Boolean']['output']>;
+ theme?: Maybe<CsmAiWidgetBrandingTheme>;
+ type: CsmAiWidgetType;
+};
+export declare type CsmAiWidgetConfigResult = CsmAiWidgetConfig | QueryError;
+export declare enum CsmAiWidgetType {
+ Embed = "EMBED",
+ SupportSite = "SUPPORT_SITE"
+}
+export declare type CsmAiWidgetUpdateInput = {
+ allowedDomains?: InputMaybe<Array<Scalars['String']['input']>>;
+ isAnonymousAccessEnabled?: InputMaybe<Scalars['Boolean']['input']>;
+ isEnabled?: InputMaybe<Scalars['Boolean']['input']>;
+ theme?: InputMaybe<CsmAiWidgetBrandingThemeUpdateInput>;
+ type: CsmAiWidgetType;
+};
export declare type CumulativeFlowDiagram = {
__typename?: 'CumulativeFlowDiagram';
chart: CfdChartConnection;
filters: CfdFilters;
@@ -32980,10 +33063,8 @@
componentImpactedByIncidentInverseRelationship?: Maybe<GraphStoreFullComponentImpactedByIncidentConnection>;
componentImpactedByIncidentRelationship?: Maybe<GraphStoreFullComponentImpactedByIncidentConnection>;
componentLinkIsJiraProject?: Maybe<GraphStoreSimplifiedComponentLinkIsJiraProjectConnection>;
componentLinkIsJiraProjectInverse?: Maybe<GraphStoreSimplifiedComponentLinkIsJiraProjectInverseConnection>;
- componentLinkIsProviderRepo?: Maybe<GraphStoreSimplifiedComponentLinkIsProviderRepoConnection>;
- componentLinkIsProviderRepoInverse?: Maybe<GraphStoreSimplifiedComponentLinkIsProviderRepoInverseConnection>;
componentLinkedJswIssue?: Maybe<GraphStoreSimplifiedComponentLinkedJswIssueConnection>;
componentLinkedJswIssueInverse?: Maybe<GraphStoreSimplifiedComponentLinkedJswIssueInverseConnection>;
componentLinkedJswIssueInverseRelationship?: Maybe<GraphStoreFullComponentLinkedJswIssueConnection>;
componentLinkedJswIssueRelationship?: Maybe<GraphStoreFullComponentLinkedJswIssueConnection>;
@@ -34088,22 +34169,8 @@
first?: InputMaybe<Scalars['Int']['input']>;
id: Scalars['ID']['input'];
sort?: InputMaybe<GraphStoreComponentLinkIsJiraProjectSortInput>;
};
-export declare type GraphStoreComponentLinkIsProviderRepoArgs = {
- after?: InputMaybe<Scalars['String']['input']>;
- consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
- first?: InputMaybe<Scalars['Int']['input']>;
- id: Scalars['ID']['input'];
- sort?: InputMaybe<GraphStoreComponentLinkIsProviderRepoSortInput>;
-};
-export declare type GraphStoreComponentLinkIsProviderRepoInverseArgs = {
- after?: InputMaybe<Scalars['String']['input']>;
- consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
- first?: InputMaybe<Scalars['Int']['input']>;
- id: Scalars['ID']['input'];
- sort?: InputMaybe<GraphStoreComponentLinkIsProviderRepoSortInput>;
-};
export declare type GraphStoreComponentLinkedJswIssueArgs = {
after?: InputMaybe<Scalars['String']['input']>;
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
first?: InputMaybe<Scalars['Int']['input']>;
@@ -39755,11 +39822,8 @@
};
export declare type GraphStoreComponentLinkIsJiraProjectSortInput = {
lastModified?: InputMaybe<GraphStoreSortInput>;
};
-export declare type GraphStoreComponentLinkIsProviderRepoSortInput = {
- lastModified?: InputMaybe<GraphStoreSortInput>;
-};
export declare type GraphStoreComponentLinkedJswIssueSortInput = {
createdAt?: InputMaybe<GraphStoreSortInput>;
fromAti?: InputMaybe<GraphStoreSortInput>;
lastModified?: InputMaybe<GraphStoreSortInput>;
@@ -46240,36 +46304,8 @@
node?: Maybe<GraphStoreSimplifiedComponentLinkIsJiraProjectInverseUnion>;
};
export declare type GraphStoreSimplifiedComponentLinkIsJiraProjectInverseUnion = CompassLinkNode;
export declare type GraphStoreSimplifiedComponentLinkIsJiraProjectUnion = JiraProject;
-export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoConnection = HasPageInfo & {
- __typename?: 'GraphStoreSimplifiedComponentLinkIsProviderRepoConnection';
- edges?: Maybe<Array<Maybe<GraphStoreSimplifiedComponentLinkIsProviderRepoEdge>>>;
- pageInfo: PageInfo;
-};
-export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoEdge = {
- __typename?: 'GraphStoreSimplifiedComponentLinkIsProviderRepoEdge';
- createdAt: Scalars['DateTime']['output'];
- cursor?: Maybe<Scalars['String']['output']>;
- id: Scalars['ID']['output'];
- lastUpdated: Scalars['DateTime']['output'];
- node?: Maybe<GraphStoreSimplifiedComponentLinkIsProviderRepoUnion>;
-};
-export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoInverseConnection = HasPageInfo & {
- __typename?: 'GraphStoreSimplifiedComponentLinkIsProviderRepoInverseConnection';
- edges?: Maybe<Array<Maybe<GraphStoreSimplifiedComponentLinkIsProviderRepoInverseEdge>>>;
- pageInfo: PageInfo;
-};
-export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoInverseEdge = {
- __typename?: 'GraphStoreSimplifiedComponentLinkIsProviderRepoInverseEdge';
- createdAt: Scalars['DateTime']['output'];
- cursor?: Maybe<Scalars['String']['output']>;
- id: Scalars['ID']['output'];
- lastUpdated: Scalars['DateTime']['output'];
- node?: Maybe<GraphStoreSimplifiedComponentLinkIsProviderRepoInverseUnion>;
-};
-export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoInverseUnion = CompassLinkNode;
-export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoUnion = BitbucketRepository;
export declare type GraphStoreSimplifiedComponentLinkedJswIssueConnection = HasPageInfo & HasTotal & {
__typename?: 'GraphStoreSimplifiedComponentLinkedJswIssueConnection';
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedComponentLinkedJswIssueEdge>>>;
isExactCount?: Maybe<Scalars['Boolean']['output']>;
@@ -58803,8 +58839,9 @@
groupByOptions?: Maybe<Array<JiraViewGroupByConfig>>;
id: Scalars['ID']['output'];
isViewConfigModified?: Maybe<Scalars['Boolean']['output']>;
selectedWorkflowId?: Maybe<Scalars['ID']['output']>;
+ unmappedStatuses?: Maybe<JiraBoardViewStatusConnection>;
};
export declare type JiraBoardViewCardOptionsArgs = {
after?: InputMaybe<Scalars['String']['input']>;
enabledOnly?: InputMaybe<Scalars['Boolean']['input']>;
@@ -58826,8 +58863,12 @@
};
export declare type JiraBoardViewSelectedWorkflowIdArgs = {
settings?: InputMaybe<JiraBoardViewSettings>;
};
+export declare type JiraBoardViewUnmappedStatusesArgs = {
+ after?: InputMaybe<Scalars['String']['input']>;
+ first?: InputMaybe<Scalars['Int']['input']>;
+};
export declare type JiraBoardViewAssigneeColumn = JiraBoardViewColumn & {
__typename?: 'JiraBoardViewAssigneeColumn';
canCreateIssue?: Maybe<Scalars['Boolean']['output']>;
collapsed?: Maybe<Scalars['Boolean']['output']>;
@@ -58904,21 +58945,47 @@
export declare type JiraBoardViewSettings = {
filterJql?: InputMaybe<Scalars['String']['input']>;
groupBy?: InputMaybe<Scalars['String']['input']>;
};
+export declare type JiraBoardViewStatus = {
+ __typename?: 'JiraBoardViewStatus';
+ associatedIssueTypes?: Maybe<JiraIssueTypeConnection>;
+ id: Scalars['ID']['output'];
+ status?: Maybe<JiraStatus>;
+};
+export declare type JiraBoardViewStatusAssociatedIssueTypesArgs = {
+ after?: InputMaybe<Scalars['String']['input']>;
+ first?: InputMaybe<Scalars['Int']['input']>;
+};
export declare type JiraBoardViewStatusColumn = JiraBoardViewColumn & {
__typename?: 'JiraBoardViewStatusColumn';
canCreateIssue?: Maybe<Scalars['Boolean']['output']>;
collapsed?: Maybe<Scalars['Boolean']['output']>;
id: Scalars['ID']['output'];
+ mappedStatuses?: Maybe<JiraBoardViewStatusConnection>;
name?: Maybe<Scalars['String']['output']>;
statuses?: Maybe<Array<Maybe<JiraStatus>>>;
};
+export declare type JiraBoardViewStatusColumnMappedStatusesArgs = {
+ after?: InputMaybe<Scalars['String']['input']>;
+ first?: InputMaybe<Scalars['Int']['input']>;
+};
export declare type JiraBoardViewStatusColumnMapping = {
id?: InputMaybe<Scalars['ID']['input']>;
name: Scalars['String']['input'];
statusIds: Array<Scalars['ID']['input']>;
};
+export declare type JiraBoardViewStatusConnection = {
+ __typename?: 'JiraBoardViewStatusConnection';
+ edges?: Maybe<Array<Maybe<JiraBoardViewStatusEdge>>>;
+ errors?: Maybe<Array<QueryError>>;
+ pageInfo?: Maybe<PageInfo>;
+};
+export declare type JiraBoardViewStatusEdge = {
+ __typename?: 'JiraBoardViewStatusEdge';
+ cursor?: Maybe<Scalars['String']['output']>;
+ node?: Maybe<JiraBoardViewStatus>;
+};
export declare type JiraBoardViewSyntheticFieldCardOption = JiraBoardViewCardOption & {
__typename?: 'JiraBoardViewSyntheticFieldCardOption';
canToggle?: Maybe<Scalars['Boolean']['output']>;
enabled?: Maybe<Scalars['Boolean']['output']>;
@@ -61154,8 +61221,11 @@
first?: InputMaybe<Scalars['Int']['input']>;
last?: InputMaybe<Scalars['Int']['input']>;
scope?: InputMaybe<JiraIssueSearchScope>;
};
+export declare type JiraDetailedViewHasDefaultFieldSetsArgs = {
+ scope?: InputMaybe<JiraIssueSearchScope>;
+};
export declare type JiraDetailedViewIssuesArgs = {
after?: InputMaybe<Scalars['String']['input']>;
before?: InputMaybe<Scalars['String']['input']>;
fieldSetsInput?: InputMaybe<JiraIssueSearchFieldSetsInput>;
@@ -61999,12 +62069,16 @@
first?: InputMaybe<Scalars['Int']['input']>;
last?: InputMaybe<Scalars['Int']['input']>;
scope?: InputMaybe<JiraIssueSearchScope>;
};
+export declare type JiraFieldSetViewHasDefaultFieldSetsArgs = {
+ scope?: InputMaybe<JiraIssueSearchScope>;
+};
export declare type JiraFieldSetViewResult = JiraFieldSetView | QueryError;
export declare type JiraFieldSetsMutationInput = {
replaceFieldSetsInput?: InputMaybe<JiraReplaceIssueSearchViewFieldSetsInput>;
resetToDefaultFieldSets?: InputMaybe<Scalars['Boolean']['input']>;
+ scopedResetToDefaultFieldSets?: InputMaybe<JiraScopedResetFieldsetsInput>;
};
export declare type JiraFieldSetsViewMetadata = {
fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
hasDefaultFieldSets?: Maybe<Scalars['Boolean']['output']>;
@@ -62017,8 +62091,11 @@
first?: InputMaybe<Scalars['Int']['input']>;
last?: InputMaybe<Scalars['Int']['input']>;
scope?: InputMaybe<JiraIssueSearchScope>;
};
+export declare type JiraFieldSetsViewMetadataHasDefaultFieldSetsArgs = {
+ scope?: InputMaybe<JiraIssueSearchScope>;
+};
export declare type JiraFieldSetsViewPayload = Payload & {
__typename?: 'JiraFieldSetsViewPayload';
errors?: Maybe<Array<MutationError>>;
success: Scalars['Boolean']['output'];
@@ -62831,9 +62908,8 @@
id: Scalars['ID']['output'];
name: Scalars['String']['output'];
};
export declare type JiraGroupByDropdownFilter = {
- projectId?: InputMaybe<Scalars['Long']['input']>;
searchString?: InputMaybe<Scalars['String']['input']>;
};
export declare type JiraGroupConnection = {
__typename?: 'JiraGroupConnection';
@@ -62889,8 +62965,11 @@
options?: InputMaybe<JiraIssueSearchOptions>;
saveJQLToUserHistory?: InputMaybe<Scalars['Boolean']['input']>;
scope?: InputMaybe<JiraIssueSearchScope>;
};
+export declare type JiraGroupedListViewHasDefaultFieldSetsArgs = {
+ scope?: InputMaybe<JiraIssueSearchScope>;
+};
export declare type JiraGroupedListViewViewSettingsArgs = {
groupBy?: InputMaybe<Scalars['String']['input']>;
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
@@ -64458,8 +64537,11 @@
first?: InputMaybe<Scalars['Int']['input']>;
last?: InputMaybe<Scalars['Int']['input']>;
scope?: InputMaybe<JiraIssueSearchScope>;
};
+export declare type JiraIssueSearchViewHasDefaultFieldSetsArgs = {
+ scope?: InputMaybe<JiraIssueSearchScope>;
+};
export declare type JiraIssueSearchViewViewConfigSettingsArgs = {
staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
};
export declare type JiraIssueSearchViewConfigInput = {
@@ -64545,8 +64627,11 @@
first?: InputMaybe<Scalars['Int']['input']>;
last?: InputMaybe<Scalars['Int']['input']>;
scope?: InputMaybe<JiraIssueSearchScope>;
};
+export declare type JiraIssueSearchViewMetadataHasDefaultFieldSetsArgs = {
+ scope?: InputMaybe<JiraIssueSearchScope>;
+};
export declare type JiraIssueSearchViewPayload = Payload & {
__typename?: 'JiraIssueSearchViewPayload';
errors?: Maybe<Array<MutationError>>;
success: Scalars['Boolean']['output'];
@@ -65794,8 +65879,11 @@
first?: InputMaybe<Scalars['Int']['input']>;
last?: InputMaybe<Scalars['Int']['input']>;
scope?: InputMaybe<JiraIssueSearchScope>;
};
+export declare type JiraListViewHasDefaultFieldSetsArgs = {
+ scope?: InputMaybe<JiraIssueSearchScope>;
+};
export declare type JiraListViewIssuesArgs = {
after?: InputMaybe<Scalars['String']['input']>;
before?: InputMaybe<Scalars['String']['input']>;
fieldSetsInput?: InputMaybe<JiraIssueSearchFieldSetsInput>;
@@ -69111,8 +69199,9 @@
moreFavourites?: Maybe<JiraProjectConnection>;
moreRecents?: Maybe<JiraProjectConnection>;
mostRecent?: Maybe<JiraProject>;
mostRecentFromHistory?: Maybe<JiraProject>;
+ otherItems?: Maybe<JiraProjectConnection>;
recentLimit?: Maybe<Scalars['Int']['output']>;
recents?: Maybe<JiraProjectConnection>;
};
export declare type JiraProjectsSidebarMenuFavouritesArgs = {
@@ -69128,8 +69217,12 @@
export declare type JiraProjectsSidebarMenuMoreRecentsArgs = {
after?: InputMaybe<Scalars['String']['input']>;
first?: InputMaybe<Scalars['Int']['input']>;
};
+export declare type JiraProjectsSidebarMenuOtherItemsArgs = {
+ after?: InputMaybe<Scalars['String']['input']>;
+ first?: InputMaybe<Scalars['Int']['input']>;
+};
export declare type JiraProjectsSidebarMenuRecentsArgs = {
after?: InputMaybe<Scalars['String']['input']>;
before?: InputMaybe<Scalars['String']['input']>;
first?: InputMaybe<Scalars['Int']['input']>;
@@ -71238,8 +71331,12 @@
__typename?: 'JiraScmRepository';
entityUrl?: Maybe<Scalars['URL']['output']>;
name?: Maybe<Scalars['String']['output']>;
};
+export declare type JiraScopedResetFieldsetsInput = {
+ context?: InputMaybe<JiraIssueSearchViewFieldSetsContext>;
+ doReset?: InputMaybe<Scalars['Boolean']['input']>;
+};
export declare type JiraScreen = Node & {
__typename?: 'JiraScreen';
description?: Maybe<Scalars['String']['output']>;
id: Scalars['ID']['output'];
@@ -73187,8 +73284,11 @@
first?: InputMaybe<Scalars['Int']['input']>;
last?: InputMaybe<Scalars['Int']['input']>;
scope?: InputMaybe<JiraIssueSearchScope>;
};
+export declare type JiraSpreadsheetViewHasDefaultFieldSetsArgs = {
+ scope?: InputMaybe<JiraIssueSearchScope>;
+};
export declare type JiraSpreadsheetViewViewSettingsArgs = {
groupBy?: InputMaybe<Scalars['String']['input']>;
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
@@ -77467,12 +77567,16 @@
description: Scalars['String']['output'];
documentCount?: Maybe<Scalars['Int']['output']>;
id: Scalars['ID']['output'];
name: Scalars['String']['output'];
+ relatedEntities?: Maybe<GraphStoreSimplifiedTopicHasRelatedEntityConnection>;
relatedQuestion?: Maybe<Scalars['String']['output']>;
type?: Maybe<KnowledgeDiscoveryTopicType>;
updatedAt: Scalars['String']['output'];
};
+export declare type KnowledgeDiscoveryTopicByAriRelatedEntitiesArgs = {
+ first?: InputMaybe<Scalars['Int']['input']>;
+};
export declare type KnowledgeDiscoveryTopicResult = KnowledgeDiscoveryTopic | QueryError;
export declare enum KnowledgeDiscoveryTopicType {
Area = "AREA",
Company = "COMPANY",
@@ -83650,8 +83754,9 @@
csmAi_deleteAction?: Maybe<CsmAiDeleteActionPayload>;
csmAi_updateAction?: Maybe<CsmAiUpdateActionPayload>;
csmAi_updateAgent?: Maybe<CsmAiUpdateAgentPayload>;
csmAi_updateHandoffConfig?: Maybe<CsmAiUpdateHandoffConfigPayload>;
+ csmAi_updateWidget?: Maybe<CsmAiUpdateWidgetPayload>;
customerService?: Maybe<CustomerServiceMutationApi>;
customerSupport?: Maybe<SupportRequestCatalogMutationApi>;
deactivatePaywallContent?: Maybe<DeactivatePaywallContentPayload>;
deleteApp?: Maybe<DeleteAppResponse>;
@@ -84994,8 +85099,13 @@
csmAiHubId: Scalars['ID']['input'];
helpCenterAri: Scalars['ID']['input'];
input: CsmAiUpdateHandoffConfigInput;
};
+export declare type MutationCsmAi_UpdateWidgetArgs = {
+ helpCenterAri: Scalars['ID']['input'];
+ input: CsmAiWidgetUpdateInput;
+ widgetId: Scalars['ID']['input'];
+};
export declare type MutationCustomerServiceArgs = {
cloudId: Scalars['ID']['input'];
};
export declare type MutationDeactivatePaywallContentArgs = {
@@ -88839,8 +88949,11 @@
appStoredEntities?: Maybe<AppStoredEntityConnection>;
appStoredEntity?: Maybe<AppStoredEntity>;
apps?: Maybe<AppConnection>;
aquaOutgoingEmailLogs?: Maybe<AquaOutgoingEmailLogsQueryApi>;
+ atlasGoalLinkedToIssue?: Maybe<GraphStoreCypherQueryConnection>;
+ atlasProjectsLinkedToGoals?: Maybe<GraphStoreCypherQueryConnection>;
+ atlasProjectsLinkedToIssue?: Maybe<GraphStoreCypherQueryConnection>;
atlassianStudio_userSiteContext?: Maybe<AtlassianStudioUserSiteContextResult>;
availableContentStates?: Maybe<AvailableContentStates>;
bitbucket?: Maybe<BitbucketQuery>;
bitbucketRepositoriesAvailableToLinkWithNewDevOpsService?: Maybe<BitbucketRepositoryIdConnection>;
@@ -89129,8 +89242,9 @@
contentSmartLinks?: Maybe<PaginatedSmartLinkList>;
contentTemplateLabelsByCriteria?: Maybe<PaginatedLabelList>;
contentVersionHistory?: Maybe<ContentVersionHistoryConnection>;
contentWatchers?: Maybe<PaginatedPersonList>;
+ contributorsLinkedToAtlasProject?: Maybe<GraphStoreCypherQueryConnection>;
convoai_jiraEchoAiFeature?: Maybe<Scalars['String']['output']>;
convoai_jiraSimilarWorkItems?: Maybe<ConvoAiJiraSimilarWorkItemsConnection>;
countGroupByEventName?: Maybe<CountGroupByEventName>;
countGroupByPage?: Maybe<CountGroupByPage>;
@@ -89733,8 +89847,17 @@
};
export declare type QueryAquaOutgoingEmailLogsArgs = {
cloudId: Scalars['ID']['input'];
};
+export declare type QueryAtlasGoalLinkedToIssueArgs = {
+ issueId: Scalars['ID']['input'];
+};
+export declare type QueryAtlasProjectsLinkedToGoalsArgs = {
+ goalId: Scalars['ID']['input'];
+};
+export declare type QueryAtlasProjectsLinkedToIssueArgs = {
+ issueId: Scalars['ID']['input'];
+};
export declare type QueryAtlassianStudio_UserSiteContextArgs = {
cloudId: Scalars['ID']['input'];
};
export declare type QueryAvailableContentStatesArgs = {
@@ -91036,8 +91159,13 @@
contentId: Scalars['ID']['input'];
first?: InputMaybe<Scalars['Int']['input']>;
offset?: InputMaybe<Scalars['Int']['input']>;
};
+export declare type QueryContributorsLinkedToAtlasProjectArgs = {
+ after?: InputMaybe<Scalars['String']['input']>;
+ first?: InputMaybe<Scalars['Int']['input']>;
+ projectId: Scalars['ID']['input'];
+};
export declare type QueryConvoai_JiraEchoAiFeatureArgs = {
cloudId?: InputMaybe<Scalars['ID']['input']>;
text?: InputMaybe<Scalars['String']['input']>;
};
@@ -92015,9 +92143,9 @@
export declare type QueryRadar_PositionsByEntitySearchArgs = {
after?: InputMaybe<Scalars['String']['input']>;
before?: InputMaybe<Scalars['String']['input']>;
cloudId: Scalars['ID']['input'];
- entity: RadarPositionsByEntityType;
+ entity?: InputMaybe<RadarPositionsByEntityType>;
first?: InputMaybe<Scalars['Int']['input']>;
input?: InputMaybe<RadarPositionsByEntityInput>;
last?: InputMaybe<Scalars['Int']['input']>;
rql?: InputMaybe<Scalars['String']['input']>;
@@ -100114,8 +100242,9 @@
customDomains?: Maybe<Array<TenantContextCustomDomain>>;
entitlementInfo?: Maybe<CommerceEntitlementInfo>;
hostName?: Maybe<Scalars['String']['output']>;
orgId?: Maybe<Scalars['ID']['output']>;
+ transactionAccounts?: Maybe<Array<Maybe<CommerceTransactionAccount>>>;
};
export declare type TenantContextActivationIdByProductArgs = {
product: Scalars['String']['input'];
};