@forge/cli-shared 6.6.1-next.7 → 6.6.1-next.9
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 +14 -0
- package/out/graphql/graphql-types.d.ts +1170 -84
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +140 -32
- package/out/service/supported-products-service.d.ts +28 -19
- package/out/service/supported-products-service.d.ts.map +1 -1
- package/out/service/supported-products-service.js +89 -76
- package/package.json +2 -2
|
@@ -818,6 +818,10 @@ export declare type AgentStudioConfluenceKnowledgeFilterInput = {
|
|
|
818
818
|
parentFilter?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
819
819
|
spaceFilter?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
820
820
|
};
|
|
821
|
+
export declare type AgentStudioConversationStarterSuggestions = {
|
|
822
|
+
__typename?: 'AgentStudioConversationStarterSuggestions';
|
|
823
|
+
suggestions?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
824
|
+
};
|
|
821
825
|
export declare type AgentStudioCreateAgentInput = {
|
|
822
826
|
actions?: InputMaybe<AgentStudioActionConfigurationInput>;
|
|
823
827
|
agentType: AgentStudioAgentType;
|
|
@@ -865,6 +869,18 @@ export declare type AgentStudioKnowledgeSourceInput = {
|
|
|
865
869
|
filters?: InputMaybe<AgentStudioKnowledgeFiltersInput>;
|
|
866
870
|
source: Scalars['String']['input'];
|
|
867
871
|
};
|
|
872
|
+
export declare type AgentStudioSuggestConversationStartersInput = {
|
|
873
|
+
agentDescription?: InputMaybe<Scalars['String']['input']>;
|
|
874
|
+
agentInstructions?: InputMaybe<Scalars['String']['input']>;
|
|
875
|
+
agentName?: InputMaybe<Scalars['String']['input']>;
|
|
876
|
+
};
|
|
877
|
+
export declare type AgentStudioSuggestConversationStartersResult = AgentStudioConversationStarterSuggestions | QueryError;
|
|
878
|
+
export declare type AgentStudioUpdateAgentActionsPayload = Payload & {
|
|
879
|
+
__typename?: 'AgentStudioUpdateAgentActionsPayload';
|
|
880
|
+
agent?: Maybe<AgentStudioAgent>;
|
|
881
|
+
errors?: Maybe<Array<MutationError>>;
|
|
882
|
+
success: Scalars['Boolean']['output'];
|
|
883
|
+
};
|
|
868
884
|
export declare type AgentStudioUpdateAgentDetailsInput = {
|
|
869
885
|
creatorId?: InputMaybe<Scalars['ID']['input']>;
|
|
870
886
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -877,6 +893,33 @@ export declare type AgentStudioUpdateAgentDetailsPayload = Payload & {
|
|
|
877
893
|
errors?: Maybe<Array<MutationError>>;
|
|
878
894
|
success: Scalars['Boolean']['output'];
|
|
879
895
|
};
|
|
896
|
+
export declare type AgentStudioUpdateConversationStartersInput = {
|
|
897
|
+
conversationStarters?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
898
|
+
};
|
|
899
|
+
export declare type AgentStudioUpdateConversationStartersPayload = Payload & {
|
|
900
|
+
__typename?: 'AgentStudioUpdateConversationStartersPayload';
|
|
901
|
+
agent?: Maybe<AgentStudioAgent>;
|
|
902
|
+
errors?: Maybe<Array<MutationError>>;
|
|
903
|
+
success: Scalars['Boolean']['output'];
|
|
904
|
+
};
|
|
905
|
+
export declare type AiCoreApiVsaReporting = {
|
|
906
|
+
__typename?: 'AiCoreApiVSAReporting';
|
|
907
|
+
projectAri: Scalars['ID']['output'];
|
|
908
|
+
unassistedConversationStatsWithMetaData?: Maybe<AiCoreApiVsaUnassistedConversationStatsWithMetaData>;
|
|
909
|
+
};
|
|
910
|
+
export declare type AiCoreApiVsaReportingResult = AiCoreApiVsaReporting | QueryError;
|
|
911
|
+
export declare type AiCoreApiVsaUnassistedConversationStats = {
|
|
912
|
+
__typename?: 'AiCoreApiVSAUnassistedConversationStats';
|
|
913
|
+
clusterId: Scalars['ID']['output'];
|
|
914
|
+
conversationIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
915
|
+
conversationsCount: Scalars['Int']['output'];
|
|
916
|
+
title: Scalars['String']['output'];
|
|
917
|
+
};
|
|
918
|
+
export declare type AiCoreApiVsaUnassistedConversationStatsWithMetaData = {
|
|
919
|
+
__typename?: 'AiCoreApiVSAUnassistedConversationStatsWithMetaData';
|
|
920
|
+
refreshedUntil?: Maybe<Scalars['DateTime']['output']>;
|
|
921
|
+
unassistedConversationStats?: Maybe<Array<AiCoreApiVsaUnassistedConversationStats>>;
|
|
922
|
+
};
|
|
880
923
|
export declare enum AlertEventStatus {
|
|
881
924
|
Acknowledged = "ACKNOWLEDGED",
|
|
882
925
|
Closed = "CLOSED",
|
|
@@ -3297,7 +3340,15 @@ export declare enum CcpCreateEntitlementExperienceCapabilityErrorReasonCode {
|
|
|
3297
3340
|
MultipleTransactionAccount = "MULTIPLE_TRANSACTION_ACCOUNT",
|
|
3298
3341
|
UsecaseNotImplemented = "USECASE_NOT_IMPLEMENTED"
|
|
3299
3342
|
}
|
|
3343
|
+
export declare type CcpCreateEntitlementExperienceOptions = {
|
|
3344
|
+
confirmationScreen?: InputMaybe<CcpCreateEntitlementExperienceOptionsConfirmationScreen>;
|
|
3345
|
+
};
|
|
3346
|
+
export declare enum CcpCreateEntitlementExperienceOptionsConfirmationScreen {
|
|
3347
|
+
Comparison = "COMPARISON",
|
|
3348
|
+
Default = "DEFAULT"
|
|
3349
|
+
}
|
|
3300
3350
|
export declare type CcpCreateEntitlementInput = {
|
|
3351
|
+
experienceOptions?: InputMaybe<CcpCreateEntitlementExperienceOptions>;
|
|
3301
3352
|
offeringKey: Scalars['ID']['input'];
|
|
3302
3353
|
orderOptions?: InputMaybe<CcpCreateEntitlementOrderOptions>;
|
|
3303
3354
|
relatesToEntitlements?: InputMaybe<Array<CcpCreateEntitlementRelatesTo>>;
|
|
@@ -6997,6 +7048,7 @@ export declare type CompassJqlMetricDefinitionConfiguration = {
|
|
|
6997
7048
|
};
|
|
6998
7049
|
export declare type CompassJqlMetricDefinitionConfigurationInput = {
|
|
6999
7050
|
customizable: Scalars['Boolean']['input'];
|
|
7051
|
+
format?: InputMaybe<Scalars['String']['input']>;
|
|
7000
7052
|
jql: Scalars['String']['input'];
|
|
7001
7053
|
};
|
|
7002
7054
|
export declare type CompassJqlMetricSourceConfiguration = {
|
|
@@ -15295,6 +15347,26 @@ export declare type ConfluencePerson = Person & {
|
|
|
15295
15347
|
userKey?: Maybe<Scalars['String']['output']>;
|
|
15296
15348
|
username?: Maybe<Scalars['String']['output']>;
|
|
15297
15349
|
};
|
|
15350
|
+
export declare type ConfluencePersonConnection = {
|
|
15351
|
+
__typename?: 'ConfluencePersonConnection';
|
|
15352
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
15353
|
+
edges?: Maybe<Array<Maybe<ConfluencePersonEdge>>>;
|
|
15354
|
+
nodes?: Maybe<Array<Maybe<ConfluencePerson>>>;
|
|
15355
|
+
pageInfo?: Maybe<PageInfo>;
|
|
15356
|
+
};
|
|
15357
|
+
export declare type ConfluencePersonEdge = {
|
|
15358
|
+
__typename?: 'ConfluencePersonEdge';
|
|
15359
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
15360
|
+
node?: Maybe<ConfluencePerson>;
|
|
15361
|
+
};
|
|
15362
|
+
export declare type ConfluencePersonWithPermissionsConnection = {
|
|
15363
|
+
__typename?: 'ConfluencePersonWithPermissionsConnection';
|
|
15364
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
15365
|
+
edges?: Maybe<Array<Maybe<ConfluencePersonEdge>>>;
|
|
15366
|
+
links?: Maybe<LinksContextBase>;
|
|
15367
|
+
nodes?: Maybe<Array<Maybe<ConfluencePerson>>>;
|
|
15368
|
+
pageInfo?: Maybe<PageInfo>;
|
|
15369
|
+
};
|
|
15298
15370
|
export declare enum ConfluencePrincipalType {
|
|
15299
15371
|
Group = "GROUP",
|
|
15300
15372
|
User = "USER"
|
|
@@ -16447,12 +16519,8 @@ export declare type ConnectAppScope = {
|
|
|
16447
16519
|
};
|
|
16448
16520
|
export declare type ConnectedDataQuery = {
|
|
16449
16521
|
__typename?: 'ConnectedDataQuery';
|
|
16450
|
-
incidentWithId?: Maybe<JsmIncident>;
|
|
16451
16522
|
services?: Maybe<DevOpsService>;
|
|
16452
16523
|
};
|
|
16453
|
-
export declare type ConnectedDataQueryIncidentWithIdArgs = {
|
|
16454
|
-
id: Scalars['ID']['input'];
|
|
16455
|
-
};
|
|
16456
16524
|
export declare type ConnectedDataQueryServicesArgs = {
|
|
16457
16525
|
cloudId: Scalars['ID']['input'];
|
|
16458
16526
|
id: Scalars['ID']['input'];
|
|
@@ -21172,6 +21240,11 @@ export declare type DevAiGenericMutationErrorExtension = MutationErrorExtension
|
|
|
21172
21240
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
21173
21241
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
21174
21242
|
};
|
|
21243
|
+
export declare type DevAiInvokeAutodevRovoAgentInBulkPayload = Payload & {
|
|
21244
|
+
__typename?: 'DevAiInvokeAutodevRovoAgentInBulkPayload';
|
|
21245
|
+
errors?: Maybe<Array<MutationError>>;
|
|
21246
|
+
success: Scalars['Boolean']['output'];
|
|
21247
|
+
};
|
|
21175
21248
|
export declare type DevAiInvokeAutodevRovoAgentPayload = Payload & {
|
|
21176
21249
|
__typename?: 'DevAiInvokeAutodevRovoAgentPayload';
|
|
21177
21250
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -23206,6 +23279,7 @@ export declare type EcosystemMarketplaceAppVersion = {
|
|
|
23206
23279
|
buildNumber: Scalars['Float']['output'];
|
|
23207
23280
|
editionsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
23208
23281
|
isSupported?: Maybe<Scalars['Boolean']['output']>;
|
|
23282
|
+
paymentModel?: Maybe<EcosystemMarketplacePaymentModel>;
|
|
23209
23283
|
version: Scalars['String']['output'];
|
|
23210
23284
|
};
|
|
23211
23285
|
export declare type EcosystemMarketplaceData = {
|
|
@@ -23215,12 +23289,41 @@ export declare type EcosystemMarketplaceData = {
|
|
|
23215
23289
|
cloudAppId: Scalars['ID']['output'];
|
|
23216
23290
|
forumsUrl?: Maybe<Scalars['String']['output']>;
|
|
23217
23291
|
issueTrackerUrl?: Maybe<Scalars['String']['output']>;
|
|
23292
|
+
listingStatus?: Maybe<EcosystemMarketplaceListingStatus>;
|
|
23218
23293
|
name?: Maybe<Scalars['String']['output']>;
|
|
23294
|
+
partner?: Maybe<EcosystemMarketplacePartner>;
|
|
23219
23295
|
slug?: Maybe<Scalars['String']['output']>;
|
|
23220
23296
|
supportTicketSystemUrl?: Maybe<Scalars['String']['output']>;
|
|
23221
23297
|
versions?: Maybe<EcosystemMarketplaceVersionConnection>;
|
|
23222
23298
|
wikiUrl?: Maybe<Scalars['String']['output']>;
|
|
23223
23299
|
};
|
|
23300
|
+
export declare enum EcosystemMarketplaceListingStatus {
|
|
23301
|
+
Private = "PRIVATE",
|
|
23302
|
+
Public = "PUBLIC",
|
|
23303
|
+
ReadyToLaunch = "READY_TO_LAUNCH",
|
|
23304
|
+
Rejected = "REJECTED",
|
|
23305
|
+
Submitted = "SUBMITTED"
|
|
23306
|
+
}
|
|
23307
|
+
export declare type EcosystemMarketplacePartner = {
|
|
23308
|
+
__typename?: 'EcosystemMarketplacePartner';
|
|
23309
|
+
id: Scalars['ID']['output'];
|
|
23310
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
23311
|
+
support?: Maybe<EcosystemMarketplacePartnerSupport>;
|
|
23312
|
+
};
|
|
23313
|
+
export declare type EcosystemMarketplacePartnerSupport = {
|
|
23314
|
+
__typename?: 'EcosystemMarketplacePartnerSupport';
|
|
23315
|
+
contactDetails?: Maybe<EcosystemMarketplacePartnerSupportContact>;
|
|
23316
|
+
};
|
|
23317
|
+
export declare type EcosystemMarketplacePartnerSupportContact = {
|
|
23318
|
+
__typename?: 'EcosystemMarketplacePartnerSupportContact';
|
|
23319
|
+
emailId?: Maybe<Scalars['String']['output']>;
|
|
23320
|
+
websiteUrl?: Maybe<Scalars['String']['output']>;
|
|
23321
|
+
};
|
|
23322
|
+
export declare enum EcosystemMarketplacePaymentModel {
|
|
23323
|
+
Free = "FREE",
|
|
23324
|
+
PaidViaAtlassian = "PAID_VIA_ATLASSIAN",
|
|
23325
|
+
PaidViaPartner = "PAID_VIA_PARTNER"
|
|
23326
|
+
}
|
|
23224
23327
|
export declare type EcosystemMarketplaceVersionConnection = {
|
|
23225
23328
|
__typename?: 'EcosystemMarketplaceVersionConnection';
|
|
23226
23329
|
edges?: Maybe<Array<EcosystemMarketplaceVersionEdge>>;
|
|
@@ -23961,6 +24064,13 @@ export declare type ExternalCollaboratorFeature = {
|
|
|
23961
24064
|
__typename?: 'ExternalCollaboratorFeature';
|
|
23962
24065
|
isEntitled: Scalars['Boolean']['output'];
|
|
23963
24066
|
};
|
|
24067
|
+
export declare enum ExternalCollaboratorsSortField {
|
|
24068
|
+
Name = "NAME"
|
|
24069
|
+
}
|
|
24070
|
+
export declare type ExternalCollaboratorsSortType = {
|
|
24071
|
+
field?: InputMaybe<ExternalCollaboratorsSortField>;
|
|
24072
|
+
isAscending?: InputMaybe<Scalars['Boolean']['input']>;
|
|
24073
|
+
};
|
|
23964
24074
|
export declare type ExternalComment = Node & {
|
|
23965
24075
|
__typename?: 'ExternalComment';
|
|
23966
24076
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
@@ -27184,7 +27294,6 @@ export declare type GraphJiraIssue = Node & {
|
|
|
27184
27294
|
__typename?: 'GraphJiraIssue';
|
|
27185
27295
|
data?: Maybe<JiraIssue>;
|
|
27186
27296
|
id: Scalars['ID']['output'];
|
|
27187
|
-
incident?: Maybe<JsmIncident>;
|
|
27188
27297
|
};
|
|
27189
27298
|
export declare type GraphJiraIssueConnection = {
|
|
27190
27299
|
__typename?: 'GraphJiraIssueConnection';
|
|
@@ -29745,6 +29854,8 @@ export declare type GraphStore = {
|
|
|
29745
29854
|
atlasGoalHasOwnerInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasOwnerInverseConnection>;
|
|
29746
29855
|
atlasGoalHasSubAtlasGoal?: Maybe<GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalConnection>;
|
|
29747
29856
|
atlasGoalHasSubAtlasGoalInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalInverseConnection>;
|
|
29857
|
+
atlasGoalHasUpdate?: Maybe<GraphStoreSimplifiedAtlasGoalHasUpdateConnection>;
|
|
29858
|
+
atlasGoalHasUpdateInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasUpdateInverseConnection>;
|
|
29748
29859
|
atlasHomeFeed: GraphStoreAtlasHomeQueryConnection;
|
|
29749
29860
|
atlasProjectContributesToAtlasGoal?: Maybe<GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalConnection>;
|
|
29750
29861
|
atlasProjectContributesToAtlasGoalInverse?: Maybe<GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalInverseConnection>;
|
|
@@ -29768,6 +29879,8 @@ export declare type GraphStore = {
|
|
|
29768
29879
|
atlasProjectIsTrackedOnJiraEpicRelationship?: Maybe<GraphStoreFullAtlasProjectIsTrackedOnJiraEpicConnection>;
|
|
29769
29880
|
boardBelongsToProject?: Maybe<GraphStoreSimplifiedBoardBelongsToProjectConnection>;
|
|
29770
29881
|
boardBelongsToProjectInverse?: Maybe<GraphStoreSimplifiedBoardBelongsToProjectInverseConnection>;
|
|
29882
|
+
calendarHasLinkedDocument?: Maybe<GraphStoreSimplifiedCalendarHasLinkedDocumentConnection>;
|
|
29883
|
+
calendarHasLinkedDocumentInverse?: Maybe<GraphStoreSimplifiedCalendarHasLinkedDocumentInverseConnection>;
|
|
29771
29884
|
componentAssociatedDocument?: Maybe<GraphStoreSimplifiedComponentAssociatedDocumentConnection>;
|
|
29772
29885
|
componentAssociatedDocumentInverse?: Maybe<GraphStoreSimplifiedComponentAssociatedDocumentInverseConnection>;
|
|
29773
29886
|
componentAssociatedDocumentInverseRelationship?: Maybe<GraphStoreFullComponentAssociatedDocumentConnection>;
|
|
@@ -29781,8 +29894,12 @@ export declare type GraphStore = {
|
|
|
29781
29894
|
componentLinkedJswIssueInverse?: Maybe<GraphStoreSimplifiedComponentLinkedJswIssueInverseConnection>;
|
|
29782
29895
|
componentLinkedJswIssueInverseRelationship?: Maybe<GraphStoreFullComponentLinkedJswIssueConnection>;
|
|
29783
29896
|
componentLinkedJswIssueRelationship?: Maybe<GraphStoreFullComponentLinkedJswIssueConnection>;
|
|
29897
|
+
confluenceBlogpostHasComment?: Maybe<GraphStoreSimplifiedConfluenceBlogpostHasCommentConnection>;
|
|
29898
|
+
confluenceBlogpostHasCommentInverse?: Maybe<GraphStoreSimplifiedConfluenceBlogpostHasCommentInverseConnection>;
|
|
29784
29899
|
confluenceBlogpostSharedWithUser?: Maybe<GraphStoreSimplifiedConfluenceBlogpostSharedWithUserConnection>;
|
|
29785
29900
|
confluenceBlogpostSharedWithUserInverse?: Maybe<GraphStoreSimplifiedConfluenceBlogpostSharedWithUserInverseConnection>;
|
|
29901
|
+
confluencePageHasComment?: Maybe<GraphStoreSimplifiedConfluencePageHasCommentConnection>;
|
|
29902
|
+
confluencePageHasCommentInverse?: Maybe<GraphStoreSimplifiedConfluencePageHasCommentInverseConnection>;
|
|
29786
29903
|
confluencePageHasConfluenceComment?: Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceCommentConnection>;
|
|
29787
29904
|
confluencePageHasConfluenceCommentInverse?: Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceCommentInverseConnection>;
|
|
29788
29905
|
confluencePageHasConfluenceDatabase?: Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceDatabaseConnection>;
|
|
@@ -29825,6 +29942,8 @@ export declare type GraphStore = {
|
|
|
29825
29942
|
focusAreaHasFocusAreaBatch?: Maybe<GraphStoreBatchFocusAreaHasFocusAreaConnection>;
|
|
29826
29943
|
focusAreaHasFocusAreaInverse?: Maybe<GraphStoreSimplifiedFocusAreaHasFocusAreaInverseConnection>;
|
|
29827
29944
|
focusAreaHasFocusAreaInverseBatch?: Maybe<GraphStoreBatchFocusAreaHasFocusAreaConnection>;
|
|
29945
|
+
focusAreaHasPage?: Maybe<GraphStoreSimplifiedFocusAreaHasPageConnection>;
|
|
29946
|
+
focusAreaHasPageInverse?: Maybe<GraphStoreSimplifiedFocusAreaHasPageInverseConnection>;
|
|
29828
29947
|
focusAreaHasProject?: Maybe<GraphStoreSimplifiedFocusAreaHasProjectConnection>;
|
|
29829
29948
|
focusAreaHasProjectBatch?: Maybe<GraphStoreBatchFocusAreaHasProjectConnection>;
|
|
29830
29949
|
focusAreaHasProjectInverse?: Maybe<GraphStoreSimplifiedFocusAreaHasProjectInverseConnection>;
|
|
@@ -29924,6 +30043,8 @@ export declare type GraphStore = {
|
|
|
29924
30043
|
issueToWhiteboardInverse?: Maybe<GraphStoreSimplifiedIssueToWhiteboardInverseConnection>;
|
|
29925
30044
|
issueToWhiteboardInverseRelationship?: Maybe<GraphStoreFullIssueToWhiteboardConnection>;
|
|
29926
30045
|
issueToWhiteboardRelationship?: Maybe<GraphStoreFullIssueToWhiteboardConnection>;
|
|
30046
|
+
jcsIssueAssociatedSupportEscalation?: Maybe<GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationConnection>;
|
|
30047
|
+
jcsIssueAssociatedSupportEscalationInverse?: Maybe<GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationInverseConnection>;
|
|
29927
30048
|
jiraEpicContributesToAtlasGoal?: Maybe<GraphStoreSimplifiedJiraEpicContributesToAtlasGoalConnection>;
|
|
29928
30049
|
jiraEpicContributesToAtlasGoalInverse?: Maybe<GraphStoreSimplifiedJiraEpicContributesToAtlasGoalInverseConnection>;
|
|
29929
30050
|
jiraEpicContributesToAtlasGoalInverseRelationship?: Maybe<GraphStoreFullJiraEpicContributesToAtlasGoalConnection>;
|
|
@@ -29957,12 +30078,15 @@ export declare type GraphStore = {
|
|
|
29957
30078
|
linkedProjectHasVersionInverse?: Maybe<GraphStoreSimplifiedLinkedProjectHasVersionInverseConnection>;
|
|
29958
30079
|
linkedProjectHasVersionInverseRelationship?: Maybe<GraphStoreFullLinkedProjectHasVersionConnection>;
|
|
29959
30080
|
linkedProjectHasVersionRelationship?: Maybe<GraphStoreFullLinkedProjectHasVersionConnection>;
|
|
30081
|
+
loomVideoSharedWithUser?: Maybe<GraphStoreSimplifiedLoomVideoSharedWithUserConnection>;
|
|
30082
|
+
loomVideoSharedWithUserInverse?: Maybe<GraphStoreSimplifiedLoomVideoSharedWithUserInverseConnection>;
|
|
29960
30083
|
mediaAttachedToContent?: Maybe<GraphStoreSimplifiedMediaAttachedToContentConnection>;
|
|
29961
30084
|
mediaAttachedToContentBatch?: Maybe<GraphStoreBatchMediaAttachedToContentConnection>;
|
|
29962
30085
|
mediaAttachedToContentInverseBatch?: Maybe<GraphStoreBatchMediaAttachedToContentConnection>;
|
|
29963
30086
|
meetingHasMeetingNotesPage?: Maybe<GraphStoreSimplifiedMeetingHasMeetingNotesPageConnection>;
|
|
29964
30087
|
meetingRecordingOwnerHasMeetingNotesFolder?: Maybe<GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderConnection>;
|
|
29965
30088
|
meetingRecordingOwnerHasMeetingNotesFolderInverse?: Maybe<GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderInverseConnection>;
|
|
30089
|
+
meetingRecurrenceHasMeetingRecurrenceNotesPage?: Maybe<GraphStoreSimplifiedMeetingRecurrenceHasMeetingRecurrenceNotesPageConnection>;
|
|
29966
30090
|
onPremProjectHasIssue?: Maybe<GraphStoreSimplifiedOnPremProjectHasIssueConnection>;
|
|
29967
30091
|
onPremProjectHasIssueInverse?: Maybe<GraphStoreSimplifiedOnPremProjectHasIssueInverseConnection>;
|
|
29968
30092
|
operationsContainerImpactedByIncident?: Maybe<GraphStoreSimplifiedOperationsContainerImpactedByIncidentConnection>;
|
|
@@ -30078,11 +30202,15 @@ export declare type GraphStore = {
|
|
|
30078
30202
|
projectHasVersionRelationship?: Maybe<GraphStoreFullProjectHasVersionConnection>;
|
|
30079
30203
|
projectLinkedToCompassComponent?: Maybe<GraphStoreSimplifiedProjectLinkedToCompassComponentConnection>;
|
|
30080
30204
|
projectLinkedToCompassComponentInverse?: Maybe<GraphStoreSimplifiedProjectLinkedToCompassComponentInverseConnection>;
|
|
30205
|
+
pullRequestLinksToService?: Maybe<GraphStoreSimplifiedPullRequestLinksToServiceConnection>;
|
|
30206
|
+
pullRequestLinksToServiceInverse?: Maybe<GraphStoreSimplifiedPullRequestLinksToServiceInverseConnection>;
|
|
30081
30207
|
securityContainerAssociatedToVulnerability?: Maybe<GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityConnection>;
|
|
30082
30208
|
securityContainerAssociatedToVulnerabilityBatch?: Maybe<GraphStoreBatchSecurityContainerAssociatedToVulnerabilityConnection>;
|
|
30083
30209
|
securityContainerAssociatedToVulnerabilityInverseBatch?: Maybe<GraphStoreBatchSecurityContainerAssociatedToVulnerabilityConnection>;
|
|
30084
30210
|
securityContainerAssociatedToVulnerabilityInverseRelationship?: Maybe<GraphStoreFullSecurityContainerAssociatedToVulnerabilityConnection>;
|
|
30085
30211
|
securityContainerAssociatedToVulnerabilityRelationship?: Maybe<GraphStoreFullSecurityContainerAssociatedToVulnerabilityConnection>;
|
|
30212
|
+
serviceAssociatedBranch?: Maybe<GraphStoreSimplifiedServiceAssociatedBranchConnection>;
|
|
30213
|
+
serviceAssociatedBranchInverse?: Maybe<GraphStoreSimplifiedServiceAssociatedBranchInverseConnection>;
|
|
30086
30214
|
serviceAssociatedDeployment?: Maybe<GraphStoreSimplifiedServiceAssociatedDeploymentConnection>;
|
|
30087
30215
|
serviceAssociatedDeploymentInverse?: Maybe<GraphStoreSimplifiedServiceAssociatedDeploymentInverseConnection>;
|
|
30088
30216
|
serviceAssociatedRemoteLink?: Maybe<GraphStoreSimplifiedServiceAssociatedRemoteLinkConnection>;
|
|
@@ -30154,6 +30282,8 @@ export declare type GraphStore = {
|
|
|
30154
30282
|
thirdPartyToGraphRemoteLink?: Maybe<GraphStoreSimplifiedThirdPartyToGraphRemoteLinkConnection>;
|
|
30155
30283
|
userAssignedIncident?: Maybe<GraphStoreSimplifiedUserAssignedIncidentConnection>;
|
|
30156
30284
|
userAssignedIncidentInverse?: Maybe<GraphStoreSimplifiedUserAssignedIncidentInverseConnection>;
|
|
30285
|
+
userAssignedIssue?: Maybe<GraphStoreSimplifiedUserAssignedIssueConnection>;
|
|
30286
|
+
userAssignedIssueInverse?: Maybe<GraphStoreSimplifiedUserAssignedIssueInverseConnection>;
|
|
30157
30287
|
userAssignedPir?: Maybe<GraphStoreSimplifiedUserAssignedPirConnection>;
|
|
30158
30288
|
userAssignedPirInverse?: Maybe<GraphStoreSimplifiedUserAssignedPirInverseConnection>;
|
|
30159
30289
|
userAttendedCalendarEvent?: Maybe<GraphStoreSimplifiedUserAttendedCalendarEventConnection>;
|
|
@@ -30204,6 +30334,8 @@ export declare type GraphStore = {
|
|
|
30204
30334
|
userCreatedLoomVideoInverse?: Maybe<GraphStoreSimplifiedUserCreatedLoomVideoInverseConnection>;
|
|
30205
30335
|
userCreatedMessage?: Maybe<GraphStoreSimplifiedUserCreatedMessageConnection>;
|
|
30206
30336
|
userCreatedMessageInverse?: Maybe<GraphStoreSimplifiedUserCreatedMessageInverseConnection>;
|
|
30337
|
+
userCreatedRelease?: Maybe<GraphStoreSimplifiedUserCreatedReleaseConnection>;
|
|
30338
|
+
userCreatedReleaseInverse?: Maybe<GraphStoreSimplifiedUserCreatedReleaseInverseConnection>;
|
|
30207
30339
|
userCreatedRemoteLink?: Maybe<GraphStoreSimplifiedUserCreatedRemoteLinkConnection>;
|
|
30208
30340
|
userCreatedRemoteLinkInverse?: Maybe<GraphStoreSimplifiedUserCreatedRemoteLinkInverseConnection>;
|
|
30209
30341
|
userCreatedRepository?: Maybe<GraphStoreSimplifiedUserCreatedRepositoryConnection>;
|
|
@@ -30250,6 +30382,8 @@ export declare type GraphStore = {
|
|
|
30250
30382
|
userOwnedRepositoryInverse?: Maybe<GraphStoreSimplifiedUserOwnedRepositoryInverseConnection>;
|
|
30251
30383
|
userOwnsComponent?: Maybe<GraphStoreSimplifiedUserOwnsComponentConnection>;
|
|
30252
30384
|
userOwnsComponentInverse?: Maybe<GraphStoreSimplifiedUserOwnsComponentInverseConnection>;
|
|
30385
|
+
userOwnsFocusArea?: Maybe<GraphStoreSimplifiedUserOwnsFocusAreaConnection>;
|
|
30386
|
+
userOwnsFocusAreaInverse?: Maybe<GraphStoreSimplifiedUserOwnsFocusAreaInverseConnection>;
|
|
30253
30387
|
userReportedIncident?: Maybe<GraphStoreSimplifiedUserReportedIncidentConnection>;
|
|
30254
30388
|
userReportedIncidentInverse?: Maybe<GraphStoreSimplifiedUserReportedIncidentInverseConnection>;
|
|
30255
30389
|
userReportsIssue?: Maybe<GraphStoreSimplifiedUserReportsIssueConnection>;
|
|
@@ -30414,6 +30548,22 @@ export declare type GraphStoreAtlasGoalHasSubAtlasGoalInverseArgs = {
|
|
|
30414
30548
|
id: Scalars['ID']['input'];
|
|
30415
30549
|
sort?: InputMaybe<GraphStoreAtlasGoalHasSubAtlasGoalSortInput>;
|
|
30416
30550
|
};
|
|
30551
|
+
export declare type GraphStoreAtlasGoalHasUpdateArgs = {
|
|
30552
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30553
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30554
|
+
filter?: InputMaybe<GraphStoreAtlasGoalHasUpdateFilterInput>;
|
|
30555
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30556
|
+
id: Scalars['ID']['input'];
|
|
30557
|
+
sort?: InputMaybe<GraphStoreAtlasGoalHasUpdateSortInput>;
|
|
30558
|
+
};
|
|
30559
|
+
export declare type GraphStoreAtlasGoalHasUpdateInverseArgs = {
|
|
30560
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30561
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30562
|
+
filter?: InputMaybe<GraphStoreAtlasGoalHasUpdateFilterInput>;
|
|
30563
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30564
|
+
id: Scalars['ID']['input'];
|
|
30565
|
+
sort?: InputMaybe<GraphStoreAtlasGoalHasUpdateSortInput>;
|
|
30566
|
+
};
|
|
30417
30567
|
export declare type GraphStoreAtlasHomeFeedArgs = {
|
|
30418
30568
|
container_ids: Array<Scalars['ID']['input']>;
|
|
30419
30569
|
ranking_criteria?: InputMaybe<GraphStoreAtlasHomeRankingCriteria>;
|
|
@@ -30501,6 +30651,7 @@ export declare type GraphStoreAtlasProjectHasOwnerInverseArgs = {
|
|
|
30501
30651
|
export declare type GraphStoreAtlasProjectHasUpdateArgs = {
|
|
30502
30652
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30503
30653
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30654
|
+
filter?: InputMaybe<GraphStoreAtlasProjectHasUpdateFilterInput>;
|
|
30504
30655
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30505
30656
|
id: Scalars['ID']['input'];
|
|
30506
30657
|
sort?: InputMaybe<GraphStoreAtlasProjectHasUpdateSortInput>;
|
|
@@ -30508,6 +30659,7 @@ export declare type GraphStoreAtlasProjectHasUpdateArgs = {
|
|
|
30508
30659
|
export declare type GraphStoreAtlasProjectHasUpdateInverseArgs = {
|
|
30509
30660
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30510
30661
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30662
|
+
filter?: InputMaybe<GraphStoreAtlasProjectHasUpdateFilterInput>;
|
|
30511
30663
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30512
30664
|
id: Scalars['ID']['input'];
|
|
30513
30665
|
sort?: InputMaybe<GraphStoreAtlasProjectHasUpdateSortInput>;
|
|
@@ -30564,6 +30716,20 @@ export declare type GraphStoreBoardBelongsToProjectInverseArgs = {
|
|
|
30564
30716
|
id: Scalars['ID']['input'];
|
|
30565
30717
|
sort?: InputMaybe<GraphStoreBoardBelongsToProjectSortInput>;
|
|
30566
30718
|
};
|
|
30719
|
+
export declare type GraphStoreCalendarHasLinkedDocumentArgs = {
|
|
30720
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30721
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30722
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30723
|
+
id: Scalars['ID']['input'];
|
|
30724
|
+
sort?: InputMaybe<GraphStoreCalendarHasLinkedDocumentSortInput>;
|
|
30725
|
+
};
|
|
30726
|
+
export declare type GraphStoreCalendarHasLinkedDocumentInverseArgs = {
|
|
30727
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30728
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30729
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30730
|
+
id: Scalars['ID']['input'];
|
|
30731
|
+
sort?: InputMaybe<GraphStoreCalendarHasLinkedDocumentSortInput>;
|
|
30732
|
+
};
|
|
30567
30733
|
export declare type GraphStoreComponentAssociatedDocumentArgs = {
|
|
30568
30734
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30569
30735
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -30643,6 +30809,20 @@ export declare type GraphStoreComponentLinkedJswIssueRelationshipArgs = {
|
|
|
30643
30809
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30644
30810
|
id: Scalars['ID']['input'];
|
|
30645
30811
|
};
|
|
30812
|
+
export declare type GraphStoreConfluenceBlogpostHasCommentArgs = {
|
|
30813
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30814
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30815
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30816
|
+
id: Scalars['ID']['input'];
|
|
30817
|
+
sort?: InputMaybe<GraphStoreConfluenceBlogpostHasCommentSortInput>;
|
|
30818
|
+
};
|
|
30819
|
+
export declare type GraphStoreConfluenceBlogpostHasCommentInverseArgs = {
|
|
30820
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30821
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30822
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30823
|
+
id: Scalars['ID']['input'];
|
|
30824
|
+
sort?: InputMaybe<GraphStoreConfluenceBlogpostHasCommentSortInput>;
|
|
30825
|
+
};
|
|
30646
30826
|
export declare type GraphStoreConfluenceBlogpostSharedWithUserArgs = {
|
|
30647
30827
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30648
30828
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -30657,6 +30837,20 @@ export declare type GraphStoreConfluenceBlogpostSharedWithUserInverseArgs = {
|
|
|
30657
30837
|
id: Scalars['ID']['input'];
|
|
30658
30838
|
sort?: InputMaybe<GraphStoreConfluenceBlogpostSharedWithUserSortInput>;
|
|
30659
30839
|
};
|
|
30840
|
+
export declare type GraphStoreConfluencePageHasCommentArgs = {
|
|
30841
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30842
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30843
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30844
|
+
id: Scalars['ID']['input'];
|
|
30845
|
+
sort?: InputMaybe<GraphStoreConfluencePageHasCommentSortInput>;
|
|
30846
|
+
};
|
|
30847
|
+
export declare type GraphStoreConfluencePageHasCommentInverseArgs = {
|
|
30848
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30849
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30850
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30851
|
+
id: Scalars['ID']['input'];
|
|
30852
|
+
sort?: InputMaybe<GraphStoreConfluencePageHasCommentSortInput>;
|
|
30853
|
+
};
|
|
30660
30854
|
export declare type GraphStoreConfluencePageHasConfluenceCommentArgs = {
|
|
30661
30855
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30662
30856
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -30937,6 +31131,20 @@ export declare type GraphStoreFocusAreaHasFocusAreaInverseBatchArgs = {
|
|
|
30937
31131
|
ids: Array<Scalars['ID']['input']>;
|
|
30938
31132
|
sort?: InputMaybe<GraphStoreFocusAreaHasFocusAreaSortInput>;
|
|
30939
31133
|
};
|
|
31134
|
+
export declare type GraphStoreFocusAreaHasPageArgs = {
|
|
31135
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31136
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31137
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31138
|
+
id: Scalars['ID']['input'];
|
|
31139
|
+
sort?: InputMaybe<GraphStoreFocusAreaHasPageSortInput>;
|
|
31140
|
+
};
|
|
31141
|
+
export declare type GraphStoreFocusAreaHasPageInverseArgs = {
|
|
31142
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31143
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31144
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31145
|
+
id: Scalars['ID']['input'];
|
|
31146
|
+
sort?: InputMaybe<GraphStoreFocusAreaHasPageSortInput>;
|
|
31147
|
+
};
|
|
30940
31148
|
export declare type GraphStoreFocusAreaHasProjectArgs = {
|
|
30941
31149
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30942
31150
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31550,6 +31758,22 @@ export declare type GraphStoreIssueToWhiteboardRelationshipArgs = {
|
|
|
31550
31758
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31551
31759
|
id: Scalars['ID']['input'];
|
|
31552
31760
|
};
|
|
31761
|
+
export declare type GraphStoreJcsIssueAssociatedSupportEscalationArgs = {
|
|
31762
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31763
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31764
|
+
filter?: InputMaybe<GraphStoreJcsIssueAssociatedSupportEscalationFilterInput>;
|
|
31765
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31766
|
+
id: Scalars['ID']['input'];
|
|
31767
|
+
sort?: InputMaybe<GraphStoreJcsIssueAssociatedSupportEscalationSortInput>;
|
|
31768
|
+
};
|
|
31769
|
+
export declare type GraphStoreJcsIssueAssociatedSupportEscalationInverseArgs = {
|
|
31770
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31771
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31772
|
+
filter?: InputMaybe<GraphStoreJcsIssueAssociatedSupportEscalationFilterInput>;
|
|
31773
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31774
|
+
id: Scalars['ID']['input'];
|
|
31775
|
+
sort?: InputMaybe<GraphStoreJcsIssueAssociatedSupportEscalationSortInput>;
|
|
31776
|
+
};
|
|
31553
31777
|
export declare type GraphStoreJiraEpicContributesToAtlasGoalArgs = {
|
|
31554
31778
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31555
31779
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31757,6 +31981,20 @@ export declare type GraphStoreLinkedProjectHasVersionRelationshipArgs = {
|
|
|
31757
31981
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31758
31982
|
id: Scalars['ID']['input'];
|
|
31759
31983
|
};
|
|
31984
|
+
export declare type GraphStoreLoomVideoSharedWithUserArgs = {
|
|
31985
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31986
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31987
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31988
|
+
id: Scalars['ID']['input'];
|
|
31989
|
+
sort?: InputMaybe<GraphStoreLoomVideoSharedWithUserSortInput>;
|
|
31990
|
+
};
|
|
31991
|
+
export declare type GraphStoreLoomVideoSharedWithUserInverseArgs = {
|
|
31992
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31993
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31994
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31995
|
+
id: Scalars['ID']['input'];
|
|
31996
|
+
sort?: InputMaybe<GraphStoreLoomVideoSharedWithUserSortInput>;
|
|
31997
|
+
};
|
|
31760
31998
|
export declare type GraphStoreMediaAttachedToContentArgs = {
|
|
31761
31999
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31762
32000
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31797,6 +32035,13 @@ export declare type GraphStoreMeetingRecordingOwnerHasMeetingNotesFolderInverseA
|
|
|
31797
32035
|
id: Scalars['ID']['input'];
|
|
31798
32036
|
sort?: InputMaybe<GraphStoreMeetingRecordingOwnerHasMeetingNotesFolderSortInput>;
|
|
31799
32037
|
};
|
|
32038
|
+
export declare type GraphStoreMeetingRecurrenceHasMeetingRecurrenceNotesPageArgs = {
|
|
32039
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32040
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32041
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32042
|
+
id: Scalars['ID']['input'];
|
|
32043
|
+
sort?: InputMaybe<GraphStoreMeetingRecurrenceHasMeetingRecurrenceNotesPageSortInput>;
|
|
32044
|
+
};
|
|
31800
32045
|
export declare type GraphStoreOnPremProjectHasIssueArgs = {
|
|
31801
32046
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31802
32047
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -32534,6 +32779,20 @@ export declare type GraphStoreProjectLinkedToCompassComponentInverseArgs = {
|
|
|
32534
32779
|
id: Scalars['ID']['input'];
|
|
32535
32780
|
sort?: InputMaybe<GraphStoreProjectLinkedToCompassComponentSortInput>;
|
|
32536
32781
|
};
|
|
32782
|
+
export declare type GraphStorePullRequestLinksToServiceArgs = {
|
|
32783
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32784
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32785
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32786
|
+
id: Scalars['ID']['input'];
|
|
32787
|
+
sort?: InputMaybe<GraphStorePullRequestLinksToServiceSortInput>;
|
|
32788
|
+
};
|
|
32789
|
+
export declare type GraphStorePullRequestLinksToServiceInverseArgs = {
|
|
32790
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32791
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32792
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32793
|
+
id: Scalars['ID']['input'];
|
|
32794
|
+
sort?: InputMaybe<GraphStorePullRequestLinksToServiceSortInput>;
|
|
32795
|
+
};
|
|
32537
32796
|
export declare type GraphStoreSecurityContainerAssociatedToVulnerabilityArgs = {
|
|
32538
32797
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32539
32798
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -32563,6 +32822,20 @@ export declare type GraphStoreSecurityContainerAssociatedToVulnerabilityRelation
|
|
|
32563
32822
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32564
32823
|
id: Scalars['ID']['input'];
|
|
32565
32824
|
};
|
|
32825
|
+
export declare type GraphStoreServiceAssociatedBranchArgs = {
|
|
32826
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32827
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32828
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32829
|
+
id: Scalars['ID']['input'];
|
|
32830
|
+
sort?: InputMaybe<GraphStoreServiceAssociatedBranchSortInput>;
|
|
32831
|
+
};
|
|
32832
|
+
export declare type GraphStoreServiceAssociatedBranchInverseArgs = {
|
|
32833
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32834
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32835
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32836
|
+
id: Scalars['ID']['input'];
|
|
32837
|
+
sort?: InputMaybe<GraphStoreServiceAssociatedBranchSortInput>;
|
|
32838
|
+
};
|
|
32566
32839
|
export declare type GraphStoreServiceAssociatedDeploymentArgs = {
|
|
32567
32840
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32568
32841
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -33033,6 +33306,20 @@ export declare type GraphStoreUserAssignedIncidentInverseArgs = {
|
|
|
33033
33306
|
id: Scalars['ID']['input'];
|
|
33034
33307
|
sort?: InputMaybe<GraphStoreUserAssignedIncidentSortInput>;
|
|
33035
33308
|
};
|
|
33309
|
+
export declare type GraphStoreUserAssignedIssueArgs = {
|
|
33310
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33311
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33312
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33313
|
+
id: Scalars['ID']['input'];
|
|
33314
|
+
sort?: InputMaybe<GraphStoreUserAssignedIssueSortInput>;
|
|
33315
|
+
};
|
|
33316
|
+
export declare type GraphStoreUserAssignedIssueInverseArgs = {
|
|
33317
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33318
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33319
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33320
|
+
id: Scalars['ID']['input'];
|
|
33321
|
+
sort?: InputMaybe<GraphStoreUserAssignedIssueSortInput>;
|
|
33322
|
+
};
|
|
33036
33323
|
export declare type GraphStoreUserAssignedPirArgs = {
|
|
33037
33324
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33038
33325
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -33385,6 +33672,20 @@ export declare type GraphStoreUserCreatedMessageInverseArgs = {
|
|
|
33385
33672
|
id: Scalars['ID']['input'];
|
|
33386
33673
|
sort?: InputMaybe<GraphStoreUserCreatedMessageSortInput>;
|
|
33387
33674
|
};
|
|
33675
|
+
export declare type GraphStoreUserCreatedReleaseArgs = {
|
|
33676
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33677
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33678
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33679
|
+
id: Scalars['ID']['input'];
|
|
33680
|
+
sort?: InputMaybe<GraphStoreUserCreatedReleaseSortInput>;
|
|
33681
|
+
};
|
|
33682
|
+
export declare type GraphStoreUserCreatedReleaseInverseArgs = {
|
|
33683
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33684
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33685
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33686
|
+
id: Scalars['ID']['input'];
|
|
33687
|
+
sort?: InputMaybe<GraphStoreUserCreatedReleaseSortInput>;
|
|
33688
|
+
};
|
|
33388
33689
|
export declare type GraphStoreUserCreatedRemoteLinkArgs = {
|
|
33389
33690
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33390
33691
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -33709,6 +34010,20 @@ export declare type GraphStoreUserOwnsComponentInverseArgs = {
|
|
|
33709
34010
|
id: Scalars['ID']['input'];
|
|
33710
34011
|
sort?: InputMaybe<GraphStoreUserOwnsComponentSortInput>;
|
|
33711
34012
|
};
|
|
34013
|
+
export declare type GraphStoreUserOwnsFocusAreaArgs = {
|
|
34014
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34015
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34016
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34017
|
+
id: Scalars['ID']['input'];
|
|
34018
|
+
sort?: InputMaybe<GraphStoreUserOwnsFocusAreaSortInput>;
|
|
34019
|
+
};
|
|
34020
|
+
export declare type GraphStoreUserOwnsFocusAreaInverseArgs = {
|
|
34021
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34022
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34023
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34024
|
+
id: Scalars['ID']['input'];
|
|
34025
|
+
sort?: InputMaybe<GraphStoreUserOwnsFocusAreaSortInput>;
|
|
34026
|
+
};
|
|
33712
34027
|
export declare type GraphStoreUserReportedIncidentArgs = {
|
|
33713
34028
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33714
34029
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -34322,8 +34637,109 @@ export declare type GraphStoreAtlasGoalHasOwnerSortInput = {
|
|
|
34322
34637
|
export declare type GraphStoreAtlasGoalHasSubAtlasGoalSortInput = {
|
|
34323
34638
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
34324
34639
|
};
|
|
34325
|
-
export declare type
|
|
34326
|
-
|
|
34640
|
+
export declare type GraphStoreAtlasGoalHasUpdateConditionalFilterInput = {
|
|
34641
|
+
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
34642
|
+
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
34643
|
+
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
34644
|
+
relationship_createdBy?: InputMaybe<GraphStoreAriFilterInput>;
|
|
34645
|
+
relationship_creationDate?: InputMaybe<GraphStoreLongFilterInput>;
|
|
34646
|
+
relationship_lastEditedBy?: InputMaybe<GraphStoreAriFilterInput>;
|
|
34647
|
+
relationship_lastUpdated?: InputMaybe<GraphStoreLongFilterInput>;
|
|
34648
|
+
relationship_newConfidence?: InputMaybe<GraphStoreAtlasGoalHasUpdateNewConfidenceFilterInput>;
|
|
34649
|
+
relationship_newScore?: InputMaybe<GraphStoreLongFilterInput>;
|
|
34650
|
+
relationship_newStatus?: InputMaybe<GraphStoreAtlasGoalHasUpdateNewStatusFilterInput>;
|
|
34651
|
+
relationship_newTargetDate?: InputMaybe<GraphStoreLongFilterInput>;
|
|
34652
|
+
relationship_oldConfidence?: InputMaybe<GraphStoreAtlasGoalHasUpdateOldConfidenceFilterInput>;
|
|
34653
|
+
relationship_oldScore?: InputMaybe<GraphStoreLongFilterInput>;
|
|
34654
|
+
relationship_oldStatus?: InputMaybe<GraphStoreAtlasGoalHasUpdateOldStatusFilterInput>;
|
|
34655
|
+
relationship_oldTargetDate?: InputMaybe<GraphStoreLongFilterInput>;
|
|
34656
|
+
relationship_updateType?: InputMaybe<GraphStoreAtlasGoalHasUpdateUpdateTypeFilterInput>;
|
|
34657
|
+
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
34658
|
+
};
|
|
34659
|
+
export declare type GraphStoreAtlasGoalHasUpdateFilterInput = {
|
|
34660
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreAtlasGoalHasUpdateConditionalFilterInput>>>;
|
|
34661
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreAtlasGoalHasUpdateConditionalFilterInput>>>;
|
|
34662
|
+
};
|
|
34663
|
+
export declare enum GraphStoreAtlasGoalHasUpdateNewConfidence {
|
|
34664
|
+
Day = "DAY",
|
|
34665
|
+
Month = "MONTH",
|
|
34666
|
+
NotSet = "NOT_SET",
|
|
34667
|
+
Quarter = "QUARTER"
|
|
34668
|
+
}
|
|
34669
|
+
export declare type GraphStoreAtlasGoalHasUpdateNewConfidenceFilterInput = {
|
|
34670
|
+
is?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateNewConfidence>>;
|
|
34671
|
+
isNot?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateNewConfidence>>;
|
|
34672
|
+
};
|
|
34673
|
+
export declare enum GraphStoreAtlasGoalHasUpdateNewStatus {
|
|
34674
|
+
AtRisk = "AT_RISK",
|
|
34675
|
+
Cancelled = "CANCELLED",
|
|
34676
|
+
Done = "DONE",
|
|
34677
|
+
NotSet = "NOT_SET",
|
|
34678
|
+
OffTrack = "OFF_TRACK",
|
|
34679
|
+
OnTrack = "ON_TRACK",
|
|
34680
|
+
Paused = "PAUSED",
|
|
34681
|
+
Pending = "PENDING"
|
|
34682
|
+
}
|
|
34683
|
+
export declare type GraphStoreAtlasGoalHasUpdateNewStatusFilterInput = {
|
|
34684
|
+
is?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateNewStatus>>;
|
|
34685
|
+
isNot?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateNewStatus>>;
|
|
34686
|
+
};
|
|
34687
|
+
export declare enum GraphStoreAtlasGoalHasUpdateOldConfidence {
|
|
34688
|
+
Day = "DAY",
|
|
34689
|
+
Month = "MONTH",
|
|
34690
|
+
NotSet = "NOT_SET",
|
|
34691
|
+
Null = "NULL",
|
|
34692
|
+
Quarter = "QUARTER"
|
|
34693
|
+
}
|
|
34694
|
+
export declare type GraphStoreAtlasGoalHasUpdateOldConfidenceFilterInput = {
|
|
34695
|
+
is?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateOldConfidence>>;
|
|
34696
|
+
isNot?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateOldConfidence>>;
|
|
34697
|
+
};
|
|
34698
|
+
export declare enum GraphStoreAtlasGoalHasUpdateOldStatus {
|
|
34699
|
+
AtRisk = "AT_RISK",
|
|
34700
|
+
Cancelled = "CANCELLED",
|
|
34701
|
+
Done = "DONE",
|
|
34702
|
+
NotSet = "NOT_SET",
|
|
34703
|
+
Null = "NULL",
|
|
34704
|
+
OffTrack = "OFF_TRACK",
|
|
34705
|
+
OnTrack = "ON_TRACK",
|
|
34706
|
+
Paused = "PAUSED",
|
|
34707
|
+
Pending = "PENDING"
|
|
34708
|
+
}
|
|
34709
|
+
export declare type GraphStoreAtlasGoalHasUpdateOldStatusFilterInput = {
|
|
34710
|
+
is?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateOldStatus>>;
|
|
34711
|
+
isNot?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateOldStatus>>;
|
|
34712
|
+
};
|
|
34713
|
+
export declare type GraphStoreAtlasGoalHasUpdateSortInput = {
|
|
34714
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
34715
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
34716
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
34717
|
+
relationship_createdBy?: InputMaybe<GraphStoreSortInput>;
|
|
34718
|
+
relationship_creationDate?: InputMaybe<GraphStoreSortInput>;
|
|
34719
|
+
relationship_lastEditedBy?: InputMaybe<GraphStoreSortInput>;
|
|
34720
|
+
relationship_lastUpdated?: InputMaybe<GraphStoreSortInput>;
|
|
34721
|
+
relationship_newConfidence?: InputMaybe<GraphStoreSortInput>;
|
|
34722
|
+
relationship_newScore?: InputMaybe<GraphStoreSortInput>;
|
|
34723
|
+
relationship_newStatus?: InputMaybe<GraphStoreSortInput>;
|
|
34724
|
+
relationship_newTargetDate?: InputMaybe<GraphStoreSortInput>;
|
|
34725
|
+
relationship_oldConfidence?: InputMaybe<GraphStoreSortInput>;
|
|
34726
|
+
relationship_oldScore?: InputMaybe<GraphStoreSortInput>;
|
|
34727
|
+
relationship_oldStatus?: InputMaybe<GraphStoreSortInput>;
|
|
34728
|
+
relationship_oldTargetDate?: InputMaybe<GraphStoreSortInput>;
|
|
34729
|
+
relationship_updateType?: InputMaybe<GraphStoreSortInput>;
|
|
34730
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
34731
|
+
};
|
|
34732
|
+
export declare enum GraphStoreAtlasGoalHasUpdateUpdateType {
|
|
34733
|
+
NotSet = "NOT_SET",
|
|
34734
|
+
System = "SYSTEM",
|
|
34735
|
+
User = "USER"
|
|
34736
|
+
}
|
|
34737
|
+
export declare type GraphStoreAtlasGoalHasUpdateUpdateTypeFilterInput = {
|
|
34738
|
+
is?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateUpdateType>>;
|
|
34739
|
+
isNot?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateUpdateType>>;
|
|
34740
|
+
};
|
|
34741
|
+
export declare type GraphStoreAtlasHomeFeedQueryToMetadataNodeUnion = ConfluencePage | JiraIssue | TeamV2 | TownsquareGoal | TownsquareProject;
|
|
34742
|
+
export declare type GraphStoreAtlasHomeFeedQueryToNodeUnion = ConfluencePage | JiraIssue | TeamV2 | TownsquareGoal | TownsquareProject;
|
|
34327
34743
|
export declare type GraphStoreAtlasHomeQueryConnection = {
|
|
34328
34744
|
__typename?: 'GraphStoreAtlasHomeQueryConnection';
|
|
34329
34745
|
nodes: Array<GraphStoreAtlasHomeQueryNode>;
|
|
@@ -34367,8 +34783,102 @@ export declare type GraphStoreAtlasProjectHasFollowerSortInput = {
|
|
|
34367
34783
|
export declare type GraphStoreAtlasProjectHasOwnerSortInput = {
|
|
34368
34784
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
34369
34785
|
};
|
|
34786
|
+
export declare type GraphStoreAtlasProjectHasUpdateConditionalFilterInput = {
|
|
34787
|
+
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
34788
|
+
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
34789
|
+
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
34790
|
+
relationship_createdBy?: InputMaybe<GraphStoreAriFilterInput>;
|
|
34791
|
+
relationship_creationDate?: InputMaybe<GraphStoreLongFilterInput>;
|
|
34792
|
+
relationship_lastEditedBy?: InputMaybe<GraphStoreAriFilterInput>;
|
|
34793
|
+
relationship_lastUpdated?: InputMaybe<GraphStoreLongFilterInput>;
|
|
34794
|
+
relationship_newConfidence?: InputMaybe<GraphStoreAtlasProjectHasUpdateNewConfidenceFilterInput>;
|
|
34795
|
+
relationship_newStatus?: InputMaybe<GraphStoreAtlasProjectHasUpdateNewStatusFilterInput>;
|
|
34796
|
+
relationship_newTargetDate?: InputMaybe<GraphStoreLongFilterInput>;
|
|
34797
|
+
relationship_oldConfidence?: InputMaybe<GraphStoreAtlasProjectHasUpdateOldConfidenceFilterInput>;
|
|
34798
|
+
relationship_oldStatus?: InputMaybe<GraphStoreAtlasProjectHasUpdateOldStatusFilterInput>;
|
|
34799
|
+
relationship_oldTargetDate?: InputMaybe<GraphStoreLongFilterInput>;
|
|
34800
|
+
relationship_updateType?: InputMaybe<GraphStoreAtlasProjectHasUpdateUpdateTypeFilterInput>;
|
|
34801
|
+
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
34802
|
+
};
|
|
34803
|
+
export declare type GraphStoreAtlasProjectHasUpdateFilterInput = {
|
|
34804
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreAtlasProjectHasUpdateConditionalFilterInput>>>;
|
|
34805
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreAtlasProjectHasUpdateConditionalFilterInput>>>;
|
|
34806
|
+
};
|
|
34807
|
+
export declare enum GraphStoreAtlasProjectHasUpdateNewConfidence {
|
|
34808
|
+
Day = "DAY",
|
|
34809
|
+
Month = "MONTH",
|
|
34810
|
+
NotSet = "NOT_SET",
|
|
34811
|
+
Quarter = "QUARTER"
|
|
34812
|
+
}
|
|
34813
|
+
export declare type GraphStoreAtlasProjectHasUpdateNewConfidenceFilterInput = {
|
|
34814
|
+
is?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateNewConfidence>>;
|
|
34815
|
+
isNot?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateNewConfidence>>;
|
|
34816
|
+
};
|
|
34817
|
+
export declare enum GraphStoreAtlasProjectHasUpdateNewStatus {
|
|
34818
|
+
AtRisk = "AT_RISK",
|
|
34819
|
+
Cancelled = "CANCELLED",
|
|
34820
|
+
Done = "DONE",
|
|
34821
|
+
NotSet = "NOT_SET",
|
|
34822
|
+
OffTrack = "OFF_TRACK",
|
|
34823
|
+
OnTrack = "ON_TRACK",
|
|
34824
|
+
Paused = "PAUSED",
|
|
34825
|
+
Pending = "PENDING"
|
|
34826
|
+
}
|
|
34827
|
+
export declare type GraphStoreAtlasProjectHasUpdateNewStatusFilterInput = {
|
|
34828
|
+
is?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateNewStatus>>;
|
|
34829
|
+
isNot?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateNewStatus>>;
|
|
34830
|
+
};
|
|
34831
|
+
export declare enum GraphStoreAtlasProjectHasUpdateOldConfidence {
|
|
34832
|
+
Day = "DAY",
|
|
34833
|
+
Month = "MONTH",
|
|
34834
|
+
NotSet = "NOT_SET",
|
|
34835
|
+
Null = "NULL",
|
|
34836
|
+
Quarter = "QUARTER"
|
|
34837
|
+
}
|
|
34838
|
+
export declare type GraphStoreAtlasProjectHasUpdateOldConfidenceFilterInput = {
|
|
34839
|
+
is?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateOldConfidence>>;
|
|
34840
|
+
isNot?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateOldConfidence>>;
|
|
34841
|
+
};
|
|
34842
|
+
export declare enum GraphStoreAtlasProjectHasUpdateOldStatus {
|
|
34843
|
+
AtRisk = "AT_RISK",
|
|
34844
|
+
Cancelled = "CANCELLED",
|
|
34845
|
+
Done = "DONE",
|
|
34846
|
+
NotSet = "NOT_SET",
|
|
34847
|
+
Null = "NULL",
|
|
34848
|
+
OffTrack = "OFF_TRACK",
|
|
34849
|
+
OnTrack = "ON_TRACK",
|
|
34850
|
+
Paused = "PAUSED",
|
|
34851
|
+
Pending = "PENDING"
|
|
34852
|
+
}
|
|
34853
|
+
export declare type GraphStoreAtlasProjectHasUpdateOldStatusFilterInput = {
|
|
34854
|
+
is?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateOldStatus>>;
|
|
34855
|
+
isNot?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateOldStatus>>;
|
|
34856
|
+
};
|
|
34370
34857
|
export declare type GraphStoreAtlasProjectHasUpdateSortInput = {
|
|
34858
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
34859
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
34371
34860
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
34861
|
+
relationship_createdBy?: InputMaybe<GraphStoreSortInput>;
|
|
34862
|
+
relationship_creationDate?: InputMaybe<GraphStoreSortInput>;
|
|
34863
|
+
relationship_lastEditedBy?: InputMaybe<GraphStoreSortInput>;
|
|
34864
|
+
relationship_lastUpdated?: InputMaybe<GraphStoreSortInput>;
|
|
34865
|
+
relationship_newConfidence?: InputMaybe<GraphStoreSortInput>;
|
|
34866
|
+
relationship_newStatus?: InputMaybe<GraphStoreSortInput>;
|
|
34867
|
+
relationship_newTargetDate?: InputMaybe<GraphStoreSortInput>;
|
|
34868
|
+
relationship_oldConfidence?: InputMaybe<GraphStoreSortInput>;
|
|
34869
|
+
relationship_oldStatus?: InputMaybe<GraphStoreSortInput>;
|
|
34870
|
+
relationship_oldTargetDate?: InputMaybe<GraphStoreSortInput>;
|
|
34871
|
+
relationship_updateType?: InputMaybe<GraphStoreSortInput>;
|
|
34872
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
34873
|
+
};
|
|
34874
|
+
export declare enum GraphStoreAtlasProjectHasUpdateUpdateType {
|
|
34875
|
+
NotSet = "NOT_SET",
|
|
34876
|
+
System = "SYSTEM",
|
|
34877
|
+
User = "USER"
|
|
34878
|
+
}
|
|
34879
|
+
export declare type GraphStoreAtlasProjectHasUpdateUpdateTypeFilterInput = {
|
|
34880
|
+
is?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateUpdateType>>;
|
|
34881
|
+
isNot?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateUpdateType>>;
|
|
34372
34882
|
};
|
|
34373
34883
|
export declare type GraphStoreAtlasProjectIsRelatedToAtlasProjectSortInput = {
|
|
34374
34884
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -35034,6 +35544,9 @@ export declare type GraphStoreBoardBelongsToProjectSortInput = {
|
|
|
35034
35544
|
export declare type GraphStoreBooleanFilterInput = {
|
|
35035
35545
|
is?: InputMaybe<Scalars['Boolean']['input']>;
|
|
35036
35546
|
};
|
|
35547
|
+
export declare type GraphStoreCalendarHasLinkedDocumentSortInput = {
|
|
35548
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
35549
|
+
};
|
|
35037
35550
|
export declare type GraphStoreComponentAssociatedDocumentSortInput = {
|
|
35038
35551
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
35039
35552
|
};
|
|
@@ -35049,9 +35562,15 @@ export declare type GraphStoreComponentLinkedJswIssueSortInput = {
|
|
|
35049
35562
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
35050
35563
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
35051
35564
|
};
|
|
35565
|
+
export declare type GraphStoreConfluenceBlogpostHasCommentSortInput = {
|
|
35566
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
35567
|
+
};
|
|
35052
35568
|
export declare type GraphStoreConfluenceBlogpostSharedWithUserSortInput = {
|
|
35053
35569
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
35054
35570
|
};
|
|
35571
|
+
export declare type GraphStoreConfluencePageHasCommentSortInput = {
|
|
35572
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
35573
|
+
};
|
|
35055
35574
|
export declare type GraphStoreConfluencePageHasConfluenceCommentSortInput = {
|
|
35056
35575
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
35057
35576
|
};
|
|
@@ -35181,6 +35700,25 @@ export declare type GraphStoreCreateIssueToWhiteboardRelationshipInput = {
|
|
|
35181
35700
|
to: Scalars['ID']['input'];
|
|
35182
35701
|
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
35183
35702
|
};
|
|
35703
|
+
export declare type GraphStoreCreateJcsIssueAssociatedSupportEscalationInput = {
|
|
35704
|
+
relationships: Array<GraphStoreCreateJcsIssueAssociatedSupportEscalationRelationshipInput>;
|
|
35705
|
+
};
|
|
35706
|
+
export declare type GraphStoreCreateJcsIssueAssociatedSupportEscalationPayload = Payload & {
|
|
35707
|
+
__typename?: 'GraphStoreCreateJcsIssueAssociatedSupportEscalationPayload';
|
|
35708
|
+
errors?: Maybe<Array<MutationError>>;
|
|
35709
|
+
success: Scalars['Boolean']['output'];
|
|
35710
|
+
};
|
|
35711
|
+
export declare type GraphStoreCreateJcsIssueAssociatedSupportEscalationRelationshipInput = {
|
|
35712
|
+
from: Scalars['ID']['input'];
|
|
35713
|
+
relationshipMetadata?: InputMaybe<GraphStoreCreateJcsIssueAssociatedSupportEscalationRelationshipMetadataInput>;
|
|
35714
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
35715
|
+
to: Scalars['ID']['input'];
|
|
35716
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
35717
|
+
};
|
|
35718
|
+
export declare type GraphStoreCreateJcsIssueAssociatedSupportEscalationRelationshipMetadataInput = {
|
|
35719
|
+
SupportEscalationLastUpdated?: InputMaybe<Scalars['Long']['input']>;
|
|
35720
|
+
creatorAri?: InputMaybe<Scalars['String']['input']>;
|
|
35721
|
+
};
|
|
35184
35722
|
export declare type GraphStoreCreateJswProjectAssociatedComponentInput = {
|
|
35185
35723
|
relationships: Array<GraphStoreCreateJswProjectAssociatedComponentRelationshipInput>;
|
|
35186
35724
|
};
|
|
@@ -35500,7 +36038,7 @@ export declare type GraphStoreCypherQueryFromNode = {
|
|
|
35500
36038
|
data?: Maybe<GraphStoreCypherQueryFromNodeUnion>;
|
|
35501
36039
|
id: Scalars['ID']['output'];
|
|
35502
36040
|
};
|
|
35503
|
-
export declare type GraphStoreCypherQueryFromNodeUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | JiraAlignAggProject | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraProject | JiraServiceManagementComment | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareProject | TownsquareProjectUpdate;
|
|
36041
|
+
export declare type GraphStoreCypherQueryFromNodeUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | JiraAlignAggProject | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraProject | JiraServiceManagementComment | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
35504
36042
|
export declare type GraphStoreCypherQueryNode = {
|
|
35505
36043
|
__typename?: 'GraphStoreCypherQueryNode';
|
|
35506
36044
|
from: GraphStoreCypherQueryFromNode;
|
|
@@ -35525,8 +36063,8 @@ export declare type GraphStoreCypherQueryToNode = {
|
|
|
35525
36063
|
data?: Maybe<GraphStoreCypherQueryToNodeUnion>;
|
|
35526
36064
|
id: Scalars['ID']['output'];
|
|
35527
36065
|
};
|
|
35528
|
-
export declare type GraphStoreCypherQueryToNodeUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | JiraAlignAggProject | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraProject | JiraServiceManagementComment | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareProject | TownsquareProjectUpdate;
|
|
35529
|
-
export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | JiraAlignAggProject | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraProject | JiraServiceManagementComment | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareProject | TownsquareProjectUpdate;
|
|
36066
|
+
export declare type GraphStoreCypherQueryToNodeUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | JiraAlignAggProject | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraProject | JiraServiceManagementComment | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
36067
|
+
export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | JiraAlignAggProject | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraProject | JiraServiceManagementComment | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
35530
36068
|
export declare type GraphStoreCypherQueryValueNode = {
|
|
35531
36069
|
__typename?: 'GraphStoreCypherQueryValueNode';
|
|
35532
36070
|
data?: Maybe<GraphStoreCypherQueryValueItemUnion>;
|
|
@@ -35601,6 +36139,19 @@ export declare type GraphStoreDeleteIssueToWhiteboardRelationshipInput = {
|
|
|
35601
36139
|
from: Scalars['ID']['input'];
|
|
35602
36140
|
to: Scalars['ID']['input'];
|
|
35603
36141
|
};
|
|
36142
|
+
export declare type GraphStoreDeleteJcsIssueAssociatedSupportEscalationInput = {
|
|
36143
|
+
relationships: Array<GraphStoreDeleteJcsIssueAssociatedSupportEscalationRelationshipInput>;
|
|
36144
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
36145
|
+
};
|
|
36146
|
+
export declare type GraphStoreDeleteJcsIssueAssociatedSupportEscalationPayload = Payload & {
|
|
36147
|
+
__typename?: 'GraphStoreDeleteJcsIssueAssociatedSupportEscalationPayload';
|
|
36148
|
+
errors?: Maybe<Array<MutationError>>;
|
|
36149
|
+
success: Scalars['Boolean']['output'];
|
|
36150
|
+
};
|
|
36151
|
+
export declare type GraphStoreDeleteJcsIssueAssociatedSupportEscalationRelationshipInput = {
|
|
36152
|
+
from: Scalars['ID']['input'];
|
|
36153
|
+
to: Scalars['ID']['input'];
|
|
36154
|
+
};
|
|
35604
36155
|
export declare type GraphStoreDeleteJswProjectAssociatedComponentInput = {
|
|
35605
36156
|
relationships: Array<GraphStoreDeleteJswProjectAssociatedComponentRelationshipInput>;
|
|
35606
36157
|
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -35871,6 +36422,9 @@ export declare type GraphStoreFocusAreaHasAtlasGoalSortInput = {
|
|
|
35871
36422
|
export declare type GraphStoreFocusAreaHasFocusAreaSortInput = {
|
|
35872
36423
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
35873
36424
|
};
|
|
36425
|
+
export declare type GraphStoreFocusAreaHasPageSortInput = {
|
|
36426
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
36427
|
+
};
|
|
35874
36428
|
export declare type GraphStoreFocusAreaHasProjectSortInput = {
|
|
35875
36429
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
35876
36430
|
};
|
|
@@ -39457,6 +40011,26 @@ export declare type GraphStoreIssueToWhiteboardSortInput = {
|
|
|
39457
40011
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
39458
40012
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
39459
40013
|
};
|
|
40014
|
+
export declare type GraphStoreJcsIssueAssociatedSupportEscalationConditionalFilterInput = {
|
|
40015
|
+
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
40016
|
+
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
40017
|
+
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
40018
|
+
relationship_SupportEscalationLastUpdated?: InputMaybe<GraphStoreLongFilterInput>;
|
|
40019
|
+
relationship_creatorAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
40020
|
+
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
40021
|
+
};
|
|
40022
|
+
export declare type GraphStoreJcsIssueAssociatedSupportEscalationFilterInput = {
|
|
40023
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreJcsIssueAssociatedSupportEscalationConditionalFilterInput>>>;
|
|
40024
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreJcsIssueAssociatedSupportEscalationConditionalFilterInput>>>;
|
|
40025
|
+
};
|
|
40026
|
+
export declare type GraphStoreJcsIssueAssociatedSupportEscalationSortInput = {
|
|
40027
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
40028
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
40029
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40030
|
+
relationship_SupportEscalationLastUpdated?: InputMaybe<GraphStoreSortInput>;
|
|
40031
|
+
relationship_creatorAri?: InputMaybe<GraphStoreSortInput>;
|
|
40032
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
40033
|
+
};
|
|
39460
40034
|
export declare type GraphStoreJiraEpicContributesToAtlasGoalSortInput = {
|
|
39461
40035
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
39462
40036
|
};
|
|
@@ -39557,6 +40131,9 @@ export declare type GraphStoreLongFilterInput = {
|
|
|
39557
40131
|
lessThan?: InputMaybe<Scalars['Long']['input']>;
|
|
39558
40132
|
lessThanOrEqual?: InputMaybe<Scalars['Long']['input']>;
|
|
39559
40133
|
};
|
|
40134
|
+
export declare type GraphStoreLoomVideoSharedWithUserSortInput = {
|
|
40135
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40136
|
+
};
|
|
39560
40137
|
export declare type GraphStoreMediaAttachedToContentSortInput = {
|
|
39561
40138
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
39562
40139
|
};
|
|
@@ -39569,6 +40146,9 @@ export declare type GraphStoreMeetingRecordingOwnerHasMeetingNotesFolderSortInpu
|
|
|
39569
40146
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
39570
40147
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
39571
40148
|
};
|
|
40149
|
+
export declare type GraphStoreMeetingRecurrenceHasMeetingRecurrenceNotesPageSortInput = {
|
|
40150
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40151
|
+
};
|
|
39572
40152
|
export declare type GraphStoreMutation = {
|
|
39573
40153
|
__typename?: 'GraphStoreMutation';
|
|
39574
40154
|
createComponentImpactedByIncident?: Maybe<GraphStoreCreateComponentImpactedByIncidentPayload>;
|
|
@@ -39576,6 +40156,7 @@ export declare type GraphStoreMutation = {
|
|
|
39576
40156
|
createIncidentHasActionItem?: Maybe<GraphStoreCreateIncidentHasActionItemPayload>;
|
|
39577
40157
|
createIncidentLinkedJswIssue?: Maybe<GraphStoreCreateIncidentLinkedJswIssuePayload>;
|
|
39578
40158
|
createIssueToWhiteboard?: Maybe<GraphStoreCreateIssueToWhiteboardPayload>;
|
|
40159
|
+
createJcsIssueAssociatedSupportEscalation?: Maybe<GraphStoreCreateJcsIssueAssociatedSupportEscalationPayload>;
|
|
39579
40160
|
createJswProjectAssociatedComponent?: Maybe<GraphStoreCreateJswProjectAssociatedComponentPayload>;
|
|
39580
40161
|
createMeetingRecordingOwnerHasMeetingNotesFolder?: Maybe<GraphStoreCreateMeetingRecordingOwnerHasMeetingNotesFolderPayload>;
|
|
39581
40162
|
createProjectAssociatedOpsgenieTeam?: Maybe<GraphStoreCreateProjectAssociatedOpsgenieTeamPayload>;
|
|
@@ -39600,6 +40181,7 @@ export declare type GraphStoreMutation = {
|
|
|
39600
40181
|
deleteIncidentHasActionItem?: Maybe<GraphStoreDeleteIncidentHasActionItemPayload>;
|
|
39601
40182
|
deleteIncidentLinkedJswIssue?: Maybe<GraphStoreDeleteIncidentLinkedJswIssuePayload>;
|
|
39602
40183
|
deleteIssueToWhiteboard?: Maybe<GraphStoreDeleteIssueToWhiteboardPayload>;
|
|
40184
|
+
deleteJcsIssueAssociatedSupportEscalation?: Maybe<GraphStoreDeleteJcsIssueAssociatedSupportEscalationPayload>;
|
|
39603
40185
|
deleteJswProjectAssociatedComponent?: Maybe<GraphStoreDeleteJswProjectAssociatedComponentPayload>;
|
|
39604
40186
|
deleteMeetingRecordingOwnerHasMeetingNotesFolder?: Maybe<GraphStoreDeleteMeetingRecordingOwnerHasMeetingNotesFolderPayload>;
|
|
39605
40187
|
deleteProjectAssociatedOpsgenieTeam?: Maybe<GraphStoreDeleteProjectAssociatedOpsgenieTeamPayload>;
|
|
@@ -39635,6 +40217,9 @@ export declare type GraphStoreMutationCreateIncidentLinkedJswIssueArgs = {
|
|
|
39635
40217
|
export declare type GraphStoreMutationCreateIssueToWhiteboardArgs = {
|
|
39636
40218
|
input?: InputMaybe<GraphStoreCreateIssueToWhiteboardInput>;
|
|
39637
40219
|
};
|
|
40220
|
+
export declare type GraphStoreMutationCreateJcsIssueAssociatedSupportEscalationArgs = {
|
|
40221
|
+
input?: InputMaybe<GraphStoreCreateJcsIssueAssociatedSupportEscalationInput>;
|
|
40222
|
+
};
|
|
39638
40223
|
export declare type GraphStoreMutationCreateJswProjectAssociatedComponentArgs = {
|
|
39639
40224
|
input?: InputMaybe<GraphStoreCreateJswProjectAssociatedComponentInput>;
|
|
39640
40225
|
};
|
|
@@ -39707,6 +40292,9 @@ export declare type GraphStoreMutationDeleteIncidentLinkedJswIssueArgs = {
|
|
|
39707
40292
|
export declare type GraphStoreMutationDeleteIssueToWhiteboardArgs = {
|
|
39708
40293
|
input?: InputMaybe<GraphStoreDeleteIssueToWhiteboardInput>;
|
|
39709
40294
|
};
|
|
40295
|
+
export declare type GraphStoreMutationDeleteJcsIssueAssociatedSupportEscalationArgs = {
|
|
40296
|
+
input?: InputMaybe<GraphStoreDeleteJcsIssueAssociatedSupportEscalationInput>;
|
|
40297
|
+
};
|
|
39710
40298
|
export declare type GraphStoreMutationDeleteJswProjectAssociatedComponentArgs = {
|
|
39711
40299
|
input?: InputMaybe<GraphStoreDeleteJswProjectAssociatedComponentInput>;
|
|
39712
40300
|
};
|
|
@@ -40220,9 +40808,15 @@ export declare type GraphStoreProjectLinkedToCompassComponentSortInput = {
|
|
|
40220
40808
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40221
40809
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
40222
40810
|
};
|
|
40811
|
+
export declare type GraphStorePullRequestLinksToServiceSortInput = {
|
|
40812
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40813
|
+
};
|
|
40223
40814
|
export declare type GraphStoreSecurityContainerAssociatedToVulnerabilitySortInput = {
|
|
40224
40815
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40225
40816
|
};
|
|
40817
|
+
export declare type GraphStoreServiceAssociatedBranchSortInput = {
|
|
40818
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40819
|
+
};
|
|
40226
40820
|
export declare type GraphStoreServiceAssociatedDeploymentSortInput = {
|
|
40227
40821
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40228
40822
|
};
|
|
@@ -40413,6 +41007,38 @@ export declare type GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalInverseEdge = {
|
|
|
40413
41007
|
};
|
|
40414
41008
|
export declare type GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalInverseUnion = TownsquareGoal;
|
|
40415
41009
|
export declare type GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalUnion = TownsquareGoal;
|
|
41010
|
+
export declare type GraphStoreSimplifiedAtlasGoalHasUpdateConnection = HasPageInfo & HasTotal & {
|
|
41011
|
+
__typename?: 'GraphStoreSimplifiedAtlasGoalHasUpdateConnection';
|
|
41012
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasGoalHasUpdateEdge>>>;
|
|
41013
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
41014
|
+
pageInfo: PageInfo;
|
|
41015
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
41016
|
+
};
|
|
41017
|
+
export declare type GraphStoreSimplifiedAtlasGoalHasUpdateEdge = {
|
|
41018
|
+
__typename?: 'GraphStoreSimplifiedAtlasGoalHasUpdateEdge';
|
|
41019
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41020
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41021
|
+
id: Scalars['ID']['output'];
|
|
41022
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41023
|
+
node?: Maybe<GraphStoreSimplifiedAtlasGoalHasUpdateUnion>;
|
|
41024
|
+
};
|
|
41025
|
+
export declare type GraphStoreSimplifiedAtlasGoalHasUpdateInverseConnection = HasPageInfo & HasTotal & {
|
|
41026
|
+
__typename?: 'GraphStoreSimplifiedAtlasGoalHasUpdateInverseConnection';
|
|
41027
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasGoalHasUpdateInverseEdge>>>;
|
|
41028
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
41029
|
+
pageInfo: PageInfo;
|
|
41030
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
41031
|
+
};
|
|
41032
|
+
export declare type GraphStoreSimplifiedAtlasGoalHasUpdateInverseEdge = {
|
|
41033
|
+
__typename?: 'GraphStoreSimplifiedAtlasGoalHasUpdateInverseEdge';
|
|
41034
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41035
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41036
|
+
id: Scalars['ID']['output'];
|
|
41037
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41038
|
+
node?: Maybe<GraphStoreSimplifiedAtlasGoalHasUpdateInverseUnion>;
|
|
41039
|
+
};
|
|
41040
|
+
export declare type GraphStoreSimplifiedAtlasGoalHasUpdateInverseUnion = TownsquareGoal;
|
|
41041
|
+
export declare type GraphStoreSimplifiedAtlasGoalHasUpdateUnion = TownsquareGoalUpdate;
|
|
40416
41042
|
export declare type GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalConnection = HasPageInfo & {
|
|
40417
41043
|
__typename?: 'GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalConnection';
|
|
40418
41044
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalEdge>>>;
|
|
@@ -40553,10 +41179,12 @@ export declare type GraphStoreSimplifiedAtlasProjectHasOwnerInverseEdge = {
|
|
|
40553
41179
|
};
|
|
40554
41180
|
export declare type GraphStoreSimplifiedAtlasProjectHasOwnerInverseUnion = TownsquareProject;
|
|
40555
41181
|
export declare type GraphStoreSimplifiedAtlasProjectHasOwnerUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
40556
|
-
export declare type GraphStoreSimplifiedAtlasProjectHasUpdateConnection = HasPageInfo & {
|
|
41182
|
+
export declare type GraphStoreSimplifiedAtlasProjectHasUpdateConnection = HasPageInfo & HasTotal & {
|
|
40557
41183
|
__typename?: 'GraphStoreSimplifiedAtlasProjectHasUpdateConnection';
|
|
40558
41184
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateEdge>>>;
|
|
41185
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
40559
41186
|
pageInfo: PageInfo;
|
|
41187
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
40560
41188
|
};
|
|
40561
41189
|
export declare type GraphStoreSimplifiedAtlasProjectHasUpdateEdge = {
|
|
40562
41190
|
__typename?: 'GraphStoreSimplifiedAtlasProjectHasUpdateEdge';
|
|
@@ -40566,10 +41194,12 @@ export declare type GraphStoreSimplifiedAtlasProjectHasUpdateEdge = {
|
|
|
40566
41194
|
lastUpdated: Scalars['DateTime']['output'];
|
|
40567
41195
|
node?: Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateUnion>;
|
|
40568
41196
|
};
|
|
40569
|
-
export declare type GraphStoreSimplifiedAtlasProjectHasUpdateInverseConnection = HasPageInfo & {
|
|
41197
|
+
export declare type GraphStoreSimplifiedAtlasProjectHasUpdateInverseConnection = HasPageInfo & HasTotal & {
|
|
40570
41198
|
__typename?: 'GraphStoreSimplifiedAtlasProjectHasUpdateInverseConnection';
|
|
40571
41199
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateInverseEdge>>>;
|
|
41200
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
40572
41201
|
pageInfo: PageInfo;
|
|
41202
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
40573
41203
|
};
|
|
40574
41204
|
export declare type GraphStoreSimplifiedAtlasProjectHasUpdateInverseEdge = {
|
|
40575
41205
|
__typename?: 'GraphStoreSimplifiedAtlasProjectHasUpdateInverseEdge';
|
|
@@ -40665,6 +41295,34 @@ export declare type GraphStoreSimplifiedBoardBelongsToProjectInverseEdge = {
|
|
|
40665
41295
|
};
|
|
40666
41296
|
export declare type GraphStoreSimplifiedBoardBelongsToProjectInverseUnion = JiraBoard;
|
|
40667
41297
|
export declare type GraphStoreSimplifiedBoardBelongsToProjectUnion = JiraProject;
|
|
41298
|
+
export declare type GraphStoreSimplifiedCalendarHasLinkedDocumentConnection = HasPageInfo & {
|
|
41299
|
+
__typename?: 'GraphStoreSimplifiedCalendarHasLinkedDocumentConnection';
|
|
41300
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedCalendarHasLinkedDocumentEdge>>>;
|
|
41301
|
+
pageInfo: PageInfo;
|
|
41302
|
+
};
|
|
41303
|
+
export declare type GraphStoreSimplifiedCalendarHasLinkedDocumentEdge = {
|
|
41304
|
+
__typename?: 'GraphStoreSimplifiedCalendarHasLinkedDocumentEdge';
|
|
41305
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41306
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41307
|
+
id: Scalars['ID']['output'];
|
|
41308
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41309
|
+
node?: Maybe<GraphStoreSimplifiedCalendarHasLinkedDocumentUnion>;
|
|
41310
|
+
};
|
|
41311
|
+
export declare type GraphStoreSimplifiedCalendarHasLinkedDocumentInverseConnection = HasPageInfo & {
|
|
41312
|
+
__typename?: 'GraphStoreSimplifiedCalendarHasLinkedDocumentInverseConnection';
|
|
41313
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedCalendarHasLinkedDocumentInverseEdge>>>;
|
|
41314
|
+
pageInfo: PageInfo;
|
|
41315
|
+
};
|
|
41316
|
+
export declare type GraphStoreSimplifiedCalendarHasLinkedDocumentInverseEdge = {
|
|
41317
|
+
__typename?: 'GraphStoreSimplifiedCalendarHasLinkedDocumentInverseEdge';
|
|
41318
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41319
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41320
|
+
id: Scalars['ID']['output'];
|
|
41321
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41322
|
+
node?: Maybe<GraphStoreSimplifiedCalendarHasLinkedDocumentInverseUnion>;
|
|
41323
|
+
};
|
|
41324
|
+
export declare type GraphStoreSimplifiedCalendarHasLinkedDocumentInverseUnion = ExternalCalendarEvent;
|
|
41325
|
+
export declare type GraphStoreSimplifiedCalendarHasLinkedDocumentUnion = DevOpsDocument | ExternalDocument;
|
|
40668
41326
|
export declare type GraphStoreSimplifiedComponentAssociatedDocumentConnection = HasPageInfo & {
|
|
40669
41327
|
__typename?: 'GraphStoreSimplifiedComponentAssociatedDocumentConnection';
|
|
40670
41328
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedComponentAssociatedDocumentEdge>>>;
|
|
@@ -40767,6 +41425,34 @@ export declare type GraphStoreSimplifiedComponentLinkedJswIssueInverseEdge = {
|
|
|
40767
41425
|
};
|
|
40768
41426
|
export declare type GraphStoreSimplifiedComponentLinkedJswIssueInverseUnion = CompassComponent | DevOpsOperationsComponentDetails | DevOpsService;
|
|
40769
41427
|
export declare type GraphStoreSimplifiedComponentLinkedJswIssueUnion = JiraIssue;
|
|
41428
|
+
export declare type GraphStoreSimplifiedConfluenceBlogpostHasCommentConnection = HasPageInfo & {
|
|
41429
|
+
__typename?: 'GraphStoreSimplifiedConfluenceBlogpostHasCommentConnection';
|
|
41430
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluenceBlogpostHasCommentEdge>>>;
|
|
41431
|
+
pageInfo: PageInfo;
|
|
41432
|
+
};
|
|
41433
|
+
export declare type GraphStoreSimplifiedConfluenceBlogpostHasCommentEdge = {
|
|
41434
|
+
__typename?: 'GraphStoreSimplifiedConfluenceBlogpostHasCommentEdge';
|
|
41435
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41436
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41437
|
+
id: Scalars['ID']['output'];
|
|
41438
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41439
|
+
node?: Maybe<GraphStoreSimplifiedConfluenceBlogpostHasCommentUnion>;
|
|
41440
|
+
};
|
|
41441
|
+
export declare type GraphStoreSimplifiedConfluenceBlogpostHasCommentInverseConnection = HasPageInfo & {
|
|
41442
|
+
__typename?: 'GraphStoreSimplifiedConfluenceBlogpostHasCommentInverseConnection';
|
|
41443
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluenceBlogpostHasCommentInverseEdge>>>;
|
|
41444
|
+
pageInfo: PageInfo;
|
|
41445
|
+
};
|
|
41446
|
+
export declare type GraphStoreSimplifiedConfluenceBlogpostHasCommentInverseEdge = {
|
|
41447
|
+
__typename?: 'GraphStoreSimplifiedConfluenceBlogpostHasCommentInverseEdge';
|
|
41448
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41449
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41450
|
+
id: Scalars['ID']['output'];
|
|
41451
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41452
|
+
node?: Maybe<GraphStoreSimplifiedConfluenceBlogpostHasCommentInverseUnion>;
|
|
41453
|
+
};
|
|
41454
|
+
export declare type GraphStoreSimplifiedConfluenceBlogpostHasCommentInverseUnion = ConfluenceBlogPost;
|
|
41455
|
+
export declare type GraphStoreSimplifiedConfluenceBlogpostHasCommentUnion = ConfluenceFooterComment | ConfluenceInlineComment;
|
|
40770
41456
|
export declare type GraphStoreSimplifiedConfluenceBlogpostSharedWithUserConnection = HasPageInfo & {
|
|
40771
41457
|
__typename?: 'GraphStoreSimplifiedConfluenceBlogpostSharedWithUserConnection';
|
|
40772
41458
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluenceBlogpostSharedWithUserEdge>>>;
|
|
@@ -40795,6 +41481,34 @@ export declare type GraphStoreSimplifiedConfluenceBlogpostSharedWithUserInverseE
|
|
|
40795
41481
|
};
|
|
40796
41482
|
export declare type GraphStoreSimplifiedConfluenceBlogpostSharedWithUserInverseUnion = ConfluenceBlogPost;
|
|
40797
41483
|
export declare type GraphStoreSimplifiedConfluenceBlogpostSharedWithUserUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
41484
|
+
export declare type GraphStoreSimplifiedConfluencePageHasCommentConnection = HasPageInfo & {
|
|
41485
|
+
__typename?: 'GraphStoreSimplifiedConfluencePageHasCommentConnection';
|
|
41486
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluencePageHasCommentEdge>>>;
|
|
41487
|
+
pageInfo: PageInfo;
|
|
41488
|
+
};
|
|
41489
|
+
export declare type GraphStoreSimplifiedConfluencePageHasCommentEdge = {
|
|
41490
|
+
__typename?: 'GraphStoreSimplifiedConfluencePageHasCommentEdge';
|
|
41491
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41492
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41493
|
+
id: Scalars['ID']['output'];
|
|
41494
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41495
|
+
node?: Maybe<GraphStoreSimplifiedConfluencePageHasCommentUnion>;
|
|
41496
|
+
};
|
|
41497
|
+
export declare type GraphStoreSimplifiedConfluencePageHasCommentInverseConnection = HasPageInfo & {
|
|
41498
|
+
__typename?: 'GraphStoreSimplifiedConfluencePageHasCommentInverseConnection';
|
|
41499
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluencePageHasCommentInverseEdge>>>;
|
|
41500
|
+
pageInfo: PageInfo;
|
|
41501
|
+
};
|
|
41502
|
+
export declare type GraphStoreSimplifiedConfluencePageHasCommentInverseEdge = {
|
|
41503
|
+
__typename?: 'GraphStoreSimplifiedConfluencePageHasCommentInverseEdge';
|
|
41504
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41505
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41506
|
+
id: Scalars['ID']['output'];
|
|
41507
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41508
|
+
node?: Maybe<GraphStoreSimplifiedConfluencePageHasCommentInverseUnion>;
|
|
41509
|
+
};
|
|
41510
|
+
export declare type GraphStoreSimplifiedConfluencePageHasCommentInverseUnion = ConfluencePage;
|
|
41511
|
+
export declare type GraphStoreSimplifiedConfluencePageHasCommentUnion = ConfluenceFooterComment | ConfluenceInlineComment;
|
|
40798
41512
|
export declare type GraphStoreSimplifiedConfluencePageHasConfluenceCommentConnection = HasPageInfo & {
|
|
40799
41513
|
__typename?: 'GraphStoreSimplifiedConfluencePageHasConfluenceCommentConnection';
|
|
40800
41514
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceCommentEdge>>>;
|
|
@@ -41215,6 +41929,34 @@ export declare type GraphStoreSimplifiedFocusAreaHasFocusAreaInverseEdge = {
|
|
|
41215
41929
|
};
|
|
41216
41930
|
export declare type GraphStoreSimplifiedFocusAreaHasFocusAreaInverseUnion = MercuryFocusArea;
|
|
41217
41931
|
export declare type GraphStoreSimplifiedFocusAreaHasFocusAreaUnion = MercuryFocusArea;
|
|
41932
|
+
export declare type GraphStoreSimplifiedFocusAreaHasPageConnection = HasPageInfo & {
|
|
41933
|
+
__typename?: 'GraphStoreSimplifiedFocusAreaHasPageConnection';
|
|
41934
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedFocusAreaHasPageEdge>>>;
|
|
41935
|
+
pageInfo: PageInfo;
|
|
41936
|
+
};
|
|
41937
|
+
export declare type GraphStoreSimplifiedFocusAreaHasPageEdge = {
|
|
41938
|
+
__typename?: 'GraphStoreSimplifiedFocusAreaHasPageEdge';
|
|
41939
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41940
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41941
|
+
id: Scalars['ID']['output'];
|
|
41942
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41943
|
+
node?: Maybe<GraphStoreSimplifiedFocusAreaHasPageUnion>;
|
|
41944
|
+
};
|
|
41945
|
+
export declare type GraphStoreSimplifiedFocusAreaHasPageInverseConnection = HasPageInfo & {
|
|
41946
|
+
__typename?: 'GraphStoreSimplifiedFocusAreaHasPageInverseConnection';
|
|
41947
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedFocusAreaHasPageInverseEdge>>>;
|
|
41948
|
+
pageInfo: PageInfo;
|
|
41949
|
+
};
|
|
41950
|
+
export declare type GraphStoreSimplifiedFocusAreaHasPageInverseEdge = {
|
|
41951
|
+
__typename?: 'GraphStoreSimplifiedFocusAreaHasPageInverseEdge';
|
|
41952
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41953
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41954
|
+
id: Scalars['ID']['output'];
|
|
41955
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41956
|
+
node?: Maybe<GraphStoreSimplifiedFocusAreaHasPageInverseUnion>;
|
|
41957
|
+
};
|
|
41958
|
+
export declare type GraphStoreSimplifiedFocusAreaHasPageInverseUnion = MercuryFocusArea;
|
|
41959
|
+
export declare type GraphStoreSimplifiedFocusAreaHasPageUnion = ConfluencePage;
|
|
41218
41960
|
export declare type GraphStoreSimplifiedFocusAreaHasProjectConnection = HasPageInfo & {
|
|
41219
41961
|
__typename?: 'GraphStoreSimplifiedFocusAreaHasProjectConnection';
|
|
41220
41962
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedFocusAreaHasProjectEdge>>>;
|
|
@@ -41913,6 +42655,38 @@ export declare type GraphStoreSimplifiedIssueToWhiteboardInverseEdge = {
|
|
|
41913
42655
|
};
|
|
41914
42656
|
export declare type GraphStoreSimplifiedIssueToWhiteboardInverseUnion = JiraIssue;
|
|
41915
42657
|
export declare type GraphStoreSimplifiedIssueToWhiteboardUnion = ConfluenceWhiteboard;
|
|
42658
|
+
export declare type GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationConnection = HasPageInfo & HasTotal & {
|
|
42659
|
+
__typename?: 'GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationConnection';
|
|
42660
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationEdge>>>;
|
|
42661
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
42662
|
+
pageInfo: PageInfo;
|
|
42663
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
42664
|
+
};
|
|
42665
|
+
export declare type GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationEdge = {
|
|
42666
|
+
__typename?: 'GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationEdge';
|
|
42667
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42668
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42669
|
+
id: Scalars['ID']['output'];
|
|
42670
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42671
|
+
node?: Maybe<GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationUnion>;
|
|
42672
|
+
};
|
|
42673
|
+
export declare type GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationInverseConnection = HasPageInfo & HasTotal & {
|
|
42674
|
+
__typename?: 'GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationInverseConnection';
|
|
42675
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationInverseEdge>>>;
|
|
42676
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
42677
|
+
pageInfo: PageInfo;
|
|
42678
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
42679
|
+
};
|
|
42680
|
+
export declare type GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationInverseEdge = {
|
|
42681
|
+
__typename?: 'GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationInverseEdge';
|
|
42682
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42683
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42684
|
+
id: Scalars['ID']['output'];
|
|
42685
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42686
|
+
node?: Maybe<GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationInverseUnion>;
|
|
42687
|
+
};
|
|
42688
|
+
export declare type GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationInverseUnion = JiraIssue;
|
|
42689
|
+
export declare type GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationUnion = JiraIssue | JiraProject;
|
|
41916
42690
|
export declare type GraphStoreSimplifiedJiraEpicContributesToAtlasGoalConnection = HasPageInfo & {
|
|
41917
42691
|
__typename?: 'GraphStoreSimplifiedJiraEpicContributesToAtlasGoalConnection';
|
|
41918
42692
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJiraEpicContributesToAtlasGoalEdge>>>;
|
|
@@ -42175,6 +42949,34 @@ export declare type GraphStoreSimplifiedLinkedProjectHasVersionInverseEdge = {
|
|
|
42175
42949
|
};
|
|
42176
42950
|
export declare type GraphStoreSimplifiedLinkedProjectHasVersionInverseUnion = JiraProject;
|
|
42177
42951
|
export declare type GraphStoreSimplifiedLinkedProjectHasVersionUnion = JiraVersion;
|
|
42952
|
+
export declare type GraphStoreSimplifiedLoomVideoSharedWithUserConnection = HasPageInfo & {
|
|
42953
|
+
__typename?: 'GraphStoreSimplifiedLoomVideoSharedWithUserConnection';
|
|
42954
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedLoomVideoSharedWithUserEdge>>>;
|
|
42955
|
+
pageInfo: PageInfo;
|
|
42956
|
+
};
|
|
42957
|
+
export declare type GraphStoreSimplifiedLoomVideoSharedWithUserEdge = {
|
|
42958
|
+
__typename?: 'GraphStoreSimplifiedLoomVideoSharedWithUserEdge';
|
|
42959
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42960
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42961
|
+
id: Scalars['ID']['output'];
|
|
42962
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42963
|
+
node?: Maybe<GraphStoreSimplifiedLoomVideoSharedWithUserUnion>;
|
|
42964
|
+
};
|
|
42965
|
+
export declare type GraphStoreSimplifiedLoomVideoSharedWithUserInverseConnection = HasPageInfo & {
|
|
42966
|
+
__typename?: 'GraphStoreSimplifiedLoomVideoSharedWithUserInverseConnection';
|
|
42967
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedLoomVideoSharedWithUserInverseEdge>>>;
|
|
42968
|
+
pageInfo: PageInfo;
|
|
42969
|
+
};
|
|
42970
|
+
export declare type GraphStoreSimplifiedLoomVideoSharedWithUserInverseEdge = {
|
|
42971
|
+
__typename?: 'GraphStoreSimplifiedLoomVideoSharedWithUserInverseEdge';
|
|
42972
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42973
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42974
|
+
id: Scalars['ID']['output'];
|
|
42975
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42976
|
+
node?: Maybe<GraphStoreSimplifiedLoomVideoSharedWithUserInverseUnion>;
|
|
42977
|
+
};
|
|
42978
|
+
export declare type GraphStoreSimplifiedLoomVideoSharedWithUserInverseUnion = LoomVideo;
|
|
42979
|
+
export declare type GraphStoreSimplifiedLoomVideoSharedWithUserUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
42178
42980
|
export declare type GraphStoreSimplifiedMediaAttachedToContentConnection = HasPageInfo & {
|
|
42179
42981
|
__typename?: 'GraphStoreSimplifiedMediaAttachedToContentConnection';
|
|
42180
42982
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedMediaAttachedToContentEdge>>>;
|
|
@@ -42235,6 +43037,20 @@ export declare type GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFold
|
|
|
42235
43037
|
};
|
|
42236
43038
|
export declare type GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
42237
43039
|
export declare type GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderUnion = ConfluenceFolder;
|
|
43040
|
+
export declare type GraphStoreSimplifiedMeetingRecurrenceHasMeetingRecurrenceNotesPageConnection = HasPageInfo & {
|
|
43041
|
+
__typename?: 'GraphStoreSimplifiedMeetingRecurrenceHasMeetingRecurrenceNotesPageConnection';
|
|
43042
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedMeetingRecurrenceHasMeetingRecurrenceNotesPageEdge>>>;
|
|
43043
|
+
pageInfo: PageInfo;
|
|
43044
|
+
};
|
|
43045
|
+
export declare type GraphStoreSimplifiedMeetingRecurrenceHasMeetingRecurrenceNotesPageEdge = {
|
|
43046
|
+
__typename?: 'GraphStoreSimplifiedMeetingRecurrenceHasMeetingRecurrenceNotesPageEdge';
|
|
43047
|
+
createdAt: Scalars['DateTime']['output'];
|
|
43048
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
43049
|
+
id: Scalars['ID']['output'];
|
|
43050
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
43051
|
+
node?: Maybe<GraphStoreSimplifiedMeetingRecurrenceHasMeetingRecurrenceNotesPageUnion>;
|
|
43052
|
+
};
|
|
43053
|
+
export declare type GraphStoreSimplifiedMeetingRecurrenceHasMeetingRecurrenceNotesPageUnion = ConfluencePage;
|
|
42238
43054
|
export declare type GraphStoreSimplifiedOnPremProjectHasIssueConnection = HasPageInfo & {
|
|
42239
43055
|
__typename?: 'GraphStoreSimplifiedOnPremProjectHasIssueConnection';
|
|
42240
43056
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedOnPremProjectHasIssueEdge>>>;
|
|
@@ -43207,6 +44023,34 @@ export declare type GraphStoreSimplifiedProjectLinkedToCompassComponentInverseEd
|
|
|
43207
44023
|
};
|
|
43208
44024
|
export declare type GraphStoreSimplifiedProjectLinkedToCompassComponentInverseUnion = JiraProject;
|
|
43209
44025
|
export declare type GraphStoreSimplifiedProjectLinkedToCompassComponentUnion = CompassComponent;
|
|
44026
|
+
export declare type GraphStoreSimplifiedPullRequestLinksToServiceConnection = HasPageInfo & {
|
|
44027
|
+
__typename?: 'GraphStoreSimplifiedPullRequestLinksToServiceConnection';
|
|
44028
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedPullRequestLinksToServiceEdge>>>;
|
|
44029
|
+
pageInfo: PageInfo;
|
|
44030
|
+
};
|
|
44031
|
+
export declare type GraphStoreSimplifiedPullRequestLinksToServiceEdge = {
|
|
44032
|
+
__typename?: 'GraphStoreSimplifiedPullRequestLinksToServiceEdge';
|
|
44033
|
+
createdAt: Scalars['DateTime']['output'];
|
|
44034
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
44035
|
+
id: Scalars['ID']['output'];
|
|
44036
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
44037
|
+
node?: Maybe<GraphStoreSimplifiedPullRequestLinksToServiceUnion>;
|
|
44038
|
+
};
|
|
44039
|
+
export declare type GraphStoreSimplifiedPullRequestLinksToServiceInverseConnection = HasPageInfo & {
|
|
44040
|
+
__typename?: 'GraphStoreSimplifiedPullRequestLinksToServiceInverseConnection';
|
|
44041
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedPullRequestLinksToServiceInverseEdge>>>;
|
|
44042
|
+
pageInfo: PageInfo;
|
|
44043
|
+
};
|
|
44044
|
+
export declare type GraphStoreSimplifiedPullRequestLinksToServiceInverseEdge = {
|
|
44045
|
+
__typename?: 'GraphStoreSimplifiedPullRequestLinksToServiceInverseEdge';
|
|
44046
|
+
createdAt: Scalars['DateTime']['output'];
|
|
44047
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
44048
|
+
id: Scalars['ID']['output'];
|
|
44049
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
44050
|
+
node?: Maybe<GraphStoreSimplifiedPullRequestLinksToServiceInverseUnion>;
|
|
44051
|
+
};
|
|
44052
|
+
export declare type GraphStoreSimplifiedPullRequestLinksToServiceInverseUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
44053
|
+
export declare type GraphStoreSimplifiedPullRequestLinksToServiceUnion = DevOpsService;
|
|
43210
44054
|
export declare type GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityConnection = HasPageInfo & {
|
|
43211
44055
|
__typename?: 'GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityConnection';
|
|
43212
44056
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityEdge>>>;
|
|
@@ -43221,6 +44065,34 @@ export declare type GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabili
|
|
|
43221
44065
|
node?: Maybe<GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityUnion>;
|
|
43222
44066
|
};
|
|
43223
44067
|
export declare type GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityUnion = DevOpsSecurityVulnerabilityDetails | ExternalVulnerability;
|
|
44068
|
+
export declare type GraphStoreSimplifiedServiceAssociatedBranchConnection = HasPageInfo & {
|
|
44069
|
+
__typename?: 'GraphStoreSimplifiedServiceAssociatedBranchConnection';
|
|
44070
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedServiceAssociatedBranchEdge>>>;
|
|
44071
|
+
pageInfo: PageInfo;
|
|
44072
|
+
};
|
|
44073
|
+
export declare type GraphStoreSimplifiedServiceAssociatedBranchEdge = {
|
|
44074
|
+
__typename?: 'GraphStoreSimplifiedServiceAssociatedBranchEdge';
|
|
44075
|
+
createdAt: Scalars['DateTime']['output'];
|
|
44076
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
44077
|
+
id: Scalars['ID']['output'];
|
|
44078
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
44079
|
+
node?: Maybe<GraphStoreSimplifiedServiceAssociatedBranchUnion>;
|
|
44080
|
+
};
|
|
44081
|
+
export declare type GraphStoreSimplifiedServiceAssociatedBranchInverseConnection = HasPageInfo & {
|
|
44082
|
+
__typename?: 'GraphStoreSimplifiedServiceAssociatedBranchInverseConnection';
|
|
44083
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedServiceAssociatedBranchInverseEdge>>>;
|
|
44084
|
+
pageInfo: PageInfo;
|
|
44085
|
+
};
|
|
44086
|
+
export declare type GraphStoreSimplifiedServiceAssociatedBranchInverseEdge = {
|
|
44087
|
+
__typename?: 'GraphStoreSimplifiedServiceAssociatedBranchInverseEdge';
|
|
44088
|
+
createdAt: Scalars['DateTime']['output'];
|
|
44089
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
44090
|
+
id: Scalars['ID']['output'];
|
|
44091
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
44092
|
+
node?: Maybe<GraphStoreSimplifiedServiceAssociatedBranchInverseUnion>;
|
|
44093
|
+
};
|
|
44094
|
+
export declare type GraphStoreSimplifiedServiceAssociatedBranchInverseUnion = DevOpsService;
|
|
44095
|
+
export declare type GraphStoreSimplifiedServiceAssociatedBranchUnion = ExternalBranch;
|
|
43224
44096
|
export declare type GraphStoreSimplifiedServiceAssociatedDeploymentConnection = HasPageInfo & {
|
|
43225
44097
|
__typename?: 'GraphStoreSimplifiedServiceAssociatedDeploymentConnection';
|
|
43226
44098
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedServiceAssociatedDeploymentEdge>>>;
|
|
@@ -43839,6 +44711,34 @@ export declare type GraphStoreSimplifiedUserAssignedIncidentInverseEdge = {
|
|
|
43839
44711
|
};
|
|
43840
44712
|
export declare type GraphStoreSimplifiedUserAssignedIncidentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
43841
44713
|
export declare type GraphStoreSimplifiedUserAssignedIncidentUnion = JiraIssue;
|
|
44714
|
+
export declare type GraphStoreSimplifiedUserAssignedIssueConnection = HasPageInfo & {
|
|
44715
|
+
__typename?: 'GraphStoreSimplifiedUserAssignedIssueConnection';
|
|
44716
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserAssignedIssueEdge>>>;
|
|
44717
|
+
pageInfo: PageInfo;
|
|
44718
|
+
};
|
|
44719
|
+
export declare type GraphStoreSimplifiedUserAssignedIssueEdge = {
|
|
44720
|
+
__typename?: 'GraphStoreSimplifiedUserAssignedIssueEdge';
|
|
44721
|
+
createdAt: Scalars['DateTime']['output'];
|
|
44722
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
44723
|
+
id: Scalars['ID']['output'];
|
|
44724
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
44725
|
+
node?: Maybe<GraphStoreSimplifiedUserAssignedIssueUnion>;
|
|
44726
|
+
};
|
|
44727
|
+
export declare type GraphStoreSimplifiedUserAssignedIssueInverseConnection = HasPageInfo & {
|
|
44728
|
+
__typename?: 'GraphStoreSimplifiedUserAssignedIssueInverseConnection';
|
|
44729
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserAssignedIssueInverseEdge>>>;
|
|
44730
|
+
pageInfo: PageInfo;
|
|
44731
|
+
};
|
|
44732
|
+
export declare type GraphStoreSimplifiedUserAssignedIssueInverseEdge = {
|
|
44733
|
+
__typename?: 'GraphStoreSimplifiedUserAssignedIssueInverseEdge';
|
|
44734
|
+
createdAt: Scalars['DateTime']['output'];
|
|
44735
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
44736
|
+
id: Scalars['ID']['output'];
|
|
44737
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
44738
|
+
node?: Maybe<GraphStoreSimplifiedUserAssignedIssueInverseUnion>;
|
|
44739
|
+
};
|
|
44740
|
+
export declare type GraphStoreSimplifiedUserAssignedIssueInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
44741
|
+
export declare type GraphStoreSimplifiedUserAssignedIssueUnion = JiraIssue;
|
|
43842
44742
|
export declare type GraphStoreSimplifiedUserAssignedPirConnection = HasPageInfo & {
|
|
43843
44743
|
__typename?: 'GraphStoreSimplifiedUserAssignedPirConnection';
|
|
43844
44744
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserAssignedPirEdge>>>;
|
|
@@ -44543,6 +45443,34 @@ export declare type GraphStoreSimplifiedUserCreatedMessageInverseEdge = {
|
|
|
44543
45443
|
};
|
|
44544
45444
|
export declare type GraphStoreSimplifiedUserCreatedMessageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
44545
45445
|
export declare type GraphStoreSimplifiedUserCreatedMessageUnion = ExternalMessage;
|
|
45446
|
+
export declare type GraphStoreSimplifiedUserCreatedReleaseConnection = HasPageInfo & {
|
|
45447
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedReleaseConnection';
|
|
45448
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedReleaseEdge>>>;
|
|
45449
|
+
pageInfo: PageInfo;
|
|
45450
|
+
};
|
|
45451
|
+
export declare type GraphStoreSimplifiedUserCreatedReleaseEdge = {
|
|
45452
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedReleaseEdge';
|
|
45453
|
+
createdAt: Scalars['DateTime']['output'];
|
|
45454
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
45455
|
+
id: Scalars['ID']['output'];
|
|
45456
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
45457
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedReleaseUnion>;
|
|
45458
|
+
};
|
|
45459
|
+
export declare type GraphStoreSimplifiedUserCreatedReleaseInverseConnection = HasPageInfo & {
|
|
45460
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedReleaseInverseConnection';
|
|
45461
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedReleaseInverseEdge>>>;
|
|
45462
|
+
pageInfo: PageInfo;
|
|
45463
|
+
};
|
|
45464
|
+
export declare type GraphStoreSimplifiedUserCreatedReleaseInverseEdge = {
|
|
45465
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedReleaseInverseEdge';
|
|
45466
|
+
createdAt: Scalars['DateTime']['output'];
|
|
45467
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
45468
|
+
id: Scalars['ID']['output'];
|
|
45469
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
45470
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedReleaseInverseUnion>;
|
|
45471
|
+
};
|
|
45472
|
+
export declare type GraphStoreSimplifiedUserCreatedReleaseInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
45473
|
+
export declare type GraphStoreSimplifiedUserCreatedReleaseUnion = JiraVersion;
|
|
44546
45474
|
export declare type GraphStoreSimplifiedUserCreatedRemoteLinkConnection = HasPageInfo & {
|
|
44547
45475
|
__typename?: 'GraphStoreSimplifiedUserCreatedRemoteLinkConnection';
|
|
44548
45476
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedRemoteLinkEdge>>>;
|
|
@@ -45199,6 +46127,34 @@ export declare type GraphStoreSimplifiedUserOwnsComponentInverseEdge = {
|
|
|
45199
46127
|
};
|
|
45200
46128
|
export declare type GraphStoreSimplifiedUserOwnsComponentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
45201
46129
|
export declare type GraphStoreSimplifiedUserOwnsComponentUnion = CompassComponent;
|
|
46130
|
+
export declare type GraphStoreSimplifiedUserOwnsFocusAreaConnection = HasPageInfo & {
|
|
46131
|
+
__typename?: 'GraphStoreSimplifiedUserOwnsFocusAreaConnection';
|
|
46132
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnsFocusAreaEdge>>>;
|
|
46133
|
+
pageInfo: PageInfo;
|
|
46134
|
+
};
|
|
46135
|
+
export declare type GraphStoreSimplifiedUserOwnsFocusAreaEdge = {
|
|
46136
|
+
__typename?: 'GraphStoreSimplifiedUserOwnsFocusAreaEdge';
|
|
46137
|
+
createdAt: Scalars['DateTime']['output'];
|
|
46138
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
46139
|
+
id: Scalars['ID']['output'];
|
|
46140
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
46141
|
+
node?: Maybe<GraphStoreSimplifiedUserOwnsFocusAreaUnion>;
|
|
46142
|
+
};
|
|
46143
|
+
export declare type GraphStoreSimplifiedUserOwnsFocusAreaInverseConnection = HasPageInfo & {
|
|
46144
|
+
__typename?: 'GraphStoreSimplifiedUserOwnsFocusAreaInverseConnection';
|
|
46145
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnsFocusAreaInverseEdge>>>;
|
|
46146
|
+
pageInfo: PageInfo;
|
|
46147
|
+
};
|
|
46148
|
+
export declare type GraphStoreSimplifiedUserOwnsFocusAreaInverseEdge = {
|
|
46149
|
+
__typename?: 'GraphStoreSimplifiedUserOwnsFocusAreaInverseEdge';
|
|
46150
|
+
createdAt: Scalars['DateTime']['output'];
|
|
46151
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
46152
|
+
id: Scalars['ID']['output'];
|
|
46153
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
46154
|
+
node?: Maybe<GraphStoreSimplifiedUserOwnsFocusAreaInverseUnion>;
|
|
46155
|
+
};
|
|
46156
|
+
export declare type GraphStoreSimplifiedUserOwnsFocusAreaInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
46157
|
+
export declare type GraphStoreSimplifiedUserOwnsFocusAreaUnion = MercuryFocusArea;
|
|
45202
46158
|
export declare type GraphStoreSimplifiedUserReportedIncidentConnection = HasPageInfo & {
|
|
45203
46159
|
__typename?: 'GraphStoreSimplifiedUserReportedIncidentConnection';
|
|
45204
46160
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserReportedIncidentEdge>>>;
|
|
@@ -46515,6 +47471,9 @@ export declare type GraphStoreThirdPartyToGraphRemoteLinkSortInput = {
|
|
|
46515
47471
|
export declare type GraphStoreUserAssignedIncidentSortInput = {
|
|
46516
47472
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
46517
47473
|
};
|
|
47474
|
+
export declare type GraphStoreUserAssignedIssueSortInput = {
|
|
47475
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
47476
|
+
};
|
|
46518
47477
|
export declare type GraphStoreUserAssignedPirSortInput = {
|
|
46519
47478
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
46520
47479
|
};
|
|
@@ -46611,6 +47570,9 @@ export declare type GraphStoreUserCreatedLoomVideoSortInput = {
|
|
|
46611
47570
|
export declare type GraphStoreUserCreatedMessageSortInput = {
|
|
46612
47571
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
46613
47572
|
};
|
|
47573
|
+
export declare type GraphStoreUserCreatedReleaseSortInput = {
|
|
47574
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
47575
|
+
};
|
|
46614
47576
|
export declare type GraphStoreUserCreatedRemoteLinkSortInput = {
|
|
46615
47577
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
46616
47578
|
};
|
|
@@ -46707,6 +47669,9 @@ export declare type GraphStoreUserOwnsComponentSortInput = {
|
|
|
46707
47669
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
46708
47670
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
46709
47671
|
};
|
|
47672
|
+
export declare type GraphStoreUserOwnsFocusAreaSortInput = {
|
|
47673
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
47674
|
+
};
|
|
46710
47675
|
export declare type GraphStoreUserReportedIncidentSortInput = {
|
|
46711
47676
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
46712
47677
|
};
|
|
@@ -50039,69 +51004,6 @@ export declare type IssueDevOpsTestSummary = {
|
|
|
50039
51004
|
numberSkipped?: Maybe<Scalars['Int']['output']>;
|
|
50040
51005
|
totalNumber?: Maybe<Scalars['Int']['output']>;
|
|
50041
51006
|
};
|
|
50042
|
-
export declare type JsmAssignee = {
|
|
50043
|
-
__typename?: 'JSMAssignee';
|
|
50044
|
-
id: Scalars['ID']['output'];
|
|
50045
|
-
};
|
|
50046
|
-
export declare type JsmIncident = {
|
|
50047
|
-
__typename?: 'JSMIncident';
|
|
50048
|
-
affectedServices?: Maybe<Array<Maybe<DevOpsService>>>;
|
|
50049
|
-
assignee?: Maybe<User>;
|
|
50050
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
50051
|
-
id: Scalars['ID']['output'];
|
|
50052
|
-
issueLinks?: Maybe<Array<Maybe<JsmIssueLink>>>;
|
|
50053
|
-
linkedAlerts?: Maybe<Array<Maybe<JsmLinkedAlerts>>>;
|
|
50054
|
-
majorIncident?: Maybe<JsmMajorIncident>;
|
|
50055
|
-
participants?: Maybe<Array<Maybe<User>>>;
|
|
50056
|
-
priority?: Maybe<JsmPriority>;
|
|
50057
|
-
reporter?: Maybe<User>;
|
|
50058
|
-
responders?: Maybe<Array<Maybe<JsmResponder>>>;
|
|
50059
|
-
status?: Maybe<JsmStatus>;
|
|
50060
|
-
summary?: Maybe<Scalars['String']['output']>;
|
|
50061
|
-
};
|
|
50062
|
-
export declare enum JsmIncidentLinkDirection {
|
|
50063
|
-
Inward = "INWARD",
|
|
50064
|
-
Outward = "OUTWARD"
|
|
50065
|
-
}
|
|
50066
|
-
export declare type JsmIssueLink = {
|
|
50067
|
-
__typename?: 'JSMIssueLink';
|
|
50068
|
-
direction?: Maybe<JsmIncidentLinkDirection>;
|
|
50069
|
-
issue?: Maybe<JiraIssue>;
|
|
50070
|
-
type?: Maybe<JsmIssueLinkType>;
|
|
50071
|
-
};
|
|
50072
|
-
export declare type JsmIssueLinkType = {
|
|
50073
|
-
__typename?: 'JSMIssueLinkType';
|
|
50074
|
-
id: Scalars['ID']['output'];
|
|
50075
|
-
};
|
|
50076
|
-
export declare type JsmLinkedAlerts = {
|
|
50077
|
-
__typename?: 'JSMLinkedAlerts';
|
|
50078
|
-
id: Scalars['ID']['output'];
|
|
50079
|
-
};
|
|
50080
|
-
export declare enum JsmMajorIncident {
|
|
50081
|
-
MajorIncident = "MAJOR_INCIDENT"
|
|
50082
|
-
}
|
|
50083
|
-
export declare type JsmPriority = {
|
|
50084
|
-
__typename?: 'JSMPriority';
|
|
50085
|
-
id: Scalars['ID']['output'];
|
|
50086
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
50087
|
-
};
|
|
50088
|
-
export declare type JsmReporter = {
|
|
50089
|
-
__typename?: 'JSMReporter';
|
|
50090
|
-
id: Scalars['ID']['output'];
|
|
50091
|
-
};
|
|
50092
|
-
export declare type JsmResponder = AppUser | AtlassianAccountUser | CustomerUser | OpsgenieTeam;
|
|
50093
|
-
export declare type JsmStatus = {
|
|
50094
|
-
__typename?: 'JSMStatus';
|
|
50095
|
-
id: Scalars['ID']['output'];
|
|
50096
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
50097
|
-
statusCategory?: Maybe<JsmStatusCategory>;
|
|
50098
|
-
};
|
|
50099
|
-
export declare type JsmStatusCategory = {
|
|
50100
|
-
__typename?: 'JSMStatusCategory';
|
|
50101
|
-
id: Scalars['ID']['output'];
|
|
50102
|
-
key?: Maybe<Scalars['String']['output']>;
|
|
50103
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
50104
|
-
};
|
|
50105
51007
|
export declare type JiraAdf = {
|
|
50106
51008
|
__typename?: 'JiraADF';
|
|
50107
51009
|
convertedPlainText?: Maybe<JiraAdfToConvertedPlainText>;
|
|
@@ -51386,6 +52288,17 @@ export declare enum JiraBulkOperationType {
|
|
|
51386
52288
|
BulkUnwatch = "BULK_UNWATCH",
|
|
51387
52289
|
BulkWatch = "BULK_WATCH"
|
|
51388
52290
|
}
|
|
52291
|
+
export declare type JiraBulkSetBoardViewColumnStateInput = {
|
|
52292
|
+
collapsed: Scalars['Boolean']['input'];
|
|
52293
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
52294
|
+
viewId: Scalars['ID']['input'];
|
|
52295
|
+
};
|
|
52296
|
+
export declare type JiraBulkSetBoardViewColumnStatePayload = Payload & {
|
|
52297
|
+
__typename?: 'JiraBulkSetBoardViewColumnStatePayload';
|
|
52298
|
+
boardView?: Maybe<JiraBoardView>;
|
|
52299
|
+
errors?: Maybe<Array<MutationError>>;
|
|
52300
|
+
success: Scalars['Boolean']['output'];
|
|
52301
|
+
};
|
|
51389
52302
|
export declare type JiraBulkTransition = Node & {
|
|
51390
52303
|
__typename?: 'JiraBulkTransition';
|
|
51391
52304
|
id: Scalars['ID']['output'];
|
|
@@ -52813,6 +53726,12 @@ export declare type JiraCreateJourneyConfigurationPayload = Payload & {
|
|
|
52813
53726
|
jiraJourneyConfigurationEdge?: Maybe<JiraJourneyConfigurationEdge>;
|
|
52814
53727
|
success: Scalars['Boolean']['output'];
|
|
52815
53728
|
};
|
|
53729
|
+
export declare type JiraCreateJourneyItemInput = {
|
|
53730
|
+
configuration?: InputMaybe<JiraJourneyItemConfigurationInput>;
|
|
53731
|
+
insertAfterItemId?: InputMaybe<Scalars['ID']['input']>;
|
|
53732
|
+
journeyId: Scalars['ID']['input'];
|
|
53733
|
+
journeyVersion: Scalars['Long']['input'];
|
|
53734
|
+
};
|
|
52816
53735
|
export declare type JiraCreateNavigationItemPayload = Payload & {
|
|
52817
53736
|
__typename?: 'JiraCreateNavigationItemPayload';
|
|
52818
53737
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -53609,6 +54528,7 @@ export declare type JiraDisableJourneyConfigurationInput = {
|
|
|
53609
54528
|
version: Scalars['Long']['input'];
|
|
53610
54529
|
};
|
|
53611
54530
|
export declare type JiraDiscardUserBoardViewConfigInput = {
|
|
54531
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
53612
54532
|
viewId: Scalars['ID']['input'];
|
|
53613
54533
|
};
|
|
53614
54534
|
export declare type JiraDiscardUserBoardViewConfigPayload = Payload & {
|
|
@@ -56537,6 +57457,10 @@ export declare type JiraJourneyItemCommon = {
|
|
|
56537
57457
|
id: Scalars['ID']['output'];
|
|
56538
57458
|
name?: Maybe<Scalars['String']['output']>;
|
|
56539
57459
|
};
|
|
57460
|
+
export declare type JiraJourneyItemConfigurationInput = {
|
|
57461
|
+
statusDependencyConfiguration?: InputMaybe<JiraJourneyStatusDependencyConfigurationInput>;
|
|
57462
|
+
workItemConfiguration?: InputMaybe<JiraJourneyWorkItemConfigurationInput>;
|
|
57463
|
+
};
|
|
56540
57464
|
export declare type JiraJourneyParentIssue = {
|
|
56541
57465
|
__typename?: 'JiraJourneyParentIssue';
|
|
56542
57466
|
project?: Maybe<JiraProject>;
|
|
@@ -56572,6 +57496,14 @@ export declare type JiraJourneyStatusDependency = JiraJourneyItemCommon & {
|
|
|
56572
57496
|
statusType?: Maybe<JiraJourneyStatusDependencyType>;
|
|
56573
57497
|
workItemIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
56574
57498
|
};
|
|
57499
|
+
export declare type JiraJourneyStatusDependencyConfigurationInput = {
|
|
57500
|
+
statuses?: InputMaybe<Array<JiraJourneyStatusDependencyConfigurationStatusInput>>;
|
|
57501
|
+
workItemIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
57502
|
+
};
|
|
57503
|
+
export declare type JiraJourneyStatusDependencyConfigurationStatusInput = {
|
|
57504
|
+
id: Scalars['ID']['input'];
|
|
57505
|
+
type: JiraJourneyStatusDependencyType;
|
|
57506
|
+
};
|
|
56575
57507
|
export declare enum JiraJourneyStatusDependencyType {
|
|
56576
57508
|
Status = "STATUS",
|
|
56577
57509
|
StatusCategory = "STATUS_CATEGORY"
|
|
@@ -56602,11 +57534,22 @@ export declare type JiraJourneyWorkItem = JiraJourneyItemCommon & {
|
|
|
56602
57534
|
project?: Maybe<JiraProject>;
|
|
56603
57535
|
requestType?: Maybe<JiraServiceManagementRequestType>;
|
|
56604
57536
|
};
|
|
57537
|
+
export declare type JiraJourneyWorkItemConfigurationInput = {
|
|
57538
|
+
fieldValues?: InputMaybe<Array<InputMaybe<JiraJourneyWorkItemFieldValueKeyValuePairInput>>>;
|
|
57539
|
+
issueTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
57540
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
57541
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
57542
|
+
requestTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
57543
|
+
};
|
|
56605
57544
|
export declare type JiraJourneyWorkItemFieldValueKeyValuePair = {
|
|
56606
57545
|
__typename?: 'JiraJourneyWorkItemFieldValueKeyValuePair';
|
|
56607
57546
|
key?: Maybe<Scalars['String']['output']>;
|
|
56608
57547
|
value?: Maybe<Array<Scalars['String']['output']>>;
|
|
56609
57548
|
};
|
|
57549
|
+
export declare type JiraJourneyWorkItemFieldValueKeyValuePairInput = {
|
|
57550
|
+
key: Scalars['String']['input'];
|
|
57551
|
+
value: Array<InputMaybe<Scalars['String']['input']>>;
|
|
57552
|
+
};
|
|
56610
57553
|
export declare type JiraJourneyWorkdayIntegrationTriggerConfiguration = {
|
|
56611
57554
|
__typename?: 'JiraJourneyWorkdayIntegrationTriggerConfiguration';
|
|
56612
57555
|
ruleId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -57731,6 +58674,7 @@ export declare type JiraMutation = {
|
|
|
57731
58674
|
createIssueLinks?: Maybe<JiraBulkCreateIssueLinksPayload>;
|
|
57732
58675
|
createJiraActivityConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
57733
58676
|
createJiraJourneyConfiguration?: Maybe<JiraCreateJourneyConfigurationPayload>;
|
|
58677
|
+
createJiraJourneyItem?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
57734
58678
|
createJiraVersion?: Maybe<JiraUpdateVersionPayload>;
|
|
57735
58679
|
createJwmFilter?: Maybe<JiraWorkManagementCreateFilterPayload>;
|
|
57736
58680
|
createJwmIssue?: Maybe<JiraWorkManagementCreateIssuePayload>;
|
|
@@ -57991,6 +58935,10 @@ export declare type JiraMutationCreateJiraJourneyConfigurationArgs = {
|
|
|
57991
58935
|
cloudId: Scalars['ID']['input'];
|
|
57992
58936
|
input: JiraCreateJourneyConfigurationInput;
|
|
57993
58937
|
};
|
|
58938
|
+
export declare type JiraMutationCreateJiraJourneyItemArgs = {
|
|
58939
|
+
cloudId: Scalars['ID']['input'];
|
|
58940
|
+
input: JiraCreateJourneyItemInput;
|
|
58941
|
+
};
|
|
57994
58942
|
export declare type JiraMutationCreateJiraVersionArgs = {
|
|
57995
58943
|
input: JiraVersionCreateMutationInput;
|
|
57996
58944
|
};
|
|
@@ -58595,6 +59543,7 @@ export declare enum JiraNavigationItemTypeKey {
|
|
|
58595
59543
|
Calendar = "CALENDAR",
|
|
58596
59544
|
Code = "CODE",
|
|
58597
59545
|
Components = "COMPONENTS",
|
|
59546
|
+
CustomerSupport = "CUSTOMER_SUPPORT",
|
|
58598
59547
|
Dependencies = "DEPENDENCIES",
|
|
58599
59548
|
Deployments = "DEPLOYMENTS",
|
|
58600
59549
|
Development = "DEVELOPMENT",
|
|
@@ -59357,11 +60306,18 @@ export declare type JiraPlan = Node & {
|
|
|
59357
60306
|
lastViewedTimestamp?: Maybe<Scalars['Long']['output']>;
|
|
59358
60307
|
owner?: Maybe<User>;
|
|
59359
60308
|
planId?: Maybe<Scalars['Long']['output']>;
|
|
60309
|
+
planScenarios?: Maybe<JiraScenarioConnection>;
|
|
59360
60310
|
planStatus?: Maybe<JiraPlanStatus>;
|
|
59361
60311
|
planUrl?: Maybe<Scalars['URL']['output']>;
|
|
59362
60312
|
scenario?: Maybe<JiraScenario>;
|
|
59363
60313
|
title?: Maybe<Scalars['String']['output']>;
|
|
59364
60314
|
};
|
|
60315
|
+
export declare type JiraPlanPlanScenariosArgs = {
|
|
60316
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
60317
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
60318
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
60319
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
60320
|
+
};
|
|
59365
60321
|
export declare type JiraPlanFeatureMutationInput = {
|
|
59366
60322
|
enabled: Scalars['Boolean']['input'];
|
|
59367
60323
|
planId: Scalars['ID']['input'];
|
|
@@ -59726,6 +60682,8 @@ export declare type JiraProject = Node & {
|
|
|
59726
60682
|
opsgenieTeamsAvailableToLinkWith?: Maybe<OpsgenieTeamConnection>;
|
|
59727
60683
|
projectFieldTypeGroups?: Maybe<JiraFieldTypeGroupConnection>;
|
|
59728
60684
|
projectId?: Maybe<Scalars['String']['output']>;
|
|
60685
|
+
projectScopedFieldsCount?: Maybe<Scalars['Int']['output']>;
|
|
60686
|
+
projectScopedFieldsPerProjectLimit?: Maybe<Scalars['Int']['output']>;
|
|
59729
60687
|
projectStyle?: Maybe<JiraProjectStyle>;
|
|
59730
60688
|
projectType?: Maybe<JiraProjectType>;
|
|
59731
60689
|
projectTypeName?: Maybe<Scalars['String']['output']>;
|
|
@@ -61893,6 +62851,7 @@ export declare type JiraReorderBoardViewColumnInput = {
|
|
|
61893
62851
|
columnId: Scalars['ID']['input'];
|
|
61894
62852
|
position: JiraReorderBoardViewColumnPosition;
|
|
61895
62853
|
relativeColumnId: Scalars['ID']['input'];
|
|
62854
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
61896
62855
|
viewId: Scalars['ID']['input'];
|
|
61897
62856
|
};
|
|
61898
62857
|
export declare type JiraReorderBoardViewColumnPayload = Payload & {
|
|
@@ -62221,6 +63180,17 @@ export declare type JiraScenario = Node & {
|
|
|
62221
63180
|
scenarioUrl?: Maybe<Scalars['URL']['output']>;
|
|
62222
63181
|
title?: Maybe<Scalars['String']['output']>;
|
|
62223
63182
|
};
|
|
63183
|
+
export declare type JiraScenarioConnection = {
|
|
63184
|
+
__typename?: 'JiraScenarioConnection';
|
|
63185
|
+
edges?: Maybe<Array<Maybe<JiraScenarioEdge>>>;
|
|
63186
|
+
pageInfo?: Maybe<PageInfo>;
|
|
63187
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
63188
|
+
};
|
|
63189
|
+
export declare type JiraScenarioEdge = {
|
|
63190
|
+
__typename?: 'JiraScenarioEdge';
|
|
63191
|
+
cursor: Scalars['String']['output'];
|
|
63192
|
+
node?: Maybe<JiraScenario>;
|
|
63193
|
+
};
|
|
62224
63194
|
export declare type JiraScenarioIssue = JiraScenarioIssueLike & Node & {
|
|
62225
63195
|
__typename?: 'JiraScenarioIssue';
|
|
62226
63196
|
id: Scalars['ID']['output'];
|
|
@@ -63536,6 +64506,7 @@ export declare type JiraSetApplicationPropertyInput = {
|
|
|
63536
64506
|
export declare type JiraSetBoardViewCardFieldSelectedInput = {
|
|
63537
64507
|
fieldId: Scalars['String']['input'];
|
|
63538
64508
|
selected: Scalars['Boolean']['input'];
|
|
64509
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
63539
64510
|
viewId: Scalars['ID']['input'];
|
|
63540
64511
|
};
|
|
63541
64512
|
export declare type JiraSetBoardViewCardFieldSelectedPayload = Payload & {
|
|
@@ -63547,6 +64518,7 @@ export declare type JiraSetBoardViewCardFieldSelectedPayload = Payload & {
|
|
|
63547
64518
|
export declare type JiraSetBoardViewCardOptionStateInput = {
|
|
63548
64519
|
enabled: Scalars['Boolean']['input'];
|
|
63549
64520
|
id: Scalars['ID']['input'];
|
|
64521
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
63550
64522
|
viewId: Scalars['ID']['input'];
|
|
63551
64523
|
};
|
|
63552
64524
|
export declare type JiraSetBoardViewCardOptionStatePayload = Payload & {
|
|
@@ -63558,6 +64530,7 @@ export declare type JiraSetBoardViewCardOptionStatePayload = Payload & {
|
|
|
63558
64530
|
export declare type JiraSetBoardViewColumnStateInput = {
|
|
63559
64531
|
collapsed: Scalars['Boolean']['input'];
|
|
63560
64532
|
columnId: Scalars['ID']['input'];
|
|
64533
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
63561
64534
|
viewId: Scalars['ID']['input'];
|
|
63562
64535
|
};
|
|
63563
64536
|
export declare type JiraSetBoardViewColumnStatePayload = Payload & {
|
|
@@ -63566,8 +64539,20 @@ export declare type JiraSetBoardViewColumnStatePayload = Payload & {
|
|
|
63566
64539
|
errors?: Maybe<Array<MutationError>>;
|
|
63567
64540
|
success: Scalars['Boolean']['output'];
|
|
63568
64541
|
};
|
|
64542
|
+
export declare type JiraSetBoardViewColumnsOrderInput = {
|
|
64543
|
+
columnIds: Array<Scalars['ID']['input']>;
|
|
64544
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
64545
|
+
viewId: Scalars['ID']['input'];
|
|
64546
|
+
};
|
|
64547
|
+
export declare type JiraSetBoardViewColumnsOrderPayload = Payload & {
|
|
64548
|
+
__typename?: 'JiraSetBoardViewColumnsOrderPayload';
|
|
64549
|
+
boardView?: Maybe<JiraBoardView>;
|
|
64550
|
+
errors?: Maybe<Array<MutationError>>;
|
|
64551
|
+
success: Scalars['Boolean']['output'];
|
|
64552
|
+
};
|
|
63569
64553
|
export declare type JiraSetBoardViewCompletedIssueSearchCutOffInput = {
|
|
63570
64554
|
completedIssueSearchCutOffInDays: Scalars['Int']['input'];
|
|
64555
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
63571
64556
|
viewId: Scalars['ID']['input'];
|
|
63572
64557
|
};
|
|
63573
64558
|
export declare type JiraSetBoardViewCompletedIssueSearchCutOffPayload = Payload & {
|
|
@@ -63578,6 +64563,7 @@ export declare type JiraSetBoardViewCompletedIssueSearchCutOffPayload = Payload
|
|
|
63578
64563
|
};
|
|
63579
64564
|
export declare type JiraSetBoardViewFilterInput = {
|
|
63580
64565
|
jql: Scalars['String']['input'];
|
|
64566
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
63581
64567
|
viewId: Scalars['ID']['input'];
|
|
63582
64568
|
};
|
|
63583
64569
|
export declare type JiraSetBoardViewFilterPayload = Payload & {
|
|
@@ -63589,6 +64575,7 @@ export declare type JiraSetBoardViewFilterPayload = Payload & {
|
|
|
63589
64575
|
};
|
|
63590
64576
|
export declare type JiraSetBoardViewGroupByInput = {
|
|
63591
64577
|
fieldId: Scalars['String']['input'];
|
|
64578
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
63592
64579
|
viewId: Scalars['ID']['input'];
|
|
63593
64580
|
};
|
|
63594
64581
|
export declare type JiraSetBoardViewGroupByPayload = Payload & {
|
|
@@ -63600,6 +64587,7 @@ export declare type JiraSetBoardViewGroupByPayload = Payload & {
|
|
|
63600
64587
|
};
|
|
63601
64588
|
export declare type JiraSetBoardViewWorkflowSelectedInput = {
|
|
63602
64589
|
selectedWorkflowId: Scalars['ID']['input'];
|
|
64590
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
63603
64591
|
viewId: Scalars['ID']['input'];
|
|
63604
64592
|
};
|
|
63605
64593
|
export declare type JiraSetBoardViewWorkflowSelectedPayload = Payload & {
|
|
@@ -68432,6 +69420,18 @@ export declare type LookAndFeelSettings = {
|
|
|
68432
69420
|
selected?: Maybe<Scalars['String']['output']>;
|
|
68433
69421
|
theme?: Maybe<LookAndFeel>;
|
|
68434
69422
|
};
|
|
69423
|
+
export declare type LoomComment = Node & {
|
|
69424
|
+
__typename?: 'LoomComment';
|
|
69425
|
+
content?: Maybe<Scalars['String']['output']>;
|
|
69426
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
69427
|
+
editedAt?: Maybe<Scalars['String']['output']>;
|
|
69428
|
+
id: Scalars['ID']['output'];
|
|
69429
|
+
timestamp?: Maybe<Scalars['Int']['output']>;
|
|
69430
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
69431
|
+
user?: Maybe<User>;
|
|
69432
|
+
userId?: Maybe<Scalars['ID']['output']>;
|
|
69433
|
+
videoId: Scalars['ID']['output'];
|
|
69434
|
+
};
|
|
68435
69435
|
export declare type LoomMeeting = Node & {
|
|
68436
69436
|
__typename?: 'LoomMeeting';
|
|
68437
69437
|
endsAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -68478,6 +69478,7 @@ export declare type LoomVideo = Node & {
|
|
|
68478
69478
|
__typename?: 'LoomVideo';
|
|
68479
69479
|
description?: Maybe<Scalars['String']['output']>;
|
|
68480
69480
|
id: Scalars['ID']['output'];
|
|
69481
|
+
isArchived: Scalars['Boolean']['output'];
|
|
68481
69482
|
name: Scalars['String']['output'];
|
|
68482
69483
|
owner?: Maybe<User>;
|
|
68483
69484
|
ownerId?: Maybe<Scalars['String']['output']>;
|
|
@@ -71807,8 +72808,6 @@ export declare type MercuryQueryApi = {
|
|
|
71807
72808
|
myPreference?: Maybe<MercuryPreference>;
|
|
71808
72809
|
myPreferences?: Maybe<Array<MercuryPreference>>;
|
|
71809
72810
|
portfoliosByAris?: Maybe<Array<MercuryPortfolio>>;
|
|
71810
|
-
providerWork?: Maybe<MercuryProviderWork>;
|
|
71811
|
-
providerWorksByAris?: Maybe<Array<MercuryProviderWork>>;
|
|
71812
72811
|
team?: Maybe<MercuryTeam>;
|
|
71813
72812
|
teams?: Maybe<MercuryTeamConnection>;
|
|
71814
72813
|
workspaceContext: MercuryWorkspaceContext;
|
|
@@ -71907,13 +72906,6 @@ export declare type MercuryQueryApiMyPreferencesArgs = {
|
|
|
71907
72906
|
export declare type MercuryQueryApiPortfoliosByArisArgs = {
|
|
71908
72907
|
aris?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
71909
72908
|
};
|
|
71910
|
-
export declare type MercuryQueryApiProviderWorkArgs = {
|
|
71911
|
-
cloudId: Scalars['ID']['input'];
|
|
71912
|
-
id: Scalars['ID']['input'];
|
|
71913
|
-
};
|
|
71914
|
-
export declare type MercuryQueryApiProviderWorksByArisArgs = {
|
|
71915
|
-
aris?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
71916
|
-
};
|
|
71917
72909
|
export declare type MercuryQueryApiTeamArgs = {
|
|
71918
72910
|
cloudId: Scalars['ID']['input'];
|
|
71919
72911
|
id: Scalars['ID']['input'];
|
|
@@ -72353,7 +73345,9 @@ export declare type Mutation = {
|
|
|
72353
73345
|
addPublicLinkPermissions?: Maybe<AddPublicLinkPermissionsPayload>;
|
|
72354
73346
|
addReaction?: Maybe<SaveReactionResponse>;
|
|
72355
73347
|
agentStudio_createAgent?: Maybe<AgentStudioCreateAgentPayload>;
|
|
73348
|
+
agentStudio_updateAgentActions?: Maybe<AgentStudioUpdateAgentActionsPayload>;
|
|
72356
73349
|
agentStudio_updateAgentDetails?: Maybe<AgentStudioUpdateAgentDetailsPayload>;
|
|
73350
|
+
agentStudio_updateConversationStarters?: Maybe<AgentStudioUpdateConversationStartersPayload>;
|
|
72357
73351
|
appRecommendations?: Maybe<AppRecMutation>;
|
|
72358
73352
|
appStorage?: Maybe<AppStorageMutation>;
|
|
72359
73353
|
appStorageCustomEntity?: Maybe<AppStorageCustomEntityMutation>;
|
|
@@ -72646,6 +73640,7 @@ export declare type Mutation = {
|
|
|
72646
73640
|
devai_continueJobWithPrompt?: Maybe<DevAiAutodevContinueJobWithPromptPayload>;
|
|
72647
73641
|
devai_createTechnicalPlannerJob?: Maybe<DevAiCreateTechnicalPlannerJobPayload>;
|
|
72648
73642
|
devai_invokeAutodevRovoAgent?: Maybe<DevAiInvokeAutodevRovoAgentPayload>;
|
|
73643
|
+
devai_invokeAutodevRovoAgentInBulk?: Maybe<DevAiInvokeAutodevRovoAgentInBulkPayload>;
|
|
72649
73644
|
disableExperiment?: Maybe<TapExperiment>;
|
|
72650
73645
|
disablePublicLinkForPage?: Maybe<DisablePublicLinkForPagePayload>;
|
|
72651
73646
|
disablePublicLinkForSite?: Maybe<PublicLinkSitePayload>;
|
|
@@ -72679,6 +73674,7 @@ export declare type Mutation = {
|
|
|
72679
73674
|
jira?: Maybe<JiraMutation>;
|
|
72680
73675
|
jiraCannedResponse?: Maybe<JiraCannedResponseMutationApi>;
|
|
72681
73676
|
jiraOAuthApps?: Maybe<JiraOAuthAppsMutation>;
|
|
73677
|
+
jira_bulkSetBoardViewColumnState?: Maybe<JiraBulkSetBoardViewColumnStatePayload>;
|
|
72682
73678
|
jira_createCustomBackground?: Maybe<JiraProjectCreateCustomBackgroundMutationPayload>;
|
|
72683
73679
|
jira_deleteCustomBackground?: Maybe<JiraProjectDeleteCustomBackgroundMutationPayload>;
|
|
72684
73680
|
jira_discardUserBoardViewConfig?: Maybe<JiraDiscardUserBoardViewConfigPayload>;
|
|
@@ -72687,6 +73683,7 @@ export declare type Mutation = {
|
|
|
72687
73683
|
jira_setBoardViewCardFieldSelected?: Maybe<JiraSetBoardViewCardFieldSelectedPayload>;
|
|
72688
73684
|
jira_setBoardViewCardOptionState?: Maybe<JiraSetBoardViewCardOptionStatePayload>;
|
|
72689
73685
|
jira_setBoardViewColumnState?: Maybe<JiraSetBoardViewColumnStatePayload>;
|
|
73686
|
+
jira_setBoardViewColumnsOrder?: Maybe<JiraSetBoardViewColumnsOrderPayload>;
|
|
72690
73687
|
jira_setBoardViewCompletedIssueSearchCutOff?: Maybe<JiraSetBoardViewCompletedIssueSearchCutOffPayload>;
|
|
72691
73688
|
jira_setBoardViewFilter?: Maybe<JiraSetBoardViewFilterPayload>;
|
|
72692
73689
|
jira_setBoardViewGroupBy?: Maybe<JiraSetBoardViewGroupByPayload>;
|
|
@@ -72908,10 +73905,18 @@ export declare type MutationAgentStudio_CreateAgentArgs = {
|
|
|
72908
73905
|
cloudId: Scalars['String']['input'];
|
|
72909
73906
|
input: AgentStudioCreateAgentInput;
|
|
72910
73907
|
};
|
|
73908
|
+
export declare type MutationAgentStudio_UpdateAgentActionsArgs = {
|
|
73909
|
+
id: Scalars['ID']['input'];
|
|
73910
|
+
input: AgentStudioActionConfigurationInput;
|
|
73911
|
+
};
|
|
72911
73912
|
export declare type MutationAgentStudio_UpdateAgentDetailsArgs = {
|
|
72912
73913
|
id: Scalars['ID']['input'];
|
|
72913
73914
|
input: AgentStudioUpdateAgentDetailsInput;
|
|
72914
73915
|
};
|
|
73916
|
+
export declare type MutationAgentStudio_UpdateConversationStartersArgs = {
|
|
73917
|
+
id: Scalars['ID']['input'];
|
|
73918
|
+
input: AgentStudioUpdateConversationStartersInput;
|
|
73919
|
+
};
|
|
72915
73920
|
export declare type MutationApplyPolarisProjectTemplateArgs = {
|
|
72916
73921
|
input: ApplyPolarisProjectTemplateInput;
|
|
72917
73922
|
};
|
|
@@ -73838,6 +74843,10 @@ export declare type MutationDevai_InvokeAutodevRovoAgentArgs = {
|
|
|
73838
74843
|
agentId: Scalars['ID']['input'];
|
|
73839
74844
|
issueId: Scalars['ID']['input'];
|
|
73840
74845
|
};
|
|
74846
|
+
export declare type MutationDevai_InvokeAutodevRovoAgentInBulkArgs = {
|
|
74847
|
+
agentId: Scalars['ID']['input'];
|
|
74848
|
+
issueIds: Array<Scalars['ID']['input']>;
|
|
74849
|
+
};
|
|
73841
74850
|
export declare type MutationDisableExperimentArgs = {
|
|
73842
74851
|
experimentKey: Scalars['String']['input'];
|
|
73843
74852
|
};
|
|
@@ -73905,6 +74914,9 @@ export declare type MutationInvokeExtensionArgs = {
|
|
|
73905
74914
|
export declare type MutationInvokePolarisObjectArgs = {
|
|
73906
74915
|
input: InvokePolarisObjectInput;
|
|
73907
74916
|
};
|
|
74917
|
+
export declare type MutationJira_BulkSetBoardViewColumnStateArgs = {
|
|
74918
|
+
input: JiraBulkSetBoardViewColumnStateInput;
|
|
74919
|
+
};
|
|
73908
74920
|
export declare type MutationJira_CreateCustomBackgroundArgs = {
|
|
73909
74921
|
input: JiraCreateCustomBackgroundInput;
|
|
73910
74922
|
};
|
|
@@ -73929,6 +74941,9 @@ export declare type MutationJira_SetBoardViewCardOptionStateArgs = {
|
|
|
73929
74941
|
export declare type MutationJira_SetBoardViewColumnStateArgs = {
|
|
73930
74942
|
input: JiraSetBoardViewColumnStateInput;
|
|
73931
74943
|
};
|
|
74944
|
+
export declare type MutationJira_SetBoardViewColumnsOrderArgs = {
|
|
74945
|
+
input: JiraSetBoardViewColumnsOrderInput;
|
|
74946
|
+
};
|
|
73932
74947
|
export declare type MutationJira_SetBoardViewCompletedIssueSearchCutOffArgs = {
|
|
73933
74948
|
input: JiraSetBoardViewCompletedIssueSearchCutOffInput;
|
|
73934
74949
|
};
|
|
@@ -77107,6 +78122,8 @@ export declare type Query = {
|
|
|
77107
78122
|
agentAI_contextPanel?: Maybe<AgentAiContextPanelResult>;
|
|
77108
78123
|
agentAI_summarizeIssue?: Maybe<AgentAiIssueSummaryResult>;
|
|
77109
78124
|
agentStudio_agentById?: Maybe<AgentStudioAgentResult>;
|
|
78125
|
+
agentStudio_suggestConversationStarters?: Maybe<AgentStudioSuggestConversationStartersResult>;
|
|
78126
|
+
aiCoreApi_vsaReportingByProject?: Maybe<AiCoreApiVsaReportingResult>;
|
|
77110
78127
|
allIndividualSpaces?: Maybe<SpaceInfoConnection>;
|
|
77111
78128
|
allTemplates?: Maybe<PaginatedTemplateInfoList>;
|
|
77112
78129
|
allUpdatesFeed?: Maybe<PaginatedAllUpdatesFeed>;
|
|
@@ -77376,6 +78393,7 @@ export declare type Query = {
|
|
|
77376
78393
|
confluence_atlassianUser?: Maybe<AtlassianUser>;
|
|
77377
78394
|
confluence_calendarPreference?: Maybe<ConfluenceCalendarPreference>;
|
|
77378
78395
|
confluence_calendarTimezones?: Maybe<ConfluenceCalendarTimezones>;
|
|
78396
|
+
confluence_externalCollaboratorsByCriteria?: Maybe<ConfluencePersonConnection>;
|
|
77379
78397
|
confluence_mutationsPlaceholderQuery?: Maybe<Scalars['Boolean']['output']>;
|
|
77380
78398
|
confluence_refreshMigrationMediaSession?: Maybe<ContentMediaSession>;
|
|
77381
78399
|
confluence_search?: Maybe<ConfluenceSearchConnection>;
|
|
@@ -77572,6 +78590,8 @@ export declare type Query = {
|
|
|
77572
78590
|
lookAndFeel?: Maybe<LookAndFeelSettings>;
|
|
77573
78591
|
loomToken?: Maybe<LoomToken>;
|
|
77574
78592
|
loomUserStatus?: Maybe<LoomUserStatus>;
|
|
78593
|
+
loom_comment?: Maybe<LoomComment>;
|
|
78594
|
+
loom_comments?: Maybe<Array<Maybe<LoomComment>>>;
|
|
77575
78595
|
loom_meeting?: Maybe<LoomMeeting>;
|
|
77576
78596
|
loom_meetingRecurrence?: Maybe<LoomMeetingRecurrence>;
|
|
77577
78597
|
loom_meetingRecurrences?: Maybe<Array<Maybe<LoomMeetingRecurrence>>>;
|
|
@@ -77792,6 +78812,13 @@ export declare type QueryAgentAi_SummarizeIssueArgs = {
|
|
|
77792
78812
|
export declare type QueryAgentStudio_AgentByIdArgs = {
|
|
77793
78813
|
id: Scalars['ID']['input'];
|
|
77794
78814
|
};
|
|
78815
|
+
export declare type QueryAgentStudio_SuggestConversationStartersArgs = {
|
|
78816
|
+
cloudId: Scalars['String']['input'];
|
|
78817
|
+
input: AgentStudioSuggestConversationStartersInput;
|
|
78818
|
+
};
|
|
78819
|
+
export declare type QueryAiCoreApi_VsaReportingByProjectArgs = {
|
|
78820
|
+
projectAri: Scalars['ID']['input'];
|
|
78821
|
+
};
|
|
77795
78822
|
export declare type QueryAllIndividualSpacesArgs = {
|
|
77796
78823
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
77797
78824
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -78957,6 +79984,18 @@ export declare type QueryConfluence_CalendarPreferenceArgs = {
|
|
|
78957
79984
|
export declare type QueryConfluence_CalendarTimezonesArgs = {
|
|
78958
79985
|
cloudId: Scalars['ID']['input'];
|
|
78959
79986
|
};
|
|
79987
|
+
export declare type QueryConfluence_ExternalCollaboratorsByCriteriaArgs = {
|
|
79988
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
79989
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
79990
|
+
email?: InputMaybe<Scalars['String']['input']>;
|
|
79991
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
79992
|
+
groupIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
79993
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
79994
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
79995
|
+
sorts?: InputMaybe<Array<InputMaybe<ExternalCollaboratorsSortType>>>;
|
|
79996
|
+
spaceAssignmentType?: InputMaybe<SpaceAssignmentType>;
|
|
79997
|
+
spaceIds?: InputMaybe<Array<InputMaybe<Scalars['Long']['input']>>>;
|
|
79998
|
+
};
|
|
78960
79999
|
export declare type QueryConfluence_RefreshMigrationMediaSessionArgs = {
|
|
78961
80000
|
cloudId: Scalars['ID']['input'];
|
|
78962
80001
|
migrationId: Scalars['String']['input'];
|
|
@@ -79685,6 +80724,12 @@ export declare type QueryLabelSearchArgs = {
|
|
|
79685
80724
|
export declare type QueryLookAndFeelArgs = {
|
|
79686
80725
|
spaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
79687
80726
|
};
|
|
80727
|
+
export declare type QueryLoom_CommentArgs = {
|
|
80728
|
+
id: Scalars['ID']['input'];
|
|
80729
|
+
};
|
|
80730
|
+
export declare type QueryLoom_CommentsArgs = {
|
|
80731
|
+
ids: Array<Scalars['ID']['input']>;
|
|
80732
|
+
};
|
|
79688
80733
|
export declare type QueryLoom_MeetingArgs = {
|
|
79689
80734
|
id: Scalars['ID']['input'];
|
|
79690
80735
|
};
|
|
@@ -80862,6 +81907,7 @@ export declare type RawStatus = {
|
|
|
80862
81907
|
export declare type ReactedUsersResponse = {
|
|
80863
81908
|
__typename?: 'ReactedUsersResponse';
|
|
80864
81909
|
ari: Scalars['String']['output'];
|
|
81910
|
+
confluencePerson: Array<Maybe<ConfluencePerson>>;
|
|
80865
81911
|
containerAri: Scalars['String']['output'];
|
|
80866
81912
|
count: Scalars['Int']['output'];
|
|
80867
81913
|
emojiId: Scalars['String']['output'];
|
|
@@ -82038,6 +83084,7 @@ export declare type ScheduledPublishSummary = {
|
|
|
82038
83084
|
export declare type ScheduledRestriction = {
|
|
82039
83085
|
__typename?: 'ScheduledRestriction';
|
|
82040
83086
|
group?: Maybe<PaginatedGroupList>;
|
|
83087
|
+
personConnection?: Maybe<ConfluencePersonConnection>;
|
|
82041
83088
|
};
|
|
82042
83089
|
export declare type ScheduledRestrictions = {
|
|
82043
83090
|
__typename?: 'ScheduledRestrictions';
|
|
@@ -82623,6 +83670,7 @@ export declare enum SearchIssueStatusCategory {
|
|
|
82623
83670
|
export declare type SearchItemConnection = {
|
|
82624
83671
|
__typename?: 'SearchItemConnection';
|
|
82625
83672
|
abTest?: Maybe<SearchAbTest>;
|
|
83673
|
+
deferredEdges?: Maybe<Array<SearchResultItemEdge>>;
|
|
82626
83674
|
edges: Array<SearchResultItemEdge>;
|
|
82627
83675
|
interleaverScrapingResult?: Maybe<SearchInterleaverScrapingResult>;
|
|
82628
83676
|
pageInfo: PageInfo;
|
|
@@ -82637,10 +83685,12 @@ export declare type SearchJiraFilter = {
|
|
|
82637
83685
|
};
|
|
82638
83686
|
export declare type SearchJiraIssueFilter = {
|
|
82639
83687
|
assigneeARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
83688
|
+
commenterARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
82640
83689
|
issueTypeIDs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
82641
83690
|
projectARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
82642
83691
|
reporterARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
82643
83692
|
statusCategories?: InputMaybe<Array<SearchIssueStatusCategory>>;
|
|
83693
|
+
watcherARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
82644
83694
|
};
|
|
82645
83695
|
export declare type SearchJiraProjectFilter = {
|
|
82646
83696
|
projectTypes?: InputMaybe<Array<SearchProjectType>>;
|
|
@@ -84981,6 +86031,7 @@ export declare type SitePermission = {
|
|
|
84981
86031
|
anonymous?: Maybe<Anonymous>;
|
|
84982
86032
|
anonymousAccessDSPBlocked: Scalars['Boolean']['output'];
|
|
84983
86033
|
groups?: Maybe<PaginatedGroupWithPermissions>;
|
|
86034
|
+
personConnection?: Maybe<ConfluencePersonWithPermissionsConnection>;
|
|
84984
86035
|
unlicensedUserWithPermissions?: Maybe<UnlicensedUserWithPermissions>;
|
|
84985
86036
|
};
|
|
84986
86037
|
export declare type SitePermissionGroupsArgs = {
|
|
@@ -84988,6 +86039,11 @@ export declare type SitePermissionGroupsArgs = {
|
|
|
84988
86039
|
filterText?: InputMaybe<Scalars['String']['input']>;
|
|
84989
86040
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
84990
86041
|
};
|
|
86042
|
+
export declare type SitePermissionPersonConnectionArgs = {
|
|
86043
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
86044
|
+
filterText?: InputMaybe<Scalars['String']['input']>;
|
|
86045
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
86046
|
+
};
|
|
84991
86047
|
export declare type SitePermissionInput = {
|
|
84992
86048
|
permissionsToAdd?: InputMaybe<UpdateSitePermissionInput>;
|
|
84993
86049
|
permissionsToRemove?: InputMaybe<UpdateSitePermissionInput>;
|
|
@@ -85532,6 +86588,10 @@ export declare type SpaceSpaceAdminsArgs = {
|
|
|
85532
86588
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
85533
86589
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
85534
86590
|
};
|
|
86591
|
+
export declare enum SpaceAssignmentType {
|
|
86592
|
+
Assigned = "ASSIGNED",
|
|
86593
|
+
Unassigned = "UNASSIGNED"
|
|
86594
|
+
}
|
|
85535
86595
|
export declare type SpaceDescriptions = {
|
|
85536
86596
|
__typename?: 'SpaceDescriptions';
|
|
85537
86597
|
atlas_doc_format?: Maybe<FormattedBody>;
|
|
@@ -85662,6 +86722,8 @@ export declare type SpaceManagerRecordPageInfo = {
|
|
|
85662
86722
|
export declare type SpaceMetadata = {
|
|
85663
86723
|
__typename?: 'SpaceMetadata';
|
|
85664
86724
|
labels?: Maybe<PaginatedLabelList>;
|
|
86725
|
+
recentCommenterConnection?: Maybe<ConfluencePersonConnection>;
|
|
86726
|
+
recentWatcherConnection?: Maybe<ConfluencePersonConnection>;
|
|
85665
86727
|
totalCommenters: Scalars['Long']['output'];
|
|
85666
86728
|
totalCurrentBlogPosts: Scalars['Long']['output'];
|
|
85667
86729
|
totalCurrentPages: Scalars['Long']['output'];
|
|
@@ -86172,6 +87234,7 @@ export declare type SubjectsByType = {
|
|
|
86172
87234
|
group?: Maybe<PaginatedGroupList>;
|
|
86173
87235
|
groupWithRestrictions?: Maybe<PaginatedGroupWithRestrictions>;
|
|
86174
87236
|
links?: Maybe<LinksContextBase>;
|
|
87237
|
+
personConnection?: Maybe<ConfluencePersonConnection>;
|
|
86175
87238
|
userWithRestrictions?: Maybe<PaginatedUserWithRestrictions>;
|
|
86176
87239
|
};
|
|
86177
87240
|
export declare type SubjectsByTypeGroupArgs = {
|
|
@@ -86182,6 +87245,10 @@ export declare type SubjectsByTypeGroupWithRestrictionsArgs = {
|
|
|
86182
87245
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
86183
87246
|
start?: InputMaybe<Scalars['Int']['input']>;
|
|
86184
87247
|
};
|
|
87248
|
+
export declare type SubjectsByTypePersonConnectionArgs = {
|
|
87249
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
87250
|
+
start?: InputMaybe<Scalars['Int']['input']>;
|
|
87251
|
+
};
|
|
86185
87252
|
export declare type SubjectsByTypeUserWithRestrictionsArgs = {
|
|
86186
87253
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
86187
87254
|
start?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -87669,6 +88736,7 @@ export declare type TownsquareGoal = Node & {
|
|
|
87669
88736
|
status?: Maybe<TownsquareStatus>;
|
|
87670
88737
|
subGoalSuggestions?: Maybe<TownsquareGoalConnection>;
|
|
87671
88738
|
subGoals?: Maybe<TownsquareGoalConnection>;
|
|
88739
|
+
tags?: Maybe<TownsquareTagConnection>;
|
|
87672
88740
|
targetDate?: Maybe<TownsquareTargetDate>;
|
|
87673
88741
|
updates?: Maybe<TownsquareGoalUpdateConnection>;
|
|
87674
88742
|
url?: Maybe<Scalars['String']['output']>;
|
|
@@ -87689,6 +88757,10 @@ export declare type TownsquareGoalSubGoalsArgs = {
|
|
|
87689
88757
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
87690
88758
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
87691
88759
|
};
|
|
88760
|
+
export declare type TownsquareGoalTagsArgs = {
|
|
88761
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
88762
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
88763
|
+
};
|
|
87692
88764
|
export declare type TownsquareGoalUpdatesArgs = {
|
|
87693
88765
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
87694
88766
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -87923,10 +88995,15 @@ export declare type TownsquareProject = HasMercuryProjectFields & Node & {
|
|
|
87923
88995
|
name: Scalars['String']['output'];
|
|
87924
88996
|
owner?: Maybe<User>;
|
|
87925
88997
|
state?: Maybe<TownsquareProjectState>;
|
|
88998
|
+
tags?: Maybe<TownsquareTagConnection>;
|
|
87926
88999
|
updates?: Maybe<TownsquareProjectUpdateConnection>;
|
|
87927
89000
|
url?: Maybe<Scalars['String']['output']>;
|
|
87928
89001
|
uuid: Scalars['String']['output'];
|
|
87929
89002
|
};
|
|
89003
|
+
export declare type TownsquareProjectTagsArgs = {
|
|
89004
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
89005
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
89006
|
+
};
|
|
87930
89007
|
export declare type TownsquareProjectUpdatesArgs = {
|
|
87931
89008
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
87932
89009
|
createdAtOrAfter?: InputMaybe<Scalars['DateTime']['input']>;
|
|
@@ -88164,7 +89241,9 @@ export declare type TownsquareStatus = {
|
|
|
88164
89241
|
};
|
|
88165
89242
|
export declare type TownsquareTag = Node & {
|
|
88166
89243
|
__typename?: 'TownsquareTag';
|
|
89244
|
+
creationDate?: Maybe<Scalars['DateTime']['output']>;
|
|
88167
89245
|
description?: Maybe<Scalars['String']['output']>;
|
|
89246
|
+
iconData?: Maybe<Scalars['String']['output']>;
|
|
88168
89247
|
id: Scalars['ID']['output'];
|
|
88169
89248
|
name?: Maybe<Scalars['String']['output']>;
|
|
88170
89249
|
};
|
|
@@ -88820,6 +89899,7 @@ export declare type TrelloCard = Node & {
|
|
|
88820
89899
|
badges?: Maybe<TrelloCardBadges>;
|
|
88821
89900
|
checklists?: Maybe<TrelloChecklistConnection>;
|
|
88822
89901
|
closed?: Maybe<Scalars['Boolean']['output']>;
|
|
89902
|
+
complete?: Maybe<Scalars['Boolean']['output']>;
|
|
88823
89903
|
cover?: Maybe<TrelloCardCover>;
|
|
88824
89904
|
creation?: Maybe<TrelloCardCreationInfo>;
|
|
88825
89905
|
customFieldItems?: Maybe<TrelloCustomFieldItemConnection>;
|
|
@@ -89044,6 +90124,7 @@ export declare type TrelloCardUpdated = {
|
|
|
89044
90124
|
badges?: Maybe<TrelloCardBadges>;
|
|
89045
90125
|
checklists?: Maybe<TrelloChecklistConnectionUpdated>;
|
|
89046
90126
|
closed?: Maybe<Scalars['Boolean']['output']>;
|
|
90127
|
+
complete?: Maybe<Scalars['Boolean']['output']>;
|
|
89047
90128
|
cover?: Maybe<TrelloCardCoverUpdated>;
|
|
89048
90129
|
creation?: Maybe<TrelloCardCreationInfo>;
|
|
89049
90130
|
customFieldItems?: Maybe<TrelloCustomFieldItemUpdatedConnection>;
|
|
@@ -91297,8 +92378,13 @@ export declare type UpdateAppDetailsInput = {
|
|
|
91297
92378
|
avatarFileId?: InputMaybe<Scalars['String']['input']>;
|
|
91298
92379
|
contactLink?: InputMaybe<Scalars['String']['input']>;
|
|
91299
92380
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
92381
|
+
distributionStatus?: InputMaybe<DistributionStatus>;
|
|
92382
|
+
hasPDReportingApiImplemented?: InputMaybe<Scalars['Boolean']['input']>;
|
|
91300
92383
|
name: Scalars['String']['input'];
|
|
91301
92384
|
privacyPolicy?: InputMaybe<Scalars['String']['input']>;
|
|
92385
|
+
storesPersonalData?: InputMaybe<Scalars['Boolean']['input']>;
|
|
92386
|
+
termsOfService?: InputMaybe<Scalars['String']['input']>;
|
|
92387
|
+
vendorName?: InputMaybe<Scalars['String']['input']>;
|
|
91302
92388
|
};
|
|
91303
92389
|
export declare type UpdateAppDetailsResponse = Payload & {
|
|
91304
92390
|
__typename?: 'UpdateAppDetailsResponse';
|