@forge/cli-shared 9.5.1-next.0 → 9.5.1-next.2
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 +13 -0
- package/out/graphql/graphql-types.d.ts +341 -25
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +76 -41
- package/out/ui/text.d.ts +0 -2
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +0 -2
- package/package.json +2 -2
|
@@ -650,6 +650,7 @@ export type AiOpsInvestigationPermissions = {
|
|
|
650
650
|
__typename?: 'AIOpsInvestigationPermissions';
|
|
651
651
|
canCancelInvestigation?: Maybe<Scalars['Boolean']['output']>;
|
|
652
652
|
canStartInvestigation?: Maybe<Scalars['Boolean']['output']>;
|
|
653
|
+
canUpdateInvestigation?: Maybe<Scalars['Boolean']['output']>;
|
|
653
654
|
canViewInvestigation?: Maybe<Scalars['Boolean']['output']>;
|
|
654
655
|
};
|
|
655
656
|
export type AiOpsInvestigationProgressItem = {
|
|
@@ -7393,7 +7394,7 @@ export type AgentStudioKnowledgeGapSuggestionArticleResult = {
|
|
|
7393
7394
|
edges: Array<AgentStudioKnowledgeGapSuggestionArticleEdge>;
|
|
7394
7395
|
nodes?: Maybe<Array<Maybe<AgentStudioKnowledgeGapSuggestionArticle>>>;
|
|
7395
7396
|
pageInfo: PageInfo;
|
|
7396
|
-
spaceKey
|
|
7397
|
+
spaceKey?: Maybe<Scalars['String']['output']>;
|
|
7397
7398
|
};
|
|
7398
7399
|
export declare enum AgentStudioKnowledgeGapSuggestionArticleStatus {
|
|
7399
7400
|
Accepted = "ACCEPTED",
|
|
@@ -18829,6 +18830,10 @@ export type CcpBillingPeriodDetails = {
|
|
|
18829
18830
|
nextBillingAnchorTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
18830
18831
|
nextBillingTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
18831
18832
|
};
|
|
18833
|
+
export type CcpBundleCollectionOrderOptions = {
|
|
18834
|
+
billingCycle?: InputMaybe<CcpBillingInterval>;
|
|
18835
|
+
trial?: InputMaybe<CcpCreateEntitlementTrialIntent>;
|
|
18836
|
+
};
|
|
18832
18837
|
export type CcpCancelEntitlementExperienceCapability = CommerceExperienceCapability & {
|
|
18833
18838
|
__typename?: 'CcpCancelEntitlementExperienceCapability';
|
|
18834
18839
|
experienceUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -19823,6 +19828,7 @@ export declare enum CcpOfferingRelationshipTemplateCustomizationSet {
|
|
|
19823
19828
|
JiraFamily = "JIRA_FAMILY",
|
|
19824
19829
|
Marketplace = "MARKETPLACE",
|
|
19825
19830
|
MarketplaceMultiInstance = "MARKETPLACE_MULTI_INSTANCE",
|
|
19831
|
+
MigrationBridge = "MIGRATION_BRIDGE",
|
|
19826
19832
|
MultiInstance = "MULTI_INSTANCE",
|
|
19827
19833
|
Sandbox = "SANDBOX",
|
|
19828
19834
|
SandboxDependenceContainer = "SANDBOX_DEPENDENCE_CONTAINER",
|
|
@@ -19908,6 +19914,7 @@ export declare enum CcpOfferingRelationshipTemplateType {
|
|
|
19908
19914
|
Enterprise = "ENTERPRISE",
|
|
19909
19915
|
EnterpriseSandboxGrant = "ENTERPRISE_SANDBOX_GRANT",
|
|
19910
19916
|
FamilyContainer = "FAMILY_CONTAINER",
|
|
19917
|
+
MigrationBridge = "MIGRATION_BRIDGE",
|
|
19911
19918
|
MultiInstance = "MULTI_INSTANCE",
|
|
19912
19919
|
SandboxDependence = "SANDBOX_DEPENDENCE",
|
|
19913
19920
|
SandboxGrant = "SANDBOX_GRANT"
|
|
@@ -20753,11 +20760,17 @@ export type CcpRecommendCollectionEntitlementInput = {
|
|
|
20753
20760
|
};
|
|
20754
20761
|
export type CcpRecommendCollectionExperienceCapability = {
|
|
20755
20762
|
__typename?: 'CcpRecommendCollectionExperienceCapability';
|
|
20763
|
+
bundleCollection?: Maybe<CcpCreateEntitlementExperienceCapability>;
|
|
20756
20764
|
createCollection?: Maybe<CcpCreateEntitlementExperienceCapability>;
|
|
20757
20765
|
entitlements?: Maybe<Array<Maybe<CcpEntitlement>>>;
|
|
20758
20766
|
offering?: Maybe<CcpOffering>;
|
|
20759
20767
|
offeringId?: Maybe<Scalars['ID']['output']>;
|
|
20760
20768
|
};
|
|
20769
|
+
export type CcpRecommendCollectionExperienceCapabilityBundleCollectionArgs = {
|
|
20770
|
+
experienceOptions?: InputMaybe<CcpCreateEntitlementExperienceOptions>;
|
|
20771
|
+
fallbackEntitlementIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
20772
|
+
orderOptions?: InputMaybe<CcpBundleCollectionOrderOptions>;
|
|
20773
|
+
};
|
|
20761
20774
|
export type CcpRecommendCollectionExperienceCapabilityCreateCollectionArgs = {
|
|
20762
20775
|
experienceOptions?: InputMaybe<CcpCreateEntitlementExperienceOptions>;
|
|
20763
20776
|
fallbackEntitlementIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
@@ -20805,6 +20818,7 @@ export declare enum CcpRelationshipType {
|
|
|
20805
20818
|
Enterprise = "ENTERPRISE",
|
|
20806
20819
|
EnterpriseSandboxGrant = "ENTERPRISE_SANDBOX_GRANT",
|
|
20807
20820
|
FamilyContainer = "FAMILY_CONTAINER",
|
|
20821
|
+
MigrationBridge = "MIGRATION_BRIDGE",
|
|
20808
20822
|
MultiInstance = "MULTI_INSTANCE",
|
|
20809
20823
|
SandboxDependence = "SANDBOX_DEPENDENCE",
|
|
20810
20824
|
SandboxGrant = "SANDBOX_GRANT"
|
|
@@ -32113,6 +32127,11 @@ export type ConfluenceAccessRequestSettings = {
|
|
|
32113
32127
|
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
32114
32128
|
messageContent?: Maybe<Scalars['String']['output']>;
|
|
32115
32129
|
};
|
|
32130
|
+
export type ConfluenceAccessRequestSettingsConfiguration = {
|
|
32131
|
+
__typename?: 'ConfluenceAccessRequestSettingsConfiguration';
|
|
32132
|
+
contentAccessRequestSettings?: Maybe<ConfluenceAccessRequestSettings>;
|
|
32133
|
+
spaceAccessRequestSettings?: Maybe<ConfluenceAccessRequestSettings>;
|
|
32134
|
+
};
|
|
32116
32135
|
export type ConfluenceActiveInlineData = {
|
|
32117
32136
|
__typename?: 'ConfluenceActiveInlineData';
|
|
32118
32137
|
comments: Array<Maybe<ConfluenceInlineMarker>>;
|
|
@@ -34612,6 +34631,14 @@ export type ConfluenceFooterComment = ConfluenceComment & Node & {
|
|
|
34612
34631
|
reactions?: Maybe<Array<Maybe<ConfluenceCommentReactionSummary>>>;
|
|
34613
34632
|
status?: Maybe<ConfluenceCommentStatus>;
|
|
34614
34633
|
};
|
|
34634
|
+
export declare enum ConfluenceForgeAttachmentActionLocation {
|
|
34635
|
+
Action = "ACTION",
|
|
34636
|
+
Metadata = "METADATA"
|
|
34637
|
+
}
|
|
34638
|
+
export declare enum ConfluenceForgeAttachmentActionSurface {
|
|
34639
|
+
AttachmentMacro = "ATTACHMENT_MACRO",
|
|
34640
|
+
AttachmentPage = "ATTACHMENT_PAGE"
|
|
34641
|
+
}
|
|
34615
34642
|
export type ConfluenceForgeContextToken = {
|
|
34616
34643
|
__typename?: 'ConfluenceForgeContextToken';
|
|
34617
34644
|
expiresAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -34655,6 +34682,9 @@ export type ConfluenceForgeExtension = {
|
|
|
34655
34682
|
userAccess?: Maybe<ConfluenceUserAccess>;
|
|
34656
34683
|
};
|
|
34657
34684
|
export type ConfluenceForgeExtensionData = {
|
|
34685
|
+
attachment?: InputMaybe<ConfluenceForgeExtensionDataAttachment>;
|
|
34686
|
+
attachmentActionLocation?: InputMaybe<ConfluenceForgeAttachmentActionLocation>;
|
|
34687
|
+
attachmentActionSurface?: InputMaybe<ConfluenceForgeAttachmentActionSurface>;
|
|
34658
34688
|
autoConvertLink?: InputMaybe<Scalars['String']['input']>;
|
|
34659
34689
|
config?: InputMaybe<Scalars['String']['input']>;
|
|
34660
34690
|
content?: InputMaybe<ConfluenceForgeExtensionDataContent>;
|
|
@@ -34668,6 +34698,9 @@ export type ConfluenceForgeExtensionData = {
|
|
|
34668
34698
|
template?: InputMaybe<ConfluenceForgeExtensionDataTemplate>;
|
|
34669
34699
|
type: Scalars['String']['input'];
|
|
34670
34700
|
};
|
|
34701
|
+
export type ConfluenceForgeExtensionDataAttachment = {
|
|
34702
|
+
id: Scalars['ID']['input'];
|
|
34703
|
+
};
|
|
34671
34704
|
export type ConfluenceForgeExtensionDataContent = {
|
|
34672
34705
|
id: Scalars['ID']['input'];
|
|
34673
34706
|
status?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -41209,6 +41242,7 @@ export type ConvoAiJiraDuplicateWorkItemsConnection = {
|
|
|
41209
41242
|
edges?: Maybe<Array<ConvoAiJiraDuplicateWorkItemsEdge>>;
|
|
41210
41243
|
errors?: Maybe<Array<QueryError>>;
|
|
41211
41244
|
pageInfo: PageInfo;
|
|
41245
|
+
projectSize?: Maybe<Scalars['Int']['output']>;
|
|
41212
41246
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
41213
41247
|
};
|
|
41214
41248
|
export type ConvoAiJiraDuplicateWorkItemsEdge = {
|
|
@@ -56997,9 +57031,12 @@ export type GraphInferenceGraphclawOption = {
|
|
|
56997
57031
|
};
|
|
56998
57032
|
export type GraphInferenceGraphclawOptionV2 = {
|
|
56999
57033
|
__typename?: 'GraphInferenceGraphclawOptionV2';
|
|
57034
|
+
compatibleSources: Array<Scalars['String']['output']>;
|
|
57000
57035
|
enabled: Scalars['Boolean']['output'];
|
|
57036
|
+
graphAvailable: Scalars['Boolean']['output'];
|
|
57001
57037
|
id: Scalars['String']['output'];
|
|
57002
57038
|
name: Scalars['String']['output'];
|
|
57039
|
+
supportedDestinations: Array<Scalars['String']['output']>;
|
|
57003
57040
|
};
|
|
57004
57041
|
export type GraphInferenceGraphclawSourceOptionV2 = {
|
|
57005
57042
|
__typename?: 'GraphInferenceGraphclawSourceOptionV2';
|
|
@@ -57180,6 +57217,7 @@ export type GraphInferenceInferenceAppV3 = {
|
|
|
57180
57217
|
};
|
|
57181
57218
|
export type GraphInferenceInferenceEvalInput = {
|
|
57182
57219
|
appId: Scalars['String']['input'];
|
|
57220
|
+
historyFixture?: InputMaybe<Scalars['JSON']['input']>;
|
|
57183
57221
|
promptTemplate?: InputMaybe<Scalars['String']['input']>;
|
|
57184
57222
|
sourceAri: Scalars['String']['input'];
|
|
57185
57223
|
};
|
|
@@ -57203,6 +57241,7 @@ export type GraphInferenceInferenceEvalRunResponse = {
|
|
|
57203
57241
|
attemptCount: Scalars['Int']['output'];
|
|
57204
57242
|
expiresAtUnixSeconds: Scalars['String']['output'];
|
|
57205
57243
|
failureCode?: Maybe<Scalars['String']['output']>;
|
|
57244
|
+
historyMode: Scalars['String']['output'];
|
|
57206
57245
|
result?: Maybe<Scalars['JSON']['output']>;
|
|
57207
57246
|
runId: Scalars['ID']['output'];
|
|
57208
57247
|
status: Scalars['String']['output'];
|
|
@@ -57212,6 +57251,7 @@ export type GraphInferenceInferenceEvalStartResponse = {
|
|
|
57212
57251
|
__typename?: 'GraphInferenceInferenceEvalStartResponse';
|
|
57213
57252
|
createdAtUnixSeconds: Scalars['String']['output'];
|
|
57214
57253
|
expiresAtUnixSeconds: Scalars['String']['output'];
|
|
57254
|
+
historyMode: Scalars['String']['output'];
|
|
57215
57255
|
runId: Scalars['ID']['output'];
|
|
57216
57256
|
status: Scalars['String']['output'];
|
|
57217
57257
|
};
|
|
@@ -57235,6 +57275,7 @@ export type GraphInferenceInferenceModelChoice = {
|
|
|
57235
57275
|
};
|
|
57236
57276
|
export type GraphInferenceInferenceModelsInput = {
|
|
57237
57277
|
infer: Scalars['String']['input'];
|
|
57278
|
+
source?: InputMaybe<Scalars['String']['input']>;
|
|
57238
57279
|
useCaseId: Scalars['String']['input'];
|
|
57239
57280
|
};
|
|
57240
57281
|
export type GraphInferenceInferenceModelsResponse = {
|
|
@@ -62003,6 +62044,8 @@ export type GraphStore = {
|
|
|
62003
62044
|
jiraEpicContributesToAtlasGoalRelationship?: Maybe<GraphStoreFullJiraEpicContributesToAtlasGoalConnection>;
|
|
62004
62045
|
jiraIssueBlockedByJiraIssue?: Maybe<GraphStoreSimplifiedJiraIssueBlockedByJiraIssueConnection>;
|
|
62005
62046
|
jiraIssueBlockedByJiraIssueInverse?: Maybe<GraphStoreSimplifiedJiraIssueBlockedByJiraIssueInverseConnection>;
|
|
62047
|
+
jiraIssueSharedWithUser?: Maybe<GraphStoreSimplifiedJiraIssueSharedWithUserConnection>;
|
|
62048
|
+
jiraIssueSharedWithUserInverse?: Maybe<GraphStoreSimplifiedJiraIssueSharedWithUserInverseConnection>;
|
|
62006
62049
|
jiraIssueToJiraPriority?: Maybe<GraphStoreSimplifiedJiraIssueToJiraPriorityConnection>;
|
|
62007
62050
|
jiraIssueToJiraPriorityInverse?: Maybe<GraphStoreSimplifiedJiraIssueToJiraPriorityInverseConnection>;
|
|
62008
62051
|
jiraProjectAgentKnowledgeContextHasKnowledgeBaseEntity?: Maybe<GraphStoreSimplifiedJiraProjectAgentKnowledgeContextHasKnowledgeBaseEntityConnection>;
|
|
@@ -66994,6 +67037,22 @@ export type GraphStoreJiraIssueBlockedByJiraIssueInverseArgs = {
|
|
|
66994
67037
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
66995
67038
|
sort?: InputMaybe<GraphStoreJiraIssueBlockedByJiraIssueSortInput>;
|
|
66996
67039
|
};
|
|
67040
|
+
export type GraphStoreJiraIssueSharedWithUserArgs = {
|
|
67041
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
67042
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
67043
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
67044
|
+
id: Scalars['ID']['input'];
|
|
67045
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
67046
|
+
sort?: InputMaybe<GraphStoreJiraIssueSharedWithUserSortInput>;
|
|
67047
|
+
};
|
|
67048
|
+
export type GraphStoreJiraIssueSharedWithUserInverseArgs = {
|
|
67049
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
67050
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
67051
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
67052
|
+
id: Scalars['ID']['input'];
|
|
67053
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
67054
|
+
sort?: InputMaybe<GraphStoreJiraIssueSharedWithUserSortInput>;
|
|
67055
|
+
};
|
|
66997
67056
|
export type GraphStoreJiraIssueToJiraPriorityArgs = {
|
|
66998
67057
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
66999
67058
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -80461,6 +80520,9 @@ export type GraphStoreJiraEpicContributesToAtlasGoalSortInput = {
|
|
|
80461
80520
|
export type GraphStoreJiraIssueBlockedByJiraIssueSortInput = {
|
|
80462
80521
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
80463
80522
|
};
|
|
80523
|
+
export type GraphStoreJiraIssueSharedWithUserSortInput = {
|
|
80524
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
80525
|
+
};
|
|
80464
80526
|
export type GraphStoreJiraIssueToJiraPrioritySortInput = {
|
|
80465
80527
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
80466
80528
|
};
|
|
@@ -82453,7 +82515,7 @@ export type GraphStoreSimplifiedAtlassianProjectHasRelatedEntityInverseEdge = {
|
|
|
82453
82515
|
node?: Maybe<GraphStoreSimplifiedAtlassianProjectHasRelatedEntityInverseUnion>;
|
|
82454
82516
|
};
|
|
82455
82517
|
export type GraphStoreSimplifiedAtlassianProjectHasRelatedEntityInverseUnion = TownsquareProject;
|
|
82456
|
-
export type GraphStoreSimplifiedAtlassianProjectHasRelatedEntityUnion = ConfluencePage | JiraIssue | LoomVideo;
|
|
82518
|
+
export type GraphStoreSimplifiedAtlassianProjectHasRelatedEntityUnion = ConfluencePage | DevOpsDocument | ExternalDocument | JiraIssue | LoomVideo;
|
|
82457
82519
|
export type GraphStoreSimplifiedAtlassianTeamMergedIntoAtlassianTeamConnection = HasPageInfo & {
|
|
82458
82520
|
__typename?: 'GraphStoreSimplifiedAtlassianTeamMergedIntoAtlassianTeamConnection';
|
|
82459
82521
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianTeamMergedIntoAtlassianTeamEdge>>>;
|
|
@@ -87053,7 +87115,7 @@ export type GraphStoreSimplifiedInferredProjectHasRelatedEntityInverseEdge = {
|
|
|
87053
87115
|
node?: Maybe<GraphStoreSimplifiedInferredProjectHasRelatedEntityInverseUnion>;
|
|
87054
87116
|
};
|
|
87055
87117
|
export type GraphStoreSimplifiedInferredProjectHasRelatedEntityInverseUnion = GraphStoreNodeResponse;
|
|
87056
|
-
export type GraphStoreSimplifiedInferredProjectHasRelatedEntityUnion = ConfluencePage | JiraIssue | LoomVideo;
|
|
87118
|
+
export type GraphStoreSimplifiedInferredProjectHasRelatedEntityUnion = ConfluencePage | DevOpsDocument | ExternalDocument | JiraIssue | LoomVideo;
|
|
87057
87119
|
export type GraphStoreSimplifiedInferredProjectLinksEntityConnection = HasPageInfo & {
|
|
87058
87120
|
__typename?: 'GraphStoreSimplifiedInferredProjectLinksEntityConnection';
|
|
87059
87121
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedInferredProjectLinksEntityEdge>>>;
|
|
@@ -87954,6 +88016,34 @@ export type GraphStoreSimplifiedJiraIssueBlockedByJiraIssueInverseEdge = {
|
|
|
87954
88016
|
};
|
|
87955
88017
|
export type GraphStoreSimplifiedJiraIssueBlockedByJiraIssueInverseUnion = JiraIssue;
|
|
87956
88018
|
export type GraphStoreSimplifiedJiraIssueBlockedByJiraIssueUnion = JiraIssue;
|
|
88019
|
+
export type GraphStoreSimplifiedJiraIssueSharedWithUserConnection = HasPageInfo & {
|
|
88020
|
+
__typename?: 'GraphStoreSimplifiedJiraIssueSharedWithUserConnection';
|
|
88021
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJiraIssueSharedWithUserEdge>>>;
|
|
88022
|
+
pageInfo: PageInfo;
|
|
88023
|
+
};
|
|
88024
|
+
export type GraphStoreSimplifiedJiraIssueSharedWithUserEdge = {
|
|
88025
|
+
__typename?: 'GraphStoreSimplifiedJiraIssueSharedWithUserEdge';
|
|
88026
|
+
createdAt: Scalars['DateTime']['output'];
|
|
88027
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
88028
|
+
id: Scalars['ID']['output'];
|
|
88029
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
88030
|
+
node?: Maybe<GraphStoreSimplifiedJiraIssueSharedWithUserUnion>;
|
|
88031
|
+
};
|
|
88032
|
+
export type GraphStoreSimplifiedJiraIssueSharedWithUserInverseConnection = HasPageInfo & {
|
|
88033
|
+
__typename?: 'GraphStoreSimplifiedJiraIssueSharedWithUserInverseConnection';
|
|
88034
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJiraIssueSharedWithUserInverseEdge>>>;
|
|
88035
|
+
pageInfo: PageInfo;
|
|
88036
|
+
};
|
|
88037
|
+
export type GraphStoreSimplifiedJiraIssueSharedWithUserInverseEdge = {
|
|
88038
|
+
__typename?: 'GraphStoreSimplifiedJiraIssueSharedWithUserInverseEdge';
|
|
88039
|
+
createdAt: Scalars['DateTime']['output'];
|
|
88040
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
88041
|
+
id: Scalars['ID']['output'];
|
|
88042
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
88043
|
+
node?: Maybe<GraphStoreSimplifiedJiraIssueSharedWithUserInverseUnion>;
|
|
88044
|
+
};
|
|
88045
|
+
export type GraphStoreSimplifiedJiraIssueSharedWithUserInverseUnion = JiraIssue;
|
|
88046
|
+
export type GraphStoreSimplifiedJiraIssueSharedWithUserUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
87957
88047
|
export type GraphStoreSimplifiedJiraIssueToJiraPriorityConnection = HasPageInfo & {
|
|
87958
88048
|
__typename?: 'GraphStoreSimplifiedJiraIssueToJiraPriorityConnection';
|
|
87959
88049
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJiraIssueToJiraPriorityEdge>>>;
|
|
@@ -97506,6 +97596,8 @@ export type GraphStoreV2 = {
|
|
|
97506
97596
|
jiraWorkItemLinksJiraWorkItemRemoteLinkInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksJiraWorkItemRemoteLinkInverseConnection>;
|
|
97507
97597
|
jiraWorkItemLinksSupportEscalationEntity?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksSupportEscalationEntityConnection>;
|
|
97508
97598
|
jiraWorkItemLinksSupportEscalationEntityInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksSupportEscalationEntityInverseConnection>;
|
|
97599
|
+
jiraWorkItemSharedWithAtlassianUser?: Maybe<GraphStoreV2SimplifiedJiraWorkItemSharedWithAtlassianUserConnection>;
|
|
97600
|
+
jiraWorkItemSharedWithAtlassianUserInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemSharedWithAtlassianUserInverseConnection>;
|
|
97509
97601
|
jiraWorkItemTracksAtlassianProject?: Maybe<GraphStoreV2SimplifiedJiraWorkItemTracksAtlassianProjectConnection>;
|
|
97510
97602
|
jiraWorkItemTracksAtlassianProjectInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemTracksAtlassianProjectInverseConnection>;
|
|
97511
97603
|
jsmIncidentImpactsCompassComponent?: Maybe<GraphStoreV2SimplifiedJsmIncidentImpactsCompassComponentConnection>;
|
|
@@ -103643,6 +103735,20 @@ export type GraphStoreV2JiraWorkItemLinksSupportEscalationEntityInverseArgs = {
|
|
|
103643
103735
|
id: Scalars['ID']['input'];
|
|
103644
103736
|
sort?: InputMaybe<GraphStoreV2JiraWorkItemLinksSupportEscalationEntitySortInput>;
|
|
103645
103737
|
};
|
|
103738
|
+
export type GraphStoreV2JiraWorkItemSharedWithAtlassianUserArgs = {
|
|
103739
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
103740
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
103741
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
103742
|
+
id: Scalars['ID']['input'];
|
|
103743
|
+
sort?: InputMaybe<GraphStoreV2JiraWorkItemSharedWithAtlassianUserSortInput>;
|
|
103744
|
+
};
|
|
103745
|
+
export type GraphStoreV2JiraWorkItemSharedWithAtlassianUserInverseArgs = {
|
|
103746
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
103747
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
103748
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
103749
|
+
id: Scalars['ID']['input'];
|
|
103750
|
+
sort?: InputMaybe<GraphStoreV2JiraWorkItemSharedWithAtlassianUserSortInput>;
|
|
103751
|
+
};
|
|
103646
103752
|
export type GraphStoreV2JiraWorkItemTracksAtlassianProjectArgs = {
|
|
103647
103753
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
103648
103754
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -107641,6 +107747,9 @@ export type GraphStoreV2JiraWorkItemLinksSupportEscalationEntitySortInput = {
|
|
|
107641
107747
|
relationship_status?: InputMaybe<GraphStoreSortInput>;
|
|
107642
107748
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
107643
107749
|
};
|
|
107750
|
+
export type GraphStoreV2JiraWorkItemSharedWithAtlassianUserSortInput = {
|
|
107751
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
107752
|
+
};
|
|
107644
107753
|
export type GraphStoreV2JiraWorkItemTracksAtlassianProjectSortInput = {
|
|
107645
107754
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
107646
107755
|
};
|
|
@@ -108493,7 +108602,7 @@ export type GraphStoreV2SimplifiedAtlassianProjectHasRelatedEntityInverseEdge =
|
|
|
108493
108602
|
node?: Maybe<GraphStoreV2SimplifiedAtlassianProjectHasRelatedEntityInverseUnion>;
|
|
108494
108603
|
};
|
|
108495
108604
|
export type GraphStoreV2SimplifiedAtlassianProjectHasRelatedEntityInverseUnion = TownsquareProject;
|
|
108496
|
-
export type GraphStoreV2SimplifiedAtlassianProjectHasRelatedEntityUnion = ConfluencePage | JiraIssue | LoomVideo;
|
|
108605
|
+
export type GraphStoreV2SimplifiedAtlassianProjectHasRelatedEntityUnion = ConfluencePage | DevOpsDocument | ExternalDocument | JiraIssue | LoomVideo;
|
|
108497
108606
|
export type GraphStoreV2SimplifiedAtlassianProjectLinksAtlassianProjectConnection = HasPageInfo & {
|
|
108498
108607
|
__typename?: 'GraphStoreV2SimplifiedAtlassianProjectLinksAtlassianProjectConnection';
|
|
108499
108608
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianProjectLinksAtlassianProjectEdge>>>;
|
|
@@ -118135,7 +118244,7 @@ export type GraphStoreV2SimplifiedInferredProjectHasRelatedEntityInverseEdge = {
|
|
|
118135
118244
|
node?: Maybe<GraphStoreV2SimplifiedInferredProjectHasRelatedEntityInverseUnion>;
|
|
118136
118245
|
};
|
|
118137
118246
|
export type GraphStoreV2SimplifiedInferredProjectHasRelatedEntityInverseUnion = GraphStoreNodeResponse;
|
|
118138
|
-
export type GraphStoreV2SimplifiedInferredProjectHasRelatedEntityUnion = ConfluencePage | JiraIssue | LoomVideo;
|
|
118247
|
+
export type GraphStoreV2SimplifiedInferredProjectHasRelatedEntityUnion = ConfluencePage | DevOpsDocument | ExternalDocument | JiraIssue | LoomVideo;
|
|
118139
118248
|
export type GraphStoreV2SimplifiedInferredProjectLinksEntityConnection = HasPageInfo & {
|
|
118140
118249
|
__typename?: 'GraphStoreV2SimplifiedInferredProjectLinksEntityConnection';
|
|
118141
118250
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedInferredProjectLinksEntityEdge>>>;
|
|
@@ -120400,6 +120509,34 @@ export type GraphStoreV2SimplifiedJiraWorkItemLinksSupportEscalationEntityInvers
|
|
|
120400
120509
|
};
|
|
120401
120510
|
export type GraphStoreV2SimplifiedJiraWorkItemLinksSupportEscalationEntityInverseUnion = JiraIssue;
|
|
120402
120511
|
export type GraphStoreV2SimplifiedJiraWorkItemLinksSupportEscalationEntityUnion = JiraIssue | JiraProject;
|
|
120512
|
+
export type GraphStoreV2SimplifiedJiraWorkItemSharedWithAtlassianUserConnection = HasPageInfo & {
|
|
120513
|
+
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemSharedWithAtlassianUserConnection';
|
|
120514
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraWorkItemSharedWithAtlassianUserEdge>>>;
|
|
120515
|
+
pageInfo: PageInfo;
|
|
120516
|
+
};
|
|
120517
|
+
export type GraphStoreV2SimplifiedJiraWorkItemSharedWithAtlassianUserEdge = {
|
|
120518
|
+
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemSharedWithAtlassianUserEdge';
|
|
120519
|
+
createdAt: Scalars['DateTime']['output'];
|
|
120520
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
120521
|
+
id: Scalars['ID']['output'];
|
|
120522
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
120523
|
+
node?: Maybe<GraphStoreV2SimplifiedJiraWorkItemSharedWithAtlassianUserUnion>;
|
|
120524
|
+
};
|
|
120525
|
+
export type GraphStoreV2SimplifiedJiraWorkItemSharedWithAtlassianUserInverseConnection = HasPageInfo & {
|
|
120526
|
+
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemSharedWithAtlassianUserInverseConnection';
|
|
120527
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraWorkItemSharedWithAtlassianUserInverseEdge>>>;
|
|
120528
|
+
pageInfo: PageInfo;
|
|
120529
|
+
};
|
|
120530
|
+
export type GraphStoreV2SimplifiedJiraWorkItemSharedWithAtlassianUserInverseEdge = {
|
|
120531
|
+
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemSharedWithAtlassianUserInverseEdge';
|
|
120532
|
+
createdAt: Scalars['DateTime']['output'];
|
|
120533
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
120534
|
+
id: Scalars['ID']['output'];
|
|
120535
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
120536
|
+
node?: Maybe<GraphStoreV2SimplifiedJiraWorkItemSharedWithAtlassianUserInverseUnion>;
|
|
120537
|
+
};
|
|
120538
|
+
export type GraphStoreV2SimplifiedJiraWorkItemSharedWithAtlassianUserInverseUnion = JiraIssue;
|
|
120539
|
+
export type GraphStoreV2SimplifiedJiraWorkItemSharedWithAtlassianUserUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
120403
120540
|
export type GraphStoreV2SimplifiedJiraWorkItemTracksAtlassianProjectConnection = HasPageInfo & {
|
|
120404
120541
|
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemTracksAtlassianProjectConnection';
|
|
120405
120542
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraWorkItemTracksAtlassianProjectEdge>>>;
|
|
@@ -128833,6 +128970,11 @@ export type JiraBacklog = {
|
|
|
128833
128970
|
boardConfig: JiraBacklogBoardConfig;
|
|
128834
128971
|
globalConfig: JiraBacklogGlobalConfig;
|
|
128835
128972
|
};
|
|
128973
|
+
export type JiraBacklogAgentSetupBanner = {
|
|
128974
|
+
__typename?: 'JiraBacklogAgentSetupBanner';
|
|
128975
|
+
agentAri?: Maybe<Scalars['ID']['output']>;
|
|
128976
|
+
spaceAri?: Maybe<Scalars['ID']['output']>;
|
|
128977
|
+
};
|
|
128836
128978
|
export type JiraBacklogApplicationProperty = {
|
|
128837
128979
|
__typename?: 'JiraBacklogApplicationProperty';
|
|
128838
128980
|
key?: Maybe<Scalars['String']['output']>;
|
|
@@ -135006,6 +135148,10 @@ export declare enum JiraFieldSuggestionAction {
|
|
|
135006
135148
|
Accept = "ACCEPT",
|
|
135007
135149
|
Decline = "DECLINE"
|
|
135008
135150
|
}
|
|
135151
|
+
export declare enum JiraFieldSuggestionLifecycleStatus {
|
|
135152
|
+
Accepted = "ACCEPTED",
|
|
135153
|
+
Pending = "PENDING"
|
|
135154
|
+
}
|
|
135009
135155
|
export declare enum JiraFieldSuggestionStatus {
|
|
135010
135156
|
Error = "ERROR",
|
|
135011
135157
|
FieldValidationError = "FIELD_VALIDATION_ERROR",
|
|
@@ -135099,14 +135245,18 @@ export type JiraFieldUpdateSuggestionEdge = {
|
|
|
135099
135245
|
export type JiraFieldUpdateSuggestionItem = {
|
|
135100
135246
|
__typename?: 'JiraFieldUpdateSuggestionItem';
|
|
135101
135247
|
actionKey?: Maybe<Scalars['String']['output']>;
|
|
135248
|
+
actionedAt?: Maybe<Scalars['Long']['output']>;
|
|
135249
|
+
actionedBy?: Maybe<Scalars['ID']['output']>;
|
|
135102
135250
|
conversationId?: Maybe<Scalars['ID']['output']>;
|
|
135103
135251
|
experienceId?: Maybe<Scalars['String']['output']>;
|
|
135104
135252
|
invocationId?: Maybe<Scalars['ID']['output']>;
|
|
135253
|
+
invokerAri?: Maybe<Scalars['ID']['output']>;
|
|
135105
135254
|
messageId?: Maybe<Scalars['ID']['output']>;
|
|
135106
135255
|
product?: Maybe<Scalars['String']['output']>;
|
|
135107
135256
|
recipientAgentNamedId?: Maybe<Scalars['String']['output']>;
|
|
135108
135257
|
source?: Maybe<JiraNextActionGroup>;
|
|
135109
135258
|
sourceUrl?: Maybe<Scalars['String']['output']>;
|
|
135259
|
+
status?: Maybe<JiraFieldSuggestionLifecycleStatus>;
|
|
135110
135260
|
updates?: Maybe<Array<JiraFieldUpdate>>;
|
|
135111
135261
|
};
|
|
135112
135262
|
export type JiraFieldUpdateSuggestions = JiraBaseNextActionsEntity & {
|
|
@@ -135423,6 +135573,10 @@ export type JiraForgeExtensionLicense = {
|
|
|
135423
135573
|
trialEndDate?: Maybe<Scalars['DateTime']['output']>;
|
|
135424
135574
|
type?: Maybe<Scalars['String']['output']>;
|
|
135425
135575
|
};
|
|
135576
|
+
export type JiraForgeGroup = {
|
|
135577
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
135578
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
135579
|
+
};
|
|
135426
135580
|
export type JiraForgeGroupField = JiraIssueField & JiraIssueFieldConfiguration & JiraListRowField & JiraUserIssueFieldConfiguration & Node & {
|
|
135427
135581
|
__typename?: 'JiraForgeGroupField';
|
|
135428
135582
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -135499,6 +135653,16 @@ export type JiraForgeGroupsFieldInput = {
|
|
|
135499
135653
|
fieldId: Scalars['ID']['input'];
|
|
135500
135654
|
selectedGroups: Array<JiraGroupInput>;
|
|
135501
135655
|
};
|
|
135656
|
+
export type JiraForgeGroupsFieldOperationInput = {
|
|
135657
|
+
groups?: InputMaybe<Array<InputMaybe<JiraForgeGroup>>>;
|
|
135658
|
+
operation: JiraMultiValueFieldOperations;
|
|
135659
|
+
};
|
|
135660
|
+
export type JiraForgeGroupsFieldPayload = Payload & {
|
|
135661
|
+
__typename?: 'JiraForgeGroupsFieldPayload';
|
|
135662
|
+
errors?: Maybe<Array<MutationError>>;
|
|
135663
|
+
field?: Maybe<JiraForgeGroupsField>;
|
|
135664
|
+
success: Scalars['Boolean']['output'];
|
|
135665
|
+
};
|
|
135502
135666
|
export type JiraForgeInstallationConfigExtension = {
|
|
135503
135667
|
__typename?: 'JiraForgeInstallationConfigExtension';
|
|
135504
135668
|
key: Scalars['String']['output'];
|
|
@@ -136624,11 +136788,13 @@ export type JiraIccActivityValue = {
|
|
|
136624
136788
|
completedStepCount?: Maybe<Scalars['String']['output']>;
|
|
136625
136789
|
errorMessage?: Maybe<Scalars['String']['output']>;
|
|
136626
136790
|
failureReason?: Maybe<Scalars['String']['output']>;
|
|
136791
|
+
generatedAt?: Maybe<Scalars['String']['output']>;
|
|
136627
136792
|
groupId?: Maybe<Scalars['String']['output']>;
|
|
136628
136793
|
groupName?: Maybe<Scalars['String']['output']>;
|
|
136629
136794
|
hypothesisCount?: Maybe<Scalars['String']['output']>;
|
|
136630
136795
|
incidentName?: Maybe<Scalars['String']['output']>;
|
|
136631
136796
|
mitigationVersion?: Maybe<Scalars['String']['output']>;
|
|
136797
|
+
pirIssueKey?: Maybe<Scalars['String']['output']>;
|
|
136632
136798
|
planName?: Maybe<Scalars['String']['output']>;
|
|
136633
136799
|
status?: Maybe<Scalars['String']['output']>;
|
|
136634
136800
|
statusPageIncidentId?: Maybe<Scalars['String']['output']>;
|
|
@@ -136709,6 +136875,7 @@ export declare enum JiraIncidentActivityType {
|
|
|
136709
136875
|
IncidentMitigationPlanStepCompleted = "INCIDENT_MITIGATION_PLAN_STEP_COMPLETED",
|
|
136710
136876
|
IncidentOverviewNbaGenerated = "INCIDENT_OVERVIEW_NBA_GENERATED",
|
|
136711
136877
|
IncidentOverviewSummaryGenerated = "INCIDENT_OVERVIEW_SUMMARY_GENERATED",
|
|
136878
|
+
IncidentPirGenerated = "INCIDENT_PIR_GENERATED",
|
|
136712
136879
|
IncidentStakeholderAdded = "INCIDENT_STAKEHOLDER_ADDED",
|
|
136713
136880
|
IncidentStakeholderRemoved = "INCIDENT_STAKEHOLDER_REMOVED",
|
|
136714
136881
|
IncidentStatusPageIncidentCreated = "INCIDENT_STATUS_PAGE_INCIDENT_CREATED",
|
|
@@ -142162,6 +142329,7 @@ export type JiraMutation = {
|
|
|
142162
142329
|
updateForgeDateField?: Maybe<JiraForgeDateFieldPayload>;
|
|
142163
142330
|
updateForgeDateTimeField?: Maybe<JiraForgeDatetimeFieldPayload>;
|
|
142164
142331
|
updateForgeGroupField?: Maybe<JiraForgeGroupFieldPayload>;
|
|
142332
|
+
updateForgeGroupsField?: Maybe<JiraForgeGroupsFieldPayload>;
|
|
142165
142333
|
updateForgeNumberField?: Maybe<JiraForgeNumberFieldPayload>;
|
|
142166
142334
|
updateForgeObjectField?: Maybe<JiraForgeObjectFieldPayload>;
|
|
142167
142335
|
updateForgeStringField?: Maybe<JiraForgeStringFieldPayload>;
|
|
@@ -142835,6 +143003,9 @@ export type JiraMutationUpdateForgeGroupFieldArgs = {
|
|
|
142835
143003
|
cloudId: Scalars['ID']['input'];
|
|
142836
143004
|
input: JiraUpdateForgeSingleGroupPickerFieldInput;
|
|
142837
143005
|
};
|
|
143006
|
+
export type JiraMutationUpdateForgeGroupsFieldArgs = {
|
|
143007
|
+
input: JiraUpdateForgeGroupsFieldInput;
|
|
143008
|
+
};
|
|
142838
143009
|
export type JiraMutationUpdateForgeNumberFieldArgs = {
|
|
142839
143010
|
input: JiraUpdateNumberFieldInput;
|
|
142840
143011
|
};
|
|
@@ -154139,12 +154310,16 @@ export type JiraTriageAgentSuggestionEdge = {
|
|
|
154139
154310
|
export type JiraTriageAgentSuggestionItem = {
|
|
154140
154311
|
__typename?: 'JiraTriageAgentSuggestionItem';
|
|
154141
154312
|
actionKey?: Maybe<Scalars['String']['output']>;
|
|
154313
|
+
actionedAt?: Maybe<Scalars['Long']['output']>;
|
|
154314
|
+
actionedBy?: Maybe<Scalars['ID']['output']>;
|
|
154142
154315
|
conversationId?: Maybe<Scalars['ID']['output']>;
|
|
154143
154316
|
experienceId?: Maybe<Scalars['String']['output']>;
|
|
154144
154317
|
invocationId?: Maybe<Scalars['ID']['output']>;
|
|
154318
|
+
invokerAri?: Maybe<Scalars['ID']['output']>;
|
|
154145
154319
|
messageId?: Maybe<Scalars['ID']['output']>;
|
|
154146
154320
|
product?: Maybe<Scalars['String']['output']>;
|
|
154147
154321
|
recipientAgentNamedId?: Maybe<Scalars['String']['output']>;
|
|
154322
|
+
status?: Maybe<JiraFieldSuggestionLifecycleStatus>;
|
|
154148
154323
|
updates?: Maybe<Array<JiraTriageAgentWorkItemUpdate>>;
|
|
154149
154324
|
};
|
|
154150
154325
|
export type JiraTriageAgentSuggestions = JiraBaseNextActionsEntity & {
|
|
@@ -154488,6 +154663,10 @@ export type JiraUpdateFlagFieldPayload = Payload & {
|
|
|
154488
154663
|
field?: Maybe<JiraFlagField>;
|
|
154489
154664
|
success: Scalars['Boolean']['output'];
|
|
154490
154665
|
};
|
|
154666
|
+
export type JiraUpdateForgeGroupsFieldInput = {
|
|
154667
|
+
id: Scalars['ID']['input'];
|
|
154668
|
+
operation: JiraForgeGroupsFieldOperationInput;
|
|
154669
|
+
};
|
|
154491
154670
|
export type JiraUpdateForgeMultipleGroupPickerFieldInput = {
|
|
154492
154671
|
id: Scalars['ID']['input'];
|
|
154493
154672
|
operations: Array<JiraForgeMultipleGroupPickerFieldOperationInput>;
|
|
@@ -155161,6 +155340,7 @@ export type JiraUserPreferences = {
|
|
|
155161
155340
|
isJsmIssueViewAIPanelForServiceDeskEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
155162
155341
|
isMiniModalGlobalIssueCreateDiscoverabilityPushComplete?: Maybe<Scalars['Boolean']['output']>;
|
|
155163
155342
|
isNaturalLanguageSpotlightTourEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
155343
|
+
isNewDevPanelDisabled?: Maybe<Scalars['Boolean']['output']>;
|
|
155164
155344
|
issueNavigatorSearchLayout?: Maybe<JiraIssueNavigatorSearchLayout>;
|
|
155165
155345
|
issuePreviewMode?: Maybe<JiraIssuePreviewMode>;
|
|
155166
155346
|
issueViewActivityFeedSortField?: Maybe<JiraIssueViewActivityFeedSortField>;
|
|
@@ -155245,6 +155425,7 @@ export type JiraUserPreferencesMutation = {
|
|
|
155245
155425
|
setIsIssueViewHideDoneChildIssuesFilterEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
155246
155426
|
setIsIssueViewWivEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
155247
155427
|
setIsJsmIssueViewAIPanelForServiceDeskEnabled?: Maybe<JiraJsmIssueViewAiPanelForServiceDeskEnabledMutationPayload>;
|
|
155428
|
+
setIsNewDevPanelDisabled?: Maybe<Scalars['Boolean']['output']>;
|
|
155248
155429
|
setIssueNavigatorSearchLayout?: Maybe<JiraIssueNavigatorSearchLayoutMutationPayload>;
|
|
155249
155430
|
setIssuePreviewMode?: Maybe<JiraIssuePreviewModeMutationPayload>;
|
|
155250
155431
|
setIssueViewTimestampDisplayMode?: Maybe<JiraIssueViewTimestampDisplayMode>;
|
|
@@ -155275,6 +155456,9 @@ export type JiraUserPreferencesMutationSetIsIssueViewWivEnabledArgs = {
|
|
|
155275
155456
|
export type JiraUserPreferencesMutationSetIsJsmIssueViewAiPanelForServiceDeskEnabledArgs = {
|
|
155276
155457
|
isEnabled: Scalars['Boolean']['input'];
|
|
155277
155458
|
};
|
|
155459
|
+
export type JiraUserPreferencesMutationSetIsNewDevPanelDisabledArgs = {
|
|
155460
|
+
isNewDevPanelDisabled: Scalars['Boolean']['input'];
|
|
155461
|
+
};
|
|
155278
155462
|
export type JiraUserPreferencesMutationSetIssueNavigatorSearchLayoutArgs = {
|
|
155279
155463
|
searchLayout?: InputMaybe<JiraIssueNavigatorSearchLayout>;
|
|
155280
155464
|
};
|
|
@@ -158051,6 +158235,11 @@ export declare enum JsmAnalyticsDataType {
|
|
|
158051
158235
|
Week = "WEEK",
|
|
158052
158236
|
Year = "YEAR"
|
|
158053
158237
|
}
|
|
158238
|
+
export type JsmAnalyticsEvidence = {
|
|
158239
|
+
__typename?: 'JsmAnalyticsEvidence';
|
|
158240
|
+
jql: Scalars['String']['output'];
|
|
158241
|
+
total: Scalars['Int']['output'];
|
|
158242
|
+
};
|
|
158054
158243
|
export declare enum JsmAnalyticsGranularity {
|
|
158055
158244
|
Day = "DAY",
|
|
158056
158245
|
Hour = "HOUR",
|
|
@@ -158069,6 +158258,7 @@ export type JsmAnalyticsInsight = {
|
|
|
158069
158258
|
category: JsmAnalyticsInsightCategory;
|
|
158070
158259
|
causeOverview: JsmAnalyticsStatement;
|
|
158071
158260
|
chart: JsmAnalyticsChart;
|
|
158261
|
+
evidence?: Maybe<Array<Maybe<JsmAnalyticsEvidence>>>;
|
|
158072
158262
|
generatedAt: Scalars['DateTime']['output'];
|
|
158073
158263
|
id: Scalars['ID']['output'];
|
|
158074
158264
|
impact: JsmAnalyticsImpact;
|
|
@@ -158100,15 +158290,19 @@ export type JsmAnalyticsInsightSummary = {
|
|
|
158100
158290
|
total: Scalars['Int']['output'];
|
|
158101
158291
|
};
|
|
158102
158292
|
export type JsmAnalyticsInsightsDetailInput = {
|
|
158293
|
+
cloudId: Scalars['ID']['input'];
|
|
158103
158294
|
insightId: Scalars['ID']['input'];
|
|
158104
158295
|
options: JsmAnalyticsInputOptions;
|
|
158105
158296
|
projectId: Scalars['String']['input'];
|
|
158297
|
+
workspaceAri: Scalars['ID']['input'];
|
|
158106
158298
|
};
|
|
158107
158299
|
export type JsmAnalyticsInsightsQueryInput = {
|
|
158108
158300
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
158301
|
+
cloudId: Scalars['ID']['input'];
|
|
158109
158302
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
158110
158303
|
options: JsmAnalyticsInputOptions;
|
|
158111
158304
|
projectId: Scalars['String']['input'];
|
|
158305
|
+
workspaceAri: Scalars['ID']['input'];
|
|
158112
158306
|
};
|
|
158113
158307
|
export type JsmAnalyticsInsightsQueryResponse = {
|
|
158114
158308
|
__typename?: 'JsmAnalyticsInsightsQueryResponse';
|
|
@@ -162234,7 +162428,7 @@ export type KnowledgeBaseConfluenceAppLinkDetails = {
|
|
|
162234
162428
|
export type KnowledgeBaseConfluenceAppLinkDetailsResponse = KnowledgeBaseConfluenceAppLinkDetails | QueryError;
|
|
162235
162429
|
export type KnowledgeBaseConfluenceAvailability = {
|
|
162236
162430
|
__typename?: 'KnowledgeBaseConfluenceAvailability';
|
|
162237
|
-
|
|
162431
|
+
tenants: Array<KnowledgeBaseConfluenceTenant>;
|
|
162238
162432
|
};
|
|
162239
162433
|
export type KnowledgeBaseConfluenceFolderSuggestion = KnowledgeBaseSourceSuggestionInterface & {
|
|
162240
162434
|
__typename?: 'KnowledgeBaseConfluenceFolderSuggestion';
|
|
@@ -162253,6 +162447,13 @@ export type KnowledgeBaseConfluenceSpaceSuggestions = KnowledgeBaseSourceSuggest
|
|
|
162253
162447
|
sourceARI?: Maybe<Scalars['ID']['output']>;
|
|
162254
162448
|
sourceName?: Maybe<Scalars['String']['output']>;
|
|
162255
162449
|
};
|
|
162450
|
+
export type KnowledgeBaseConfluenceTenant = {
|
|
162451
|
+
__typename?: 'KnowledgeBaseConfluenceTenant';
|
|
162452
|
+
cloudId: Scalars['ID']['output'];
|
|
162453
|
+
isConfluenceAvailable: Scalars['Boolean']['output'];
|
|
162454
|
+
siteName: Scalars['String']['output'];
|
|
162455
|
+
siteUrl?: Maybe<Scalars['String']['output']>;
|
|
162456
|
+
};
|
|
162256
162457
|
export type KnowledgeBaseCrossSiteArticle = {
|
|
162257
162458
|
__typename?: 'KnowledgeBaseCrossSiteArticle';
|
|
162258
162459
|
friendlyLastModified?: Maybe<Scalars['String']['output']>;
|
|
@@ -163302,6 +163503,7 @@ export type KnowledgeDiscoveryQueryApiReportingLinesArgs = {
|
|
|
163302
163503
|
};
|
|
163303
163504
|
export type KnowledgeDiscoveryQueryApiSearchChatIntentDetectionArgs = {
|
|
163304
163505
|
locale: Scalars['String']['input'];
|
|
163506
|
+
modelVersion: KnowledgeDiscoverySearchChatIntentDetectionModelVersion;
|
|
163305
163507
|
query: Scalars['String']['input'];
|
|
163306
163508
|
siteId: Scalars['String']['input'];
|
|
163307
163509
|
};
|
|
@@ -163452,6 +163654,10 @@ export declare enum KnowledgeDiscoverySearchChatIntentDecision {
|
|
|
163452
163654
|
Chat = "CHAT",
|
|
163453
163655
|
Search = "SEARCH"
|
|
163454
163656
|
}
|
|
163657
|
+
export declare enum KnowledgeDiscoverySearchChatIntentDetectionModelVersion {
|
|
163658
|
+
Gemma3_1BSciV1 = "GEMMA3_1B_SCI_V1",
|
|
163659
|
+
Gemma4E2BSciV1 = "GEMMA4_E2B_SCI_V1"
|
|
163660
|
+
}
|
|
163455
163661
|
export type KnowledgeDiscoverySearchChatIntentDetectionResult = KnowledgeDiscoverySearchChatIntentDetectionSuccess | QueryError;
|
|
163456
163662
|
export type KnowledgeDiscoverySearchChatIntentDetectionSuccess = {
|
|
163457
163663
|
__typename?: 'KnowledgeDiscoverySearchChatIntentDetectionSuccess';
|
|
@@ -165907,7 +166113,6 @@ export type MarketplaceConsoleCreatePrivateOfferInput = {
|
|
|
165907
166113
|
discountType: MarketplaceConsolePrivateOfferDiscountType;
|
|
165908
166114
|
discountValue?: InputMaybe<Scalars['Int']['input']>;
|
|
165909
166115
|
edition: Scalars['String']['input'];
|
|
165910
|
-
expiryDate: Scalars['String']['input'];
|
|
165911
166116
|
hostingType: Scalars['String']['input'];
|
|
165912
166117
|
listPriceCents?: InputMaybe<Scalars['Int']['input']>;
|
|
165913
166118
|
productId: Scalars['ID']['input'];
|
|
@@ -166966,7 +167171,7 @@ export type MarketplaceConsolePrivateOffer = {
|
|
|
166966
167171
|
discountType: MarketplaceConsolePrivateOfferDiscountType;
|
|
166967
167172
|
discountValue?: Maybe<Scalars['Int']['output']>;
|
|
166968
167173
|
edition: Scalars['String']['output'];
|
|
166969
|
-
expiryDate
|
|
167174
|
+
expiryDate?: Maybe<Scalars['String']['output']>;
|
|
166970
167175
|
hostingType: Scalars['String']['output'];
|
|
166971
167176
|
latest: Scalars['Int']['output'];
|
|
166972
167177
|
legalTermsArtifact?: Maybe<Scalars['String']['output']>;
|
|
@@ -167525,7 +167730,6 @@ export type MarketplaceConsoleUpdatePrivateOfferInput = {
|
|
|
167525
167730
|
discountType: MarketplaceConsolePrivateOfferDiscountType;
|
|
167526
167731
|
discountValue?: InputMaybe<Scalars['Int']['input']>;
|
|
167527
167732
|
edition: Scalars['String']['input'];
|
|
167528
|
-
expiryDate: Scalars['String']['input'];
|
|
167529
167733
|
hostingType: Scalars['String']['input'];
|
|
167530
167734
|
listPriceCents?: InputMaybe<Scalars['Int']['input']>;
|
|
167531
167735
|
offerId: Scalars['ID']['input'];
|
|
@@ -167686,6 +167890,12 @@ export declare enum MarketplaceLocation {
|
|
|
167686
167890
|
InProduct = "IN_PRODUCT",
|
|
167687
167891
|
Website = "WEBSITE"
|
|
167688
167892
|
}
|
|
167893
|
+
export type MarketplaceMcpTool = {
|
|
167894
|
+
__typename?: 'MarketplaceMcpTool';
|
|
167895
|
+
description: Scalars['String']['output'];
|
|
167896
|
+
name: Scalars['String']['output'];
|
|
167897
|
+
readOnly?: Maybe<Scalars['Boolean']['output']>;
|
|
167898
|
+
};
|
|
167689
167899
|
export type MarketplacePartner = {
|
|
167690
167900
|
__typename?: 'MarketplacePartner';
|
|
167691
167901
|
address?: Maybe<MarketplacePartnerAddress>;
|
|
@@ -167825,6 +168035,9 @@ export type MarketplaceRemoteMcpDeployment = MarketplaceAppDeployment & {
|
|
|
167825
168035
|
__typename?: 'MarketplaceRemoteMcpDeployment';
|
|
167826
168036
|
compatibleProducts: Array<CompatibleAtlassianProduct>;
|
|
167827
168037
|
mcpId: Scalars['ID']['output'];
|
|
168038
|
+
serverFetchError?: Maybe<Scalars['String']['output']>;
|
|
168039
|
+
supportedAuthTypes: Array<Scalars['String']['output']>;
|
|
168040
|
+
tools: Array<MarketplaceMcpTool>;
|
|
167828
168041
|
};
|
|
167829
168042
|
export declare enum MarketplaceStoreAcceptableResponse {
|
|
167830
168043
|
False = "FALSE",
|
|
@@ -170190,6 +170403,8 @@ export type MercuryAsk = Node & {
|
|
|
170190
170403
|
__typename?: 'MercuryAsk';
|
|
170191
170404
|
activities?: Maybe<MercuryAskActivityConnection>;
|
|
170192
170405
|
askStatus: MercuryAskStatusEnum;
|
|
170406
|
+
askType?: Maybe<MercuryAskType>;
|
|
170407
|
+
askTypeId?: Maybe<Scalars['ID']['output']>;
|
|
170193
170408
|
comments?: Maybe<MercuryThreadedCommentConnection>;
|
|
170194
170409
|
connectedWork?: Maybe<MercuryAskConnectedWorkConnection>;
|
|
170195
170410
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -171531,18 +171746,24 @@ export type MercuryCreateAskCustomFieldDefinitionInput = {
|
|
|
171531
171746
|
cloudId: Scalars['ID']['input'];
|
|
171532
171747
|
coreCustomFieldDefinition?: InputMaybe<MercuryCreateCoreCustomFieldDefinitionInput>;
|
|
171533
171748
|
};
|
|
171749
|
+
export type MercuryCreateAskCustomFieldInput = {
|
|
171750
|
+
coreField?: InputMaybe<MercuryCustomFieldInput>;
|
|
171751
|
+
customFieldDefinitionId: Scalars['ID']['input'];
|
|
171752
|
+
};
|
|
171534
171753
|
export type MercuryCreateAskInput = {
|
|
171535
|
-
askStatus
|
|
171754
|
+
askStatus?: InputMaybe<MercuryAskStatusEnum>;
|
|
171755
|
+
askTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
171536
171756
|
cloudId: Scalars['ID']['input'];
|
|
171757
|
+
customFields?: InputMaybe<Array<MercuryCreateAskCustomFieldInput>>;
|
|
171537
171758
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
171538
171759
|
impactedWorkId?: InputMaybe<Scalars['ID']['input']>;
|
|
171539
171760
|
justification?: InputMaybe<Scalars['String']['input']>;
|
|
171540
171761
|
name: Scalars['String']['input'];
|
|
171541
171762
|
ownerId?: InputMaybe<Scalars['ID']['input']>;
|
|
171542
|
-
priority
|
|
171763
|
+
priority?: InputMaybe<MercuryAskPriority>;
|
|
171543
171764
|
receivingOrganizationId?: InputMaybe<Scalars['ID']['input']>;
|
|
171544
171765
|
receivingTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
171545
|
-
submitterId
|
|
171766
|
+
submitterId?: InputMaybe<Scalars['ID']['input']>;
|
|
171546
171767
|
submittingOrganizationId?: InputMaybe<Scalars['ID']['input']>;
|
|
171547
171768
|
submittingTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
171548
171769
|
targetDate?: InputMaybe<MercuryAskTargetDateInput>;
|
|
@@ -171565,17 +171786,19 @@ export type MercuryCreateAskTypePayload = Payload & {
|
|
|
171565
171786
|
success: Scalars['Boolean']['output'];
|
|
171566
171787
|
};
|
|
171567
171788
|
export type MercuryCreateAsksAskInput = {
|
|
171568
|
-
askStatus
|
|
171789
|
+
askStatus?: InputMaybe<MercuryAskStatusEnum>;
|
|
171790
|
+
askTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
171791
|
+
customFields?: InputMaybe<Array<MercuryCreateAskCustomFieldInput>>;
|
|
171569
171792
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
171570
171793
|
impactedWorkId?: InputMaybe<Scalars['ID']['input']>;
|
|
171571
171794
|
justification?: InputMaybe<Scalars['String']['input']>;
|
|
171572
171795
|
links?: InputMaybe<Array<MercuryCreateAsksAskLinkInput>>;
|
|
171573
171796
|
name: Scalars['String']['input'];
|
|
171574
171797
|
ownerId?: InputMaybe<Scalars['ID']['input']>;
|
|
171575
|
-
priority
|
|
171798
|
+
priority?: InputMaybe<MercuryAskPriority>;
|
|
171576
171799
|
receivingOrganizationId?: InputMaybe<Scalars['ID']['input']>;
|
|
171577
171800
|
receivingTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
171578
|
-
submitterId
|
|
171801
|
+
submitterId?: InputMaybe<Scalars['ID']['input']>;
|
|
171579
171802
|
submittingOrganizationId?: InputMaybe<Scalars['ID']['input']>;
|
|
171580
171803
|
submittingTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
171581
171804
|
targetDate?: InputMaybe<MercuryAskTargetDateInput>;
|
|
@@ -173103,6 +173326,7 @@ export type MercuryFocusArea = Node & {
|
|
|
173103
173326
|
status: MercuryFocusAreaStatus;
|
|
173104
173327
|
statusTransitions: MercuryFocusAreaStatusTransitions;
|
|
173105
173328
|
subFocusAreas?: Maybe<MercuryFocusAreaConnection>;
|
|
173329
|
+
tags?: Maybe<MercuryHomeTagConnection>;
|
|
173106
173330
|
targetDate?: Maybe<MercuryTargetDate>;
|
|
173107
173331
|
updatedDate: Scalars['String']['output'];
|
|
173108
173332
|
url?: Maybe<Scalars['String']['output']>;
|
|
@@ -173176,6 +173400,10 @@ export type MercuryFocusAreaSubFocusAreasArgs = {
|
|
|
173176
173400
|
q?: InputMaybe<Scalars['String']['input']>;
|
|
173177
173401
|
sort?: InputMaybe<Array<InputMaybe<MercuryFocusAreaSort>>>;
|
|
173178
173402
|
};
|
|
173403
|
+
export type MercuryFocusAreaTagsArgs = {
|
|
173404
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
173405
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
173406
|
+
};
|
|
173179
173407
|
export type MercuryFocusAreaWatchersArgs = {
|
|
173180
173408
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
173181
173409
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -173857,6 +174085,7 @@ export type MercuryFundsMutationApi = {
|
|
|
173857
174085
|
unsetCostBaseline?: Maybe<MercuryUnsetBaselinePayload>;
|
|
173858
174086
|
unsetCostBaselineAndDescendants?: Maybe<MercuryUnsetBaselineAndDescendantsPayload>;
|
|
173859
174087
|
updateActiveCurrency?: Maybe<MercuryUpdateActiveCurrencyPayload>;
|
|
174088
|
+
updateBaselineRevisionName?: Maybe<MercuryUpdateBaselineRevisionNamePayload>;
|
|
173860
174089
|
updateBenefitItemBenefitType?: Maybe<MercuryUpdateBenefitItemBenefitTypePayload>;
|
|
173861
174090
|
updateBenefitItemName?: Maybe<MercuryUpdateBenefitItemPayload>;
|
|
173862
174091
|
updateBenefitPeriodValueAmount?: Maybe<MercuryUpdateBenefitPeriodValueAmountPayload>;
|
|
@@ -173971,6 +174200,9 @@ export type MercuryFundsMutationApiUnsetCostBaselineAndDescendantsArgs = {
|
|
|
173971
174200
|
export type MercuryFundsMutationApiUpdateActiveCurrencyArgs = {
|
|
173972
174201
|
input: MercuryUpdateActiveCurrencyInput;
|
|
173973
174202
|
};
|
|
174203
|
+
export type MercuryFundsMutationApiUpdateBaselineRevisionNameArgs = {
|
|
174204
|
+
input: MercuryUpdateBaselineRevisionNameInput;
|
|
174205
|
+
};
|
|
173974
174206
|
export type MercuryFundsMutationApiUpdateBenefitItemBenefitTypeArgs = {
|
|
173975
174207
|
input: MercuryUpdateBenefitItemBenefitTypeInput;
|
|
173976
174208
|
};
|
|
@@ -179406,6 +179638,16 @@ export type MercuryUpdateAskTypeNamePayload = Payload & {
|
|
|
179406
179638
|
errors?: Maybe<Array<MutationError>>;
|
|
179407
179639
|
success: Scalars['Boolean']['output'];
|
|
179408
179640
|
};
|
|
179641
|
+
export type MercuryUpdateBaselineRevisionNameInput = {
|
|
179642
|
+
id: Scalars['ID']['input'];
|
|
179643
|
+
name: Scalars['String']['input'];
|
|
179644
|
+
};
|
|
179645
|
+
export type MercuryUpdateBaselineRevisionNamePayload = Payload & {
|
|
179646
|
+
__typename?: 'MercuryUpdateBaselineRevisionNamePayload';
|
|
179647
|
+
errors?: Maybe<Array<MutationError>>;
|
|
179648
|
+
success: Scalars['Boolean']['output'];
|
|
179649
|
+
updatedBaselineRevision?: Maybe<MercuryBaselineRevision>;
|
|
179650
|
+
};
|
|
179409
179651
|
export type MercuryUpdateBenefitItemBenefitTypeInput = {
|
|
179410
179652
|
benefitTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
179411
179653
|
id: Scalars['ID']['input'];
|
|
@@ -181516,6 +181758,7 @@ export type Mutation = {
|
|
|
181516
181758
|
goals_edit?: Maybe<TownsquareGoalsEditPayload>;
|
|
181517
181759
|
goals_editComment?: Maybe<TownsquareGoalsEditCommentPayload>;
|
|
181518
181760
|
goals_editDecision?: Maybe<TownsquareGoalsEditDecisionPayload>;
|
|
181761
|
+
goals_editDraftUpdate?: Maybe<TownsquareGoalsEditDraftUpdatePayload>;
|
|
181519
181762
|
goals_editDropdownCustomField?: Maybe<TownsquareGoalsEditDropdownCustomFieldPayload>;
|
|
181520
181763
|
goals_editGoalTypePair?: Maybe<TownsquareEditGoalTypePairPayload>;
|
|
181521
181764
|
goals_editLearning?: Maybe<TownsquareGoalsEditLearningPayload>;
|
|
@@ -185635,6 +185878,9 @@ export type MutationGoals_EditCommentArgs = {
|
|
|
185635
185878
|
export type MutationGoals_EditDecisionArgs = {
|
|
185636
185879
|
input: TownsquareGoalsEditDecisionInput;
|
|
185637
185880
|
};
|
|
185881
|
+
export type MutationGoals_EditDraftUpdateArgs = {
|
|
185882
|
+
input: TownsquareGoalsEditDraftUpdateInput;
|
|
185883
|
+
};
|
|
185638
185884
|
export type MutationGoals_EditDropdownCustomFieldArgs = {
|
|
185639
185885
|
input: TownsquareGoalsEditDropdownCustomFieldInput;
|
|
185640
185886
|
};
|
|
@@ -192128,10 +192374,14 @@ export declare enum PsmNotificationActionId {
|
|
|
192128
192374
|
Deny = "DENY"
|
|
192129
192375
|
}
|
|
192130
192376
|
export declare enum PsmNotificationKind {
|
|
192377
|
+
ConsentRespondedApprove = "CONSENT_RESPONDED_APPROVE",
|
|
192378
|
+
ConsentRespondedDeny = "CONSENT_RESPONDED_DENY",
|
|
192131
192379
|
FaultDetected = "FAULT_DETECTED",
|
|
192132
192380
|
RemediationCompleted = "REMEDIATION_COMPLETED",
|
|
192381
|
+
RemediationExecuting = "REMEDIATION_EXECUTING",
|
|
192133
192382
|
RemediationFailed = "REMEDIATION_FAILED",
|
|
192134
|
-
RemediationStarted = "REMEDIATION_STARTED"
|
|
192383
|
+
RemediationStarted = "REMEDIATION_STARTED",
|
|
192384
|
+
RemediationWithdrawn = "REMEDIATION_WITHDRAWN"
|
|
192135
192385
|
}
|
|
192136
192386
|
export type PsmNotificationTemplate = {
|
|
192137
192387
|
__typename?: 'PsmNotificationTemplate';
|
|
@@ -192985,7 +193235,6 @@ export type Query = {
|
|
|
192985
193235
|
agentStudio_widgetByContainerAri?: Maybe<AgentStudioWidgetByContainerAriResult>;
|
|
192986
193236
|
agentStudio_widgetReferenceByContainerAri?: Maybe<AgentStudioWidgetReferenceByContainerAriResult>;
|
|
192987
193237
|
agentWorkspace_agentAvailability?: Maybe<AgentWorkspaceAgentAvailability>;
|
|
192988
|
-
agentWorkspace_agentRebalancingRecommendations?: Maybe<Array<AgentWorkspaceIssueRebalancingRecommendation>>;
|
|
192989
193238
|
agentWorkspace_agentRebalancingRecommendationsV2?: Maybe<AgentWorkspaceRebalancingRecommendationsPayload>;
|
|
192990
193239
|
agentWorkspace_agentUsersInProject?: Maybe<AgentWorkspaceUserConnection>;
|
|
192991
193240
|
agentWorkspace_agentsMappedToSkillsInProject?: Maybe<AgentWorkspaceUserConnection>;
|
|
@@ -193032,7 +193281,6 @@ export type Query = {
|
|
|
193032
193281
|
agentWorkspace_smartRoutingDryRun?: Maybe<AgentWorkspaceSmartRoutingDryRun>;
|
|
193033
193282
|
agentWorkspace_smartRoutingDryRunTickets?: Maybe<AgentWorkspaceSmartRoutingDryRunTicketsPayload>;
|
|
193034
193283
|
agentWorkspace_teamCapacities?: Maybe<Array<AgentWorkspaceTeamCapacity>>;
|
|
193035
|
-
agentWorkspace_teamRebalancingRecommendations?: Maybe<Array<AgentWorkspaceIssueRebalancingRecommendation>>;
|
|
193036
193284
|
agentWorkspace_teamRebalancingRecommendationsV2?: Maybe<AgentWorkspaceRebalancingRecommendationsPayload>;
|
|
193037
193285
|
agentWorkspace_teamRebalancingSummaries?: Maybe<Array<AgentWorkspaceTeamRebalancingSummary>>;
|
|
193038
193286
|
agentWorkspace_teamSchedules?: Maybe<AgentWorkspaceTeamSchedulesConnection>;
|
|
@@ -193373,6 +193621,7 @@ export type Query = {
|
|
|
193373
193621
|
compass?: Maybe<CompassCatalogQueryApi>;
|
|
193374
193622
|
confluence?: Maybe<ConfluenceQueryApi>;
|
|
193375
193623
|
confluenceUsers?: Maybe<PaginatedPersonList>;
|
|
193624
|
+
confluence_accessRequestSettings?: Maybe<ConfluenceAccessRequestSettingsConfiguration>;
|
|
193376
193625
|
confluence_activeInlineData?: Maybe<ConfluenceActiveInlineData>;
|
|
193377
193626
|
confluence_analyticsTimeseries?: Maybe<ConfluenceAnalyticsTimeseriesResult>;
|
|
193378
193627
|
confluence_answer?: Maybe<ConfluenceAnswer>;
|
|
@@ -194752,6 +195001,8 @@ export type Query = {
|
|
|
194752
195001
|
graphStoreV2_jiraWorkItemLinksJiraWorkItemRemoteLinkInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksJiraWorkItemRemoteLinkInverseConnection>;
|
|
194753
195002
|
graphStoreV2_jiraWorkItemLinksSupportEscalationEntity?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksSupportEscalationEntityConnection>;
|
|
194754
195003
|
graphStoreV2_jiraWorkItemLinksSupportEscalationEntityInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksSupportEscalationEntityInverseConnection>;
|
|
195004
|
+
graphStoreV2_jiraWorkItemSharedWithAtlassianUser?: Maybe<GraphStoreV2SimplifiedJiraWorkItemSharedWithAtlassianUserConnection>;
|
|
195005
|
+
graphStoreV2_jiraWorkItemSharedWithAtlassianUserInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemSharedWithAtlassianUserInverseConnection>;
|
|
194755
195006
|
graphStoreV2_jiraWorkItemTracksAtlassianProject?: Maybe<GraphStoreV2SimplifiedJiraWorkItemTracksAtlassianProjectConnection>;
|
|
194756
195007
|
graphStoreV2_jiraWorkItemTracksAtlassianProjectInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemTracksAtlassianProjectInverseConnection>;
|
|
194757
195008
|
graphStoreV2_jsmIncidentImpactsCompassComponent?: Maybe<GraphStoreV2SimplifiedJsmIncidentImpactsCompassComponentConnection>;
|
|
@@ -195357,6 +195608,8 @@ export type Query = {
|
|
|
195357
195608
|
graphStore_jiraEpicContributesToAtlasGoalRelationship?: Maybe<GraphStoreFullJiraEpicContributesToAtlasGoalConnection>;
|
|
195358
195609
|
graphStore_jiraIssueBlockedByJiraIssue?: Maybe<GraphStoreSimplifiedJiraIssueBlockedByJiraIssueConnection>;
|
|
195359
195610
|
graphStore_jiraIssueBlockedByJiraIssueInverse?: Maybe<GraphStoreSimplifiedJiraIssueBlockedByJiraIssueInverseConnection>;
|
|
195611
|
+
graphStore_jiraIssueSharedWithUser?: Maybe<GraphStoreSimplifiedJiraIssueSharedWithUserConnection>;
|
|
195612
|
+
graphStore_jiraIssueSharedWithUserInverse?: Maybe<GraphStoreSimplifiedJiraIssueSharedWithUserInverseConnection>;
|
|
195360
195613
|
graphStore_jiraIssueToJiraPriority?: Maybe<GraphStoreSimplifiedJiraIssueToJiraPriorityConnection>;
|
|
195361
195614
|
graphStore_jiraIssueToJiraPriorityInverse?: Maybe<GraphStoreSimplifiedJiraIssueToJiraPriorityInverseConnection>;
|
|
195362
195615
|
graphStore_jiraProjectAgentKnowledgeContextHasKnowledgeBaseEntity?: Maybe<GraphStoreSimplifiedJiraProjectAgentKnowledgeContextHasKnowledgeBaseEntityConnection>;
|
|
@@ -196127,10 +196380,12 @@ export type Query = {
|
|
|
196127
196380
|
jira_agentSessionsIsPlanModeEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
196128
196381
|
jira_agentSpaceCuratedSources?: Maybe<JiraAgentContextItemConnection>;
|
|
196129
196382
|
jira_agentSpaceInstructions?: Maybe<JiraAgentSpaceInstruction>;
|
|
196383
|
+
jira_agentSpaceInstructionsByIds?: Maybe<Array<Maybe<JiraAgentSpaceInstruction>>>;
|
|
196130
196384
|
jira_agentsInSpace?: Maybe<JiraAgentsInSpace>;
|
|
196131
196385
|
jira_agentsInSpaceByAgentAris?: Maybe<Array<Maybe<JiraAgentInSpace>>>;
|
|
196132
196386
|
jira_availableStatuses?: Maybe<JiraStatusConnection>;
|
|
196133
196387
|
jira_backlog?: Maybe<JiraBacklog>;
|
|
196388
|
+
jira_backlogAgentSetupBanner?: Maybe<JiraBacklogAgentSetupBanner>;
|
|
196134
196389
|
jira_backlogView?: Maybe<JiraBacklogView>;
|
|
196135
196390
|
jira_backlogViewCardListsByIds?: Maybe<Array<JiraBacklogViewCardList>>;
|
|
196136
196391
|
jira_boardView?: Maybe<JiraBoardView>;
|
|
@@ -197511,9 +197766,6 @@ export type QueryAgentStudio_WidgetReferenceByContainerAriArgs = {
|
|
|
197511
197766
|
export type QueryAgentWorkspace_AgentAvailabilityArgs = {
|
|
197512
197767
|
cloudId: Scalars['ID']['input'];
|
|
197513
197768
|
};
|
|
197514
|
-
export type QueryAgentWorkspace_AgentRebalancingRecommendationsArgs = {
|
|
197515
|
-
input: AgentWorkspaceAgentRebalancingRecommendationsInput;
|
|
197516
|
-
};
|
|
197517
197769
|
export type QueryAgentWorkspace_AgentRebalancingRecommendationsV2Args = {
|
|
197518
197770
|
input: AgentWorkspaceAgentRebalancingRecommendationsInput;
|
|
197519
197771
|
};
|
|
@@ -197762,9 +198014,6 @@ export type QueryAgentWorkspace_SmartRoutingDryRunTicketsArgs = {
|
|
|
197762
198014
|
export type QueryAgentWorkspace_TeamCapacitiesArgs = {
|
|
197763
198015
|
input: AgentWorkspaceTeamCapacitiesInput;
|
|
197764
198016
|
};
|
|
197765
|
-
export type QueryAgentWorkspace_TeamRebalancingRecommendationsArgs = {
|
|
197766
|
-
input: AgentWorkspaceTeamRebalancingRecommendationsInput;
|
|
197767
|
-
};
|
|
197768
198017
|
export type QueryAgentWorkspace_TeamRebalancingRecommendationsV2Args = {
|
|
197769
198018
|
input: AgentWorkspaceTeamRebalancingRecommendationsInput;
|
|
197770
198019
|
};
|
|
@@ -199330,6 +199579,9 @@ export type QueryConfluenceUsersArgs = {
|
|
|
199330
199579
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
199331
199580
|
start?: InputMaybe<Scalars['Int']['input']>;
|
|
199332
199581
|
};
|
|
199582
|
+
export type QueryConfluence_AccessRequestSettingsArgs = {
|
|
199583
|
+
cloudId: Scalars['ID']['input'];
|
|
199584
|
+
};
|
|
199333
199585
|
export type QueryConfluence_ActiveInlineDataArgs = {
|
|
199334
199586
|
cloudId: Scalars['ID']['input'];
|
|
199335
199587
|
contentId: Scalars['ID']['input'];
|
|
@@ -207809,6 +208061,20 @@ export type QueryGraphStoreV2_JiraWorkItemLinksSupportEscalationEntityInverseArg
|
|
|
207809
208061
|
id: Scalars['ID']['input'];
|
|
207810
208062
|
sort?: InputMaybe<GraphStoreV2JiraWorkItemLinksSupportEscalationEntitySortInput>;
|
|
207811
208063
|
};
|
|
208064
|
+
export type QueryGraphStoreV2_JiraWorkItemSharedWithAtlassianUserArgs = {
|
|
208065
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
208066
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
208067
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
208068
|
+
id: Scalars['ID']['input'];
|
|
208069
|
+
sort?: InputMaybe<GraphStoreV2JiraWorkItemSharedWithAtlassianUserSortInput>;
|
|
208070
|
+
};
|
|
208071
|
+
export type QueryGraphStoreV2_JiraWorkItemSharedWithAtlassianUserInverseArgs = {
|
|
208072
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
208073
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
208074
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
208075
|
+
id: Scalars['ID']['input'];
|
|
208076
|
+
sort?: InputMaybe<GraphStoreV2JiraWorkItemSharedWithAtlassianUserSortInput>;
|
|
208077
|
+
};
|
|
207812
208078
|
export type QueryGraphStoreV2_JiraWorkItemTracksAtlassianProjectArgs = {
|
|
207813
208079
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
207814
208080
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -212446,6 +212712,22 @@ export type QueryGraphStore_JiraIssueBlockedByJiraIssueInverseArgs = {
|
|
|
212446
212712
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
212447
212713
|
sort?: InputMaybe<GraphStoreJiraIssueBlockedByJiraIssueSortInput>;
|
|
212448
212714
|
};
|
|
212715
|
+
export type QueryGraphStore_JiraIssueSharedWithUserArgs = {
|
|
212716
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
212717
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
212718
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
212719
|
+
id: Scalars['ID']['input'];
|
|
212720
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
212721
|
+
sort?: InputMaybe<GraphStoreJiraIssueSharedWithUserSortInput>;
|
|
212722
|
+
};
|
|
212723
|
+
export type QueryGraphStore_JiraIssueSharedWithUserInverseArgs = {
|
|
212724
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
212725
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
212726
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
212727
|
+
id: Scalars['ID']['input'];
|
|
212728
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
212729
|
+
sort?: InputMaybe<GraphStoreJiraIssueSharedWithUserSortInput>;
|
|
212730
|
+
};
|
|
212449
212731
|
export type QueryGraphStore_JiraIssueToJiraPriorityArgs = {
|
|
212450
212732
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
212451
212733
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -218109,6 +218391,9 @@ export type QueryJira_AgentSpaceInstructionsArgs = {
|
|
|
218109
218391
|
agentAri?: InputMaybe<Scalars['ID']['input']>;
|
|
218110
218392
|
projectAri: Scalars['ID']['input'];
|
|
218111
218393
|
};
|
|
218394
|
+
export type QueryJira_AgentSpaceInstructionsByIdsArgs = {
|
|
218395
|
+
ids: Array<Scalars['ID']['input']>;
|
|
218396
|
+
};
|
|
218112
218397
|
export type QueryJira_AgentsInSpaceArgs = {
|
|
218113
218398
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
218114
218399
|
cloudId: Scalars['ID']['input'];
|
|
@@ -218134,6 +218419,10 @@ export type QueryJira_BacklogArgs = {
|
|
|
218134
218419
|
activeQuickFilters?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
218135
218420
|
boardId: Scalars['ID']['input'];
|
|
218136
218421
|
};
|
|
218422
|
+
export type QueryJira_BacklogAgentSetupBannerArgs = {
|
|
218423
|
+
boardId: Scalars['ID']['input'];
|
|
218424
|
+
cloudId: Scalars['ID']['input'];
|
|
218425
|
+
};
|
|
218137
218426
|
export type QueryJira_BacklogViewArgs = {
|
|
218138
218427
|
input: JiraBacklogViewInput;
|
|
218139
218428
|
};
|
|
@@ -219400,6 +219689,7 @@ export type QueryPopularFeedArgs = {
|
|
|
219400
219689
|
export type QueryPostOffice_GetMessagesArgs = {
|
|
219401
219690
|
locale?: InputMaybe<Scalars['String']['input']>;
|
|
219402
219691
|
payload: PostOfficeGetMessagesInput;
|
|
219692
|
+
product?: InputMaybe<Scalars['String']['input']>;
|
|
219403
219693
|
};
|
|
219404
219694
|
export type QueryProactiveAi_GenerateUserActionsArgs = {
|
|
219405
219695
|
cloudId: Scalars['ID']['input'];
|
|
@@ -221533,7 +221823,8 @@ export type RadarNotificationInput = {
|
|
|
221533
221823
|
export declare enum RadarNotificationType {
|
|
221534
221824
|
DataIngestionFailure = "DATA_INGESTION_FAILURE",
|
|
221535
221825
|
DataIngestionSuccess = "DATA_INGESTION_SUCCESS",
|
|
221536
|
-
DataIngestionSuccessAfterFailure = "DATA_INGESTION_SUCCESS_AFTER_FAILURE"
|
|
221826
|
+
DataIngestionSuccessAfterFailure = "DATA_INGESTION_SUCCESS_AFTER_FAILURE",
|
|
221827
|
+
SkillsVerificationRequest = "SKILLS_VERIFICATION_REQUEST"
|
|
221537
221828
|
}
|
|
221538
221829
|
export declare enum RadarNumericAppearance {
|
|
221539
221830
|
Duration = "DURATION",
|
|
@@ -223846,6 +224137,7 @@ export declare enum Scope {
|
|
|
223846
224137
|
WorkflowSchemeRead = "WORKFLOW_SCHEME_READ",
|
|
223847
224138
|
WorkflowSchemeWrite = "WORKFLOW_SCHEME_WRITE",
|
|
223848
224139
|
WorkflowWrite = "WORKFLOW_WRITE",
|
|
224140
|
+
WriteAllTwg = "WRITE_ALL_TWG",
|
|
223849
224141
|
WriteAppDetails = "WRITE_APP_DETAILS",
|
|
223850
224142
|
WriteArtifactArtifacts = "WRITE_ARTIFACT_ARTIFACTS",
|
|
223851
224143
|
WriteAssetsTwgCli = "WRITE_ASSETS_TWG_CLI",
|
|
@@ -226593,6 +226885,10 @@ export type ShepherdAttachmentRedactionPayload = Payload & {
|
|
|
226593
226885
|
success: Scalars['Boolean']['output'];
|
|
226594
226886
|
};
|
|
226595
226887
|
export type ShepherdAttachmentRedactionResult = QueryError | ShepherdAttachmentRedaction;
|
|
226888
|
+
export type ShepherdAttachmentTombstoneByContentInput = {
|
|
226889
|
+
contentAri: Scalars['ID']['input'];
|
|
226890
|
+
fileId: Scalars['ID']['input'];
|
|
226891
|
+
};
|
|
226596
226892
|
export type ShepherdAttachmentTombstoneInput = {
|
|
226597
226893
|
alertAri: Scalars['ID']['input'];
|
|
226598
226894
|
};
|
|
@@ -227248,6 +227544,7 @@ export type ShepherdRedactionMutations = {
|
|
|
227248
227544
|
redact?: Maybe<ShepherdRedactionPayload>;
|
|
227249
227545
|
restore?: Maybe<ShepherdRestoreRedactionPayload>;
|
|
227250
227546
|
tombstoneAttachment?: Maybe<ShepherdAttachmentRedactionPayload>;
|
|
227547
|
+
tombstoneAttachmentByContent?: Maybe<ShepherdAttachmentRedactionPayload>;
|
|
227251
227548
|
};
|
|
227252
227549
|
export type ShepherdRedactionMutationsBulkRedactArgs = {
|
|
227253
227550
|
input: ShepherdBulkRedactionInput;
|
|
@@ -227262,6 +227559,10 @@ export type ShepherdRedactionMutationsRestoreArgs = {
|
|
|
227262
227559
|
export type ShepherdRedactionMutationsTombstoneAttachmentArgs = {
|
|
227263
227560
|
input: ShepherdAttachmentTombstoneInput;
|
|
227264
227561
|
};
|
|
227562
|
+
export type ShepherdRedactionMutationsTombstoneAttachmentByContentArgs = {
|
|
227563
|
+
input: ShepherdAttachmentTombstoneByContentInput;
|
|
227564
|
+
workspaceId: Scalars['ID']['input'];
|
|
227565
|
+
};
|
|
227265
227566
|
export type ShepherdRedactionOperation = {
|
|
227266
227567
|
createdOn: Scalars['DateTime']['output'];
|
|
227267
227568
|
id: Scalars['ID']['output'];
|
|
@@ -236386,6 +236687,16 @@ export type TownsquareGoalsEditDecisionPayload = {
|
|
|
236386
236687
|
errors?: Maybe<Array<MutationError>>;
|
|
236387
236688
|
success: Scalars['Boolean']['output'];
|
|
236388
236689
|
};
|
|
236690
|
+
export type TownsquareGoalsEditDraftUpdateInput = {
|
|
236691
|
+
draftId: Scalars['ID']['input'];
|
|
236692
|
+
values?: InputMaybe<TownsquareGoalsCreateUpdateInput>;
|
|
236693
|
+
};
|
|
236694
|
+
export type TownsquareGoalsEditDraftUpdatePayload = {
|
|
236695
|
+
__typename?: 'TownsquareGoalsEditDraftUpdatePayload';
|
|
236696
|
+
draftUpdate?: Maybe<TownsquareGoalDraftUpdate>;
|
|
236697
|
+
errors?: Maybe<Array<MutationError>>;
|
|
236698
|
+
success: Scalars['Boolean']['output'];
|
|
236699
|
+
};
|
|
236389
236700
|
export type TownsquareGoalsEditDropdownCustomFieldInput = {
|
|
236390
236701
|
customFieldDefinitionId: Scalars['ID']['input'];
|
|
236391
236702
|
goalId: Scalars['ID']['input'];
|
|
@@ -249784,6 +250095,7 @@ export type UtsAllowanceExemption = {
|
|
|
249784
250095
|
scopeId?: Maybe<Scalars['ID']['output']>;
|
|
249785
250096
|
scopeType?: Maybe<UtsAllowanceExemptionScopeType>;
|
|
249786
250097
|
status?: Maybe<UtsAllowanceExemptionStatus>;
|
|
250098
|
+
type?: Maybe<UtsAllowanceExemptionType>;
|
|
249787
250099
|
usageKey?: Maybe<Scalars['String']['output']>;
|
|
249788
250100
|
};
|
|
249789
250101
|
export type UtsAllowanceExemptionList = {
|
|
@@ -249802,6 +250114,10 @@ export declare enum UtsAllowanceExemptionStatus {
|
|
|
249802
250114
|
Expired = "EXPIRED",
|
|
249803
250115
|
Scheduled = "SCHEDULED"
|
|
249804
250116
|
}
|
|
250117
|
+
export declare enum UtsAllowanceExemptionType {
|
|
250118
|
+
Commercial = "COMMERCIAL",
|
|
250119
|
+
Internal = "INTERNAL"
|
|
250120
|
+
}
|
|
249805
250121
|
export type UtsAllowancePool = {
|
|
249806
250122
|
__typename?: 'UtsAllowancePool';
|
|
249807
250123
|
allowance?: Maybe<Scalars['Float']['output']>;
|