@forge/cli-shared 6.5.4-next.1 → 6.5.4-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
CHANGED
|
@@ -754,12 +754,6 @@ export declare type AgentAiSuggestAction = {
|
|
|
754
754
|
context?: Maybe<AgentAiSuggestedActionContext>;
|
|
755
755
|
type?: Maybe<Scalars['String']['output']>;
|
|
756
756
|
};
|
|
757
|
-
export declare type AgentAiSuggestActionContextForPriority = {
|
|
758
|
-
__typename?: 'AgentAISuggestActionContextForPriority';
|
|
759
|
-
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
760
|
-
id?: Maybe<Scalars['String']['output']>;
|
|
761
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
762
|
-
};
|
|
763
757
|
export declare type AgentAiSuggestedActionContent = {
|
|
764
758
|
__typename?: 'AgentAISuggestedActionContent';
|
|
765
759
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -769,13 +763,23 @@ export declare type AgentAiSuggestedActionContext = {
|
|
|
769
763
|
__typename?: 'AgentAISuggestedActionContext';
|
|
770
764
|
fieldId?: Maybe<Scalars['String']['output']>;
|
|
771
765
|
id?: Maybe<Scalars['String']['output']>;
|
|
772
|
-
suggestion?: Maybe<
|
|
766
|
+
suggestion?: Maybe<Scalars['JSON']['output']>;
|
|
773
767
|
};
|
|
774
768
|
export declare type AgentAiSummary = {
|
|
775
769
|
__typename?: 'AgentAISummary';
|
|
776
770
|
adf?: Maybe<Scalars['String']['output']>;
|
|
777
771
|
text?: Maybe<Scalars['String']['output']>;
|
|
778
772
|
};
|
|
773
|
+
export declare type AgentStudioAgent = {
|
|
774
|
+
id: Scalars['ID']['output'];
|
|
775
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
776
|
+
};
|
|
777
|
+
export declare type AgentStudioAgentResult = AgentStudioAssistant | QueryError;
|
|
778
|
+
export declare type AgentStudioAssistant = AgentStudioAgent & Node & {
|
|
779
|
+
__typename?: 'AgentStudioAssistant';
|
|
780
|
+
id: Scalars['ID']['output'];
|
|
781
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
782
|
+
};
|
|
779
783
|
export declare enum AlertEventStatus {
|
|
780
784
|
Acknowledged = "ACKNOWLEDGED",
|
|
781
785
|
Closed = "CLOSED",
|
|
@@ -899,6 +903,7 @@ export declare enum ApiContext {
|
|
|
899
903
|
}
|
|
900
904
|
export declare enum ApiGroup {
|
|
901
905
|
Actions = "ACTIONS",
|
|
906
|
+
AgentStudio = "AGENT_STUDIO",
|
|
902
907
|
AppRecommendations = "APP_RECOMMENDATIONS",
|
|
903
908
|
Caas = "CAAS",
|
|
904
909
|
CloudAdmin = "CLOUD_ADMIN",
|
|
@@ -8421,7 +8426,8 @@ export declare enum ConfluenceBodyRepresentation {
|
|
|
8421
8426
|
ExportView = "EXPORT_VIEW",
|
|
8422
8427
|
Storage = "STORAGE",
|
|
8423
8428
|
StyledView = "STYLED_VIEW",
|
|
8424
|
-
View = "VIEW"
|
|
8429
|
+
View = "VIEW",
|
|
8430
|
+
WhiteboardDocFormat = "WHITEBOARD_DOC_FORMAT"
|
|
8425
8431
|
}
|
|
8426
8432
|
export declare type ConfluenceCalendarJqlValidationResult = {
|
|
8427
8433
|
__typename?: 'ConfluenceCalendarJqlValidationResult';
|
|
@@ -8760,6 +8766,14 @@ export declare type ConfluenceDeleteSubCalendarHiddenEventsPayload = Payload & {
|
|
|
8760
8766
|
subCalendarIds?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
8761
8767
|
success: Scalars['Boolean']['output'];
|
|
8762
8768
|
};
|
|
8769
|
+
export declare type ConfluenceDeleteSubCalendarPrivateUrlInput = {
|
|
8770
|
+
subCalendarId: Scalars['ID']['input'];
|
|
8771
|
+
};
|
|
8772
|
+
export declare type ConfluenceDeleteSubCalendarPrivateUrlPayload = {
|
|
8773
|
+
__typename?: 'ConfluenceDeleteSubCalendarPrivateUrlPayload';
|
|
8774
|
+
errors?: Maybe<Array<MutationError>>;
|
|
8775
|
+
success: Scalars['Boolean']['output'];
|
|
8776
|
+
};
|
|
8763
8777
|
export declare type ConfluenceDeleteSubCalendarSingleEventInput = {
|
|
8764
8778
|
originalStart?: InputMaybe<Scalars['String']['input']>;
|
|
8765
8779
|
recurrenceId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -14544,6 +14558,15 @@ export declare type ConfluenceLongTaskSuccess = ConfluenceLongTaskState & {
|
|
|
14544
14558
|
name?: Maybe<Scalars['String']['output']>;
|
|
14545
14559
|
result?: Maybe<ConfluenceLongTaskResult>;
|
|
14546
14560
|
};
|
|
14561
|
+
export declare type ConfluenceMakeSubCalendarPrivateUrlInput = {
|
|
14562
|
+
subCalendarId: Scalars['ID']['input'];
|
|
14563
|
+
};
|
|
14564
|
+
export declare type ConfluenceMakeSubCalendarPrivateUrlPayload = {
|
|
14565
|
+
__typename?: 'ConfluenceMakeSubCalendarPrivateUrlPayload';
|
|
14566
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14567
|
+
privateUrl: Scalars['String']['output'];
|
|
14568
|
+
success: Scalars['Boolean']['output'];
|
|
14569
|
+
};
|
|
14547
14570
|
export declare type ConfluenceMutationApi = {
|
|
14548
14571
|
__typename?: 'ConfluenceMutationApi';
|
|
14549
14572
|
createBlogPost?: Maybe<ConfluenceCreateBlogPostPayload>;
|
|
@@ -15102,9 +15125,15 @@ export declare enum ConfluenceSpaceType {
|
|
|
15102
15125
|
}
|
|
15103
15126
|
export declare type ConfluenceStorage = {
|
|
15104
15127
|
__typename?: 'ConfluenceStorage';
|
|
15128
|
+
bytesLimit?: Maybe<Scalars['Long']['output']>;
|
|
15105
15129
|
bytesUsed: Scalars['Long']['output'];
|
|
15106
15130
|
gracePeriodEndDate?: Maybe<Scalars['String']['output']>;
|
|
15107
15131
|
isStorageEnforcementGracePeriodComplete?: Maybe<Scalars['Boolean']['output']>;
|
|
15132
|
+
isUnlimited?: Maybe<Scalars['Boolean']['output']>;
|
|
15133
|
+
};
|
|
15134
|
+
export declare type ConfluenceSubCalendarSubscribersCount = {
|
|
15135
|
+
__typename?: 'ConfluenceSubCalendarSubscribersCount';
|
|
15136
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
15108
15137
|
};
|
|
15109
15138
|
export declare type ConfluenceTeamPresence = {
|
|
15110
15139
|
__typename?: 'ConfluenceTeamPresence';
|
|
@@ -15838,6 +15867,7 @@ export declare type ConfluenceWhiteboard = {
|
|
|
15838
15867
|
__typename?: 'ConfluenceWhiteboard';
|
|
15839
15868
|
allAncestors?: Maybe<Array<Maybe<ConfluenceAncestor>>>;
|
|
15840
15869
|
author?: Maybe<ConfluenceUserInfo>;
|
|
15870
|
+
body?: Maybe<ConfluenceWhiteboardBody>;
|
|
15841
15871
|
comments?: Maybe<Array<Maybe<ConfluenceComment>>>;
|
|
15842
15872
|
id: Scalars['ID']['output'];
|
|
15843
15873
|
latestVersion?: Maybe<ConfluenceContentVersion>;
|
|
@@ -15851,6 +15881,10 @@ export declare type ConfluenceWhiteboard = {
|
|
|
15851
15881
|
export declare type ConfluenceWhiteboardCommentsArgs = {
|
|
15852
15882
|
commentType?: InputMaybe<ConfluenceCommentType>;
|
|
15853
15883
|
};
|
|
15884
|
+
export declare type ConfluenceWhiteboardBody = {
|
|
15885
|
+
__typename?: 'ConfluenceWhiteboardBody';
|
|
15886
|
+
whiteboardDocFormat?: Maybe<ConfluenceBody>;
|
|
15887
|
+
};
|
|
15854
15888
|
export declare type ConfluenceWhiteboardLinks = {
|
|
15855
15889
|
__typename?: 'ConfluenceWhiteboardLinks';
|
|
15856
15890
|
base?: Maybe<Scalars['String']['output']>;
|
|
@@ -29073,6 +29107,7 @@ export declare type GraphStore = {
|
|
|
29073
29107
|
focusAreaHasProjectBatch?: Maybe<GraphStoreBatchFocusAreaHasProjectConnection>;
|
|
29074
29108
|
focusAreaHasProjectInverse?: Maybe<GraphStoreSimplifiedFocusAreaHasProjectInverseConnection>;
|
|
29075
29109
|
focusAreaHasProjectInverseBatch?: Maybe<GraphStoreBatchFocusAreaHasProjectConnection>;
|
|
29110
|
+
graphDocument3pDocumentInverse?: Maybe<GraphStoreSimplifiedGraphDocument3pDocumentInverseConnection>;
|
|
29076
29111
|
groupCanViewConfluenceSpace?: Maybe<GraphStoreSimplifiedGroupCanViewConfluenceSpaceConnection>;
|
|
29077
29112
|
incidentAssociatedPostIncidentReview?: Maybe<GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewConnection>;
|
|
29078
29113
|
incidentAssociatedPostIncidentReviewBatch?: Maybe<GraphStoreBatchIncidentAssociatedPostIncidentReviewConnection>;
|
|
@@ -29167,6 +29202,7 @@ export declare type GraphStore = {
|
|
|
29167
29202
|
jiraEpicContributesToAtlasGoalInverse?: Maybe<GraphStoreSimplifiedJiraEpicContributesToAtlasGoalInverseConnection>;
|
|
29168
29203
|
jiraEpicContributesToAtlasGoalInverseRelationship?: Maybe<GraphStoreFullJiraEpicContributesToAtlasGoalConnection>;
|
|
29169
29204
|
jiraEpicContributesToAtlasGoalRelationship?: Maybe<GraphStoreFullJiraEpicContributesToAtlasGoalConnection>;
|
|
29205
|
+
jiraIssueToJiraPriorityInverse?: Maybe<GraphStoreSimplifiedJiraIssueToJiraPriorityInverseConnection>;
|
|
29170
29206
|
jiraProjectAssociatedAtlasGoal?: Maybe<GraphStoreSimplifiedJiraProjectAssociatedAtlasGoalConnection>;
|
|
29171
29207
|
jiraProjectAssociatedAtlasGoalInverse?: Maybe<GraphStoreSimplifiedJiraProjectAssociatedAtlasGoalInverseConnection>;
|
|
29172
29208
|
jiraProjectAssociatedAtlasGoalInverseRelationship?: Maybe<GraphStoreFullJiraProjectAssociatedAtlasGoalConnection>;
|
|
@@ -29416,6 +29452,8 @@ export declare type GraphStore = {
|
|
|
29416
29452
|
userCreatedConfluenceDatabaseInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceDatabaseInverseConnection>;
|
|
29417
29453
|
userCreatedConfluencePage?: Maybe<GraphStoreSimplifiedUserCreatedConfluencePageConnection>;
|
|
29418
29454
|
userCreatedConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluencePageInverseConnection>;
|
|
29455
|
+
userCreatedConfluenceSpace?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceSpaceConnection>;
|
|
29456
|
+
userCreatedConfluenceSpaceInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceSpaceInverseConnection>;
|
|
29419
29457
|
userCreatedConfluenceWhiteboard?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceWhiteboardConnection>;
|
|
29420
29458
|
userCreatedConfluenceWhiteboardInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceWhiteboardInverseConnection>;
|
|
29421
29459
|
userCreatedDesign?: Maybe<GraphStoreSimplifiedUserCreatedDesignConnection>;
|
|
@@ -29484,6 +29522,8 @@ export declare type GraphStore = {
|
|
|
29484
29522
|
userUpdatedConfluenceSpaceInverse?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceSpaceInverseConnection>;
|
|
29485
29523
|
userUpdatedConfluenceWhiteboard?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardConnection>;
|
|
29486
29524
|
userUpdatedConfluenceWhiteboardInverse?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardInverseConnection>;
|
|
29525
|
+
userUpdatedGraphDocument?: Maybe<GraphStoreSimplifiedUserUpdatedGraphDocumentConnection>;
|
|
29526
|
+
userUpdatedGraphDocumentInverse?: Maybe<GraphStoreSimplifiedUserUpdatedGraphDocumentInverseConnection>;
|
|
29487
29527
|
userViewedAtlasGoal?: Maybe<GraphStoreSimplifiedUserViewedAtlasGoalConnection>;
|
|
29488
29528
|
userViewedAtlasGoalInverse?: Maybe<GraphStoreSimplifiedUserViewedAtlasGoalInverseConnection>;
|
|
29489
29529
|
userViewedAtlasProject?: Maybe<GraphStoreSimplifiedUserViewedAtlasProjectConnection>;
|
|
@@ -30107,6 +30147,13 @@ export declare type GraphStoreFocusAreaHasProjectInverseBatchArgs = {
|
|
|
30107
30147
|
ids: Array<Scalars['ID']['input']>;
|
|
30108
30148
|
sort?: InputMaybe<GraphStoreFocusAreaHasProjectSortInput>;
|
|
30109
30149
|
};
|
|
30150
|
+
export declare type GraphStoreGraphDocument3pDocumentInverseArgs = {
|
|
30151
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30152
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30153
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30154
|
+
id: Scalars['ID']['input'];
|
|
30155
|
+
sort?: InputMaybe<GraphStoreGraphDocument3pDocumentSortInput>;
|
|
30156
|
+
};
|
|
30110
30157
|
export declare type GraphStoreGroupCanViewConfluenceSpaceArgs = {
|
|
30111
30158
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30112
30159
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -30683,6 +30730,13 @@ export declare type GraphStoreJiraEpicContributesToAtlasGoalRelationshipArgs = {
|
|
|
30683
30730
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30684
30731
|
id: Scalars['ID']['input'];
|
|
30685
30732
|
};
|
|
30733
|
+
export declare type GraphStoreJiraIssueToJiraPriorityInverseArgs = {
|
|
30734
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30735
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30736
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30737
|
+
id: Scalars['ID']['input'];
|
|
30738
|
+
sort?: InputMaybe<GraphStoreJiraIssueToJiraPrioritySortInput>;
|
|
30739
|
+
};
|
|
30686
30740
|
export declare type GraphStoreJiraProjectAssociatedAtlasGoalArgs = {
|
|
30687
30741
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30688
30742
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -32303,6 +32357,20 @@ export declare type GraphStoreUserCreatedConfluencePageInverseArgs = {
|
|
|
32303
32357
|
id: Scalars['ID']['input'];
|
|
32304
32358
|
sort?: InputMaybe<GraphStoreUserCreatedConfluencePageSortInput>;
|
|
32305
32359
|
};
|
|
32360
|
+
export declare type GraphStoreUserCreatedConfluenceSpaceArgs = {
|
|
32361
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32362
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32363
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32364
|
+
id: Scalars['ID']['input'];
|
|
32365
|
+
sort?: InputMaybe<GraphStoreUserCreatedConfluenceSpaceSortInput>;
|
|
32366
|
+
};
|
|
32367
|
+
export declare type GraphStoreUserCreatedConfluenceSpaceInverseArgs = {
|
|
32368
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32369
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32370
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32371
|
+
id: Scalars['ID']['input'];
|
|
32372
|
+
sort?: InputMaybe<GraphStoreUserCreatedConfluenceSpaceSortInput>;
|
|
32373
|
+
};
|
|
32306
32374
|
export declare type GraphStoreUserCreatedConfluenceWhiteboardArgs = {
|
|
32307
32375
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32308
32376
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -32779,6 +32847,20 @@ export declare type GraphStoreUserUpdatedConfluenceWhiteboardInverseArgs = {
|
|
|
32779
32847
|
id: Scalars['ID']['input'];
|
|
32780
32848
|
sort?: InputMaybe<GraphStoreUserUpdatedConfluenceWhiteboardSortInput>;
|
|
32781
32849
|
};
|
|
32850
|
+
export declare type GraphStoreUserUpdatedGraphDocumentArgs = {
|
|
32851
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32852
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32853
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32854
|
+
id: Scalars['ID']['input'];
|
|
32855
|
+
sort?: InputMaybe<GraphStoreUserUpdatedGraphDocumentSortInput>;
|
|
32856
|
+
};
|
|
32857
|
+
export declare type GraphStoreUserUpdatedGraphDocumentInverseArgs = {
|
|
32858
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32859
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32860
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32861
|
+
id: Scalars['ID']['input'];
|
|
32862
|
+
sort?: InputMaybe<GraphStoreUserUpdatedGraphDocumentSortInput>;
|
|
32863
|
+
};
|
|
32782
32864
|
export declare type GraphStoreUserViewedAtlasGoalArgs = {
|
|
32783
32865
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32784
32866
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -38129,6 +38211,9 @@ export declare enum GraphStoreFullVulnerabilityAssociatedIssueVulnerabilityTypeO
|
|
|
38129
38211
|
Sca = "SCA",
|
|
38130
38212
|
Unknown = "UNKNOWN"
|
|
38131
38213
|
}
|
|
38214
|
+
export declare type GraphStoreGraphDocument3pDocumentSortInput = {
|
|
38215
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
38216
|
+
};
|
|
38132
38217
|
export declare type GraphStoreGroupCanViewConfluenceSpaceSortInput = {
|
|
38133
38218
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
38134
38219
|
};
|
|
@@ -38283,6 +38368,9 @@ export declare type GraphStoreIssueToWhiteboardSortInput = {
|
|
|
38283
38368
|
export declare type GraphStoreJiraEpicContributesToAtlasGoalSortInput = {
|
|
38284
38369
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
38285
38370
|
};
|
|
38371
|
+
export declare type GraphStoreJiraIssueToJiraPrioritySortInput = {
|
|
38372
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
38373
|
+
};
|
|
38286
38374
|
export declare type GraphStoreJiraProjectAssociatedAtlasGoalSortInput = {
|
|
38287
38375
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
38288
38376
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -39914,6 +40002,20 @@ export declare type GraphStoreSimplifiedFocusAreaHasProjectInverseEdge = {
|
|
|
39914
40002
|
};
|
|
39915
40003
|
export declare type GraphStoreSimplifiedFocusAreaHasProjectInverseUnion = MercuryFocusArea;
|
|
39916
40004
|
export declare type GraphStoreSimplifiedFocusAreaHasProjectUnion = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
40005
|
+
export declare type GraphStoreSimplifiedGraphDocument3pDocumentInverseConnection = HasPageInfo & {
|
|
40006
|
+
__typename?: 'GraphStoreSimplifiedGraphDocument3pDocumentInverseConnection';
|
|
40007
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedGraphDocument3pDocumentInverseEdge>>>;
|
|
40008
|
+
pageInfo: PageInfo;
|
|
40009
|
+
};
|
|
40010
|
+
export declare type GraphStoreSimplifiedGraphDocument3pDocumentInverseEdge = {
|
|
40011
|
+
__typename?: 'GraphStoreSimplifiedGraphDocument3pDocumentInverseEdge';
|
|
40012
|
+
createdAt: Scalars['DateTime']['output'];
|
|
40013
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
40014
|
+
id: Scalars['ID']['output'];
|
|
40015
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
40016
|
+
node?: Maybe<GraphStoreSimplifiedGraphDocument3pDocumentInverseUnion>;
|
|
40017
|
+
};
|
|
40018
|
+
export declare type GraphStoreSimplifiedGraphDocument3pDocumentInverseUnion = DevOpsDocument | ExternalDocument;
|
|
39917
40019
|
export declare type GraphStoreSimplifiedGroupCanViewConfluenceSpaceConnection = HasPageInfo & {
|
|
39918
40020
|
__typename?: 'GraphStoreSimplifiedGroupCanViewConfluenceSpaceConnection';
|
|
39919
40021
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedGroupCanViewConfluenceSpaceEdge>>>;
|
|
@@ -40542,6 +40644,20 @@ export declare type GraphStoreSimplifiedJiraEpicContributesToAtlasGoalInverseEdg
|
|
|
40542
40644
|
};
|
|
40543
40645
|
export declare type GraphStoreSimplifiedJiraEpicContributesToAtlasGoalInverseUnion = JiraIssue;
|
|
40544
40646
|
export declare type GraphStoreSimplifiedJiraEpicContributesToAtlasGoalUnion = TownsquareGoal;
|
|
40647
|
+
export declare type GraphStoreSimplifiedJiraIssueToJiraPriorityInverseConnection = HasPageInfo & {
|
|
40648
|
+
__typename?: 'GraphStoreSimplifiedJiraIssueToJiraPriorityInverseConnection';
|
|
40649
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJiraIssueToJiraPriorityInverseEdge>>>;
|
|
40650
|
+
pageInfo: PageInfo;
|
|
40651
|
+
};
|
|
40652
|
+
export declare type GraphStoreSimplifiedJiraIssueToJiraPriorityInverseEdge = {
|
|
40653
|
+
__typename?: 'GraphStoreSimplifiedJiraIssueToJiraPriorityInverseEdge';
|
|
40654
|
+
createdAt: Scalars['DateTime']['output'];
|
|
40655
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
40656
|
+
id: Scalars['ID']['output'];
|
|
40657
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
40658
|
+
node?: Maybe<GraphStoreSimplifiedJiraIssueToJiraPriorityInverseUnion>;
|
|
40659
|
+
};
|
|
40660
|
+
export declare type GraphStoreSimplifiedJiraIssueToJiraPriorityInverseUnion = JiraIssue;
|
|
40545
40661
|
export declare type GraphStoreSimplifiedJiraProjectAssociatedAtlasGoalConnection = HasPageInfo & HasTotal & {
|
|
40546
40662
|
__typename?: 'GraphStoreSimplifiedJiraProjectAssociatedAtlasGoalConnection';
|
|
40547
40663
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJiraProjectAssociatedAtlasGoalEdge>>>;
|
|
@@ -42758,6 +42874,34 @@ export declare type GraphStoreSimplifiedUserCreatedConfluencePageInverseEdge = {
|
|
|
42758
42874
|
};
|
|
42759
42875
|
export declare type GraphStoreSimplifiedUserCreatedConfluencePageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
42760
42876
|
export declare type GraphStoreSimplifiedUserCreatedConfluencePageUnion = ConfluencePage;
|
|
42877
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceSpaceConnection = HasPageInfo & {
|
|
42878
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceSpaceConnection';
|
|
42879
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedConfluenceSpaceEdge>>>;
|
|
42880
|
+
pageInfo: PageInfo;
|
|
42881
|
+
};
|
|
42882
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceSpaceEdge = {
|
|
42883
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceSpaceEdge';
|
|
42884
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42885
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42886
|
+
id: Scalars['ID']['output'];
|
|
42887
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42888
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceSpaceUnion>;
|
|
42889
|
+
};
|
|
42890
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceSpaceInverseConnection = HasPageInfo & {
|
|
42891
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceSpaceInverseConnection';
|
|
42892
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedConfluenceSpaceInverseEdge>>>;
|
|
42893
|
+
pageInfo: PageInfo;
|
|
42894
|
+
};
|
|
42895
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceSpaceInverseEdge = {
|
|
42896
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceSpaceInverseEdge';
|
|
42897
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42898
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42899
|
+
id: Scalars['ID']['output'];
|
|
42900
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42901
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceSpaceInverseUnion>;
|
|
42902
|
+
};
|
|
42903
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceSpaceInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
42904
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceSpaceUnion = ConfluenceSpace;
|
|
42761
42905
|
export declare type GraphStoreSimplifiedUserCreatedConfluenceWhiteboardConnection = HasPageInfo & {
|
|
42762
42906
|
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceWhiteboardConnection';
|
|
42763
42907
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedConfluenceWhiteboardEdge>>>;
|
|
@@ -43718,6 +43862,34 @@ export declare type GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardInverseEd
|
|
|
43718
43862
|
};
|
|
43719
43863
|
export declare type GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
43720
43864
|
export declare type GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardUnion = ConfluenceWhiteboard;
|
|
43865
|
+
export declare type GraphStoreSimplifiedUserUpdatedGraphDocumentConnection = HasPageInfo & {
|
|
43866
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedGraphDocumentConnection';
|
|
43867
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedGraphDocumentEdge>>>;
|
|
43868
|
+
pageInfo: PageInfo;
|
|
43869
|
+
};
|
|
43870
|
+
export declare type GraphStoreSimplifiedUserUpdatedGraphDocumentEdge = {
|
|
43871
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedGraphDocumentEdge';
|
|
43872
|
+
createdAt: Scalars['DateTime']['output'];
|
|
43873
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
43874
|
+
id: Scalars['ID']['output'];
|
|
43875
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
43876
|
+
node?: Maybe<GraphStoreSimplifiedUserUpdatedGraphDocumentUnion>;
|
|
43877
|
+
};
|
|
43878
|
+
export declare type GraphStoreSimplifiedUserUpdatedGraphDocumentInverseConnection = HasPageInfo & {
|
|
43879
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedGraphDocumentInverseConnection';
|
|
43880
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedGraphDocumentInverseEdge>>>;
|
|
43881
|
+
pageInfo: PageInfo;
|
|
43882
|
+
};
|
|
43883
|
+
export declare type GraphStoreSimplifiedUserUpdatedGraphDocumentInverseEdge = {
|
|
43884
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedGraphDocumentInverseEdge';
|
|
43885
|
+
createdAt: Scalars['DateTime']['output'];
|
|
43886
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
43887
|
+
id: Scalars['ID']['output'];
|
|
43888
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
43889
|
+
node?: Maybe<GraphStoreSimplifiedUserUpdatedGraphDocumentInverseUnion>;
|
|
43890
|
+
};
|
|
43891
|
+
export declare type GraphStoreSimplifiedUserUpdatedGraphDocumentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
43892
|
+
export declare type GraphStoreSimplifiedUserUpdatedGraphDocumentUnion = DevOpsDocument | ExternalDocument;
|
|
43721
43893
|
export declare type GraphStoreSimplifiedUserViewedAtlasGoalConnection = HasPageInfo & {
|
|
43722
43894
|
__typename?: 'GraphStoreSimplifiedUserViewedAtlasGoalConnection';
|
|
43723
43895
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewedAtlasGoalEdge>>>;
|
|
@@ -44701,6 +44873,9 @@ export declare type GraphStoreUserCreatedConfluenceDatabaseSortInput = {
|
|
|
44701
44873
|
export declare type GraphStoreUserCreatedConfluencePageSortInput = {
|
|
44702
44874
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44703
44875
|
};
|
|
44876
|
+
export declare type GraphStoreUserCreatedConfluenceSpaceSortInput = {
|
|
44877
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44878
|
+
};
|
|
44704
44879
|
export declare type GraphStoreUserCreatedConfluenceWhiteboardSortInput = {
|
|
44705
44880
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44706
44881
|
};
|
|
@@ -44809,6 +44984,9 @@ export declare type GraphStoreUserUpdatedConfluenceSpaceSortInput = {
|
|
|
44809
44984
|
export declare type GraphStoreUserUpdatedConfluenceWhiteboardSortInput = {
|
|
44810
44985
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44811
44986
|
};
|
|
44987
|
+
export declare type GraphStoreUserUpdatedGraphDocumentSortInput = {
|
|
44988
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44989
|
+
};
|
|
44812
44990
|
export declare type GraphStoreUserViewedAtlasGoalSortInput = {
|
|
44813
44991
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44814
44992
|
};
|
|
@@ -54470,6 +54648,7 @@ export declare type JiraJourneyConfiguration = Node & {
|
|
|
54470
54648
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
54471
54649
|
createdBy?: Maybe<User>;
|
|
54472
54650
|
id: Scalars['ID']['output'];
|
|
54651
|
+
journeyItems?: Maybe<Array<JiraJourneyItem>>;
|
|
54473
54652
|
name?: Maybe<Scalars['String']['output']>;
|
|
54474
54653
|
parentIssue?: Maybe<JiraJourneyParentIssue>;
|
|
54475
54654
|
status?: Maybe<JiraJourneyStatus>;
|
|
@@ -54491,6 +54670,11 @@ export declare type JiraJourneyConfigurationEdge = {
|
|
|
54491
54670
|
cursor: Scalars['String']['output'];
|
|
54492
54671
|
node?: Maybe<JiraJourneyConfiguration>;
|
|
54493
54672
|
};
|
|
54673
|
+
export declare type JiraJourneyItem = JiraJourneyStatusDependency | JiraJourneyWorkItem;
|
|
54674
|
+
export declare type JiraJourneyItemCommon = {
|
|
54675
|
+
id: Scalars['ID']['output'];
|
|
54676
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
54677
|
+
};
|
|
54494
54678
|
export declare type JiraJourneyParentIssue = {
|
|
54495
54679
|
__typename?: 'JiraJourneyParentIssue';
|
|
54496
54680
|
project?: Maybe<JiraProject>;
|
|
@@ -54518,6 +54702,18 @@ export declare enum JiraJourneyStatus {
|
|
|
54518
54702
|
Draft = "DRAFT",
|
|
54519
54703
|
Published = "PUBLISHED"
|
|
54520
54704
|
}
|
|
54705
|
+
export declare type JiraJourneyStatusDependency = JiraJourneyItemCommon & {
|
|
54706
|
+
__typename?: 'JiraJourneyStatusDependency';
|
|
54707
|
+
id: Scalars['ID']['output'];
|
|
54708
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
54709
|
+
statusIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
54710
|
+
statusType?: Maybe<JiraJourneyStatusDependencyType>;
|
|
54711
|
+
workItemIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
54712
|
+
};
|
|
54713
|
+
export declare enum JiraJourneyStatusDependencyType {
|
|
54714
|
+
Status = "STATUS",
|
|
54715
|
+
StatusCategory = "STATUS_CATEGORY"
|
|
54716
|
+
}
|
|
54521
54717
|
export declare type JiraJourneyTrigger = {
|
|
54522
54718
|
__typename?: 'JiraJourneyTrigger';
|
|
54523
54719
|
type: JiraJourneyTriggerType;
|
|
@@ -54534,6 +54730,20 @@ export declare enum JiraJourneyTriggerType {
|
|
|
54534
54730
|
ParentIssueCreated = "PARENT_ISSUE_CREATED",
|
|
54535
54731
|
WorkdayIntegrationTriggered = "WORKDAY_INTEGRATION_TRIGGERED"
|
|
54536
54732
|
}
|
|
54733
|
+
export declare type JiraJourneyWorkItem = JiraJourneyItemCommon & {
|
|
54734
|
+
__typename?: 'JiraJourneyWorkItem';
|
|
54735
|
+
fieldValues?: Maybe<Array<JiraJourneyWorkItemFieldValueKeyValuePair>>;
|
|
54736
|
+
id: Scalars['ID']['output'];
|
|
54737
|
+
issueType?: Maybe<JiraIssueType>;
|
|
54738
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
54739
|
+
project?: Maybe<JiraProject>;
|
|
54740
|
+
requestType?: Maybe<JiraServiceManagementRequestType>;
|
|
54741
|
+
};
|
|
54742
|
+
export declare type JiraJourneyWorkItemFieldValueKeyValuePair = {
|
|
54743
|
+
__typename?: 'JiraJourneyWorkItemFieldValueKeyValuePair';
|
|
54744
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
54745
|
+
value?: Maybe<Array<Scalars['String']['output']>>;
|
|
54746
|
+
};
|
|
54537
54747
|
export declare type JiraJourneyWorkdayIntegrationTriggerConfiguration = {
|
|
54538
54748
|
__typename?: 'JiraJourneyWorkdayIntegrationTriggerConfiguration';
|
|
54539
54749
|
ruleId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -54707,6 +54917,7 @@ export declare type JiraJqlField = {
|
|
|
54707
54917
|
description?: Maybe<Scalars['String']['output']>;
|
|
54708
54918
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
54709
54919
|
encodedJqlTerm?: Maybe<Scalars['String']['output']>;
|
|
54920
|
+
fieldId?: Maybe<Scalars['ID']['output']>;
|
|
54710
54921
|
fieldType?: Maybe<JiraFieldType>;
|
|
54711
54922
|
jqlFieldType?: Maybe<JiraJqlFieldType>;
|
|
54712
54923
|
jqlTerm: Scalars['ID']['output'];
|
|
@@ -70235,8 +70446,10 @@ export declare type Mutation = {
|
|
|
70235
70446
|
confluence_deleteSubCalendarAllFutureEvents?: Maybe<ConfluenceDeleteSubCalendarAllFutureEventsPayload>;
|
|
70236
70447
|
confluence_deleteSubCalendarEvent?: Maybe<ConfluenceDeleteSubCalendarEventPayload>;
|
|
70237
70448
|
confluence_deleteSubCalendarHiddenEvents?: Maybe<ConfluenceDeleteSubCalendarHiddenEventsPayload>;
|
|
70449
|
+
confluence_deleteSubCalendarPrivateUrl?: Maybe<ConfluenceDeleteSubCalendarPrivateUrlPayload>;
|
|
70238
70450
|
confluence_deleteSubCalendarSingleEvent?: Maybe<ConfluenceDeleteSubCalendarSingleEventPayload>;
|
|
70239
70451
|
confluence_inviteUsers?: Maybe<ConfluenceInviteUserPayload>;
|
|
70452
|
+
confluence_makeSubCalendarPrivateUrl?: Maybe<ConfluenceMakeSubCalendarPrivateUrlPayload>;
|
|
70240
70453
|
confluence_unwatchSubCalendar?: Maybe<ConfluenceUnwatchSubCalendarPayload>;
|
|
70241
70454
|
confluence_updateSubCalendarHiddenEvents?: Maybe<ConfluenceUpdateSubCalendarHiddenEventsPayload>;
|
|
70242
70455
|
confluence_updateTeamPresenceSpaceSettings?: Maybe<ConfluenceUpdateTeamPresenceSpaceSettingsPayload>;
|
|
@@ -71162,6 +71375,10 @@ export declare type MutationConfluence_DeleteSubCalendarHiddenEventsArgs = {
|
|
|
71162
71375
|
cloudId: Scalars['ID']['input'];
|
|
71163
71376
|
input: Array<ConfluenceDeleteSubCalendarHiddenEventsInput>;
|
|
71164
71377
|
};
|
|
71378
|
+
export declare type MutationConfluence_DeleteSubCalendarPrivateUrlArgs = {
|
|
71379
|
+
cloudId: Scalars['ID']['input'];
|
|
71380
|
+
input: ConfluenceDeleteSubCalendarPrivateUrlInput;
|
|
71381
|
+
};
|
|
71165
71382
|
export declare type MutationConfluence_DeleteSubCalendarSingleEventArgs = {
|
|
71166
71383
|
cloudId: Scalars['ID']['input'];
|
|
71167
71384
|
input: ConfluenceDeleteSubCalendarSingleEventInput;
|
|
@@ -71170,6 +71387,10 @@ export declare type MutationConfluence_InviteUsersArgs = {
|
|
|
71170
71387
|
cloudId: Scalars['ID']['input'];
|
|
71171
71388
|
input: ConfluenceInviteUserInput;
|
|
71172
71389
|
};
|
|
71390
|
+
export declare type MutationConfluence_MakeSubCalendarPrivateUrlArgs = {
|
|
71391
|
+
cloudId: Scalars['ID']['input'];
|
|
71392
|
+
input: ConfluenceMakeSubCalendarPrivateUrlInput;
|
|
71393
|
+
};
|
|
71173
71394
|
export declare type MutationConfluence_UnwatchSubCalendarArgs = {
|
|
71174
71395
|
cloudId: Scalars['ID']['input'];
|
|
71175
71396
|
input: ConfluenceUnwatchSubCalendarInput;
|
|
@@ -74757,6 +74978,7 @@ export declare type Query = {
|
|
|
74757
74978
|
adminReportStatus?: Maybe<ConfluenceAdminReportStatus>;
|
|
74758
74979
|
agentAI_contextPanel?: Maybe<AgentAiContextPanelResult>;
|
|
74759
74980
|
agentAI_summarizeIssue?: Maybe<AgentAiIssueSummaryResult>;
|
|
74981
|
+
agentStudio_agentById?: Maybe<AgentStudioAgentResult>;
|
|
74760
74982
|
allIndividualSpaces?: Maybe<SpaceInfoConnection>;
|
|
74761
74983
|
allTemplates?: Maybe<PaginatedTemplateInfoList>;
|
|
74762
74984
|
allUpdatesFeed?: Maybe<PaginatedAllUpdatesFeed>;
|
|
@@ -75031,6 +75253,7 @@ export declare type Query = {
|
|
|
75031
75253
|
confluence_searchTeamLabels?: Maybe<LabelSearchResults>;
|
|
75032
75254
|
confluence_searchUser?: Maybe<ConfluenceSearchConnection>;
|
|
75033
75255
|
confluence_storage?: Maybe<ConfluenceStorage>;
|
|
75256
|
+
confluence_subCalendarSubscribersCount?: Maybe<ConfluenceSubCalendarSubscribersCount>;
|
|
75034
75257
|
confluence_teamPresence?: Maybe<ConfluenceTeamPresence>;
|
|
75035
75258
|
confluence_teamPresenceSpaceSettings?: Maybe<ConfluenceTeamPresenceSpaceSettings>;
|
|
75036
75259
|
confluence_template?: Maybe<ContentTemplate>;
|
|
@@ -75432,6 +75655,9 @@ export declare type QueryAgentAi_SummarizeIssueArgs = {
|
|
|
75432
75655
|
cloudId: Scalars['ID']['input'];
|
|
75433
75656
|
issueId?: InputMaybe<Scalars['String']['input']>;
|
|
75434
75657
|
};
|
|
75658
|
+
export declare type QueryAgentStudio_AgentByIdArgs = {
|
|
75659
|
+
id: Scalars['ID']['input'];
|
|
75660
|
+
};
|
|
75435
75661
|
export declare type QueryAllIndividualSpacesArgs = {
|
|
75436
75662
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
75437
75663
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -76625,6 +76851,10 @@ export declare type QueryConfluence_SearchUserArgs = {
|
|
|
76625
76851
|
export declare type QueryConfluence_StorageArgs = {
|
|
76626
76852
|
cloudId: Scalars['ID']['input'];
|
|
76627
76853
|
};
|
|
76854
|
+
export declare type QueryConfluence_SubCalendarSubscribersCountArgs = {
|
|
76855
|
+
cloudId: Scalars['ID']['input'];
|
|
76856
|
+
subCalendarId: Scalars['ID']['input'];
|
|
76857
|
+
};
|
|
76628
76858
|
export declare type QueryConfluence_TeamPresenceArgs = {
|
|
76629
76859
|
cloudId: Scalars['ID']['input'];
|
|
76630
76860
|
spaceId: Scalars['Long']['input'];
|
|
@@ -77903,6 +78133,7 @@ export declare type QueryTenantArgs = {
|
|
|
77903
78133
|
current?: InputMaybe<Scalars['Boolean']['input']>;
|
|
77904
78134
|
};
|
|
77905
78135
|
export declare type QueryTenantContextsArgs = {
|
|
78136
|
+
activationIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
77906
78137
|
cloudIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
77907
78138
|
hostNames?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
77908
78139
|
};
|
|
@@ -78140,6 +78371,7 @@ export declare enum RadarEntityType {
|
|
|
78140
78371
|
}
|
|
78141
78372
|
export declare type RadarFieldDefinition = Node & {
|
|
78142
78373
|
__typename?: 'RadarFieldDefinition';
|
|
78374
|
+
defaultOrder?: Maybe<Scalars['Int']['output']>;
|
|
78143
78375
|
displayName: Scalars['String']['output'];
|
|
78144
78376
|
entity: RadarEntityType;
|
|
78145
78377
|
filterOptions: RadarFilterOptions;
|
|
@@ -78290,7 +78522,7 @@ export declare type RadarStaticStringFilterOptions = RadarFilterOptions & {
|
|
|
78290
78522
|
};
|
|
78291
78523
|
export declare enum RadarStatusAppearance {
|
|
78292
78524
|
Default = "default",
|
|
78293
|
-
|
|
78525
|
+
Inprogress = "inprogress",
|
|
78294
78526
|
Moved = "moved",
|
|
78295
78527
|
New = "new",
|
|
78296
78528
|
Removed = "removed",
|
|
@@ -80781,6 +81013,13 @@ export declare type SecurityWorkspace = {
|
|
|
80781
81013
|
providerName?: Maybe<Scalars['String']['output']>;
|
|
80782
81014
|
url?: Maybe<Scalars['URL']['output']>;
|
|
80783
81015
|
};
|
|
81016
|
+
export declare enum Segment {
|
|
81017
|
+
Enterprise = "ENTERPRISE",
|
|
81018
|
+
Free = "FREE",
|
|
81019
|
+
Premium = "PREMIUM",
|
|
81020
|
+
Standard = "STANDARD",
|
|
81021
|
+
Unknown = "UNKNOWN"
|
|
81022
|
+
}
|
|
80784
81023
|
export declare type ServiceProvider = {
|
|
80785
81024
|
__typename?: 'ServiceProvider';
|
|
80786
81025
|
endUserDataTypes?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
@@ -81031,6 +81270,7 @@ export declare type SettingsMenuItemInput = {
|
|
|
81031
81270
|
};
|
|
81032
81271
|
export declare type SettingsNavigationCustomisation = {
|
|
81033
81272
|
__typename?: 'SettingsNavigationCustomisation';
|
|
81273
|
+
id: Scalars['ID']['output'];
|
|
81034
81274
|
properties?: Maybe<SettingsDisplayPropertyConnection>;
|
|
81035
81275
|
sidebar?: Maybe<SettingsMenuItemConnection>;
|
|
81036
81276
|
};
|
|
@@ -84598,6 +84838,7 @@ export declare type Tenant = {
|
|
|
84598
84838
|
cloudId: Scalars['ID']['output'];
|
|
84599
84839
|
editions?: Maybe<ConfluenceEditions>;
|
|
84600
84840
|
environment: Environment;
|
|
84841
|
+
segment?: Maybe<Segment>;
|
|
84601
84842
|
shard: Scalars['String']['output'];
|
|
84602
84843
|
};
|
|
84603
84844
|
export declare type TenantContext = {
|
|
@@ -90204,6 +90445,7 @@ export declare type WorkSuggestionsByProjectsResponse = {
|
|
|
90204
90445
|
draftPRSuggestions?: Maybe<Array<WorkSuggestionsPullRequestDraftTask>>;
|
|
90205
90446
|
inactivePRSuggestions?: Maybe<Array<WorkSuggestionsPullRequestInactiveTask>>;
|
|
90206
90447
|
issueDueSoonSuggestions?: Maybe<Array<WorkSuggestionsIssueDueSoonTask>>;
|
|
90448
|
+
issueMissingDetailsSuggestions?: Maybe<Array<WorkSuggestionsIssueMissingDetailsTask>>;
|
|
90207
90449
|
recentPullRequests?: Maybe<WorkSuggestionsPullRequestSuggestionsResponse>;
|
|
90208
90450
|
stuckIssueSuggestions?: Maybe<Array<WorkSuggestionsStuckIssueTask>>;
|
|
90209
90451
|
};
|
|
@@ -90313,6 +90555,17 @@ export declare type WorkSuggestionsIssueDueSoonTask = WorkSuggestionsPeriscopeTa
|
|
|
90313
90555
|
title: Scalars['String']['output'];
|
|
90314
90556
|
url: Scalars['String']['output'];
|
|
90315
90557
|
};
|
|
90558
|
+
export declare type WorkSuggestionsIssueMissingDetailsTask = WorkSuggestionsPeriscopeTask & {
|
|
90559
|
+
__typename?: 'WorkSuggestionsIssueMissingDetailsTask';
|
|
90560
|
+
id: Scalars['String']['output'];
|
|
90561
|
+
issueKey?: Maybe<Scalars['String']['output']>;
|
|
90562
|
+
orderScore?: Maybe<WorkSuggestionsOrderScore>;
|
|
90563
|
+
priority?: Maybe<WorkSuggestionsPriority>;
|
|
90564
|
+
reporter?: Maybe<WorkSuggestionsJiraReporter>;
|
|
90565
|
+
status?: Maybe<WorkSuggestionsIssueStatus>;
|
|
90566
|
+
title: Scalars['String']['output'];
|
|
90567
|
+
url: Scalars['String']['output'];
|
|
90568
|
+
};
|
|
90316
90569
|
export declare type WorkSuggestionsIssueStatus = {
|
|
90317
90570
|
__typename?: 'WorkSuggestionsIssueStatus';
|
|
90318
90571
|
category?: Maybe<Scalars['String']['output']>;
|
|
@@ -90329,6 +90582,11 @@ export declare type WorkSuggestionsJiraPriority = {
|
|
|
90329
90582
|
name?: Maybe<Scalars['String']['output']>;
|
|
90330
90583
|
sequence?: Maybe<Scalars['Int']['output']>;
|
|
90331
90584
|
};
|
|
90585
|
+
export declare type WorkSuggestionsJiraReporter = {
|
|
90586
|
+
__typename?: 'WorkSuggestionsJiraReporter';
|
|
90587
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
90588
|
+
pictureUrl?: Maybe<Scalars['String']['output']>;
|
|
90589
|
+
};
|
|
90332
90590
|
export declare type WorkSuggestionsMergePrActionInput = {
|
|
90333
90591
|
cloudId: Scalars['ID']['input'];
|
|
90334
90592
|
taskId: Scalars['String']['input'];
|