@forge/cli-shared 6.5.4-next.0 → 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.
|
@@ -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']>;
|
|
@@ -20748,9 +20782,21 @@ export declare type DevAiPlaintextAutodevLog = DevAiAutodevLog & {
|
|
|
20748
20782
|
};
|
|
20749
20783
|
export declare type DevAiRovoAgent = {
|
|
20750
20784
|
__typename?: 'DevAiRovoAgent';
|
|
20785
|
+
actionConfig?: Maybe<Array<Maybe<DevAiRovoAgentActionConfig>>>;
|
|
20751
20786
|
description?: Maybe<Scalars['String']['output']>;
|
|
20787
|
+
externalConfigReference?: Maybe<Scalars['String']['output']>;
|
|
20788
|
+
icon?: Maybe<Scalars['String']['output']>;
|
|
20752
20789
|
id: Scalars['ID']['output'];
|
|
20753
20790
|
name?: Maybe<Scalars['String']['output']>;
|
|
20791
|
+
systemPromptTemplate?: Maybe<Scalars['String']['output']>;
|
|
20792
|
+
userDefinedConversationStarters?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
20793
|
+
};
|
|
20794
|
+
export declare type DevAiRovoAgentActionConfig = {
|
|
20795
|
+
__typename?: 'DevAiRovoAgentActionConfig';
|
|
20796
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
20797
|
+
id: Scalars['ID']['output'];
|
|
20798
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
20799
|
+
tags?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
20754
20800
|
};
|
|
20755
20801
|
export declare type DevAiRovoAgentConnection = {
|
|
20756
20802
|
__typename?: 'DevAiRovoAgentConnection';
|
|
@@ -20762,6 +20808,11 @@ export declare type DevAiRovoAgentEdge = {
|
|
|
20762
20808
|
cursor: Scalars['String']['output'];
|
|
20763
20809
|
node?: Maybe<DevAiRovoAgent>;
|
|
20764
20810
|
};
|
|
20811
|
+
export declare enum DevAiRovoAgentTemplateFilter {
|
|
20812
|
+
Exclude = "EXCLUDE",
|
|
20813
|
+
Include = "INCLUDE",
|
|
20814
|
+
Only = "ONLY"
|
|
20815
|
+
}
|
|
20765
20816
|
export declare type DevAiRunAutofixScanInput = {
|
|
20766
20817
|
repoUrl: Scalars['URL']['input'];
|
|
20767
20818
|
restartIfCurrentlyRunning?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -22604,9 +22655,16 @@ export declare type EcosystemDataClassificationsContext = {
|
|
|
22604
22655
|
hasConstraints?: Maybe<Scalars['Boolean']['output']>;
|
|
22605
22656
|
id: Scalars['ID']['output'];
|
|
22606
22657
|
};
|
|
22658
|
+
export declare type EcosystemInstallationConfigInput = {
|
|
22659
|
+
overrides: Array<EcosystemInstallationOverrides>;
|
|
22660
|
+
};
|
|
22607
22661
|
export declare enum EcosystemInstallationOverrideKeys {
|
|
22608
22662
|
AllowEgressAnalytics = "ALLOW_EGRESS_ANALYTICS"
|
|
22609
22663
|
}
|
|
22664
|
+
export declare type EcosystemInstallationOverrides = {
|
|
22665
|
+
key: EcosystemInstallationOverrideKeys;
|
|
22666
|
+
value: Scalars['Boolean']['input'];
|
|
22667
|
+
};
|
|
22610
22668
|
export declare enum EcosystemInstallationRecoveryMode {
|
|
22611
22669
|
FreshInstall = "FRESH_INSTALL",
|
|
22612
22670
|
RecoverPreviousInstall = "RECOVER_PREVIOUS_INSTALL"
|
|
@@ -22630,6 +22688,7 @@ export declare type EcosystemMutation = {
|
|
|
22630
22688
|
updateAppHostServiceScopes?: Maybe<UpdateAppHostServiceScopesResponsePayload>;
|
|
22631
22689
|
updateAppOAuthClient: EcosystemUpdateAppOAuthClientResult;
|
|
22632
22690
|
updateAppOwnership?: Maybe<UpdateAppOwnershipResponsePayload>;
|
|
22691
|
+
updateInstallationDetails?: Maybe<UpdateInstallationDetailsResponse>;
|
|
22633
22692
|
updateInstallationRemoteRegion?: Maybe<EcosystemUpdateInstallationRemoteRegionResponse>;
|
|
22634
22693
|
updateUserInstallationRules?: Maybe<UserInstallationRulesPayload>;
|
|
22635
22694
|
};
|
|
@@ -22681,6 +22740,9 @@ export declare type EcosystemMutationUpdateAppOAuthClientArgs = {
|
|
|
22681
22740
|
export declare type EcosystemMutationUpdateAppOwnershipArgs = {
|
|
22682
22741
|
input: UpdateAppOwnershipInput;
|
|
22683
22742
|
};
|
|
22743
|
+
export declare type EcosystemMutationUpdateInstallationDetailsArgs = {
|
|
22744
|
+
input: EcosystemUpdateInstallationDetailsInput;
|
|
22745
|
+
};
|
|
22684
22746
|
export declare type EcosystemMutationUpdateInstallationRemoteRegionArgs = {
|
|
22685
22747
|
input: EcosystemUpdateInstallationRemoteRegionInput;
|
|
22686
22748
|
};
|
|
@@ -22807,6 +22869,10 @@ export declare type EcosystemUpdateAppOAuthClientResult = Payload & {
|
|
|
22807
22869
|
errors?: Maybe<Array<MutationError>>;
|
|
22808
22870
|
success: Scalars['Boolean']['output'];
|
|
22809
22871
|
};
|
|
22872
|
+
export declare type EcosystemUpdateInstallationDetailsInput = {
|
|
22873
|
+
config: EcosystemInstallationConfigInput;
|
|
22874
|
+
id: Scalars['ID']['input'];
|
|
22875
|
+
};
|
|
22810
22876
|
export declare type EcosystemUpdateInstallationRemoteRegionInput = {
|
|
22811
22877
|
allowCleanRegion?: InputMaybe<Scalars['Boolean']['input']>;
|
|
22812
22878
|
installationId: Scalars['ID']['input'];
|
|
@@ -29041,6 +29107,7 @@ export declare type GraphStore = {
|
|
|
29041
29107
|
focusAreaHasProjectBatch?: Maybe<GraphStoreBatchFocusAreaHasProjectConnection>;
|
|
29042
29108
|
focusAreaHasProjectInverse?: Maybe<GraphStoreSimplifiedFocusAreaHasProjectInverseConnection>;
|
|
29043
29109
|
focusAreaHasProjectInverseBatch?: Maybe<GraphStoreBatchFocusAreaHasProjectConnection>;
|
|
29110
|
+
graphDocument3pDocumentInverse?: Maybe<GraphStoreSimplifiedGraphDocument3pDocumentInverseConnection>;
|
|
29044
29111
|
groupCanViewConfluenceSpace?: Maybe<GraphStoreSimplifiedGroupCanViewConfluenceSpaceConnection>;
|
|
29045
29112
|
incidentAssociatedPostIncidentReview?: Maybe<GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewConnection>;
|
|
29046
29113
|
incidentAssociatedPostIncidentReviewBatch?: Maybe<GraphStoreBatchIncidentAssociatedPostIncidentReviewConnection>;
|
|
@@ -29135,6 +29202,7 @@ export declare type GraphStore = {
|
|
|
29135
29202
|
jiraEpicContributesToAtlasGoalInverse?: Maybe<GraphStoreSimplifiedJiraEpicContributesToAtlasGoalInverseConnection>;
|
|
29136
29203
|
jiraEpicContributesToAtlasGoalInverseRelationship?: Maybe<GraphStoreFullJiraEpicContributesToAtlasGoalConnection>;
|
|
29137
29204
|
jiraEpicContributesToAtlasGoalRelationship?: Maybe<GraphStoreFullJiraEpicContributesToAtlasGoalConnection>;
|
|
29205
|
+
jiraIssueToJiraPriorityInverse?: Maybe<GraphStoreSimplifiedJiraIssueToJiraPriorityInverseConnection>;
|
|
29138
29206
|
jiraProjectAssociatedAtlasGoal?: Maybe<GraphStoreSimplifiedJiraProjectAssociatedAtlasGoalConnection>;
|
|
29139
29207
|
jiraProjectAssociatedAtlasGoalInverse?: Maybe<GraphStoreSimplifiedJiraProjectAssociatedAtlasGoalInverseConnection>;
|
|
29140
29208
|
jiraProjectAssociatedAtlasGoalInverseRelationship?: Maybe<GraphStoreFullJiraProjectAssociatedAtlasGoalConnection>;
|
|
@@ -29378,10 +29446,14 @@ export declare type GraphStore = {
|
|
|
29378
29446
|
userCreatedCalendarEventInverse?: Maybe<GraphStoreSimplifiedUserCreatedCalendarEventInverseConnection>;
|
|
29379
29447
|
userCreatedConfluenceBlogpost?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostConnection>;
|
|
29380
29448
|
userCreatedConfluenceBlogpostInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostInverseConnection>;
|
|
29449
|
+
userCreatedConfluenceComment?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceCommentConnection>;
|
|
29450
|
+
userCreatedConfluenceCommentInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceCommentInverseConnection>;
|
|
29381
29451
|
userCreatedConfluenceDatabase?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceDatabaseConnection>;
|
|
29382
29452
|
userCreatedConfluenceDatabaseInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceDatabaseInverseConnection>;
|
|
29383
29453
|
userCreatedConfluencePage?: Maybe<GraphStoreSimplifiedUserCreatedConfluencePageConnection>;
|
|
29384
29454
|
userCreatedConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluencePageInverseConnection>;
|
|
29455
|
+
userCreatedConfluenceSpace?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceSpaceConnection>;
|
|
29456
|
+
userCreatedConfluenceSpaceInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceSpaceInverseConnection>;
|
|
29385
29457
|
userCreatedConfluenceWhiteboard?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceWhiteboardConnection>;
|
|
29386
29458
|
userCreatedConfluenceWhiteboardInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceWhiteboardInverseConnection>;
|
|
29387
29459
|
userCreatedDesign?: Maybe<GraphStoreSimplifiedUserCreatedDesignConnection>;
|
|
@@ -29450,6 +29522,8 @@ export declare type GraphStore = {
|
|
|
29450
29522
|
userUpdatedConfluenceSpaceInverse?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceSpaceInverseConnection>;
|
|
29451
29523
|
userUpdatedConfluenceWhiteboard?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardConnection>;
|
|
29452
29524
|
userUpdatedConfluenceWhiteboardInverse?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardInverseConnection>;
|
|
29525
|
+
userUpdatedGraphDocument?: Maybe<GraphStoreSimplifiedUserUpdatedGraphDocumentConnection>;
|
|
29526
|
+
userUpdatedGraphDocumentInverse?: Maybe<GraphStoreSimplifiedUserUpdatedGraphDocumentInverseConnection>;
|
|
29453
29527
|
userViewedAtlasGoal?: Maybe<GraphStoreSimplifiedUserViewedAtlasGoalConnection>;
|
|
29454
29528
|
userViewedAtlasGoalInverse?: Maybe<GraphStoreSimplifiedUserViewedAtlasGoalInverseConnection>;
|
|
29455
29529
|
userViewedAtlasProject?: Maybe<GraphStoreSimplifiedUserViewedAtlasProjectConnection>;
|
|
@@ -30073,6 +30147,13 @@ export declare type GraphStoreFocusAreaHasProjectInverseBatchArgs = {
|
|
|
30073
30147
|
ids: Array<Scalars['ID']['input']>;
|
|
30074
30148
|
sort?: InputMaybe<GraphStoreFocusAreaHasProjectSortInput>;
|
|
30075
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
|
+
};
|
|
30076
30157
|
export declare type GraphStoreGroupCanViewConfluenceSpaceArgs = {
|
|
30077
30158
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30078
30159
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -30649,6 +30730,13 @@ export declare type GraphStoreJiraEpicContributesToAtlasGoalRelationshipArgs = {
|
|
|
30649
30730
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30650
30731
|
id: Scalars['ID']['input'];
|
|
30651
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
|
+
};
|
|
30652
30740
|
export declare type GraphStoreJiraProjectAssociatedAtlasGoalArgs = {
|
|
30653
30741
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30654
30742
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -32227,6 +32315,20 @@ export declare type GraphStoreUserCreatedConfluenceBlogpostInverseArgs = {
|
|
|
32227
32315
|
id: Scalars['ID']['input'];
|
|
32228
32316
|
sort?: InputMaybe<GraphStoreUserCreatedConfluenceBlogpostSortInput>;
|
|
32229
32317
|
};
|
|
32318
|
+
export declare type GraphStoreUserCreatedConfluenceCommentArgs = {
|
|
32319
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32320
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32321
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32322
|
+
id: Scalars['ID']['input'];
|
|
32323
|
+
sort?: InputMaybe<GraphStoreUserCreatedConfluenceCommentSortInput>;
|
|
32324
|
+
};
|
|
32325
|
+
export declare type GraphStoreUserCreatedConfluenceCommentInverseArgs = {
|
|
32326
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32327
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32328
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32329
|
+
id: Scalars['ID']['input'];
|
|
32330
|
+
sort?: InputMaybe<GraphStoreUserCreatedConfluenceCommentSortInput>;
|
|
32331
|
+
};
|
|
32230
32332
|
export declare type GraphStoreUserCreatedConfluenceDatabaseArgs = {
|
|
32231
32333
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32232
32334
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -32255,6 +32357,20 @@ export declare type GraphStoreUserCreatedConfluencePageInverseArgs = {
|
|
|
32255
32357
|
id: Scalars['ID']['input'];
|
|
32256
32358
|
sort?: InputMaybe<GraphStoreUserCreatedConfluencePageSortInput>;
|
|
32257
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
|
+
};
|
|
32258
32374
|
export declare type GraphStoreUserCreatedConfluenceWhiteboardArgs = {
|
|
32259
32375
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32260
32376
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -32731,6 +32847,20 @@ export declare type GraphStoreUserUpdatedConfluenceWhiteboardInverseArgs = {
|
|
|
32731
32847
|
id: Scalars['ID']['input'];
|
|
32732
32848
|
sort?: InputMaybe<GraphStoreUserUpdatedConfluenceWhiteboardSortInput>;
|
|
32733
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
|
+
};
|
|
32734
32864
|
export declare type GraphStoreUserViewedAtlasGoalArgs = {
|
|
32735
32865
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32736
32866
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -38081,6 +38211,9 @@ export declare enum GraphStoreFullVulnerabilityAssociatedIssueVulnerabilityTypeO
|
|
|
38081
38211
|
Sca = "SCA",
|
|
38082
38212
|
Unknown = "UNKNOWN"
|
|
38083
38213
|
}
|
|
38214
|
+
export declare type GraphStoreGraphDocument3pDocumentSortInput = {
|
|
38215
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
38216
|
+
};
|
|
38084
38217
|
export declare type GraphStoreGroupCanViewConfluenceSpaceSortInput = {
|
|
38085
38218
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
38086
38219
|
};
|
|
@@ -38235,6 +38368,9 @@ export declare type GraphStoreIssueToWhiteboardSortInput = {
|
|
|
38235
38368
|
export declare type GraphStoreJiraEpicContributesToAtlasGoalSortInput = {
|
|
38236
38369
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
38237
38370
|
};
|
|
38371
|
+
export declare type GraphStoreJiraIssueToJiraPrioritySortInput = {
|
|
38372
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
38373
|
+
};
|
|
38238
38374
|
export declare type GraphStoreJiraProjectAssociatedAtlasGoalSortInput = {
|
|
38239
38375
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
38240
38376
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -39866,6 +40002,20 @@ export declare type GraphStoreSimplifiedFocusAreaHasProjectInverseEdge = {
|
|
|
39866
40002
|
};
|
|
39867
40003
|
export declare type GraphStoreSimplifiedFocusAreaHasProjectInverseUnion = MercuryFocusArea;
|
|
39868
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;
|
|
39869
40019
|
export declare type GraphStoreSimplifiedGroupCanViewConfluenceSpaceConnection = HasPageInfo & {
|
|
39870
40020
|
__typename?: 'GraphStoreSimplifiedGroupCanViewConfluenceSpaceConnection';
|
|
39871
40021
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedGroupCanViewConfluenceSpaceEdge>>>;
|
|
@@ -40494,6 +40644,20 @@ export declare type GraphStoreSimplifiedJiraEpicContributesToAtlasGoalInverseEdg
|
|
|
40494
40644
|
};
|
|
40495
40645
|
export declare type GraphStoreSimplifiedJiraEpicContributesToAtlasGoalInverseUnion = JiraIssue;
|
|
40496
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;
|
|
40497
40661
|
export declare type GraphStoreSimplifiedJiraProjectAssociatedAtlasGoalConnection = HasPageInfo & HasTotal & {
|
|
40498
40662
|
__typename?: 'GraphStoreSimplifiedJiraProjectAssociatedAtlasGoalConnection';
|
|
40499
40663
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJiraProjectAssociatedAtlasGoalEdge>>>;
|
|
@@ -42626,6 +42790,34 @@ export declare type GraphStoreSimplifiedUserCreatedConfluenceBlogpostInverseEdge
|
|
|
42626
42790
|
};
|
|
42627
42791
|
export declare type GraphStoreSimplifiedUserCreatedConfluenceBlogpostInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
42628
42792
|
export declare type GraphStoreSimplifiedUserCreatedConfluenceBlogpostUnion = ConfluenceBlogPost;
|
|
42793
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceCommentConnection = HasPageInfo & {
|
|
42794
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceCommentConnection';
|
|
42795
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedConfluenceCommentEdge>>>;
|
|
42796
|
+
pageInfo: PageInfo;
|
|
42797
|
+
};
|
|
42798
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceCommentEdge = {
|
|
42799
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceCommentEdge';
|
|
42800
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42801
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42802
|
+
id: Scalars['ID']['output'];
|
|
42803
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42804
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceCommentUnion>;
|
|
42805
|
+
};
|
|
42806
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceCommentInverseConnection = HasPageInfo & {
|
|
42807
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceCommentInverseConnection';
|
|
42808
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedConfluenceCommentInverseEdge>>>;
|
|
42809
|
+
pageInfo: PageInfo;
|
|
42810
|
+
};
|
|
42811
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceCommentInverseEdge = {
|
|
42812
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceCommentInverseEdge';
|
|
42813
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42814
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42815
|
+
id: Scalars['ID']['output'];
|
|
42816
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42817
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceCommentInverseUnion>;
|
|
42818
|
+
};
|
|
42819
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceCommentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
42820
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceCommentUnion = ConfluenceFooterComment | ConfluenceInlineComment;
|
|
42629
42821
|
export declare type GraphStoreSimplifiedUserCreatedConfluenceDatabaseConnection = HasPageInfo & {
|
|
42630
42822
|
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceDatabaseConnection';
|
|
42631
42823
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedConfluenceDatabaseEdge>>>;
|
|
@@ -42682,6 +42874,34 @@ export declare type GraphStoreSimplifiedUserCreatedConfluencePageInverseEdge = {
|
|
|
42682
42874
|
};
|
|
42683
42875
|
export declare type GraphStoreSimplifiedUserCreatedConfluencePageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
42684
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;
|
|
42685
42905
|
export declare type GraphStoreSimplifiedUserCreatedConfluenceWhiteboardConnection = HasPageInfo & {
|
|
42686
42906
|
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceWhiteboardConnection';
|
|
42687
42907
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedConfluenceWhiteboardEdge>>>;
|
|
@@ -43642,6 +43862,34 @@ export declare type GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardInverseEd
|
|
|
43642
43862
|
};
|
|
43643
43863
|
export declare type GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
43644
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;
|
|
43645
43893
|
export declare type GraphStoreSimplifiedUserViewedAtlasGoalConnection = HasPageInfo & {
|
|
43646
43894
|
__typename?: 'GraphStoreSimplifiedUserViewedAtlasGoalConnection';
|
|
43647
43895
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewedAtlasGoalEdge>>>;
|
|
@@ -44616,12 +44864,18 @@ export declare type GraphStoreUserCreatedCalendarEventSortInput = {
|
|
|
44616
44864
|
export declare type GraphStoreUserCreatedConfluenceBlogpostSortInput = {
|
|
44617
44865
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44618
44866
|
};
|
|
44867
|
+
export declare type GraphStoreUserCreatedConfluenceCommentSortInput = {
|
|
44868
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44869
|
+
};
|
|
44619
44870
|
export declare type GraphStoreUserCreatedConfluenceDatabaseSortInput = {
|
|
44620
44871
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44621
44872
|
};
|
|
44622
44873
|
export declare type GraphStoreUserCreatedConfluencePageSortInput = {
|
|
44623
44874
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44624
44875
|
};
|
|
44876
|
+
export declare type GraphStoreUserCreatedConfluenceSpaceSortInput = {
|
|
44877
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44878
|
+
};
|
|
44625
44879
|
export declare type GraphStoreUserCreatedConfluenceWhiteboardSortInput = {
|
|
44626
44880
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44627
44881
|
};
|
|
@@ -44730,6 +44984,9 @@ export declare type GraphStoreUserUpdatedConfluenceSpaceSortInput = {
|
|
|
44730
44984
|
export declare type GraphStoreUserUpdatedConfluenceWhiteboardSortInput = {
|
|
44731
44985
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44732
44986
|
};
|
|
44987
|
+
export declare type GraphStoreUserUpdatedGraphDocumentSortInput = {
|
|
44988
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44989
|
+
};
|
|
44733
44990
|
export declare type GraphStoreUserViewedAtlasGoalSortInput = {
|
|
44734
44991
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44735
44992
|
};
|
|
@@ -51560,6 +51817,20 @@ export declare type JiraDurationField = JiraIssueField & JiraIssueFieldConfigura
|
|
|
51560
51817
|
export declare type JiraDurationFieldInput = {
|
|
51561
51818
|
originalEstimateField?: InputMaybe<Scalars['String']['input']>;
|
|
51562
51819
|
};
|
|
51820
|
+
export declare type JiraEditCustomFieldInput = {
|
|
51821
|
+
cloudId: Scalars['ID']['input'];
|
|
51822
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
51823
|
+
fieldId: Scalars['String']['input'];
|
|
51824
|
+
name: Scalars['String']['input'];
|
|
51825
|
+
options?: InputMaybe<Array<JiraCustomFieldOptionInput>>;
|
|
51826
|
+
projectId: Scalars['String']['input'];
|
|
51827
|
+
};
|
|
51828
|
+
export declare type JiraEditCustomFieldPayload = Payload & {
|
|
51829
|
+
__typename?: 'JiraEditCustomFieldPayload';
|
|
51830
|
+
errors?: Maybe<Array<MutationError>>;
|
|
51831
|
+
fieldAssociationWithIssueTypes?: Maybe<JiraFieldAssociationWithIssueTypes>;
|
|
51832
|
+
success: Scalars['Boolean']['output'];
|
|
51833
|
+
};
|
|
51563
51834
|
export declare enum JiraEmailMimeType {
|
|
51564
51835
|
Html = "HTML",
|
|
51565
51836
|
Text = "TEXT"
|
|
@@ -54377,6 +54648,7 @@ export declare type JiraJourneyConfiguration = Node & {
|
|
|
54377
54648
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
54378
54649
|
createdBy?: Maybe<User>;
|
|
54379
54650
|
id: Scalars['ID']['output'];
|
|
54651
|
+
journeyItems?: Maybe<Array<JiraJourneyItem>>;
|
|
54380
54652
|
name?: Maybe<Scalars['String']['output']>;
|
|
54381
54653
|
parentIssue?: Maybe<JiraJourneyParentIssue>;
|
|
54382
54654
|
status?: Maybe<JiraJourneyStatus>;
|
|
@@ -54398,6 +54670,11 @@ export declare type JiraJourneyConfigurationEdge = {
|
|
|
54398
54670
|
cursor: Scalars['String']['output'];
|
|
54399
54671
|
node?: Maybe<JiraJourneyConfiguration>;
|
|
54400
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
|
+
};
|
|
54401
54678
|
export declare type JiraJourneyParentIssue = {
|
|
54402
54679
|
__typename?: 'JiraJourneyParentIssue';
|
|
54403
54680
|
project?: Maybe<JiraProject>;
|
|
@@ -54425,6 +54702,18 @@ export declare enum JiraJourneyStatus {
|
|
|
54425
54702
|
Draft = "DRAFT",
|
|
54426
54703
|
Published = "PUBLISHED"
|
|
54427
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
|
+
}
|
|
54428
54717
|
export declare type JiraJourneyTrigger = {
|
|
54429
54718
|
__typename?: 'JiraJourneyTrigger';
|
|
54430
54719
|
type: JiraJourneyTriggerType;
|
|
@@ -54441,6 +54730,20 @@ export declare enum JiraJourneyTriggerType {
|
|
|
54441
54730
|
ParentIssueCreated = "PARENT_ISSUE_CREATED",
|
|
54442
54731
|
WorkdayIntegrationTriggered = "WORKDAY_INTEGRATION_TRIGGERED"
|
|
54443
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
|
+
};
|
|
54444
54747
|
export declare type JiraJourneyWorkdayIntegrationTriggerConfiguration = {
|
|
54445
54748
|
__typename?: 'JiraJourneyWorkdayIntegrationTriggerConfiguration';
|
|
54446
54749
|
ruleId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -54614,6 +54917,7 @@ export declare type JiraJqlField = {
|
|
|
54614
54917
|
description?: Maybe<Scalars['String']['output']>;
|
|
54615
54918
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
54616
54919
|
encodedJqlTerm?: Maybe<Scalars['String']['output']>;
|
|
54920
|
+
fieldId?: Maybe<Scalars['ID']['output']>;
|
|
54617
54921
|
fieldType?: Maybe<JiraFieldType>;
|
|
54618
54922
|
jqlFieldType?: Maybe<JiraJqlFieldType>;
|
|
54619
54923
|
jqlTerm: Scalars['ID']['output'];
|
|
@@ -55585,6 +55889,7 @@ export declare type JiraMutation = {
|
|
|
55585
55889
|
devOps?: Maybe<JiraDevOpsMutation>;
|
|
55586
55890
|
disableJiraJourneyConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
55587
55891
|
duplicateJiraJourneyConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
55892
|
+
editCustomField?: Maybe<JiraEditCustomFieldPayload>;
|
|
55588
55893
|
grantGlobalPermission?: Maybe<JiraGlobalPermissionAddGroupGrantPayload>;
|
|
55589
55894
|
initializeProjectNotificationPreferences?: Maybe<JiraInitializeProjectNotificationPreferencesPayload>;
|
|
55590
55895
|
jiraFilterMutation?: Maybe<JiraFilterMutation>;
|
|
@@ -55887,6 +56192,9 @@ export declare type JiraMutationDuplicateJiraJourneyConfigurationArgs = {
|
|
|
55887
56192
|
cloudId: Scalars['ID']['input'];
|
|
55888
56193
|
input: JiraDuplicateJourneyConfigurationInput;
|
|
55889
56194
|
};
|
|
56195
|
+
export declare type JiraMutationEditCustomFieldArgs = {
|
|
56196
|
+
input: JiraEditCustomFieldInput;
|
|
56197
|
+
};
|
|
55890
56198
|
export declare type JiraMutationGrantGlobalPermissionArgs = {
|
|
55891
56199
|
cloudId: Scalars['ID']['input'];
|
|
55892
56200
|
input: JiraGlobalPermissionAddGroupGrantInput;
|
|
@@ -61268,6 +61576,17 @@ export declare type JiraSetBoardViewCardFieldSelectedPayload = Payload & {
|
|
|
61268
61576
|
errors?: Maybe<Array<MutationError>>;
|
|
61269
61577
|
success: Scalars['Boolean']['output'];
|
|
61270
61578
|
};
|
|
61579
|
+
export declare type JiraSetBoardViewCardOptionStateInput = {
|
|
61580
|
+
enabled: Scalars['Boolean']['input'];
|
|
61581
|
+
id: Scalars['ID']['input'];
|
|
61582
|
+
viewId: Scalars['ID']['input'];
|
|
61583
|
+
};
|
|
61584
|
+
export declare type JiraSetBoardViewCardOptionStatePayload = Payload & {
|
|
61585
|
+
__typename?: 'JiraSetBoardViewCardOptionStatePayload';
|
|
61586
|
+
boardView?: Maybe<JiraBoardView>;
|
|
61587
|
+
errors?: Maybe<Array<MutationError>>;
|
|
61588
|
+
success: Scalars['Boolean']['output'];
|
|
61589
|
+
};
|
|
61271
61590
|
export declare type JiraSetBoardViewColumnStateInput = {
|
|
61272
61591
|
collapsed: Scalars['Boolean']['input'];
|
|
61273
61592
|
columnId: Scalars['ID']['input'];
|
|
@@ -61289,6 +61608,36 @@ export declare type JiraSetBoardViewCompletedIssueSearchCutOffPayload = Payload
|
|
|
61289
61608
|
errors?: Maybe<Array<MutationError>>;
|
|
61290
61609
|
success: Scalars['Boolean']['output'];
|
|
61291
61610
|
};
|
|
61611
|
+
export declare type JiraSetBoardViewFilterInput = {
|
|
61612
|
+
jql: Scalars['String']['input'];
|
|
61613
|
+
viewId: Scalars['ID']['input'];
|
|
61614
|
+
};
|
|
61615
|
+
export declare type JiraSetBoardViewFilterPayload = Payload & {
|
|
61616
|
+
__typename?: 'JiraSetBoardViewFilterPayload';
|
|
61617
|
+
errors?: Maybe<Array<MutationError>>;
|
|
61618
|
+
success: Scalars['Boolean']['output'];
|
|
61619
|
+
view?: Maybe<JiraBoardView>;
|
|
61620
|
+
};
|
|
61621
|
+
export declare type JiraSetBoardViewGroupByInput = {
|
|
61622
|
+
fieldId: Scalars['String']['input'];
|
|
61623
|
+
viewId: Scalars['ID']['input'];
|
|
61624
|
+
};
|
|
61625
|
+
export declare type JiraSetBoardViewGroupByPayload = Payload & {
|
|
61626
|
+
__typename?: 'JiraSetBoardViewGroupByPayload';
|
|
61627
|
+
errors?: Maybe<Array<MutationError>>;
|
|
61628
|
+
success: Scalars['Boolean']['output'];
|
|
61629
|
+
view?: Maybe<JiraBoardView>;
|
|
61630
|
+
};
|
|
61631
|
+
export declare type JiraSetBoardViewWorkflowSelectedInput = {
|
|
61632
|
+
selectedWorkflowId: Scalars['ID']['input'];
|
|
61633
|
+
viewId: Scalars['ID']['input'];
|
|
61634
|
+
};
|
|
61635
|
+
export declare type JiraSetBoardViewWorkflowSelectedPayload = Payload & {
|
|
61636
|
+
__typename?: 'JiraSetBoardViewWorkflowSelectedPayload';
|
|
61637
|
+
boardView?: Maybe<JiraBoardView>;
|
|
61638
|
+
errors?: Maybe<Array<MutationError>>;
|
|
61639
|
+
success: Scalars['Boolean']['output'];
|
|
61640
|
+
};
|
|
61292
61641
|
export declare type JiraSetDefaultNavigationItemInput = {
|
|
61293
61642
|
id: Scalars['ID']['input'];
|
|
61294
61643
|
scopeId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -69360,6 +69709,7 @@ export declare type MercuryQueryApi = {
|
|
|
69360
69709
|
focusAreaTypesByAris?: Maybe<Array<Maybe<MercuryFocusAreaType>>>;
|
|
69361
69710
|
focusAreas?: Maybe<MercuryFocusAreaConnection>;
|
|
69362
69711
|
focusAreasByAris?: Maybe<Array<MercuryFocusArea>>;
|
|
69712
|
+
focusAreasByExternalIds?: Maybe<Array<Maybe<MercuryFocusArea>>>;
|
|
69363
69713
|
forYouFocusAreaActivityHistory?: Maybe<MercuryForYouFocusAreaActivityHistory>;
|
|
69364
69714
|
goalStatusAggregationsForAllFocusAreas?: Maybe<MercuryGoalStatusCount>;
|
|
69365
69715
|
mediaReadToken?: Maybe<MercuryMediaToken>;
|
|
@@ -69432,6 +69782,10 @@ export declare type MercuryQueryApiFocusAreasArgs = {
|
|
|
69432
69782
|
export declare type MercuryQueryApiFocusAreasByArisArgs = {
|
|
69433
69783
|
aris?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
69434
69784
|
};
|
|
69785
|
+
export declare type MercuryQueryApiFocusAreasByExternalIdsArgs = {
|
|
69786
|
+
cloudId: Scalars['ID']['input'];
|
|
69787
|
+
ids: Array<Scalars['String']['input']>;
|
|
69788
|
+
};
|
|
69435
69789
|
export declare type MercuryQueryApiForYouFocusAreaActivityHistoryArgs = {
|
|
69436
69790
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
69437
69791
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -70092,8 +70446,10 @@ export declare type Mutation = {
|
|
|
70092
70446
|
confluence_deleteSubCalendarAllFutureEvents?: Maybe<ConfluenceDeleteSubCalendarAllFutureEventsPayload>;
|
|
70093
70447
|
confluence_deleteSubCalendarEvent?: Maybe<ConfluenceDeleteSubCalendarEventPayload>;
|
|
70094
70448
|
confluence_deleteSubCalendarHiddenEvents?: Maybe<ConfluenceDeleteSubCalendarHiddenEventsPayload>;
|
|
70449
|
+
confluence_deleteSubCalendarPrivateUrl?: Maybe<ConfluenceDeleteSubCalendarPrivateUrlPayload>;
|
|
70095
70450
|
confluence_deleteSubCalendarSingleEvent?: Maybe<ConfluenceDeleteSubCalendarSingleEventPayload>;
|
|
70096
70451
|
confluence_inviteUsers?: Maybe<ConfluenceInviteUserPayload>;
|
|
70452
|
+
confluence_makeSubCalendarPrivateUrl?: Maybe<ConfluenceMakeSubCalendarPrivateUrlPayload>;
|
|
70097
70453
|
confluence_unwatchSubCalendar?: Maybe<ConfluenceUnwatchSubCalendarPayload>;
|
|
70098
70454
|
confluence_updateSubCalendarHiddenEvents?: Maybe<ConfluenceUpdateSubCalendarHiddenEventsPayload>;
|
|
70099
70455
|
confluence_updateTeamPresenceSpaceSettings?: Maybe<ConfluenceUpdateTeamPresenceSpaceSettingsPayload>;
|
|
@@ -70227,8 +70583,12 @@ export declare type Mutation = {
|
|
|
70227
70583
|
jiraOAuthApps?: Maybe<JiraOAuthAppsMutation>;
|
|
70228
70584
|
jira_reorderBoardViewColumn?: Maybe<JiraReorderBoardViewColumnPayload>;
|
|
70229
70585
|
jira_setBoardViewCardFieldSelected?: Maybe<JiraSetBoardViewCardFieldSelectedPayload>;
|
|
70586
|
+
jira_setBoardViewCardOptionState?: Maybe<JiraSetBoardViewCardOptionStatePayload>;
|
|
70230
70587
|
jira_setBoardViewColumnState?: Maybe<JiraSetBoardViewColumnStatePayload>;
|
|
70231
70588
|
jira_setBoardViewCompletedIssueSearchCutOff?: Maybe<JiraSetBoardViewCompletedIssueSearchCutOffPayload>;
|
|
70589
|
+
jira_setBoardViewFilter?: Maybe<JiraSetBoardViewFilterPayload>;
|
|
70590
|
+
jira_setBoardViewGroupBy?: Maybe<JiraSetBoardViewGroupByPayload>;
|
|
70591
|
+
jira_setBoardViewWorkflowSelected?: Maybe<JiraSetBoardViewWorkflowSelectedPayload>;
|
|
70232
70592
|
jira_setViewFilter?: Maybe<JiraSetViewFilterPayload>;
|
|
70233
70593
|
jira_setViewGroupBy?: Maybe<JiraSetViewGroupByPayload>;
|
|
70234
70594
|
jira_updateProjectBackground?: Maybe<JiraProjectUpdateBackgroundMutationPayload>;
|
|
@@ -71015,6 +71375,10 @@ export declare type MutationConfluence_DeleteSubCalendarHiddenEventsArgs = {
|
|
|
71015
71375
|
cloudId: Scalars['ID']['input'];
|
|
71016
71376
|
input: Array<ConfluenceDeleteSubCalendarHiddenEventsInput>;
|
|
71017
71377
|
};
|
|
71378
|
+
export declare type MutationConfluence_DeleteSubCalendarPrivateUrlArgs = {
|
|
71379
|
+
cloudId: Scalars['ID']['input'];
|
|
71380
|
+
input: ConfluenceDeleteSubCalendarPrivateUrlInput;
|
|
71381
|
+
};
|
|
71018
71382
|
export declare type MutationConfluence_DeleteSubCalendarSingleEventArgs = {
|
|
71019
71383
|
cloudId: Scalars['ID']['input'];
|
|
71020
71384
|
input: ConfluenceDeleteSubCalendarSingleEventInput;
|
|
@@ -71023,6 +71387,10 @@ export declare type MutationConfluence_InviteUsersArgs = {
|
|
|
71023
71387
|
cloudId: Scalars['ID']['input'];
|
|
71024
71388
|
input: ConfluenceInviteUserInput;
|
|
71025
71389
|
};
|
|
71390
|
+
export declare type MutationConfluence_MakeSubCalendarPrivateUrlArgs = {
|
|
71391
|
+
cloudId: Scalars['ID']['input'];
|
|
71392
|
+
input: ConfluenceMakeSubCalendarPrivateUrlInput;
|
|
71393
|
+
};
|
|
71026
71394
|
export declare type MutationConfluence_UnwatchSubCalendarArgs = {
|
|
71027
71395
|
cloudId: Scalars['ID']['input'];
|
|
71028
71396
|
input: ConfluenceUnwatchSubCalendarInput;
|
|
@@ -71427,12 +71795,24 @@ export declare type MutationJira_ReorderBoardViewColumnArgs = {
|
|
|
71427
71795
|
export declare type MutationJira_SetBoardViewCardFieldSelectedArgs = {
|
|
71428
71796
|
input: JiraSetBoardViewCardFieldSelectedInput;
|
|
71429
71797
|
};
|
|
71798
|
+
export declare type MutationJira_SetBoardViewCardOptionStateArgs = {
|
|
71799
|
+
input: JiraSetBoardViewCardOptionStateInput;
|
|
71800
|
+
};
|
|
71430
71801
|
export declare type MutationJira_SetBoardViewColumnStateArgs = {
|
|
71431
71802
|
input: JiraSetBoardViewColumnStateInput;
|
|
71432
71803
|
};
|
|
71433
71804
|
export declare type MutationJira_SetBoardViewCompletedIssueSearchCutOffArgs = {
|
|
71434
71805
|
input: JiraSetBoardViewCompletedIssueSearchCutOffInput;
|
|
71435
71806
|
};
|
|
71807
|
+
export declare type MutationJira_SetBoardViewFilterArgs = {
|
|
71808
|
+
input: JiraSetBoardViewFilterInput;
|
|
71809
|
+
};
|
|
71810
|
+
export declare type MutationJira_SetBoardViewGroupByArgs = {
|
|
71811
|
+
input: JiraSetBoardViewGroupByInput;
|
|
71812
|
+
};
|
|
71813
|
+
export declare type MutationJira_SetBoardViewWorkflowSelectedArgs = {
|
|
71814
|
+
input: JiraSetBoardViewWorkflowSelectedInput;
|
|
71815
|
+
};
|
|
71436
71816
|
export declare type MutationJira_SetViewFilterArgs = {
|
|
71437
71817
|
input: JiraSetViewFilterInput;
|
|
71438
71818
|
};
|
|
@@ -74598,6 +74978,7 @@ export declare type Query = {
|
|
|
74598
74978
|
adminReportStatus?: Maybe<ConfluenceAdminReportStatus>;
|
|
74599
74979
|
agentAI_contextPanel?: Maybe<AgentAiContextPanelResult>;
|
|
74600
74980
|
agentAI_summarizeIssue?: Maybe<AgentAiIssueSummaryResult>;
|
|
74981
|
+
agentStudio_agentById?: Maybe<AgentStudioAgentResult>;
|
|
74601
74982
|
allIndividualSpaces?: Maybe<SpaceInfoConnection>;
|
|
74602
74983
|
allTemplates?: Maybe<PaginatedTemplateInfoList>;
|
|
74603
74984
|
allUpdatesFeed?: Maybe<PaginatedAllUpdatesFeed>;
|
|
@@ -74872,6 +75253,7 @@ export declare type Query = {
|
|
|
74872
75253
|
confluence_searchTeamLabels?: Maybe<LabelSearchResults>;
|
|
74873
75254
|
confluence_searchUser?: Maybe<ConfluenceSearchConnection>;
|
|
74874
75255
|
confluence_storage?: Maybe<ConfluenceStorage>;
|
|
75256
|
+
confluence_subCalendarSubscribersCount?: Maybe<ConfluenceSubCalendarSubscribersCount>;
|
|
74875
75257
|
confluence_teamPresence?: Maybe<ConfluenceTeamPresence>;
|
|
74876
75258
|
confluence_teamPresenceSpaceSettings?: Maybe<ConfluenceTeamPresenceSpaceSettings>;
|
|
74877
75259
|
confluence_template?: Maybe<ContentTemplate>;
|
|
@@ -75273,6 +75655,9 @@ export declare type QueryAgentAi_SummarizeIssueArgs = {
|
|
|
75273
75655
|
cloudId: Scalars['ID']['input'];
|
|
75274
75656
|
issueId?: InputMaybe<Scalars['String']['input']>;
|
|
75275
75657
|
};
|
|
75658
|
+
export declare type QueryAgentStudio_AgentByIdArgs = {
|
|
75659
|
+
id: Scalars['ID']['input'];
|
|
75660
|
+
};
|
|
75276
75661
|
export declare type QueryAllIndividualSpacesArgs = {
|
|
75277
75662
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
75278
75663
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -76466,6 +76851,10 @@ export declare type QueryConfluence_SearchUserArgs = {
|
|
|
76466
76851
|
export declare type QueryConfluence_StorageArgs = {
|
|
76467
76852
|
cloudId: Scalars['ID']['input'];
|
|
76468
76853
|
};
|
|
76854
|
+
export declare type QueryConfluence_SubCalendarSubscribersCountArgs = {
|
|
76855
|
+
cloudId: Scalars['ID']['input'];
|
|
76856
|
+
subCalendarId: Scalars['ID']['input'];
|
|
76857
|
+
};
|
|
76469
76858
|
export declare type QueryConfluence_TeamPresenceArgs = {
|
|
76470
76859
|
cloudId: Scalars['ID']['input'];
|
|
76471
76860
|
spaceId: Scalars['Long']['input'];
|
|
@@ -76832,6 +77221,7 @@ export declare type QueryDevai_AutodevRovoAgentsArgs = {
|
|
|
76832
77221
|
cloudId: Scalars['ID']['input'];
|
|
76833
77222
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
76834
77223
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
77224
|
+
templatesFilter?: InputMaybe<DevAiRovoAgentTemplateFilter>;
|
|
76835
77225
|
};
|
|
76836
77226
|
export declare type QueryDeveloperLogAccessArgs = {
|
|
76837
77227
|
appId: Scalars['ID']['input'];
|
|
@@ -77743,6 +78133,7 @@ export declare type QueryTenantArgs = {
|
|
|
77743
78133
|
current?: InputMaybe<Scalars['Boolean']['input']>;
|
|
77744
78134
|
};
|
|
77745
78135
|
export declare type QueryTenantContextsArgs = {
|
|
78136
|
+
activationIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
77746
78137
|
cloudIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
77747
78138
|
hostNames?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
77748
78139
|
};
|
|
@@ -77980,6 +78371,7 @@ export declare enum RadarEntityType {
|
|
|
77980
78371
|
}
|
|
77981
78372
|
export declare type RadarFieldDefinition = Node & {
|
|
77982
78373
|
__typename?: 'RadarFieldDefinition';
|
|
78374
|
+
defaultOrder?: Maybe<Scalars['Int']['output']>;
|
|
77983
78375
|
displayName: Scalars['String']['output'];
|
|
77984
78376
|
entity: RadarEntityType;
|
|
77985
78377
|
filterOptions: RadarFilterOptions;
|
|
@@ -78019,6 +78411,7 @@ export declare type RadarFieldValuesEdge = RadarEdge & {
|
|
|
78019
78411
|
};
|
|
78020
78412
|
export declare enum RadarFilterInputType {
|
|
78021
78413
|
Checkbox = "CHECKBOX",
|
|
78414
|
+
Radio = "RADIO",
|
|
78022
78415
|
Range = "RANGE",
|
|
78023
78416
|
Textfield = "TEXTFIELD"
|
|
78024
78417
|
}
|
|
@@ -78129,7 +78522,7 @@ export declare type RadarStaticStringFilterOptions = RadarFilterOptions & {
|
|
|
78129
78522
|
};
|
|
78130
78523
|
export declare enum RadarStatusAppearance {
|
|
78131
78524
|
Default = "default",
|
|
78132
|
-
|
|
78525
|
+
Inprogress = "inprogress",
|
|
78133
78526
|
Moved = "moved",
|
|
78134
78527
|
New = "new",
|
|
78135
78528
|
Removed = "removed",
|
|
@@ -80620,6 +81013,13 @@ export declare type SecurityWorkspace = {
|
|
|
80620
81013
|
providerName?: Maybe<Scalars['String']['output']>;
|
|
80621
81014
|
url?: Maybe<Scalars['URL']['output']>;
|
|
80622
81015
|
};
|
|
81016
|
+
export declare enum Segment {
|
|
81017
|
+
Enterprise = "ENTERPRISE",
|
|
81018
|
+
Free = "FREE",
|
|
81019
|
+
Premium = "PREMIUM",
|
|
81020
|
+
Standard = "STANDARD",
|
|
81021
|
+
Unknown = "UNKNOWN"
|
|
81022
|
+
}
|
|
80623
81023
|
export declare type ServiceProvider = {
|
|
80624
81024
|
__typename?: 'ServiceProvider';
|
|
80625
81025
|
endUserDataTypes?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
@@ -80870,6 +81270,7 @@ export declare type SettingsMenuItemInput = {
|
|
|
80870
81270
|
};
|
|
80871
81271
|
export declare type SettingsNavigationCustomisation = {
|
|
80872
81272
|
__typename?: 'SettingsNavigationCustomisation';
|
|
81273
|
+
id: Scalars['ID']['output'];
|
|
80873
81274
|
properties?: Maybe<SettingsDisplayPropertyConnection>;
|
|
80874
81275
|
sidebar?: Maybe<SettingsMenuItemConnection>;
|
|
80875
81276
|
};
|
|
@@ -84437,6 +84838,7 @@ export declare type Tenant = {
|
|
|
84437
84838
|
cloudId: Scalars['ID']['output'];
|
|
84438
84839
|
editions?: Maybe<ConfluenceEditions>;
|
|
84439
84840
|
environment: Environment;
|
|
84841
|
+
segment?: Maybe<Segment>;
|
|
84440
84842
|
shard: Scalars['String']['output'];
|
|
84441
84843
|
};
|
|
84442
84844
|
export declare type TenantContext = {
|
|
@@ -85197,6 +85599,7 @@ export declare type TownsquareMutationApi = {
|
|
|
85197
85599
|
editGoalType?: Maybe<TownsquareEditGoalTypePayload>;
|
|
85198
85600
|
setParentGoal?: Maybe<TownsquareSetParentGoalPayload>;
|
|
85199
85601
|
unarchiveGoal?: Maybe<TownsquareArchiveGoalPayload>;
|
|
85602
|
+
watchGoal?: Maybe<TownsquareWatchGoalPayload>;
|
|
85200
85603
|
};
|
|
85201
85604
|
export declare type TownsquareMutationApiArchiveGoalArgs = {
|
|
85202
85605
|
input: TownsquareArchiveGoalInput;
|
|
@@ -85222,6 +85625,9 @@ export declare type TownsquareMutationApiSetParentGoalArgs = {
|
|
|
85222
85625
|
export declare type TownsquareMutationApiUnarchiveGoalArgs = {
|
|
85223
85626
|
input: TownsquareArchiveGoalInput;
|
|
85224
85627
|
};
|
|
85628
|
+
export declare type TownsquareMutationApiWatchGoalArgs = {
|
|
85629
|
+
input: TownsquareWatchGoalInput;
|
|
85630
|
+
};
|
|
85225
85631
|
export declare type TownsquareProject = HasMercuryProjectFields & Node & {
|
|
85226
85632
|
__typename?: 'TownsquareProject';
|
|
85227
85633
|
archived: Scalars['Boolean']['output'];
|
|
@@ -85510,6 +85916,13 @@ export declare type TownsquareUserConnection = {
|
|
|
85510
85916
|
__typename?: 'TownsquareUserConnection';
|
|
85511
85917
|
count: Scalars['Int']['output'];
|
|
85512
85918
|
};
|
|
85919
|
+
export declare type TownsquareWatchGoalInput = {
|
|
85920
|
+
ari: Scalars['String']['input'];
|
|
85921
|
+
};
|
|
85922
|
+
export declare type TownsquareWatchGoalPayload = {
|
|
85923
|
+
__typename?: 'TownsquareWatchGoalPayload';
|
|
85924
|
+
goal?: Maybe<TownsquareGoal>;
|
|
85925
|
+
};
|
|
85513
85926
|
export declare type TownsquareWorkspace = Node & {
|
|
85514
85927
|
__typename?: 'TownsquareWorkspace';
|
|
85515
85928
|
cloudId: Scalars['String']['output'];
|
|
@@ -85847,6 +86260,7 @@ export declare type TrelloBoardUpdated = {
|
|
|
85847
86260
|
__typename?: 'TrelloBoardUpdated';
|
|
85848
86261
|
_deltas?: Maybe<Array<Scalars['String']['output']>>;
|
|
85849
86262
|
closed?: Maybe<Scalars['Boolean']['output']>;
|
|
86263
|
+
customFields?: Maybe<TrelloCustomFieldConnectionUpdated>;
|
|
85850
86264
|
description?: Maybe<TrelloUserGeneratedText>;
|
|
85851
86265
|
enterprise?: Maybe<TrelloEnterprise>;
|
|
85852
86266
|
id?: Maybe<Scalars['ID']['output']>;
|
|
@@ -85855,6 +86269,7 @@ export declare type TrelloBoardUpdated = {
|
|
|
85855
86269
|
members?: Maybe<TrelloBoardMembershipsConnection>;
|
|
85856
86270
|
name?: Maybe<Scalars['String']['output']>;
|
|
85857
86271
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
86272
|
+
onCustomFieldDeleted?: Maybe<Array<TrelloCustomFieldDeleted>>;
|
|
85858
86273
|
onLabelDeleted?: Maybe<Array<TrelloLabelDeleted>>;
|
|
85859
86274
|
prefs?: Maybe<TrelloBoardPrefs>;
|
|
85860
86275
|
premiumFeatures?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -86266,6 +86681,14 @@ export declare type TrelloCustomFieldConnection = {
|
|
|
86266
86681
|
nodes?: Maybe<Array<TrelloCustomField>>;
|
|
86267
86682
|
pageInfo: PageInfo;
|
|
86268
86683
|
};
|
|
86684
|
+
export declare type TrelloCustomFieldConnectionUpdated = {
|
|
86685
|
+
__typename?: 'TrelloCustomFieldConnectionUpdated';
|
|
86686
|
+
edges?: Maybe<Array<TrelloCustomFieldEdgeUpdated>>;
|
|
86687
|
+
};
|
|
86688
|
+
export declare type TrelloCustomFieldDeleted = {
|
|
86689
|
+
__typename?: 'TrelloCustomFieldDeleted';
|
|
86690
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
86691
|
+
};
|
|
86269
86692
|
export declare type TrelloCustomFieldDisplay = {
|
|
86270
86693
|
__typename?: 'TrelloCustomFieldDisplay';
|
|
86271
86694
|
cardFront?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -86275,6 +86698,10 @@ export declare type TrelloCustomFieldEdge = {
|
|
|
86275
86698
|
cursor: Scalars['String']['output'];
|
|
86276
86699
|
node?: Maybe<TrelloCustomField>;
|
|
86277
86700
|
};
|
|
86701
|
+
export declare type TrelloCustomFieldEdgeUpdated = {
|
|
86702
|
+
__typename?: 'TrelloCustomFieldEdgeUpdated';
|
|
86703
|
+
node: TrelloCustomField;
|
|
86704
|
+
};
|
|
86278
86705
|
export declare type TrelloCustomFieldItem = {
|
|
86279
86706
|
__typename?: 'TrelloCustomFieldItem';
|
|
86280
86707
|
customField?: Maybe<TrelloCustomField>;
|
|
@@ -86687,6 +87114,7 @@ export declare type TrelloPinCardPayload = Payload & {
|
|
|
86687
87114
|
export declare type TrelloPlanner = {
|
|
86688
87115
|
__typename?: 'TrelloPlanner';
|
|
86689
87116
|
accounts?: Maybe<TrelloPlannerCalendarAccountConnection>;
|
|
87117
|
+
id: Scalars['ID']['output'];
|
|
86690
87118
|
workspace?: Maybe<TrelloWorkspace>;
|
|
86691
87119
|
};
|
|
86692
87120
|
export declare type TrelloPlannerAccountsArgs = {
|
|
@@ -86736,11 +87164,24 @@ export declare type TrelloPlannerCalendarAccountConnection = {
|
|
|
86736
87164
|
nodes?: Maybe<Array<TrelloPlannerCalendarAccount>>;
|
|
86737
87165
|
pageInfo: PageInfo;
|
|
86738
87166
|
};
|
|
87167
|
+
export declare type TrelloPlannerCalendarAccountConnectionUpdated = {
|
|
87168
|
+
__typename?: 'TrelloPlannerCalendarAccountConnectionUpdated';
|
|
87169
|
+
edges?: Maybe<Array<TrelloPlannerCalendarAccountEdgeUpdated>>;
|
|
87170
|
+
};
|
|
86739
87171
|
export declare type TrelloPlannerCalendarAccountEdge = {
|
|
86740
87172
|
__typename?: 'TrelloPlannerCalendarAccountEdge';
|
|
86741
87173
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
86742
87174
|
node?: Maybe<TrelloPlannerCalendarAccount>;
|
|
86743
87175
|
};
|
|
87176
|
+
export declare type TrelloPlannerCalendarAccountEdgeUpdated = {
|
|
87177
|
+
__typename?: 'TrelloPlannerCalendarAccountEdgeUpdated';
|
|
87178
|
+
node: TrelloPlannerCalendarAccountUpdated;
|
|
87179
|
+
};
|
|
87180
|
+
export declare type TrelloPlannerCalendarAccountUpdated = {
|
|
87181
|
+
__typename?: 'TrelloPlannerCalendarAccountUpdated';
|
|
87182
|
+
enabledCalendars?: Maybe<TrelloPlannerCalendarConnectionUpdated>;
|
|
87183
|
+
id: Scalars['ID']['output'];
|
|
87184
|
+
};
|
|
86744
87185
|
export declare enum TrelloPlannerCalendarColor {
|
|
86745
87186
|
BlueSubtler = "BLUE_SUBTLER",
|
|
86746
87187
|
BlueSubtlest = "BLUE_SUBTLEST",
|
|
@@ -86767,6 +87208,10 @@ export declare type TrelloPlannerCalendarConnection = {
|
|
|
86767
87208
|
pageInfo: PageInfo;
|
|
86768
87209
|
updateCursor?: Maybe<Scalars['String']['output']>;
|
|
86769
87210
|
};
|
|
87211
|
+
export declare type TrelloPlannerCalendarConnectionUpdated = {
|
|
87212
|
+
__typename?: 'TrelloPlannerCalendarConnectionUpdated';
|
|
87213
|
+
edges?: Maybe<Array<TrelloPlannerCalendarEdgeUpdated>>;
|
|
87214
|
+
};
|
|
86770
87215
|
export declare type TrelloPlannerCalendarDeleted = {
|
|
86771
87216
|
__typename?: 'TrelloPlannerCalendarDeleted';
|
|
86772
87217
|
id: Scalars['ID']['output'];
|
|
@@ -86776,6 +87221,10 @@ export declare type TrelloPlannerCalendarEdge = {
|
|
|
86776
87221
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
86777
87222
|
node?: Maybe<TrelloPlannerCalendar>;
|
|
86778
87223
|
};
|
|
87224
|
+
export declare type TrelloPlannerCalendarEdgeUpdated = {
|
|
87225
|
+
__typename?: 'TrelloPlannerCalendarEdgeUpdated';
|
|
87226
|
+
node: TrelloPlannerUpdatedCalendar;
|
|
87227
|
+
};
|
|
86779
87228
|
export declare type TrelloPlannerCalendarEvent = Node & {
|
|
86780
87229
|
__typename?: 'TrelloPlannerCalendarEvent';
|
|
86781
87230
|
allDay?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -86813,6 +87262,10 @@ export declare type TrelloPlannerCalendarEventCardConnection = {
|
|
|
86813
87262
|
nodes?: Maybe<Array<TrelloPlannerCalendarEventCard>>;
|
|
86814
87263
|
pageInfo: PageInfo;
|
|
86815
87264
|
};
|
|
87265
|
+
export declare type TrelloPlannerCalendarEventCardConnectionUpdated = {
|
|
87266
|
+
__typename?: 'TrelloPlannerCalendarEventCardConnectionUpdated';
|
|
87267
|
+
edges?: Maybe<Array<TrelloPlannerCalendarEventCardEdgeUpdated>>;
|
|
87268
|
+
};
|
|
86816
87269
|
export declare type TrelloPlannerCalendarEventCardDeleted = {
|
|
86817
87270
|
__typename?: 'TrelloPlannerCalendarEventCardDeleted';
|
|
86818
87271
|
id: Scalars['ID']['output'];
|
|
@@ -86822,6 +87275,17 @@ export declare type TrelloPlannerCalendarEventCardEdge = {
|
|
|
86822
87275
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
86823
87276
|
node?: Maybe<TrelloPlannerCalendarEventCard>;
|
|
86824
87277
|
};
|
|
87278
|
+
export declare type TrelloPlannerCalendarEventCardEdgeUpdated = {
|
|
87279
|
+
__typename?: 'TrelloPlannerCalendarEventCardEdgeUpdated';
|
|
87280
|
+
node?: Maybe<TrelloPlannerCalendarEventCardUpdated>;
|
|
87281
|
+
};
|
|
87282
|
+
export declare type TrelloPlannerCalendarEventCardUpdated = {
|
|
87283
|
+
__typename?: 'TrelloPlannerCalendarEventCardUpdated';
|
|
87284
|
+
boardId?: Maybe<Scalars['ID']['output']>;
|
|
87285
|
+
cardId?: Maybe<Scalars['ID']['output']>;
|
|
87286
|
+
id: Scalars['ID']['output'];
|
|
87287
|
+
position?: Maybe<Scalars['Float']['output']>;
|
|
87288
|
+
};
|
|
86825
87289
|
export declare type TrelloPlannerCalendarEventConferencing = {
|
|
86826
87290
|
__typename?: 'TrelloPlannerCalendarEventConferencing';
|
|
86827
87291
|
url?: Maybe<Scalars['URL']['output']>;
|
|
@@ -86833,6 +87297,10 @@ export declare type TrelloPlannerCalendarEventConnection = {
|
|
|
86833
87297
|
pageInfo: PageInfo;
|
|
86834
87298
|
updateCursor?: Maybe<Scalars['String']['output']>;
|
|
86835
87299
|
};
|
|
87300
|
+
export declare type TrelloPlannerCalendarEventConnectionUpdated = {
|
|
87301
|
+
__typename?: 'TrelloPlannerCalendarEventConnectionUpdated';
|
|
87302
|
+
edges?: Maybe<Array<TrelloPlannerCalendarEventEdgeUpdated>>;
|
|
87303
|
+
};
|
|
86836
87304
|
export declare type TrelloPlannerCalendarEventDeleted = {
|
|
86837
87305
|
__typename?: 'TrelloPlannerCalendarEventDeleted';
|
|
86838
87306
|
id: Scalars['ID']['output'];
|
|
@@ -86842,6 +87310,10 @@ export declare type TrelloPlannerCalendarEventEdge = {
|
|
|
86842
87310
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
86843
87311
|
node?: Maybe<TrelloPlannerCalendarEvent>;
|
|
86844
87312
|
};
|
|
87313
|
+
export declare type TrelloPlannerCalendarEventEdgeUpdated = {
|
|
87314
|
+
__typename?: 'TrelloPlannerCalendarEventEdgeUpdated';
|
|
87315
|
+
node?: Maybe<TrelloPlannerCalendarEventUpdated>;
|
|
87316
|
+
};
|
|
86845
87317
|
export declare enum TrelloPlannerCalendarEventStatus {
|
|
86846
87318
|
Accepted = "ACCEPTED",
|
|
86847
87319
|
Declined = "DECLINED",
|
|
@@ -86853,6 +87325,12 @@ export declare enum TrelloPlannerCalendarEventType {
|
|
|
86853
87325
|
OutOfOffice = "OUT_OF_OFFICE",
|
|
86854
87326
|
PlannerEvent = "PLANNER_EVENT"
|
|
86855
87327
|
}
|
|
87328
|
+
export declare type TrelloPlannerCalendarEventUpdated = {
|
|
87329
|
+
__typename?: 'TrelloPlannerCalendarEventUpdated';
|
|
87330
|
+
cards?: Maybe<TrelloPlannerCalendarEventCardConnectionUpdated>;
|
|
87331
|
+
id: Scalars['ID']['output'];
|
|
87332
|
+
onPlannerCalendarEventCardDeleted?: Maybe<Array<TrelloPlannerCalendarEventCardDeleted>>;
|
|
87333
|
+
};
|
|
86856
87334
|
export declare enum TrelloPlannerCalendarEventVisibility {
|
|
86857
87335
|
Default = "DEFAULT",
|
|
86858
87336
|
Private = "PRIVATE",
|
|
@@ -86886,6 +87364,15 @@ export declare type TrelloPlannerProviderCalendarEdge = {
|
|
|
86886
87364
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
86887
87365
|
node?: Maybe<TrelloPlannerProviderCalendar>;
|
|
86888
87366
|
};
|
|
87367
|
+
export declare type TrelloPlannerUpdated = {
|
|
87368
|
+
__typename?: 'TrelloPlannerUpdated';
|
|
87369
|
+
accounts?: Maybe<TrelloPlannerCalendarAccountConnectionUpdated>;
|
|
87370
|
+
};
|
|
87371
|
+
export declare type TrelloPlannerUpdatedCalendar = {
|
|
87372
|
+
__typename?: 'TrelloPlannerUpdatedCalendar';
|
|
87373
|
+
events?: Maybe<TrelloPlannerCalendarEventConnectionUpdated>;
|
|
87374
|
+
id: Scalars['ID']['output'];
|
|
87375
|
+
};
|
|
86889
87376
|
export declare type TrelloPowerUp = {
|
|
86890
87377
|
__typename?: 'TrelloPowerUp';
|
|
86891
87378
|
author?: Maybe<Scalars['String']['output']>;
|
|
@@ -87126,6 +87613,7 @@ export declare type TrelloSubscriptionApi = {
|
|
|
87126
87613
|
__typename?: 'TrelloSubscriptionApi';
|
|
87127
87614
|
onBoardUpdated?: Maybe<TrelloBoardUpdated>;
|
|
87128
87615
|
onMemberUpdated?: Maybe<TrelloMemberUpdated>;
|
|
87616
|
+
onWorkspaceUpdated?: Maybe<TrelloWorkspaceUpdated>;
|
|
87129
87617
|
};
|
|
87130
87618
|
export declare type TrelloSubscriptionApiOnBoardUpdatedArgs = {
|
|
87131
87619
|
cardIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
@@ -87134,6 +87622,9 @@ export declare type TrelloSubscriptionApiOnBoardUpdatedArgs = {
|
|
|
87134
87622
|
export declare type TrelloSubscriptionApiOnMemberUpdatedArgs = {
|
|
87135
87623
|
id: Scalars['ID']['input'];
|
|
87136
87624
|
};
|
|
87625
|
+
export declare type TrelloSubscriptionApiOnWorkspaceUpdatedArgs = {
|
|
87626
|
+
id: Scalars['ID']['input'];
|
|
87627
|
+
};
|
|
87137
87628
|
export declare enum TrelloSupportedPlannerProviders {
|
|
87138
87629
|
Google = "GOOGLE"
|
|
87139
87630
|
}
|
|
@@ -87360,6 +87851,12 @@ export declare type TrelloWorkspacePrefs = {
|
|
|
87360
87851
|
export declare enum TrelloWorkspaceTier {
|
|
87361
87852
|
Paid = "PAID"
|
|
87362
87853
|
}
|
|
87854
|
+
export declare type TrelloWorkspaceUpdated = {
|
|
87855
|
+
__typename?: 'TrelloWorkspaceUpdated';
|
|
87856
|
+
_deltas?: Maybe<Array<Scalars['String']['output']>>;
|
|
87857
|
+
id: Scalars['ID']['output'];
|
|
87858
|
+
planner?: Maybe<TrelloPlannerUpdated>;
|
|
87859
|
+
};
|
|
87363
87860
|
export declare type TrustSignal = {
|
|
87364
87861
|
__typename?: 'TrustSignal';
|
|
87365
87862
|
key: Scalars['ID']['output'];
|
|
@@ -88499,6 +88996,12 @@ export declare type UpdateExternalCollaboratorDefaultSpacePayload = Payload & {
|
|
|
88499
88996
|
errors?: Maybe<Array<MutationError>>;
|
|
88500
88997
|
success: Scalars['Boolean']['output'];
|
|
88501
88998
|
};
|
|
88999
|
+
export declare type UpdateInstallationDetailsResponse = {
|
|
89000
|
+
__typename?: 'UpdateInstallationDetailsResponse';
|
|
89001
|
+
errors?: Maybe<Array<MutationError>>;
|
|
89002
|
+
installation?: Maybe<AppInstallation>;
|
|
89003
|
+
success: Scalars['Boolean']['output'];
|
|
89004
|
+
};
|
|
88502
89005
|
export declare type UpdateJiraPlaybookInput = {
|
|
88503
89006
|
filters?: InputMaybe<Array<JiraPlaybookIssueFilterInput>>;
|
|
88504
89007
|
id: Scalars['ID']['input'];
|
|
@@ -89942,6 +90445,7 @@ export declare type WorkSuggestionsByProjectsResponse = {
|
|
|
89942
90445
|
draftPRSuggestions?: Maybe<Array<WorkSuggestionsPullRequestDraftTask>>;
|
|
89943
90446
|
inactivePRSuggestions?: Maybe<Array<WorkSuggestionsPullRequestInactiveTask>>;
|
|
89944
90447
|
issueDueSoonSuggestions?: Maybe<Array<WorkSuggestionsIssueDueSoonTask>>;
|
|
90448
|
+
issueMissingDetailsSuggestions?: Maybe<Array<WorkSuggestionsIssueMissingDetailsTask>>;
|
|
89945
90449
|
recentPullRequests?: Maybe<WorkSuggestionsPullRequestSuggestionsResponse>;
|
|
89946
90450
|
stuckIssueSuggestions?: Maybe<Array<WorkSuggestionsStuckIssueTask>>;
|
|
89947
90451
|
};
|
|
@@ -90051,6 +90555,17 @@ export declare type WorkSuggestionsIssueDueSoonTask = WorkSuggestionsPeriscopeTa
|
|
|
90051
90555
|
title: Scalars['String']['output'];
|
|
90052
90556
|
url: Scalars['String']['output'];
|
|
90053
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
|
+
};
|
|
90054
90569
|
export declare type WorkSuggestionsIssueStatus = {
|
|
90055
90570
|
__typename?: 'WorkSuggestionsIssueStatus';
|
|
90056
90571
|
category?: Maybe<Scalars['String']['output']>;
|
|
@@ -90067,6 +90582,11 @@ export declare type WorkSuggestionsJiraPriority = {
|
|
|
90067
90582
|
name?: Maybe<Scalars['String']['output']>;
|
|
90068
90583
|
sequence?: Maybe<Scalars['Int']['output']>;
|
|
90069
90584
|
};
|
|
90585
|
+
export declare type WorkSuggestionsJiraReporter = {
|
|
90586
|
+
__typename?: 'WorkSuggestionsJiraReporter';
|
|
90587
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
90588
|
+
pictureUrl?: Maybe<Scalars['String']['output']>;
|
|
90589
|
+
};
|
|
90070
90590
|
export declare type WorkSuggestionsMergePrActionInput = {
|
|
90071
90591
|
cloudId: Scalars['ID']['input'];
|
|
90072
90592
|
taskId: Scalars['String']['input'];
|