@forge/cli-shared 6.6.1-next.6 → 6.6.1-next.8
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 +15 -0
- package/out/graphql/graphql-types.d.ts +1042 -22
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +155 -23
- package/package.json +2 -2
|
@@ -596,7 +596,7 @@ export declare type ActivityObject = {
|
|
|
596
596
|
subProduct?: Maybe<Scalars['String']['output']>;
|
|
597
597
|
type: Scalars['String']['output'];
|
|
598
598
|
};
|
|
599
|
-
export declare type ActivityObjectData = BitbucketPullRequest | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceWhiteboard | DevOpsDesign | DevOpsDocument | DevOpsPullRequestDetails | JiraIssue | JiraPlatformComment | JiraServiceManagementComment | MercuryFocusArea | MercuryPortfolio | TownsquareComment | TownsquareGoal | TownsquareProject | TrelloAttachment | TrelloBoard | TrelloCard | TrelloLabel | TrelloList | TrelloMember;
|
|
599
|
+
export declare type ActivityObjectData = BitbucketPullRequest | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceWhiteboard | DevOpsDesign | DevOpsDocument | DevOpsPullRequestDetails | JiraIssue | JiraPlatformComment | JiraServiceManagementComment | LoomVideo | MercuryFocusArea | MercuryPortfolio | TownsquareComment | TownsquareGoal | TownsquareProject | TrelloAttachment | TrelloBoard | TrelloCard | TrelloLabel | TrelloList | TrelloMember;
|
|
600
600
|
export declare enum ActivityObjectType {
|
|
601
601
|
Blogpost = "BLOGPOST",
|
|
602
602
|
Comment = "COMMENT",
|
|
@@ -775,6 +775,9 @@ export declare type AgentAiSummary = {
|
|
|
775
775
|
export declare type AgentStudioAction = {
|
|
776
776
|
__typename?: 'AgentStudioAction';
|
|
777
777
|
actionKey: Scalars['String']['output'];
|
|
778
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
779
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
780
|
+
tags?: Maybe<Array<Scalars['String']['output']>>;
|
|
778
781
|
};
|
|
779
782
|
export declare type AgentStudioActionConfiguration = {
|
|
780
783
|
__typename?: 'AgentStudioActionConfiguration';
|
|
@@ -815,6 +818,10 @@ export declare type AgentStudioConfluenceKnowledgeFilterInput = {
|
|
|
815
818
|
parentFilter?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
816
819
|
spaceFilter?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
817
820
|
};
|
|
821
|
+
export declare type AgentStudioConversationStarterSuggestions = {
|
|
822
|
+
__typename?: 'AgentStudioConversationStarterSuggestions';
|
|
823
|
+
suggestions?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
824
|
+
};
|
|
818
825
|
export declare type AgentStudioCreateAgentInput = {
|
|
819
826
|
actions?: InputMaybe<AgentStudioActionConfigurationInput>;
|
|
820
827
|
agentType: AgentStudioAgentType;
|
|
@@ -862,6 +869,18 @@ export declare type AgentStudioKnowledgeSourceInput = {
|
|
|
862
869
|
filters?: InputMaybe<AgentStudioKnowledgeFiltersInput>;
|
|
863
870
|
source: Scalars['String']['input'];
|
|
864
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
|
+
};
|
|
865
884
|
export declare type AgentStudioUpdateAgentDetailsInput = {
|
|
866
885
|
creatorId?: InputMaybe<Scalars['ID']['input']>;
|
|
867
886
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -874,6 +893,15 @@ export declare type AgentStudioUpdateAgentDetailsPayload = Payload & {
|
|
|
874
893
|
errors?: Maybe<Array<MutationError>>;
|
|
875
894
|
success: Scalars['Boolean']['output'];
|
|
876
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
|
+
};
|
|
877
905
|
export declare enum AlertEventStatus {
|
|
878
906
|
Acknowledged = "ACKNOWLEDGED",
|
|
879
907
|
Closed = "CLOSED",
|
|
@@ -2521,10 +2549,14 @@ export declare type BitbucketPullRequest = Node & {
|
|
|
2521
2549
|
};
|
|
2522
2550
|
export declare type BitbucketQuery = {
|
|
2523
2551
|
__typename?: 'BitbucketQuery';
|
|
2552
|
+
bitbucketPullRequests?: Maybe<Array<Maybe<BitbucketPullRequest>>>;
|
|
2524
2553
|
bitbucketRepositories?: Maybe<Array<Maybe<BitbucketRepository>>>;
|
|
2525
2554
|
bitbucketRepository?: Maybe<BitbucketRepository>;
|
|
2526
2555
|
bitbucketWorkspace?: Maybe<BitbucketWorkspace>;
|
|
2527
2556
|
};
|
|
2557
|
+
export declare type BitbucketQueryBitbucketPullRequestsArgs = {
|
|
2558
|
+
ids: Array<Scalars['ID']['input']>;
|
|
2559
|
+
};
|
|
2528
2560
|
export declare type BitbucketQueryBitbucketRepositoriesArgs = {
|
|
2529
2561
|
ids: Array<Scalars['ID']['input']>;
|
|
2530
2562
|
};
|
|
@@ -3290,7 +3322,15 @@ export declare enum CcpCreateEntitlementExperienceCapabilityErrorReasonCode {
|
|
|
3290
3322
|
MultipleTransactionAccount = "MULTIPLE_TRANSACTION_ACCOUNT",
|
|
3291
3323
|
UsecaseNotImplemented = "USECASE_NOT_IMPLEMENTED"
|
|
3292
3324
|
}
|
|
3325
|
+
export declare type CcpCreateEntitlementExperienceOptions = {
|
|
3326
|
+
confirmationScreen?: InputMaybe<CcpCreateEntitlementExperienceOptionsConfirmationScreen>;
|
|
3327
|
+
};
|
|
3328
|
+
export declare enum CcpCreateEntitlementExperienceOptionsConfirmationScreen {
|
|
3329
|
+
Comparison = "COMPARISON",
|
|
3330
|
+
Default = "DEFAULT"
|
|
3331
|
+
}
|
|
3293
3332
|
export declare type CcpCreateEntitlementInput = {
|
|
3333
|
+
experienceOptions?: InputMaybe<CcpCreateEntitlementExperienceOptions>;
|
|
3294
3334
|
offeringKey: Scalars['ID']['input'];
|
|
3295
3335
|
orderOptions?: InputMaybe<CcpCreateEntitlementOrderOptions>;
|
|
3296
3336
|
relatesToEntitlements?: InputMaybe<Array<CcpCreateEntitlementRelatesTo>>;
|
|
@@ -6990,6 +7030,7 @@ export declare type CompassJqlMetricDefinitionConfiguration = {
|
|
|
6990
7030
|
};
|
|
6991
7031
|
export declare type CompassJqlMetricDefinitionConfigurationInput = {
|
|
6992
7032
|
customizable: Scalars['Boolean']['input'];
|
|
7033
|
+
format?: InputMaybe<Scalars['String']['input']>;
|
|
6993
7034
|
jql: Scalars['String']['input'];
|
|
6994
7035
|
};
|
|
6995
7036
|
export declare type CompassJqlMetricSourceConfiguration = {
|
|
@@ -15288,6 +15329,26 @@ export declare type ConfluencePerson = Person & {
|
|
|
15288
15329
|
userKey?: Maybe<Scalars['String']['output']>;
|
|
15289
15330
|
username?: Maybe<Scalars['String']['output']>;
|
|
15290
15331
|
};
|
|
15332
|
+
export declare type ConfluencePersonConnection = {
|
|
15333
|
+
__typename?: 'ConfluencePersonConnection';
|
|
15334
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
15335
|
+
edges?: Maybe<Array<Maybe<ConfluencePersonEdge>>>;
|
|
15336
|
+
nodes?: Maybe<Array<Maybe<ConfluencePerson>>>;
|
|
15337
|
+
pageInfo?: Maybe<PageInfo>;
|
|
15338
|
+
};
|
|
15339
|
+
export declare type ConfluencePersonEdge = {
|
|
15340
|
+
__typename?: 'ConfluencePersonEdge';
|
|
15341
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
15342
|
+
node?: Maybe<ConfluencePerson>;
|
|
15343
|
+
};
|
|
15344
|
+
export declare type ConfluencePersonWithPermissionsConnection = {
|
|
15345
|
+
__typename?: 'ConfluencePersonWithPermissionsConnection';
|
|
15346
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
15347
|
+
edges?: Maybe<Array<Maybe<ConfluencePersonEdge>>>;
|
|
15348
|
+
links?: Maybe<LinksContextBase>;
|
|
15349
|
+
nodes?: Maybe<Array<Maybe<ConfluencePerson>>>;
|
|
15350
|
+
pageInfo?: Maybe<PageInfo>;
|
|
15351
|
+
};
|
|
15291
15352
|
export declare enum ConfluencePrincipalType {
|
|
15292
15353
|
Group = "GROUP",
|
|
15293
15354
|
User = "USER"
|
|
@@ -21165,6 +21226,11 @@ export declare type DevAiGenericMutationErrorExtension = MutationErrorExtension
|
|
|
21165
21226
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
21166
21227
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
21167
21228
|
};
|
|
21229
|
+
export declare type DevAiInvokeAutodevRovoAgentInBulkPayload = Payload & {
|
|
21230
|
+
__typename?: 'DevAiInvokeAutodevRovoAgentInBulkPayload';
|
|
21231
|
+
errors?: Maybe<Array<MutationError>>;
|
|
21232
|
+
success: Scalars['Boolean']['output'];
|
|
21233
|
+
};
|
|
21168
21234
|
export declare type DevAiInvokeAutodevRovoAgentPayload = Payload & {
|
|
21169
21235
|
__typename?: 'DevAiInvokeAutodevRovoAgentPayload';
|
|
21170
21236
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -23199,6 +23265,7 @@ export declare type EcosystemMarketplaceAppVersion = {
|
|
|
23199
23265
|
buildNumber: Scalars['Float']['output'];
|
|
23200
23266
|
editionsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
23201
23267
|
isSupported?: Maybe<Scalars['Boolean']['output']>;
|
|
23268
|
+
paymentModel?: Maybe<EcosystemMarketplacePaymentModel>;
|
|
23202
23269
|
version: Scalars['String']['output'];
|
|
23203
23270
|
};
|
|
23204
23271
|
export declare type EcosystemMarketplaceData = {
|
|
@@ -23208,12 +23275,41 @@ export declare type EcosystemMarketplaceData = {
|
|
|
23208
23275
|
cloudAppId: Scalars['ID']['output'];
|
|
23209
23276
|
forumsUrl?: Maybe<Scalars['String']['output']>;
|
|
23210
23277
|
issueTrackerUrl?: Maybe<Scalars['String']['output']>;
|
|
23278
|
+
listingStatus?: Maybe<EcosystemMarketplaceListingStatus>;
|
|
23211
23279
|
name?: Maybe<Scalars['String']['output']>;
|
|
23280
|
+
partner?: Maybe<EcosystemMarketplacePartner>;
|
|
23212
23281
|
slug?: Maybe<Scalars['String']['output']>;
|
|
23213
23282
|
supportTicketSystemUrl?: Maybe<Scalars['String']['output']>;
|
|
23214
23283
|
versions?: Maybe<EcosystemMarketplaceVersionConnection>;
|
|
23215
23284
|
wikiUrl?: Maybe<Scalars['String']['output']>;
|
|
23216
23285
|
};
|
|
23286
|
+
export declare enum EcosystemMarketplaceListingStatus {
|
|
23287
|
+
Private = "PRIVATE",
|
|
23288
|
+
Public = "PUBLIC",
|
|
23289
|
+
ReadyToLaunch = "READY_TO_LAUNCH",
|
|
23290
|
+
Rejected = "REJECTED",
|
|
23291
|
+
Submitted = "SUBMITTED"
|
|
23292
|
+
}
|
|
23293
|
+
export declare type EcosystemMarketplacePartner = {
|
|
23294
|
+
__typename?: 'EcosystemMarketplacePartner';
|
|
23295
|
+
id: Scalars['ID']['output'];
|
|
23296
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
23297
|
+
support?: Maybe<EcosystemMarketplacePartnerSupport>;
|
|
23298
|
+
};
|
|
23299
|
+
export declare type EcosystemMarketplacePartnerSupport = {
|
|
23300
|
+
__typename?: 'EcosystemMarketplacePartnerSupport';
|
|
23301
|
+
contactDetails?: Maybe<EcosystemMarketplacePartnerSupportContact>;
|
|
23302
|
+
};
|
|
23303
|
+
export declare type EcosystemMarketplacePartnerSupportContact = {
|
|
23304
|
+
__typename?: 'EcosystemMarketplacePartnerSupportContact';
|
|
23305
|
+
emailId?: Maybe<Scalars['String']['output']>;
|
|
23306
|
+
websiteUrl?: Maybe<Scalars['String']['output']>;
|
|
23307
|
+
};
|
|
23308
|
+
export declare enum EcosystemMarketplacePaymentModel {
|
|
23309
|
+
Free = "FREE",
|
|
23310
|
+
PaidViaAtlassian = "PAID_VIA_ATLASSIAN",
|
|
23311
|
+
PaidViaPartner = "PAID_VIA_PARTNER"
|
|
23312
|
+
}
|
|
23217
23313
|
export declare type EcosystemMarketplaceVersionConnection = {
|
|
23218
23314
|
__typename?: 'EcosystemMarketplaceVersionConnection';
|
|
23219
23315
|
edges?: Maybe<Array<EcosystemMarketplaceVersionEdge>>;
|
|
@@ -23954,6 +24050,13 @@ export declare type ExternalCollaboratorFeature = {
|
|
|
23954
24050
|
__typename?: 'ExternalCollaboratorFeature';
|
|
23955
24051
|
isEntitled: Scalars['Boolean']['output'];
|
|
23956
24052
|
};
|
|
24053
|
+
export declare enum ExternalCollaboratorsSortField {
|
|
24054
|
+
Name = "NAME"
|
|
24055
|
+
}
|
|
24056
|
+
export declare type ExternalCollaboratorsSortType = {
|
|
24057
|
+
field?: InputMaybe<ExternalCollaboratorsSortField>;
|
|
24058
|
+
isAscending?: InputMaybe<Scalars['Boolean']['input']>;
|
|
24059
|
+
};
|
|
23957
24060
|
export declare type ExternalComment = Node & {
|
|
23958
24061
|
__typename?: 'ExternalComment';
|
|
23959
24062
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
@@ -29738,6 +29841,8 @@ export declare type GraphStore = {
|
|
|
29738
29841
|
atlasGoalHasOwnerInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasOwnerInverseConnection>;
|
|
29739
29842
|
atlasGoalHasSubAtlasGoal?: Maybe<GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalConnection>;
|
|
29740
29843
|
atlasGoalHasSubAtlasGoalInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalInverseConnection>;
|
|
29844
|
+
atlasGoalHasUpdate?: Maybe<GraphStoreSimplifiedAtlasGoalHasUpdateConnection>;
|
|
29845
|
+
atlasGoalHasUpdateInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasUpdateInverseConnection>;
|
|
29741
29846
|
atlasHomeFeed: GraphStoreAtlasHomeQueryConnection;
|
|
29742
29847
|
atlasProjectContributesToAtlasGoal?: Maybe<GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalConnection>;
|
|
29743
29848
|
atlasProjectContributesToAtlasGoalInverse?: Maybe<GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalInverseConnection>;
|
|
@@ -29759,6 +29864,10 @@ export declare type GraphStore = {
|
|
|
29759
29864
|
atlasProjectIsTrackedOnJiraEpicInverse?: Maybe<GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicInverseConnection>;
|
|
29760
29865
|
atlasProjectIsTrackedOnJiraEpicInverseRelationship?: Maybe<GraphStoreFullAtlasProjectIsTrackedOnJiraEpicConnection>;
|
|
29761
29866
|
atlasProjectIsTrackedOnJiraEpicRelationship?: Maybe<GraphStoreFullAtlasProjectIsTrackedOnJiraEpicConnection>;
|
|
29867
|
+
boardBelongsToProject?: Maybe<GraphStoreSimplifiedBoardBelongsToProjectConnection>;
|
|
29868
|
+
boardBelongsToProjectInverse?: Maybe<GraphStoreSimplifiedBoardBelongsToProjectInverseConnection>;
|
|
29869
|
+
calendarHasLinkedDocument?: Maybe<GraphStoreSimplifiedCalendarHasLinkedDocumentConnection>;
|
|
29870
|
+
calendarHasLinkedDocumentInverse?: Maybe<GraphStoreSimplifiedCalendarHasLinkedDocumentInverseConnection>;
|
|
29762
29871
|
componentAssociatedDocument?: Maybe<GraphStoreSimplifiedComponentAssociatedDocumentConnection>;
|
|
29763
29872
|
componentAssociatedDocumentInverse?: Maybe<GraphStoreSimplifiedComponentAssociatedDocumentInverseConnection>;
|
|
29764
29873
|
componentAssociatedDocumentInverseRelationship?: Maybe<GraphStoreFullComponentAssociatedDocumentConnection>;
|
|
@@ -29772,8 +29881,12 @@ export declare type GraphStore = {
|
|
|
29772
29881
|
componentLinkedJswIssueInverse?: Maybe<GraphStoreSimplifiedComponentLinkedJswIssueInverseConnection>;
|
|
29773
29882
|
componentLinkedJswIssueInverseRelationship?: Maybe<GraphStoreFullComponentLinkedJswIssueConnection>;
|
|
29774
29883
|
componentLinkedJswIssueRelationship?: Maybe<GraphStoreFullComponentLinkedJswIssueConnection>;
|
|
29884
|
+
confluenceBlogpostHasComment?: Maybe<GraphStoreSimplifiedConfluenceBlogpostHasCommentConnection>;
|
|
29885
|
+
confluenceBlogpostHasCommentInverse?: Maybe<GraphStoreSimplifiedConfluenceBlogpostHasCommentInverseConnection>;
|
|
29775
29886
|
confluenceBlogpostSharedWithUser?: Maybe<GraphStoreSimplifiedConfluenceBlogpostSharedWithUserConnection>;
|
|
29776
29887
|
confluenceBlogpostSharedWithUserInverse?: Maybe<GraphStoreSimplifiedConfluenceBlogpostSharedWithUserInverseConnection>;
|
|
29888
|
+
confluencePageHasComment?: Maybe<GraphStoreSimplifiedConfluencePageHasCommentConnection>;
|
|
29889
|
+
confluencePageHasCommentInverse?: Maybe<GraphStoreSimplifiedConfluencePageHasCommentInverseConnection>;
|
|
29777
29890
|
confluencePageHasConfluenceComment?: Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceCommentConnection>;
|
|
29778
29891
|
confluencePageHasConfluenceCommentInverse?: Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceCommentInverseConnection>;
|
|
29779
29892
|
confluencePageHasConfluenceDatabase?: Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceDatabaseConnection>;
|
|
@@ -29816,6 +29929,8 @@ export declare type GraphStore = {
|
|
|
29816
29929
|
focusAreaHasFocusAreaBatch?: Maybe<GraphStoreBatchFocusAreaHasFocusAreaConnection>;
|
|
29817
29930
|
focusAreaHasFocusAreaInverse?: Maybe<GraphStoreSimplifiedFocusAreaHasFocusAreaInverseConnection>;
|
|
29818
29931
|
focusAreaHasFocusAreaInverseBatch?: Maybe<GraphStoreBatchFocusAreaHasFocusAreaConnection>;
|
|
29932
|
+
focusAreaHasPage?: Maybe<GraphStoreSimplifiedFocusAreaHasPageConnection>;
|
|
29933
|
+
focusAreaHasPageInverse?: Maybe<GraphStoreSimplifiedFocusAreaHasPageInverseConnection>;
|
|
29819
29934
|
focusAreaHasProject?: Maybe<GraphStoreSimplifiedFocusAreaHasProjectConnection>;
|
|
29820
29935
|
focusAreaHasProjectBatch?: Maybe<GraphStoreBatchFocusAreaHasProjectConnection>;
|
|
29821
29936
|
focusAreaHasProjectInverse?: Maybe<GraphStoreSimplifiedFocusAreaHasProjectInverseConnection>;
|
|
@@ -29915,6 +30030,8 @@ export declare type GraphStore = {
|
|
|
29915
30030
|
issueToWhiteboardInverse?: Maybe<GraphStoreSimplifiedIssueToWhiteboardInverseConnection>;
|
|
29916
30031
|
issueToWhiteboardInverseRelationship?: Maybe<GraphStoreFullIssueToWhiteboardConnection>;
|
|
29917
30032
|
issueToWhiteboardRelationship?: Maybe<GraphStoreFullIssueToWhiteboardConnection>;
|
|
30033
|
+
jcsIssueAssociatedSupportEscalation?: Maybe<GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationConnection>;
|
|
30034
|
+
jcsIssueAssociatedSupportEscalationInverse?: Maybe<GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationInverseConnection>;
|
|
29918
30035
|
jiraEpicContributesToAtlasGoal?: Maybe<GraphStoreSimplifiedJiraEpicContributesToAtlasGoalConnection>;
|
|
29919
30036
|
jiraEpicContributesToAtlasGoalInverse?: Maybe<GraphStoreSimplifiedJiraEpicContributesToAtlasGoalInverseConnection>;
|
|
29920
30037
|
jiraEpicContributesToAtlasGoalInverseRelationship?: Maybe<GraphStoreFullJiraEpicContributesToAtlasGoalConnection>;
|
|
@@ -29954,6 +30071,7 @@ export declare type GraphStore = {
|
|
|
29954
30071
|
meetingHasMeetingNotesPage?: Maybe<GraphStoreSimplifiedMeetingHasMeetingNotesPageConnection>;
|
|
29955
30072
|
meetingRecordingOwnerHasMeetingNotesFolder?: Maybe<GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderConnection>;
|
|
29956
30073
|
meetingRecordingOwnerHasMeetingNotesFolderInverse?: Maybe<GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderInverseConnection>;
|
|
30074
|
+
meetingRecurrenceHasMeetingRecurrenceNotesPage?: Maybe<GraphStoreSimplifiedMeetingRecurrenceHasMeetingRecurrenceNotesPageConnection>;
|
|
29957
30075
|
onPremProjectHasIssue?: Maybe<GraphStoreSimplifiedOnPremProjectHasIssueConnection>;
|
|
29958
30076
|
onPremProjectHasIssueInverse?: Maybe<GraphStoreSimplifiedOnPremProjectHasIssueInverseConnection>;
|
|
29959
30077
|
operationsContainerImpactedByIncident?: Maybe<GraphStoreSimplifiedOperationsContainerImpactedByIncidentConnection>;
|
|
@@ -30069,11 +30187,15 @@ export declare type GraphStore = {
|
|
|
30069
30187
|
projectHasVersionRelationship?: Maybe<GraphStoreFullProjectHasVersionConnection>;
|
|
30070
30188
|
projectLinkedToCompassComponent?: Maybe<GraphStoreSimplifiedProjectLinkedToCompassComponentConnection>;
|
|
30071
30189
|
projectLinkedToCompassComponentInverse?: Maybe<GraphStoreSimplifiedProjectLinkedToCompassComponentInverseConnection>;
|
|
30190
|
+
pullRequestLinksToService?: Maybe<GraphStoreSimplifiedPullRequestLinksToServiceConnection>;
|
|
30191
|
+
pullRequestLinksToServiceInverse?: Maybe<GraphStoreSimplifiedPullRequestLinksToServiceInverseConnection>;
|
|
30072
30192
|
securityContainerAssociatedToVulnerability?: Maybe<GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityConnection>;
|
|
30073
30193
|
securityContainerAssociatedToVulnerabilityBatch?: Maybe<GraphStoreBatchSecurityContainerAssociatedToVulnerabilityConnection>;
|
|
30074
30194
|
securityContainerAssociatedToVulnerabilityInverseBatch?: Maybe<GraphStoreBatchSecurityContainerAssociatedToVulnerabilityConnection>;
|
|
30075
30195
|
securityContainerAssociatedToVulnerabilityInverseRelationship?: Maybe<GraphStoreFullSecurityContainerAssociatedToVulnerabilityConnection>;
|
|
30076
30196
|
securityContainerAssociatedToVulnerabilityRelationship?: Maybe<GraphStoreFullSecurityContainerAssociatedToVulnerabilityConnection>;
|
|
30197
|
+
serviceAssociatedBranch?: Maybe<GraphStoreSimplifiedServiceAssociatedBranchConnection>;
|
|
30198
|
+
serviceAssociatedBranchInverse?: Maybe<GraphStoreSimplifiedServiceAssociatedBranchInverseConnection>;
|
|
30077
30199
|
serviceAssociatedDeployment?: Maybe<GraphStoreSimplifiedServiceAssociatedDeploymentConnection>;
|
|
30078
30200
|
serviceAssociatedDeploymentInverse?: Maybe<GraphStoreSimplifiedServiceAssociatedDeploymentInverseConnection>;
|
|
30079
30201
|
serviceAssociatedRemoteLink?: Maybe<GraphStoreSimplifiedServiceAssociatedRemoteLinkConnection>;
|
|
@@ -30187,6 +30309,8 @@ export declare type GraphStore = {
|
|
|
30187
30309
|
userCreatedDesignInverse?: Maybe<GraphStoreSimplifiedUserCreatedDesignInverseConnection>;
|
|
30188
30310
|
userCreatedDocument?: Maybe<GraphStoreSimplifiedUserCreatedDocumentConnection>;
|
|
30189
30311
|
userCreatedDocumentInverse?: Maybe<GraphStoreSimplifiedUserCreatedDocumentInverseConnection>;
|
|
30312
|
+
userCreatedIssueComment?: Maybe<GraphStoreSimplifiedUserCreatedIssueCommentConnection>;
|
|
30313
|
+
userCreatedIssueCommentInverse?: Maybe<GraphStoreSimplifiedUserCreatedIssueCommentInverseConnection>;
|
|
30190
30314
|
userCreatedIssueWorklog?: Maybe<GraphStoreSimplifiedUserCreatedIssueWorklogConnection>;
|
|
30191
30315
|
userCreatedIssueWorklogInverse?: Maybe<GraphStoreSimplifiedUserCreatedIssueWorklogInverseConnection>;
|
|
30192
30316
|
userCreatedLoomVideo?: Maybe<GraphStoreSimplifiedUserCreatedLoomVideoConnection>;
|
|
@@ -30403,6 +30527,22 @@ export declare type GraphStoreAtlasGoalHasSubAtlasGoalInverseArgs = {
|
|
|
30403
30527
|
id: Scalars['ID']['input'];
|
|
30404
30528
|
sort?: InputMaybe<GraphStoreAtlasGoalHasSubAtlasGoalSortInput>;
|
|
30405
30529
|
};
|
|
30530
|
+
export declare type GraphStoreAtlasGoalHasUpdateArgs = {
|
|
30531
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30532
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30533
|
+
filter?: InputMaybe<GraphStoreAtlasGoalHasUpdateFilterInput>;
|
|
30534
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30535
|
+
id: Scalars['ID']['input'];
|
|
30536
|
+
sort?: InputMaybe<GraphStoreAtlasGoalHasUpdateSortInput>;
|
|
30537
|
+
};
|
|
30538
|
+
export declare type GraphStoreAtlasGoalHasUpdateInverseArgs = {
|
|
30539
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30540
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30541
|
+
filter?: InputMaybe<GraphStoreAtlasGoalHasUpdateFilterInput>;
|
|
30542
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30543
|
+
id: Scalars['ID']['input'];
|
|
30544
|
+
sort?: InputMaybe<GraphStoreAtlasGoalHasUpdateSortInput>;
|
|
30545
|
+
};
|
|
30406
30546
|
export declare type GraphStoreAtlasHomeFeedArgs = {
|
|
30407
30547
|
container_ids: Array<Scalars['ID']['input']>;
|
|
30408
30548
|
ranking_criteria?: InputMaybe<GraphStoreAtlasHomeRankingCriteria>;
|
|
@@ -30490,6 +30630,7 @@ export declare type GraphStoreAtlasProjectHasOwnerInverseArgs = {
|
|
|
30490
30630
|
export declare type GraphStoreAtlasProjectHasUpdateArgs = {
|
|
30491
30631
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30492
30632
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30633
|
+
filter?: InputMaybe<GraphStoreAtlasProjectHasUpdateFilterInput>;
|
|
30493
30634
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30494
30635
|
id: Scalars['ID']['input'];
|
|
30495
30636
|
sort?: InputMaybe<GraphStoreAtlasProjectHasUpdateSortInput>;
|
|
@@ -30497,6 +30638,7 @@ export declare type GraphStoreAtlasProjectHasUpdateArgs = {
|
|
|
30497
30638
|
export declare type GraphStoreAtlasProjectHasUpdateInverseArgs = {
|
|
30498
30639
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30499
30640
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30641
|
+
filter?: InputMaybe<GraphStoreAtlasProjectHasUpdateFilterInput>;
|
|
30500
30642
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30501
30643
|
id: Scalars['ID']['input'];
|
|
30502
30644
|
sort?: InputMaybe<GraphStoreAtlasProjectHasUpdateSortInput>;
|
|
@@ -30539,6 +30681,34 @@ export declare type GraphStoreAtlasProjectIsTrackedOnJiraEpicRelationshipArgs =
|
|
|
30539
30681
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30540
30682
|
id: Scalars['ID']['input'];
|
|
30541
30683
|
};
|
|
30684
|
+
export declare type GraphStoreBoardBelongsToProjectArgs = {
|
|
30685
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30686
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30687
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30688
|
+
id: Scalars['ID']['input'];
|
|
30689
|
+
sort?: InputMaybe<GraphStoreBoardBelongsToProjectSortInput>;
|
|
30690
|
+
};
|
|
30691
|
+
export declare type GraphStoreBoardBelongsToProjectInverseArgs = {
|
|
30692
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30693
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30694
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30695
|
+
id: Scalars['ID']['input'];
|
|
30696
|
+
sort?: InputMaybe<GraphStoreBoardBelongsToProjectSortInput>;
|
|
30697
|
+
};
|
|
30698
|
+
export declare type GraphStoreCalendarHasLinkedDocumentArgs = {
|
|
30699
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30700
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30701
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30702
|
+
id: Scalars['ID']['input'];
|
|
30703
|
+
sort?: InputMaybe<GraphStoreCalendarHasLinkedDocumentSortInput>;
|
|
30704
|
+
};
|
|
30705
|
+
export declare type GraphStoreCalendarHasLinkedDocumentInverseArgs = {
|
|
30706
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30707
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30708
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30709
|
+
id: Scalars['ID']['input'];
|
|
30710
|
+
sort?: InputMaybe<GraphStoreCalendarHasLinkedDocumentSortInput>;
|
|
30711
|
+
};
|
|
30542
30712
|
export declare type GraphStoreComponentAssociatedDocumentArgs = {
|
|
30543
30713
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30544
30714
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -30618,6 +30788,20 @@ export declare type GraphStoreComponentLinkedJswIssueRelationshipArgs = {
|
|
|
30618
30788
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30619
30789
|
id: Scalars['ID']['input'];
|
|
30620
30790
|
};
|
|
30791
|
+
export declare type GraphStoreConfluenceBlogpostHasCommentArgs = {
|
|
30792
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30793
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30794
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30795
|
+
id: Scalars['ID']['input'];
|
|
30796
|
+
sort?: InputMaybe<GraphStoreConfluenceBlogpostHasCommentSortInput>;
|
|
30797
|
+
};
|
|
30798
|
+
export declare type GraphStoreConfluenceBlogpostHasCommentInverseArgs = {
|
|
30799
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30800
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30801
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30802
|
+
id: Scalars['ID']['input'];
|
|
30803
|
+
sort?: InputMaybe<GraphStoreConfluenceBlogpostHasCommentSortInput>;
|
|
30804
|
+
};
|
|
30621
30805
|
export declare type GraphStoreConfluenceBlogpostSharedWithUserArgs = {
|
|
30622
30806
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30623
30807
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -30632,6 +30816,20 @@ export declare type GraphStoreConfluenceBlogpostSharedWithUserInverseArgs = {
|
|
|
30632
30816
|
id: Scalars['ID']['input'];
|
|
30633
30817
|
sort?: InputMaybe<GraphStoreConfluenceBlogpostSharedWithUserSortInput>;
|
|
30634
30818
|
};
|
|
30819
|
+
export declare type GraphStoreConfluencePageHasCommentArgs = {
|
|
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<GraphStoreConfluencePageHasCommentSortInput>;
|
|
30825
|
+
};
|
|
30826
|
+
export declare type GraphStoreConfluencePageHasCommentInverseArgs = {
|
|
30827
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30828
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30829
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30830
|
+
id: Scalars['ID']['input'];
|
|
30831
|
+
sort?: InputMaybe<GraphStoreConfluencePageHasCommentSortInput>;
|
|
30832
|
+
};
|
|
30635
30833
|
export declare type GraphStoreConfluencePageHasConfluenceCommentArgs = {
|
|
30636
30834
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30637
30835
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -30912,6 +31110,20 @@ export declare type GraphStoreFocusAreaHasFocusAreaInverseBatchArgs = {
|
|
|
30912
31110
|
ids: Array<Scalars['ID']['input']>;
|
|
30913
31111
|
sort?: InputMaybe<GraphStoreFocusAreaHasFocusAreaSortInput>;
|
|
30914
31112
|
};
|
|
31113
|
+
export declare type GraphStoreFocusAreaHasPageArgs = {
|
|
31114
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31115
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31116
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31117
|
+
id: Scalars['ID']['input'];
|
|
31118
|
+
sort?: InputMaybe<GraphStoreFocusAreaHasPageSortInput>;
|
|
31119
|
+
};
|
|
31120
|
+
export declare type GraphStoreFocusAreaHasPageInverseArgs = {
|
|
31121
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31122
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31123
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31124
|
+
id: Scalars['ID']['input'];
|
|
31125
|
+
sort?: InputMaybe<GraphStoreFocusAreaHasPageSortInput>;
|
|
31126
|
+
};
|
|
30915
31127
|
export declare type GraphStoreFocusAreaHasProjectArgs = {
|
|
30916
31128
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30917
31129
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31525,6 +31737,22 @@ export declare type GraphStoreIssueToWhiteboardRelationshipArgs = {
|
|
|
31525
31737
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31526
31738
|
id: Scalars['ID']['input'];
|
|
31527
31739
|
};
|
|
31740
|
+
export declare type GraphStoreJcsIssueAssociatedSupportEscalationArgs = {
|
|
31741
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31742
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31743
|
+
filter?: InputMaybe<GraphStoreJcsIssueAssociatedSupportEscalationFilterInput>;
|
|
31744
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31745
|
+
id: Scalars['ID']['input'];
|
|
31746
|
+
sort?: InputMaybe<GraphStoreJcsIssueAssociatedSupportEscalationSortInput>;
|
|
31747
|
+
};
|
|
31748
|
+
export declare type GraphStoreJcsIssueAssociatedSupportEscalationInverseArgs = {
|
|
31749
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31750
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31751
|
+
filter?: InputMaybe<GraphStoreJcsIssueAssociatedSupportEscalationFilterInput>;
|
|
31752
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31753
|
+
id: Scalars['ID']['input'];
|
|
31754
|
+
sort?: InputMaybe<GraphStoreJcsIssueAssociatedSupportEscalationSortInput>;
|
|
31755
|
+
};
|
|
31528
31756
|
export declare type GraphStoreJiraEpicContributesToAtlasGoalArgs = {
|
|
31529
31757
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31530
31758
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31772,6 +32000,13 @@ export declare type GraphStoreMeetingRecordingOwnerHasMeetingNotesFolderInverseA
|
|
|
31772
32000
|
id: Scalars['ID']['input'];
|
|
31773
32001
|
sort?: InputMaybe<GraphStoreMeetingRecordingOwnerHasMeetingNotesFolderSortInput>;
|
|
31774
32002
|
};
|
|
32003
|
+
export declare type GraphStoreMeetingRecurrenceHasMeetingRecurrenceNotesPageArgs = {
|
|
32004
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32005
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32006
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32007
|
+
id: Scalars['ID']['input'];
|
|
32008
|
+
sort?: InputMaybe<GraphStoreMeetingRecurrenceHasMeetingRecurrenceNotesPageSortInput>;
|
|
32009
|
+
};
|
|
31775
32010
|
export declare type GraphStoreOnPremProjectHasIssueArgs = {
|
|
31776
32011
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31777
32012
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -32509,6 +32744,20 @@ export declare type GraphStoreProjectLinkedToCompassComponentInverseArgs = {
|
|
|
32509
32744
|
id: Scalars['ID']['input'];
|
|
32510
32745
|
sort?: InputMaybe<GraphStoreProjectLinkedToCompassComponentSortInput>;
|
|
32511
32746
|
};
|
|
32747
|
+
export declare type GraphStorePullRequestLinksToServiceArgs = {
|
|
32748
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32749
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32750
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32751
|
+
id: Scalars['ID']['input'];
|
|
32752
|
+
sort?: InputMaybe<GraphStorePullRequestLinksToServiceSortInput>;
|
|
32753
|
+
};
|
|
32754
|
+
export declare type GraphStorePullRequestLinksToServiceInverseArgs = {
|
|
32755
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32756
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32757
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32758
|
+
id: Scalars['ID']['input'];
|
|
32759
|
+
sort?: InputMaybe<GraphStorePullRequestLinksToServiceSortInput>;
|
|
32760
|
+
};
|
|
32512
32761
|
export declare type GraphStoreSecurityContainerAssociatedToVulnerabilityArgs = {
|
|
32513
32762
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32514
32763
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -32538,6 +32787,20 @@ export declare type GraphStoreSecurityContainerAssociatedToVulnerabilityRelation
|
|
|
32538
32787
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32539
32788
|
id: Scalars['ID']['input'];
|
|
32540
32789
|
};
|
|
32790
|
+
export declare type GraphStoreServiceAssociatedBranchArgs = {
|
|
32791
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32792
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32793
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32794
|
+
id: Scalars['ID']['input'];
|
|
32795
|
+
sort?: InputMaybe<GraphStoreServiceAssociatedBranchSortInput>;
|
|
32796
|
+
};
|
|
32797
|
+
export declare type GraphStoreServiceAssociatedBranchInverseArgs = {
|
|
32798
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32799
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32800
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32801
|
+
id: Scalars['ID']['input'];
|
|
32802
|
+
sort?: InputMaybe<GraphStoreServiceAssociatedBranchSortInput>;
|
|
32803
|
+
};
|
|
32541
32804
|
export declare type GraphStoreServiceAssociatedDeploymentArgs = {
|
|
32542
32805
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32543
32806
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -33304,6 +33567,20 @@ export declare type GraphStoreUserCreatedDocumentInverseArgs = {
|
|
|
33304
33567
|
id: Scalars['ID']['input'];
|
|
33305
33568
|
sort?: InputMaybe<GraphStoreUserCreatedDocumentSortInput>;
|
|
33306
33569
|
};
|
|
33570
|
+
export declare type GraphStoreUserCreatedIssueCommentArgs = {
|
|
33571
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33572
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33573
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33574
|
+
id: Scalars['ID']['input'];
|
|
33575
|
+
sort?: InputMaybe<GraphStoreUserCreatedIssueCommentSortInput>;
|
|
33576
|
+
};
|
|
33577
|
+
export declare type GraphStoreUserCreatedIssueCommentInverseArgs = {
|
|
33578
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33579
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33580
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33581
|
+
id: Scalars['ID']['input'];
|
|
33582
|
+
sort?: InputMaybe<GraphStoreUserCreatedIssueCommentSortInput>;
|
|
33583
|
+
};
|
|
33307
33584
|
export declare type GraphStoreUserCreatedIssueWorklogArgs = {
|
|
33308
33585
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33309
33586
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -34283,8 +34560,109 @@ export declare type GraphStoreAtlasGoalHasOwnerSortInput = {
|
|
|
34283
34560
|
export declare type GraphStoreAtlasGoalHasSubAtlasGoalSortInput = {
|
|
34284
34561
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
34285
34562
|
};
|
|
34286
|
-
export declare type
|
|
34287
|
-
|
|
34563
|
+
export declare type GraphStoreAtlasGoalHasUpdateConditionalFilterInput = {
|
|
34564
|
+
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
34565
|
+
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
34566
|
+
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
34567
|
+
relationship_createdBy?: InputMaybe<GraphStoreAriFilterInput>;
|
|
34568
|
+
relationship_creationDate?: InputMaybe<GraphStoreLongFilterInput>;
|
|
34569
|
+
relationship_lastEditedBy?: InputMaybe<GraphStoreAriFilterInput>;
|
|
34570
|
+
relationship_lastUpdated?: InputMaybe<GraphStoreLongFilterInput>;
|
|
34571
|
+
relationship_newConfidence?: InputMaybe<GraphStoreAtlasGoalHasUpdateNewConfidenceFilterInput>;
|
|
34572
|
+
relationship_newScore?: InputMaybe<GraphStoreLongFilterInput>;
|
|
34573
|
+
relationship_newStatus?: InputMaybe<GraphStoreAtlasGoalHasUpdateNewStatusFilterInput>;
|
|
34574
|
+
relationship_newTargetDate?: InputMaybe<GraphStoreLongFilterInput>;
|
|
34575
|
+
relationship_oldConfidence?: InputMaybe<GraphStoreAtlasGoalHasUpdateOldConfidenceFilterInput>;
|
|
34576
|
+
relationship_oldScore?: InputMaybe<GraphStoreLongFilterInput>;
|
|
34577
|
+
relationship_oldStatus?: InputMaybe<GraphStoreAtlasGoalHasUpdateOldStatusFilterInput>;
|
|
34578
|
+
relationship_oldTargetDate?: InputMaybe<GraphStoreLongFilterInput>;
|
|
34579
|
+
relationship_updateType?: InputMaybe<GraphStoreAtlasGoalHasUpdateUpdateTypeFilterInput>;
|
|
34580
|
+
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
34581
|
+
};
|
|
34582
|
+
export declare type GraphStoreAtlasGoalHasUpdateFilterInput = {
|
|
34583
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreAtlasGoalHasUpdateConditionalFilterInput>>>;
|
|
34584
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreAtlasGoalHasUpdateConditionalFilterInput>>>;
|
|
34585
|
+
};
|
|
34586
|
+
export declare enum GraphStoreAtlasGoalHasUpdateNewConfidence {
|
|
34587
|
+
Day = "DAY",
|
|
34588
|
+
Month = "MONTH",
|
|
34589
|
+
NotSet = "NOT_SET",
|
|
34590
|
+
Quarter = "QUARTER"
|
|
34591
|
+
}
|
|
34592
|
+
export declare type GraphStoreAtlasGoalHasUpdateNewConfidenceFilterInput = {
|
|
34593
|
+
is?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateNewConfidence>>;
|
|
34594
|
+
isNot?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateNewConfidence>>;
|
|
34595
|
+
};
|
|
34596
|
+
export declare enum GraphStoreAtlasGoalHasUpdateNewStatus {
|
|
34597
|
+
AtRisk = "AT_RISK",
|
|
34598
|
+
Cancelled = "CANCELLED",
|
|
34599
|
+
Done = "DONE",
|
|
34600
|
+
NotSet = "NOT_SET",
|
|
34601
|
+
OffTrack = "OFF_TRACK",
|
|
34602
|
+
OnTrack = "ON_TRACK",
|
|
34603
|
+
Paused = "PAUSED",
|
|
34604
|
+
Pending = "PENDING"
|
|
34605
|
+
}
|
|
34606
|
+
export declare type GraphStoreAtlasGoalHasUpdateNewStatusFilterInput = {
|
|
34607
|
+
is?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateNewStatus>>;
|
|
34608
|
+
isNot?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateNewStatus>>;
|
|
34609
|
+
};
|
|
34610
|
+
export declare enum GraphStoreAtlasGoalHasUpdateOldConfidence {
|
|
34611
|
+
Day = "DAY",
|
|
34612
|
+
Month = "MONTH",
|
|
34613
|
+
NotSet = "NOT_SET",
|
|
34614
|
+
Null = "NULL",
|
|
34615
|
+
Quarter = "QUARTER"
|
|
34616
|
+
}
|
|
34617
|
+
export declare type GraphStoreAtlasGoalHasUpdateOldConfidenceFilterInput = {
|
|
34618
|
+
is?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateOldConfidence>>;
|
|
34619
|
+
isNot?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateOldConfidence>>;
|
|
34620
|
+
};
|
|
34621
|
+
export declare enum GraphStoreAtlasGoalHasUpdateOldStatus {
|
|
34622
|
+
AtRisk = "AT_RISK",
|
|
34623
|
+
Cancelled = "CANCELLED",
|
|
34624
|
+
Done = "DONE",
|
|
34625
|
+
NotSet = "NOT_SET",
|
|
34626
|
+
Null = "NULL",
|
|
34627
|
+
OffTrack = "OFF_TRACK",
|
|
34628
|
+
OnTrack = "ON_TRACK",
|
|
34629
|
+
Paused = "PAUSED",
|
|
34630
|
+
Pending = "PENDING"
|
|
34631
|
+
}
|
|
34632
|
+
export declare type GraphStoreAtlasGoalHasUpdateOldStatusFilterInput = {
|
|
34633
|
+
is?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateOldStatus>>;
|
|
34634
|
+
isNot?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateOldStatus>>;
|
|
34635
|
+
};
|
|
34636
|
+
export declare type GraphStoreAtlasGoalHasUpdateSortInput = {
|
|
34637
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
34638
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
34639
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
34640
|
+
relationship_createdBy?: InputMaybe<GraphStoreSortInput>;
|
|
34641
|
+
relationship_creationDate?: InputMaybe<GraphStoreSortInput>;
|
|
34642
|
+
relationship_lastEditedBy?: InputMaybe<GraphStoreSortInput>;
|
|
34643
|
+
relationship_lastUpdated?: InputMaybe<GraphStoreSortInput>;
|
|
34644
|
+
relationship_newConfidence?: InputMaybe<GraphStoreSortInput>;
|
|
34645
|
+
relationship_newScore?: InputMaybe<GraphStoreSortInput>;
|
|
34646
|
+
relationship_newStatus?: InputMaybe<GraphStoreSortInput>;
|
|
34647
|
+
relationship_newTargetDate?: InputMaybe<GraphStoreSortInput>;
|
|
34648
|
+
relationship_oldConfidence?: InputMaybe<GraphStoreSortInput>;
|
|
34649
|
+
relationship_oldScore?: InputMaybe<GraphStoreSortInput>;
|
|
34650
|
+
relationship_oldStatus?: InputMaybe<GraphStoreSortInput>;
|
|
34651
|
+
relationship_oldTargetDate?: InputMaybe<GraphStoreSortInput>;
|
|
34652
|
+
relationship_updateType?: InputMaybe<GraphStoreSortInput>;
|
|
34653
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
34654
|
+
};
|
|
34655
|
+
export declare enum GraphStoreAtlasGoalHasUpdateUpdateType {
|
|
34656
|
+
NotSet = "NOT_SET",
|
|
34657
|
+
System = "SYSTEM",
|
|
34658
|
+
User = "USER"
|
|
34659
|
+
}
|
|
34660
|
+
export declare type GraphStoreAtlasGoalHasUpdateUpdateTypeFilterInput = {
|
|
34661
|
+
is?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateUpdateType>>;
|
|
34662
|
+
isNot?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateUpdateType>>;
|
|
34663
|
+
};
|
|
34664
|
+
export declare type GraphStoreAtlasHomeFeedQueryToMetadataNodeUnion = ConfluencePage | JiraIssue | TeamV2 | TownsquareGoal | TownsquareProject;
|
|
34665
|
+
export declare type GraphStoreAtlasHomeFeedQueryToNodeUnion = ConfluencePage | JiraIssue | TeamV2 | TownsquareGoal | TownsquareProject;
|
|
34288
34666
|
export declare type GraphStoreAtlasHomeQueryConnection = {
|
|
34289
34667
|
__typename?: 'GraphStoreAtlasHomeQueryConnection';
|
|
34290
34668
|
nodes: Array<GraphStoreAtlasHomeQueryNode>;
|
|
@@ -34328,8 +34706,102 @@ export declare type GraphStoreAtlasProjectHasFollowerSortInput = {
|
|
|
34328
34706
|
export declare type GraphStoreAtlasProjectHasOwnerSortInput = {
|
|
34329
34707
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
34330
34708
|
};
|
|
34709
|
+
export declare type GraphStoreAtlasProjectHasUpdateConditionalFilterInput = {
|
|
34710
|
+
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
34711
|
+
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
34712
|
+
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
34713
|
+
relationship_createdBy?: InputMaybe<GraphStoreAriFilterInput>;
|
|
34714
|
+
relationship_creationDate?: InputMaybe<GraphStoreLongFilterInput>;
|
|
34715
|
+
relationship_lastEditedBy?: InputMaybe<GraphStoreAriFilterInput>;
|
|
34716
|
+
relationship_lastUpdated?: InputMaybe<GraphStoreLongFilterInput>;
|
|
34717
|
+
relationship_newConfidence?: InputMaybe<GraphStoreAtlasProjectHasUpdateNewConfidenceFilterInput>;
|
|
34718
|
+
relationship_newStatus?: InputMaybe<GraphStoreAtlasProjectHasUpdateNewStatusFilterInput>;
|
|
34719
|
+
relationship_newTargetDate?: InputMaybe<GraphStoreLongFilterInput>;
|
|
34720
|
+
relationship_oldConfidence?: InputMaybe<GraphStoreAtlasProjectHasUpdateOldConfidenceFilterInput>;
|
|
34721
|
+
relationship_oldStatus?: InputMaybe<GraphStoreAtlasProjectHasUpdateOldStatusFilterInput>;
|
|
34722
|
+
relationship_oldTargetDate?: InputMaybe<GraphStoreLongFilterInput>;
|
|
34723
|
+
relationship_updateType?: InputMaybe<GraphStoreAtlasProjectHasUpdateUpdateTypeFilterInput>;
|
|
34724
|
+
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
34725
|
+
};
|
|
34726
|
+
export declare type GraphStoreAtlasProjectHasUpdateFilterInput = {
|
|
34727
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreAtlasProjectHasUpdateConditionalFilterInput>>>;
|
|
34728
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreAtlasProjectHasUpdateConditionalFilterInput>>>;
|
|
34729
|
+
};
|
|
34730
|
+
export declare enum GraphStoreAtlasProjectHasUpdateNewConfidence {
|
|
34731
|
+
Day = "DAY",
|
|
34732
|
+
Month = "MONTH",
|
|
34733
|
+
NotSet = "NOT_SET",
|
|
34734
|
+
Quarter = "QUARTER"
|
|
34735
|
+
}
|
|
34736
|
+
export declare type GraphStoreAtlasProjectHasUpdateNewConfidenceFilterInput = {
|
|
34737
|
+
is?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateNewConfidence>>;
|
|
34738
|
+
isNot?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateNewConfidence>>;
|
|
34739
|
+
};
|
|
34740
|
+
export declare enum GraphStoreAtlasProjectHasUpdateNewStatus {
|
|
34741
|
+
AtRisk = "AT_RISK",
|
|
34742
|
+
Cancelled = "CANCELLED",
|
|
34743
|
+
Done = "DONE",
|
|
34744
|
+
NotSet = "NOT_SET",
|
|
34745
|
+
OffTrack = "OFF_TRACK",
|
|
34746
|
+
OnTrack = "ON_TRACK",
|
|
34747
|
+
Paused = "PAUSED",
|
|
34748
|
+
Pending = "PENDING"
|
|
34749
|
+
}
|
|
34750
|
+
export declare type GraphStoreAtlasProjectHasUpdateNewStatusFilterInput = {
|
|
34751
|
+
is?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateNewStatus>>;
|
|
34752
|
+
isNot?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateNewStatus>>;
|
|
34753
|
+
};
|
|
34754
|
+
export declare enum GraphStoreAtlasProjectHasUpdateOldConfidence {
|
|
34755
|
+
Day = "DAY",
|
|
34756
|
+
Month = "MONTH",
|
|
34757
|
+
NotSet = "NOT_SET",
|
|
34758
|
+
Null = "NULL",
|
|
34759
|
+
Quarter = "QUARTER"
|
|
34760
|
+
}
|
|
34761
|
+
export declare type GraphStoreAtlasProjectHasUpdateOldConfidenceFilterInput = {
|
|
34762
|
+
is?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateOldConfidence>>;
|
|
34763
|
+
isNot?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateOldConfidence>>;
|
|
34764
|
+
};
|
|
34765
|
+
export declare enum GraphStoreAtlasProjectHasUpdateOldStatus {
|
|
34766
|
+
AtRisk = "AT_RISK",
|
|
34767
|
+
Cancelled = "CANCELLED",
|
|
34768
|
+
Done = "DONE",
|
|
34769
|
+
NotSet = "NOT_SET",
|
|
34770
|
+
Null = "NULL",
|
|
34771
|
+
OffTrack = "OFF_TRACK",
|
|
34772
|
+
OnTrack = "ON_TRACK",
|
|
34773
|
+
Paused = "PAUSED",
|
|
34774
|
+
Pending = "PENDING"
|
|
34775
|
+
}
|
|
34776
|
+
export declare type GraphStoreAtlasProjectHasUpdateOldStatusFilterInput = {
|
|
34777
|
+
is?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateOldStatus>>;
|
|
34778
|
+
isNot?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateOldStatus>>;
|
|
34779
|
+
};
|
|
34331
34780
|
export declare type GraphStoreAtlasProjectHasUpdateSortInput = {
|
|
34781
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
34782
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
34332
34783
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
34784
|
+
relationship_createdBy?: InputMaybe<GraphStoreSortInput>;
|
|
34785
|
+
relationship_creationDate?: InputMaybe<GraphStoreSortInput>;
|
|
34786
|
+
relationship_lastEditedBy?: InputMaybe<GraphStoreSortInput>;
|
|
34787
|
+
relationship_lastUpdated?: InputMaybe<GraphStoreSortInput>;
|
|
34788
|
+
relationship_newConfidence?: InputMaybe<GraphStoreSortInput>;
|
|
34789
|
+
relationship_newStatus?: InputMaybe<GraphStoreSortInput>;
|
|
34790
|
+
relationship_newTargetDate?: InputMaybe<GraphStoreSortInput>;
|
|
34791
|
+
relationship_oldConfidence?: InputMaybe<GraphStoreSortInput>;
|
|
34792
|
+
relationship_oldStatus?: InputMaybe<GraphStoreSortInput>;
|
|
34793
|
+
relationship_oldTargetDate?: InputMaybe<GraphStoreSortInput>;
|
|
34794
|
+
relationship_updateType?: InputMaybe<GraphStoreSortInput>;
|
|
34795
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
34796
|
+
};
|
|
34797
|
+
export declare enum GraphStoreAtlasProjectHasUpdateUpdateType {
|
|
34798
|
+
NotSet = "NOT_SET",
|
|
34799
|
+
System = "SYSTEM",
|
|
34800
|
+
User = "USER"
|
|
34801
|
+
}
|
|
34802
|
+
export declare type GraphStoreAtlasProjectHasUpdateUpdateTypeFilterInput = {
|
|
34803
|
+
is?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateUpdateType>>;
|
|
34804
|
+
isNot?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateUpdateType>>;
|
|
34333
34805
|
};
|
|
34334
34806
|
export declare type GraphStoreAtlasProjectIsRelatedToAtlasProjectSortInput = {
|
|
34335
34807
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -34989,9 +35461,15 @@ export declare type GraphStoreBatchTestPerfhammerRelationshipStartNode = {
|
|
|
34989
35461
|
id: Scalars['ID']['output'];
|
|
34990
35462
|
};
|
|
34991
35463
|
export declare type GraphStoreBatchTestPerfhammerRelationshipStartUnion = JiraIssue;
|
|
35464
|
+
export declare type GraphStoreBoardBelongsToProjectSortInput = {
|
|
35465
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
35466
|
+
};
|
|
34992
35467
|
export declare type GraphStoreBooleanFilterInput = {
|
|
34993
35468
|
is?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34994
35469
|
};
|
|
35470
|
+
export declare type GraphStoreCalendarHasLinkedDocumentSortInput = {
|
|
35471
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
35472
|
+
};
|
|
34995
35473
|
export declare type GraphStoreComponentAssociatedDocumentSortInput = {
|
|
34996
35474
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
34997
35475
|
};
|
|
@@ -35007,9 +35485,15 @@ export declare type GraphStoreComponentLinkedJswIssueSortInput = {
|
|
|
35007
35485
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
35008
35486
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
35009
35487
|
};
|
|
35488
|
+
export declare type GraphStoreConfluenceBlogpostHasCommentSortInput = {
|
|
35489
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
35490
|
+
};
|
|
35010
35491
|
export declare type GraphStoreConfluenceBlogpostSharedWithUserSortInput = {
|
|
35011
35492
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
35012
35493
|
};
|
|
35494
|
+
export declare type GraphStoreConfluencePageHasCommentSortInput = {
|
|
35495
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
35496
|
+
};
|
|
35013
35497
|
export declare type GraphStoreConfluencePageHasConfluenceCommentSortInput = {
|
|
35014
35498
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
35015
35499
|
};
|
|
@@ -35139,6 +35623,25 @@ export declare type GraphStoreCreateIssueToWhiteboardRelationshipInput = {
|
|
|
35139
35623
|
to: Scalars['ID']['input'];
|
|
35140
35624
|
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
35141
35625
|
};
|
|
35626
|
+
export declare type GraphStoreCreateJcsIssueAssociatedSupportEscalationInput = {
|
|
35627
|
+
relationships: Array<GraphStoreCreateJcsIssueAssociatedSupportEscalationRelationshipInput>;
|
|
35628
|
+
};
|
|
35629
|
+
export declare type GraphStoreCreateJcsIssueAssociatedSupportEscalationPayload = Payload & {
|
|
35630
|
+
__typename?: 'GraphStoreCreateJcsIssueAssociatedSupportEscalationPayload';
|
|
35631
|
+
errors?: Maybe<Array<MutationError>>;
|
|
35632
|
+
success: Scalars['Boolean']['output'];
|
|
35633
|
+
};
|
|
35634
|
+
export declare type GraphStoreCreateJcsIssueAssociatedSupportEscalationRelationshipInput = {
|
|
35635
|
+
from: Scalars['ID']['input'];
|
|
35636
|
+
relationshipMetadata?: InputMaybe<GraphStoreCreateJcsIssueAssociatedSupportEscalationRelationshipMetadataInput>;
|
|
35637
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
35638
|
+
to: Scalars['ID']['input'];
|
|
35639
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
35640
|
+
};
|
|
35641
|
+
export declare type GraphStoreCreateJcsIssueAssociatedSupportEscalationRelationshipMetadataInput = {
|
|
35642
|
+
SupportEscalationLastUpdated?: InputMaybe<Scalars['Long']['input']>;
|
|
35643
|
+
creatorAri?: InputMaybe<Scalars['String']['input']>;
|
|
35644
|
+
};
|
|
35142
35645
|
export declare type GraphStoreCreateJswProjectAssociatedComponentInput = {
|
|
35143
35646
|
relationships: Array<GraphStoreCreateJswProjectAssociatedComponentRelationshipInput>;
|
|
35144
35647
|
};
|
|
@@ -35458,7 +35961,7 @@ export declare type GraphStoreCypherQueryFromNode = {
|
|
|
35458
35961
|
data?: Maybe<GraphStoreCypherQueryFromNodeUnion>;
|
|
35459
35962
|
id: Scalars['ID']['output'];
|
|
35460
35963
|
};
|
|
35461
|
-
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 | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraProject | JiraServiceManagementComment | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareProject | TownsquareProjectUpdate;
|
|
35964
|
+
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 | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
35462
35965
|
export declare type GraphStoreCypherQueryNode = {
|
|
35463
35966
|
__typename?: 'GraphStoreCypherQueryNode';
|
|
35464
35967
|
from: GraphStoreCypherQueryFromNode;
|
|
@@ -35483,8 +35986,8 @@ export declare type GraphStoreCypherQueryToNode = {
|
|
|
35483
35986
|
data?: Maybe<GraphStoreCypherQueryToNodeUnion>;
|
|
35484
35987
|
id: Scalars['ID']['output'];
|
|
35485
35988
|
};
|
|
35486
|
-
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 | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraProject | JiraServiceManagementComment | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareProject | TownsquareProjectUpdate;
|
|
35487
|
-
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 | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraProject | JiraServiceManagementComment | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareProject | TownsquareProjectUpdate;
|
|
35989
|
+
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 | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
35990
|
+
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 | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
35488
35991
|
export declare type GraphStoreCypherQueryValueNode = {
|
|
35489
35992
|
__typename?: 'GraphStoreCypherQueryValueNode';
|
|
35490
35993
|
data?: Maybe<GraphStoreCypherQueryValueItemUnion>;
|
|
@@ -35559,6 +36062,19 @@ export declare type GraphStoreDeleteIssueToWhiteboardRelationshipInput = {
|
|
|
35559
36062
|
from: Scalars['ID']['input'];
|
|
35560
36063
|
to: Scalars['ID']['input'];
|
|
35561
36064
|
};
|
|
36065
|
+
export declare type GraphStoreDeleteJcsIssueAssociatedSupportEscalationInput = {
|
|
36066
|
+
relationships: Array<GraphStoreDeleteJcsIssueAssociatedSupportEscalationRelationshipInput>;
|
|
36067
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
36068
|
+
};
|
|
36069
|
+
export declare type GraphStoreDeleteJcsIssueAssociatedSupportEscalationPayload = Payload & {
|
|
36070
|
+
__typename?: 'GraphStoreDeleteJcsIssueAssociatedSupportEscalationPayload';
|
|
36071
|
+
errors?: Maybe<Array<MutationError>>;
|
|
36072
|
+
success: Scalars['Boolean']['output'];
|
|
36073
|
+
};
|
|
36074
|
+
export declare type GraphStoreDeleteJcsIssueAssociatedSupportEscalationRelationshipInput = {
|
|
36075
|
+
from: Scalars['ID']['input'];
|
|
36076
|
+
to: Scalars['ID']['input'];
|
|
36077
|
+
};
|
|
35562
36078
|
export declare type GraphStoreDeleteJswProjectAssociatedComponentInput = {
|
|
35563
36079
|
relationships: Array<GraphStoreDeleteJswProjectAssociatedComponentRelationshipInput>;
|
|
35564
36080
|
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -35829,6 +36345,9 @@ export declare type GraphStoreFocusAreaHasAtlasGoalSortInput = {
|
|
|
35829
36345
|
export declare type GraphStoreFocusAreaHasFocusAreaSortInput = {
|
|
35830
36346
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
35831
36347
|
};
|
|
36348
|
+
export declare type GraphStoreFocusAreaHasPageSortInput = {
|
|
36349
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
36350
|
+
};
|
|
35832
36351
|
export declare type GraphStoreFocusAreaHasProjectSortInput = {
|
|
35833
36352
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
35834
36353
|
};
|
|
@@ -39415,6 +39934,26 @@ export declare type GraphStoreIssueToWhiteboardSortInput = {
|
|
|
39415
39934
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
39416
39935
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
39417
39936
|
};
|
|
39937
|
+
export declare type GraphStoreJcsIssueAssociatedSupportEscalationConditionalFilterInput = {
|
|
39938
|
+
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
39939
|
+
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
39940
|
+
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
39941
|
+
relationship_SupportEscalationLastUpdated?: InputMaybe<GraphStoreLongFilterInput>;
|
|
39942
|
+
relationship_creatorAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
39943
|
+
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
39944
|
+
};
|
|
39945
|
+
export declare type GraphStoreJcsIssueAssociatedSupportEscalationFilterInput = {
|
|
39946
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreJcsIssueAssociatedSupportEscalationConditionalFilterInput>>>;
|
|
39947
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreJcsIssueAssociatedSupportEscalationConditionalFilterInput>>>;
|
|
39948
|
+
};
|
|
39949
|
+
export declare type GraphStoreJcsIssueAssociatedSupportEscalationSortInput = {
|
|
39950
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
39951
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
39952
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
39953
|
+
relationship_SupportEscalationLastUpdated?: InputMaybe<GraphStoreSortInput>;
|
|
39954
|
+
relationship_creatorAri?: InputMaybe<GraphStoreSortInput>;
|
|
39955
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
39956
|
+
};
|
|
39418
39957
|
export declare type GraphStoreJiraEpicContributesToAtlasGoalSortInput = {
|
|
39419
39958
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
39420
39959
|
};
|
|
@@ -39527,6 +40066,9 @@ export declare type GraphStoreMeetingRecordingOwnerHasMeetingNotesFolderSortInpu
|
|
|
39527
40066
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
39528
40067
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
39529
40068
|
};
|
|
40069
|
+
export declare type GraphStoreMeetingRecurrenceHasMeetingRecurrenceNotesPageSortInput = {
|
|
40070
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40071
|
+
};
|
|
39530
40072
|
export declare type GraphStoreMutation = {
|
|
39531
40073
|
__typename?: 'GraphStoreMutation';
|
|
39532
40074
|
createComponentImpactedByIncident?: Maybe<GraphStoreCreateComponentImpactedByIncidentPayload>;
|
|
@@ -39534,6 +40076,7 @@ export declare type GraphStoreMutation = {
|
|
|
39534
40076
|
createIncidentHasActionItem?: Maybe<GraphStoreCreateIncidentHasActionItemPayload>;
|
|
39535
40077
|
createIncidentLinkedJswIssue?: Maybe<GraphStoreCreateIncidentLinkedJswIssuePayload>;
|
|
39536
40078
|
createIssueToWhiteboard?: Maybe<GraphStoreCreateIssueToWhiteboardPayload>;
|
|
40079
|
+
createJcsIssueAssociatedSupportEscalation?: Maybe<GraphStoreCreateJcsIssueAssociatedSupportEscalationPayload>;
|
|
39537
40080
|
createJswProjectAssociatedComponent?: Maybe<GraphStoreCreateJswProjectAssociatedComponentPayload>;
|
|
39538
40081
|
createMeetingRecordingOwnerHasMeetingNotesFolder?: Maybe<GraphStoreCreateMeetingRecordingOwnerHasMeetingNotesFolderPayload>;
|
|
39539
40082
|
createProjectAssociatedOpsgenieTeam?: Maybe<GraphStoreCreateProjectAssociatedOpsgenieTeamPayload>;
|
|
@@ -39558,6 +40101,7 @@ export declare type GraphStoreMutation = {
|
|
|
39558
40101
|
deleteIncidentHasActionItem?: Maybe<GraphStoreDeleteIncidentHasActionItemPayload>;
|
|
39559
40102
|
deleteIncidentLinkedJswIssue?: Maybe<GraphStoreDeleteIncidentLinkedJswIssuePayload>;
|
|
39560
40103
|
deleteIssueToWhiteboard?: Maybe<GraphStoreDeleteIssueToWhiteboardPayload>;
|
|
40104
|
+
deleteJcsIssueAssociatedSupportEscalation?: Maybe<GraphStoreDeleteJcsIssueAssociatedSupportEscalationPayload>;
|
|
39561
40105
|
deleteJswProjectAssociatedComponent?: Maybe<GraphStoreDeleteJswProjectAssociatedComponentPayload>;
|
|
39562
40106
|
deleteMeetingRecordingOwnerHasMeetingNotesFolder?: Maybe<GraphStoreDeleteMeetingRecordingOwnerHasMeetingNotesFolderPayload>;
|
|
39563
40107
|
deleteProjectAssociatedOpsgenieTeam?: Maybe<GraphStoreDeleteProjectAssociatedOpsgenieTeamPayload>;
|
|
@@ -39593,6 +40137,9 @@ export declare type GraphStoreMutationCreateIncidentLinkedJswIssueArgs = {
|
|
|
39593
40137
|
export declare type GraphStoreMutationCreateIssueToWhiteboardArgs = {
|
|
39594
40138
|
input?: InputMaybe<GraphStoreCreateIssueToWhiteboardInput>;
|
|
39595
40139
|
};
|
|
40140
|
+
export declare type GraphStoreMutationCreateJcsIssueAssociatedSupportEscalationArgs = {
|
|
40141
|
+
input?: InputMaybe<GraphStoreCreateJcsIssueAssociatedSupportEscalationInput>;
|
|
40142
|
+
};
|
|
39596
40143
|
export declare type GraphStoreMutationCreateJswProjectAssociatedComponentArgs = {
|
|
39597
40144
|
input?: InputMaybe<GraphStoreCreateJswProjectAssociatedComponentInput>;
|
|
39598
40145
|
};
|
|
@@ -39665,6 +40212,9 @@ export declare type GraphStoreMutationDeleteIncidentLinkedJswIssueArgs = {
|
|
|
39665
40212
|
export declare type GraphStoreMutationDeleteIssueToWhiteboardArgs = {
|
|
39666
40213
|
input?: InputMaybe<GraphStoreDeleteIssueToWhiteboardInput>;
|
|
39667
40214
|
};
|
|
40215
|
+
export declare type GraphStoreMutationDeleteJcsIssueAssociatedSupportEscalationArgs = {
|
|
40216
|
+
input?: InputMaybe<GraphStoreDeleteJcsIssueAssociatedSupportEscalationInput>;
|
|
40217
|
+
};
|
|
39668
40218
|
export declare type GraphStoreMutationDeleteJswProjectAssociatedComponentArgs = {
|
|
39669
40219
|
input?: InputMaybe<GraphStoreDeleteJswProjectAssociatedComponentInput>;
|
|
39670
40220
|
};
|
|
@@ -40178,9 +40728,15 @@ export declare type GraphStoreProjectLinkedToCompassComponentSortInput = {
|
|
|
40178
40728
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40179
40729
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
40180
40730
|
};
|
|
40731
|
+
export declare type GraphStorePullRequestLinksToServiceSortInput = {
|
|
40732
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40733
|
+
};
|
|
40181
40734
|
export declare type GraphStoreSecurityContainerAssociatedToVulnerabilitySortInput = {
|
|
40182
40735
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40183
40736
|
};
|
|
40737
|
+
export declare type GraphStoreServiceAssociatedBranchSortInput = {
|
|
40738
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40739
|
+
};
|
|
40184
40740
|
export declare type GraphStoreServiceAssociatedDeploymentSortInput = {
|
|
40185
40741
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40186
40742
|
};
|
|
@@ -40371,6 +40927,38 @@ export declare type GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalInverseEdge = {
|
|
|
40371
40927
|
};
|
|
40372
40928
|
export declare type GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalInverseUnion = TownsquareGoal;
|
|
40373
40929
|
export declare type GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalUnion = TownsquareGoal;
|
|
40930
|
+
export declare type GraphStoreSimplifiedAtlasGoalHasUpdateConnection = HasPageInfo & HasTotal & {
|
|
40931
|
+
__typename?: 'GraphStoreSimplifiedAtlasGoalHasUpdateConnection';
|
|
40932
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasGoalHasUpdateEdge>>>;
|
|
40933
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
40934
|
+
pageInfo: PageInfo;
|
|
40935
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
40936
|
+
};
|
|
40937
|
+
export declare type GraphStoreSimplifiedAtlasGoalHasUpdateEdge = {
|
|
40938
|
+
__typename?: 'GraphStoreSimplifiedAtlasGoalHasUpdateEdge';
|
|
40939
|
+
createdAt: Scalars['DateTime']['output'];
|
|
40940
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
40941
|
+
id: Scalars['ID']['output'];
|
|
40942
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
40943
|
+
node?: Maybe<GraphStoreSimplifiedAtlasGoalHasUpdateUnion>;
|
|
40944
|
+
};
|
|
40945
|
+
export declare type GraphStoreSimplifiedAtlasGoalHasUpdateInverseConnection = HasPageInfo & HasTotal & {
|
|
40946
|
+
__typename?: 'GraphStoreSimplifiedAtlasGoalHasUpdateInverseConnection';
|
|
40947
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasGoalHasUpdateInverseEdge>>>;
|
|
40948
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
40949
|
+
pageInfo: PageInfo;
|
|
40950
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
40951
|
+
};
|
|
40952
|
+
export declare type GraphStoreSimplifiedAtlasGoalHasUpdateInverseEdge = {
|
|
40953
|
+
__typename?: 'GraphStoreSimplifiedAtlasGoalHasUpdateInverseEdge';
|
|
40954
|
+
createdAt: Scalars['DateTime']['output'];
|
|
40955
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
40956
|
+
id: Scalars['ID']['output'];
|
|
40957
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
40958
|
+
node?: Maybe<GraphStoreSimplifiedAtlasGoalHasUpdateInverseUnion>;
|
|
40959
|
+
};
|
|
40960
|
+
export declare type GraphStoreSimplifiedAtlasGoalHasUpdateInverseUnion = TownsquareGoal;
|
|
40961
|
+
export declare type GraphStoreSimplifiedAtlasGoalHasUpdateUnion = TownsquareGoalUpdate;
|
|
40374
40962
|
export declare type GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalConnection = HasPageInfo & {
|
|
40375
40963
|
__typename?: 'GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalConnection';
|
|
40376
40964
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalEdge>>>;
|
|
@@ -40511,10 +41099,12 @@ export declare type GraphStoreSimplifiedAtlasProjectHasOwnerInverseEdge = {
|
|
|
40511
41099
|
};
|
|
40512
41100
|
export declare type GraphStoreSimplifiedAtlasProjectHasOwnerInverseUnion = TownsquareProject;
|
|
40513
41101
|
export declare type GraphStoreSimplifiedAtlasProjectHasOwnerUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
40514
|
-
export declare type GraphStoreSimplifiedAtlasProjectHasUpdateConnection = HasPageInfo & {
|
|
41102
|
+
export declare type GraphStoreSimplifiedAtlasProjectHasUpdateConnection = HasPageInfo & HasTotal & {
|
|
40515
41103
|
__typename?: 'GraphStoreSimplifiedAtlasProjectHasUpdateConnection';
|
|
40516
41104
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateEdge>>>;
|
|
41105
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
40517
41106
|
pageInfo: PageInfo;
|
|
41107
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
40518
41108
|
};
|
|
40519
41109
|
export declare type GraphStoreSimplifiedAtlasProjectHasUpdateEdge = {
|
|
40520
41110
|
__typename?: 'GraphStoreSimplifiedAtlasProjectHasUpdateEdge';
|
|
@@ -40524,10 +41114,12 @@ export declare type GraphStoreSimplifiedAtlasProjectHasUpdateEdge = {
|
|
|
40524
41114
|
lastUpdated: Scalars['DateTime']['output'];
|
|
40525
41115
|
node?: Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateUnion>;
|
|
40526
41116
|
};
|
|
40527
|
-
export declare type GraphStoreSimplifiedAtlasProjectHasUpdateInverseConnection = HasPageInfo & {
|
|
41117
|
+
export declare type GraphStoreSimplifiedAtlasProjectHasUpdateInverseConnection = HasPageInfo & HasTotal & {
|
|
40528
41118
|
__typename?: 'GraphStoreSimplifiedAtlasProjectHasUpdateInverseConnection';
|
|
40529
41119
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateInverseEdge>>>;
|
|
41120
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
40530
41121
|
pageInfo: PageInfo;
|
|
41122
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
40531
41123
|
};
|
|
40532
41124
|
export declare type GraphStoreSimplifiedAtlasProjectHasUpdateInverseEdge = {
|
|
40533
41125
|
__typename?: 'GraphStoreSimplifiedAtlasProjectHasUpdateInverseEdge';
|
|
@@ -40595,6 +41187,62 @@ export declare type GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicInverseEd
|
|
|
40595
41187
|
};
|
|
40596
41188
|
export declare type GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicInverseUnion = TownsquareProject;
|
|
40597
41189
|
export declare type GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicUnion = JiraIssue;
|
|
41190
|
+
export declare type GraphStoreSimplifiedBoardBelongsToProjectConnection = HasPageInfo & {
|
|
41191
|
+
__typename?: 'GraphStoreSimplifiedBoardBelongsToProjectConnection';
|
|
41192
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedBoardBelongsToProjectEdge>>>;
|
|
41193
|
+
pageInfo: PageInfo;
|
|
41194
|
+
};
|
|
41195
|
+
export declare type GraphStoreSimplifiedBoardBelongsToProjectEdge = {
|
|
41196
|
+
__typename?: 'GraphStoreSimplifiedBoardBelongsToProjectEdge';
|
|
41197
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41198
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41199
|
+
id: Scalars['ID']['output'];
|
|
41200
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41201
|
+
node?: Maybe<GraphStoreSimplifiedBoardBelongsToProjectUnion>;
|
|
41202
|
+
};
|
|
41203
|
+
export declare type GraphStoreSimplifiedBoardBelongsToProjectInverseConnection = HasPageInfo & {
|
|
41204
|
+
__typename?: 'GraphStoreSimplifiedBoardBelongsToProjectInverseConnection';
|
|
41205
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedBoardBelongsToProjectInverseEdge>>>;
|
|
41206
|
+
pageInfo: PageInfo;
|
|
41207
|
+
};
|
|
41208
|
+
export declare type GraphStoreSimplifiedBoardBelongsToProjectInverseEdge = {
|
|
41209
|
+
__typename?: 'GraphStoreSimplifiedBoardBelongsToProjectInverseEdge';
|
|
41210
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41211
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41212
|
+
id: Scalars['ID']['output'];
|
|
41213
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41214
|
+
node?: Maybe<GraphStoreSimplifiedBoardBelongsToProjectInverseUnion>;
|
|
41215
|
+
};
|
|
41216
|
+
export declare type GraphStoreSimplifiedBoardBelongsToProjectInverseUnion = JiraBoard;
|
|
41217
|
+
export declare type GraphStoreSimplifiedBoardBelongsToProjectUnion = JiraProject;
|
|
41218
|
+
export declare type GraphStoreSimplifiedCalendarHasLinkedDocumentConnection = HasPageInfo & {
|
|
41219
|
+
__typename?: 'GraphStoreSimplifiedCalendarHasLinkedDocumentConnection';
|
|
41220
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedCalendarHasLinkedDocumentEdge>>>;
|
|
41221
|
+
pageInfo: PageInfo;
|
|
41222
|
+
};
|
|
41223
|
+
export declare type GraphStoreSimplifiedCalendarHasLinkedDocumentEdge = {
|
|
41224
|
+
__typename?: 'GraphStoreSimplifiedCalendarHasLinkedDocumentEdge';
|
|
41225
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41226
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41227
|
+
id: Scalars['ID']['output'];
|
|
41228
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41229
|
+
node?: Maybe<GraphStoreSimplifiedCalendarHasLinkedDocumentUnion>;
|
|
41230
|
+
};
|
|
41231
|
+
export declare type GraphStoreSimplifiedCalendarHasLinkedDocumentInverseConnection = HasPageInfo & {
|
|
41232
|
+
__typename?: 'GraphStoreSimplifiedCalendarHasLinkedDocumentInverseConnection';
|
|
41233
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedCalendarHasLinkedDocumentInverseEdge>>>;
|
|
41234
|
+
pageInfo: PageInfo;
|
|
41235
|
+
};
|
|
41236
|
+
export declare type GraphStoreSimplifiedCalendarHasLinkedDocumentInverseEdge = {
|
|
41237
|
+
__typename?: 'GraphStoreSimplifiedCalendarHasLinkedDocumentInverseEdge';
|
|
41238
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41239
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41240
|
+
id: Scalars['ID']['output'];
|
|
41241
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41242
|
+
node?: Maybe<GraphStoreSimplifiedCalendarHasLinkedDocumentInverseUnion>;
|
|
41243
|
+
};
|
|
41244
|
+
export declare type GraphStoreSimplifiedCalendarHasLinkedDocumentInverseUnion = ExternalCalendarEvent;
|
|
41245
|
+
export declare type GraphStoreSimplifiedCalendarHasLinkedDocumentUnion = DevOpsDocument | ExternalDocument;
|
|
40598
41246
|
export declare type GraphStoreSimplifiedComponentAssociatedDocumentConnection = HasPageInfo & {
|
|
40599
41247
|
__typename?: 'GraphStoreSimplifiedComponentAssociatedDocumentConnection';
|
|
40600
41248
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedComponentAssociatedDocumentEdge>>>;
|
|
@@ -40697,6 +41345,34 @@ export declare type GraphStoreSimplifiedComponentLinkedJswIssueInverseEdge = {
|
|
|
40697
41345
|
};
|
|
40698
41346
|
export declare type GraphStoreSimplifiedComponentLinkedJswIssueInverseUnion = CompassComponent | DevOpsOperationsComponentDetails | DevOpsService;
|
|
40699
41347
|
export declare type GraphStoreSimplifiedComponentLinkedJswIssueUnion = JiraIssue;
|
|
41348
|
+
export declare type GraphStoreSimplifiedConfluenceBlogpostHasCommentConnection = HasPageInfo & {
|
|
41349
|
+
__typename?: 'GraphStoreSimplifiedConfluenceBlogpostHasCommentConnection';
|
|
41350
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluenceBlogpostHasCommentEdge>>>;
|
|
41351
|
+
pageInfo: PageInfo;
|
|
41352
|
+
};
|
|
41353
|
+
export declare type GraphStoreSimplifiedConfluenceBlogpostHasCommentEdge = {
|
|
41354
|
+
__typename?: 'GraphStoreSimplifiedConfluenceBlogpostHasCommentEdge';
|
|
41355
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41356
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41357
|
+
id: Scalars['ID']['output'];
|
|
41358
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41359
|
+
node?: Maybe<GraphStoreSimplifiedConfluenceBlogpostHasCommentUnion>;
|
|
41360
|
+
};
|
|
41361
|
+
export declare type GraphStoreSimplifiedConfluenceBlogpostHasCommentInverseConnection = HasPageInfo & {
|
|
41362
|
+
__typename?: 'GraphStoreSimplifiedConfluenceBlogpostHasCommentInverseConnection';
|
|
41363
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluenceBlogpostHasCommentInverseEdge>>>;
|
|
41364
|
+
pageInfo: PageInfo;
|
|
41365
|
+
};
|
|
41366
|
+
export declare type GraphStoreSimplifiedConfluenceBlogpostHasCommentInverseEdge = {
|
|
41367
|
+
__typename?: 'GraphStoreSimplifiedConfluenceBlogpostHasCommentInverseEdge';
|
|
41368
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41369
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41370
|
+
id: Scalars['ID']['output'];
|
|
41371
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41372
|
+
node?: Maybe<GraphStoreSimplifiedConfluenceBlogpostHasCommentInverseUnion>;
|
|
41373
|
+
};
|
|
41374
|
+
export declare type GraphStoreSimplifiedConfluenceBlogpostHasCommentInverseUnion = ConfluenceBlogPost;
|
|
41375
|
+
export declare type GraphStoreSimplifiedConfluenceBlogpostHasCommentUnion = ConfluenceFooterComment | ConfluenceInlineComment;
|
|
40700
41376
|
export declare type GraphStoreSimplifiedConfluenceBlogpostSharedWithUserConnection = HasPageInfo & {
|
|
40701
41377
|
__typename?: 'GraphStoreSimplifiedConfluenceBlogpostSharedWithUserConnection';
|
|
40702
41378
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluenceBlogpostSharedWithUserEdge>>>;
|
|
@@ -40725,6 +41401,34 @@ export declare type GraphStoreSimplifiedConfluenceBlogpostSharedWithUserInverseE
|
|
|
40725
41401
|
};
|
|
40726
41402
|
export declare type GraphStoreSimplifiedConfluenceBlogpostSharedWithUserInverseUnion = ConfluenceBlogPost;
|
|
40727
41403
|
export declare type GraphStoreSimplifiedConfluenceBlogpostSharedWithUserUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
41404
|
+
export declare type GraphStoreSimplifiedConfluencePageHasCommentConnection = HasPageInfo & {
|
|
41405
|
+
__typename?: 'GraphStoreSimplifiedConfluencePageHasCommentConnection';
|
|
41406
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluencePageHasCommentEdge>>>;
|
|
41407
|
+
pageInfo: PageInfo;
|
|
41408
|
+
};
|
|
41409
|
+
export declare type GraphStoreSimplifiedConfluencePageHasCommentEdge = {
|
|
41410
|
+
__typename?: 'GraphStoreSimplifiedConfluencePageHasCommentEdge';
|
|
41411
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41412
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41413
|
+
id: Scalars['ID']['output'];
|
|
41414
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41415
|
+
node?: Maybe<GraphStoreSimplifiedConfluencePageHasCommentUnion>;
|
|
41416
|
+
};
|
|
41417
|
+
export declare type GraphStoreSimplifiedConfluencePageHasCommentInverseConnection = HasPageInfo & {
|
|
41418
|
+
__typename?: 'GraphStoreSimplifiedConfluencePageHasCommentInverseConnection';
|
|
41419
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluencePageHasCommentInverseEdge>>>;
|
|
41420
|
+
pageInfo: PageInfo;
|
|
41421
|
+
};
|
|
41422
|
+
export declare type GraphStoreSimplifiedConfluencePageHasCommentInverseEdge = {
|
|
41423
|
+
__typename?: 'GraphStoreSimplifiedConfluencePageHasCommentInverseEdge';
|
|
41424
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41425
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41426
|
+
id: Scalars['ID']['output'];
|
|
41427
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41428
|
+
node?: Maybe<GraphStoreSimplifiedConfluencePageHasCommentInverseUnion>;
|
|
41429
|
+
};
|
|
41430
|
+
export declare type GraphStoreSimplifiedConfluencePageHasCommentInverseUnion = ConfluencePage;
|
|
41431
|
+
export declare type GraphStoreSimplifiedConfluencePageHasCommentUnion = ConfluenceFooterComment | ConfluenceInlineComment;
|
|
40728
41432
|
export declare type GraphStoreSimplifiedConfluencePageHasConfluenceCommentConnection = HasPageInfo & {
|
|
40729
41433
|
__typename?: 'GraphStoreSimplifiedConfluencePageHasConfluenceCommentConnection';
|
|
40730
41434
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceCommentEdge>>>;
|
|
@@ -41145,6 +41849,34 @@ export declare type GraphStoreSimplifiedFocusAreaHasFocusAreaInverseEdge = {
|
|
|
41145
41849
|
};
|
|
41146
41850
|
export declare type GraphStoreSimplifiedFocusAreaHasFocusAreaInverseUnion = MercuryFocusArea;
|
|
41147
41851
|
export declare type GraphStoreSimplifiedFocusAreaHasFocusAreaUnion = MercuryFocusArea;
|
|
41852
|
+
export declare type GraphStoreSimplifiedFocusAreaHasPageConnection = HasPageInfo & {
|
|
41853
|
+
__typename?: 'GraphStoreSimplifiedFocusAreaHasPageConnection';
|
|
41854
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedFocusAreaHasPageEdge>>>;
|
|
41855
|
+
pageInfo: PageInfo;
|
|
41856
|
+
};
|
|
41857
|
+
export declare type GraphStoreSimplifiedFocusAreaHasPageEdge = {
|
|
41858
|
+
__typename?: 'GraphStoreSimplifiedFocusAreaHasPageEdge';
|
|
41859
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41860
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41861
|
+
id: Scalars['ID']['output'];
|
|
41862
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41863
|
+
node?: Maybe<GraphStoreSimplifiedFocusAreaHasPageUnion>;
|
|
41864
|
+
};
|
|
41865
|
+
export declare type GraphStoreSimplifiedFocusAreaHasPageInverseConnection = HasPageInfo & {
|
|
41866
|
+
__typename?: 'GraphStoreSimplifiedFocusAreaHasPageInverseConnection';
|
|
41867
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedFocusAreaHasPageInverseEdge>>>;
|
|
41868
|
+
pageInfo: PageInfo;
|
|
41869
|
+
};
|
|
41870
|
+
export declare type GraphStoreSimplifiedFocusAreaHasPageInverseEdge = {
|
|
41871
|
+
__typename?: 'GraphStoreSimplifiedFocusAreaHasPageInverseEdge';
|
|
41872
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41873
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41874
|
+
id: Scalars['ID']['output'];
|
|
41875
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41876
|
+
node?: Maybe<GraphStoreSimplifiedFocusAreaHasPageInverseUnion>;
|
|
41877
|
+
};
|
|
41878
|
+
export declare type GraphStoreSimplifiedFocusAreaHasPageInverseUnion = MercuryFocusArea;
|
|
41879
|
+
export declare type GraphStoreSimplifiedFocusAreaHasPageUnion = ConfluencePage;
|
|
41148
41880
|
export declare type GraphStoreSimplifiedFocusAreaHasProjectConnection = HasPageInfo & {
|
|
41149
41881
|
__typename?: 'GraphStoreSimplifiedFocusAreaHasProjectConnection';
|
|
41150
41882
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedFocusAreaHasProjectEdge>>>;
|
|
@@ -41843,6 +42575,38 @@ export declare type GraphStoreSimplifiedIssueToWhiteboardInverseEdge = {
|
|
|
41843
42575
|
};
|
|
41844
42576
|
export declare type GraphStoreSimplifiedIssueToWhiteboardInverseUnion = JiraIssue;
|
|
41845
42577
|
export declare type GraphStoreSimplifiedIssueToWhiteboardUnion = ConfluenceWhiteboard;
|
|
42578
|
+
export declare type GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationConnection = HasPageInfo & HasTotal & {
|
|
42579
|
+
__typename?: 'GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationConnection';
|
|
42580
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationEdge>>>;
|
|
42581
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
42582
|
+
pageInfo: PageInfo;
|
|
42583
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
42584
|
+
};
|
|
42585
|
+
export declare type GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationEdge = {
|
|
42586
|
+
__typename?: 'GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationEdge';
|
|
42587
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42588
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42589
|
+
id: Scalars['ID']['output'];
|
|
42590
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42591
|
+
node?: Maybe<GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationUnion>;
|
|
42592
|
+
};
|
|
42593
|
+
export declare type GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationInverseConnection = HasPageInfo & HasTotal & {
|
|
42594
|
+
__typename?: 'GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationInverseConnection';
|
|
42595
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationInverseEdge>>>;
|
|
42596
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
42597
|
+
pageInfo: PageInfo;
|
|
42598
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
42599
|
+
};
|
|
42600
|
+
export declare type GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationInverseEdge = {
|
|
42601
|
+
__typename?: 'GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationInverseEdge';
|
|
42602
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42603
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42604
|
+
id: Scalars['ID']['output'];
|
|
42605
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42606
|
+
node?: Maybe<GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationInverseUnion>;
|
|
42607
|
+
};
|
|
42608
|
+
export declare type GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationInverseUnion = JiraIssue;
|
|
42609
|
+
export declare type GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationUnion = JiraIssue | JiraProject;
|
|
41846
42610
|
export declare type GraphStoreSimplifiedJiraEpicContributesToAtlasGoalConnection = HasPageInfo & {
|
|
41847
42611
|
__typename?: 'GraphStoreSimplifiedJiraEpicContributesToAtlasGoalConnection';
|
|
41848
42612
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJiraEpicContributesToAtlasGoalEdge>>>;
|
|
@@ -42165,6 +42929,20 @@ export declare type GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFold
|
|
|
42165
42929
|
};
|
|
42166
42930
|
export declare type GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
42167
42931
|
export declare type GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderUnion = ConfluenceFolder;
|
|
42932
|
+
export declare type GraphStoreSimplifiedMeetingRecurrenceHasMeetingRecurrenceNotesPageConnection = HasPageInfo & {
|
|
42933
|
+
__typename?: 'GraphStoreSimplifiedMeetingRecurrenceHasMeetingRecurrenceNotesPageConnection';
|
|
42934
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedMeetingRecurrenceHasMeetingRecurrenceNotesPageEdge>>>;
|
|
42935
|
+
pageInfo: PageInfo;
|
|
42936
|
+
};
|
|
42937
|
+
export declare type GraphStoreSimplifiedMeetingRecurrenceHasMeetingRecurrenceNotesPageEdge = {
|
|
42938
|
+
__typename?: 'GraphStoreSimplifiedMeetingRecurrenceHasMeetingRecurrenceNotesPageEdge';
|
|
42939
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42940
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42941
|
+
id: Scalars['ID']['output'];
|
|
42942
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42943
|
+
node?: Maybe<GraphStoreSimplifiedMeetingRecurrenceHasMeetingRecurrenceNotesPageUnion>;
|
|
42944
|
+
};
|
|
42945
|
+
export declare type GraphStoreSimplifiedMeetingRecurrenceHasMeetingRecurrenceNotesPageUnion = ConfluencePage;
|
|
42168
42946
|
export declare type GraphStoreSimplifiedOnPremProjectHasIssueConnection = HasPageInfo & {
|
|
42169
42947
|
__typename?: 'GraphStoreSimplifiedOnPremProjectHasIssueConnection';
|
|
42170
42948
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedOnPremProjectHasIssueEdge>>>;
|
|
@@ -43137,6 +43915,34 @@ export declare type GraphStoreSimplifiedProjectLinkedToCompassComponentInverseEd
|
|
|
43137
43915
|
};
|
|
43138
43916
|
export declare type GraphStoreSimplifiedProjectLinkedToCompassComponentInverseUnion = JiraProject;
|
|
43139
43917
|
export declare type GraphStoreSimplifiedProjectLinkedToCompassComponentUnion = CompassComponent;
|
|
43918
|
+
export declare type GraphStoreSimplifiedPullRequestLinksToServiceConnection = HasPageInfo & {
|
|
43919
|
+
__typename?: 'GraphStoreSimplifiedPullRequestLinksToServiceConnection';
|
|
43920
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedPullRequestLinksToServiceEdge>>>;
|
|
43921
|
+
pageInfo: PageInfo;
|
|
43922
|
+
};
|
|
43923
|
+
export declare type GraphStoreSimplifiedPullRequestLinksToServiceEdge = {
|
|
43924
|
+
__typename?: 'GraphStoreSimplifiedPullRequestLinksToServiceEdge';
|
|
43925
|
+
createdAt: Scalars['DateTime']['output'];
|
|
43926
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
43927
|
+
id: Scalars['ID']['output'];
|
|
43928
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
43929
|
+
node?: Maybe<GraphStoreSimplifiedPullRequestLinksToServiceUnion>;
|
|
43930
|
+
};
|
|
43931
|
+
export declare type GraphStoreSimplifiedPullRequestLinksToServiceInverseConnection = HasPageInfo & {
|
|
43932
|
+
__typename?: 'GraphStoreSimplifiedPullRequestLinksToServiceInverseConnection';
|
|
43933
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedPullRequestLinksToServiceInverseEdge>>>;
|
|
43934
|
+
pageInfo: PageInfo;
|
|
43935
|
+
};
|
|
43936
|
+
export declare type GraphStoreSimplifiedPullRequestLinksToServiceInverseEdge = {
|
|
43937
|
+
__typename?: 'GraphStoreSimplifiedPullRequestLinksToServiceInverseEdge';
|
|
43938
|
+
createdAt: Scalars['DateTime']['output'];
|
|
43939
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
43940
|
+
id: Scalars['ID']['output'];
|
|
43941
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
43942
|
+
node?: Maybe<GraphStoreSimplifiedPullRequestLinksToServiceInverseUnion>;
|
|
43943
|
+
};
|
|
43944
|
+
export declare type GraphStoreSimplifiedPullRequestLinksToServiceInverseUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
43945
|
+
export declare type GraphStoreSimplifiedPullRequestLinksToServiceUnion = DevOpsService;
|
|
43140
43946
|
export declare type GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityConnection = HasPageInfo & {
|
|
43141
43947
|
__typename?: 'GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityConnection';
|
|
43142
43948
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityEdge>>>;
|
|
@@ -43151,6 +43957,34 @@ export declare type GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabili
|
|
|
43151
43957
|
node?: Maybe<GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityUnion>;
|
|
43152
43958
|
};
|
|
43153
43959
|
export declare type GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityUnion = DevOpsSecurityVulnerabilityDetails | ExternalVulnerability;
|
|
43960
|
+
export declare type GraphStoreSimplifiedServiceAssociatedBranchConnection = HasPageInfo & {
|
|
43961
|
+
__typename?: 'GraphStoreSimplifiedServiceAssociatedBranchConnection';
|
|
43962
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedServiceAssociatedBranchEdge>>>;
|
|
43963
|
+
pageInfo: PageInfo;
|
|
43964
|
+
};
|
|
43965
|
+
export declare type GraphStoreSimplifiedServiceAssociatedBranchEdge = {
|
|
43966
|
+
__typename?: 'GraphStoreSimplifiedServiceAssociatedBranchEdge';
|
|
43967
|
+
createdAt: Scalars['DateTime']['output'];
|
|
43968
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
43969
|
+
id: Scalars['ID']['output'];
|
|
43970
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
43971
|
+
node?: Maybe<GraphStoreSimplifiedServiceAssociatedBranchUnion>;
|
|
43972
|
+
};
|
|
43973
|
+
export declare type GraphStoreSimplifiedServiceAssociatedBranchInverseConnection = HasPageInfo & {
|
|
43974
|
+
__typename?: 'GraphStoreSimplifiedServiceAssociatedBranchInverseConnection';
|
|
43975
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedServiceAssociatedBranchInverseEdge>>>;
|
|
43976
|
+
pageInfo: PageInfo;
|
|
43977
|
+
};
|
|
43978
|
+
export declare type GraphStoreSimplifiedServiceAssociatedBranchInverseEdge = {
|
|
43979
|
+
__typename?: 'GraphStoreSimplifiedServiceAssociatedBranchInverseEdge';
|
|
43980
|
+
createdAt: Scalars['DateTime']['output'];
|
|
43981
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
43982
|
+
id: Scalars['ID']['output'];
|
|
43983
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
43984
|
+
node?: Maybe<GraphStoreSimplifiedServiceAssociatedBranchInverseUnion>;
|
|
43985
|
+
};
|
|
43986
|
+
export declare type GraphStoreSimplifiedServiceAssociatedBranchInverseUnion = DevOpsService;
|
|
43987
|
+
export declare type GraphStoreSimplifiedServiceAssociatedBranchUnion = ExternalBranch;
|
|
43154
43988
|
export declare type GraphStoreSimplifiedServiceAssociatedDeploymentConnection = HasPageInfo & {
|
|
43155
43989
|
__typename?: 'GraphStoreSimplifiedServiceAssociatedDeploymentConnection';
|
|
43156
43990
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedServiceAssociatedDeploymentEdge>>>;
|
|
@@ -44361,6 +45195,34 @@ export declare type GraphStoreSimplifiedUserCreatedDocumentInverseEdge = {
|
|
|
44361
45195
|
};
|
|
44362
45196
|
export declare type GraphStoreSimplifiedUserCreatedDocumentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
44363
45197
|
export declare type GraphStoreSimplifiedUserCreatedDocumentUnion = DevOpsDocument | ExternalDocument;
|
|
45198
|
+
export declare type GraphStoreSimplifiedUserCreatedIssueCommentConnection = HasPageInfo & {
|
|
45199
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedIssueCommentConnection';
|
|
45200
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedIssueCommentEdge>>>;
|
|
45201
|
+
pageInfo: PageInfo;
|
|
45202
|
+
};
|
|
45203
|
+
export declare type GraphStoreSimplifiedUserCreatedIssueCommentEdge = {
|
|
45204
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedIssueCommentEdge';
|
|
45205
|
+
createdAt: Scalars['DateTime']['output'];
|
|
45206
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
45207
|
+
id: Scalars['ID']['output'];
|
|
45208
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
45209
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedIssueCommentUnion>;
|
|
45210
|
+
};
|
|
45211
|
+
export declare type GraphStoreSimplifiedUserCreatedIssueCommentInverseConnection = HasPageInfo & {
|
|
45212
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedIssueCommentInverseConnection';
|
|
45213
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedIssueCommentInverseEdge>>>;
|
|
45214
|
+
pageInfo: PageInfo;
|
|
45215
|
+
};
|
|
45216
|
+
export declare type GraphStoreSimplifiedUserCreatedIssueCommentInverseEdge = {
|
|
45217
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedIssueCommentInverseEdge';
|
|
45218
|
+
createdAt: Scalars['DateTime']['output'];
|
|
45219
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
45220
|
+
id: Scalars['ID']['output'];
|
|
45221
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
45222
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedIssueCommentInverseUnion>;
|
|
45223
|
+
};
|
|
45224
|
+
export declare type GraphStoreSimplifiedUserCreatedIssueCommentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
45225
|
+
export declare type GraphStoreSimplifiedUserCreatedIssueCommentUnion = JiraPlatformComment | JiraServiceManagementComment;
|
|
44364
45226
|
export declare type GraphStoreSimplifiedUserCreatedIssueWorklogConnection = HasPageInfo & {
|
|
44365
45227
|
__typename?: 'GraphStoreSimplifiedUserCreatedIssueWorklogConnection';
|
|
44366
45228
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedIssueWorklogEdge>>>;
|
|
@@ -46501,6 +47363,9 @@ export declare type GraphStoreUserCreatedDesignSortInput = {
|
|
|
46501
47363
|
export declare type GraphStoreUserCreatedDocumentSortInput = {
|
|
46502
47364
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
46503
47365
|
};
|
|
47366
|
+
export declare type GraphStoreUserCreatedIssueCommentSortInput = {
|
|
47367
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
47368
|
+
};
|
|
46504
47369
|
export declare type GraphStoreUserCreatedIssueWorklogSortInput = {
|
|
46505
47370
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
46506
47371
|
};
|
|
@@ -51074,6 +51939,18 @@ export declare enum JiraBoardLocationType {
|
|
|
51074
51939
|
User = "USER"
|
|
51075
51940
|
}
|
|
51076
51941
|
export declare type JiraBoardResult = JiraBoard | QueryError;
|
|
51942
|
+
export declare enum JiraBoardSwimlaneStrategy {
|
|
51943
|
+
AssigneeUnassignedFirst = "ASSIGNEE_UNASSIGNED_FIRST",
|
|
51944
|
+
AssigneeUnassignedLast = "ASSIGNEE_UNASSIGNED_LAST",
|
|
51945
|
+
Custom = "CUSTOM",
|
|
51946
|
+
Epic = "EPIC",
|
|
51947
|
+
IssueChildren = "ISSUE_CHILDREN",
|
|
51948
|
+
IssueParent = "ISSUE_PARENT",
|
|
51949
|
+
None = "NONE",
|
|
51950
|
+
ParentChild = "PARENT_CHILD",
|
|
51951
|
+
Project = "PROJECT",
|
|
51952
|
+
RequestType = "REQUEST_TYPE"
|
|
51953
|
+
}
|
|
51077
51954
|
export declare enum JiraBoardType {
|
|
51078
51955
|
Kanban = "KANBAN",
|
|
51079
51956
|
Scrum = "SCRUM"
|
|
@@ -52118,6 +52995,7 @@ export declare type JiraCommentSortInput = {
|
|
|
52118
52995
|
};
|
|
52119
52996
|
export declare type JiraCommentSummary = {
|
|
52120
52997
|
__typename?: 'JiraCommentSummary';
|
|
52998
|
+
canAddComment?: Maybe<Scalars['Boolean']['output']>;
|
|
52121
52999
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
52122
53000
|
};
|
|
52123
53001
|
export declare type JiraCommentSummaryField = JiraIssueField & JiraIssueFieldConfiguration & Node & {
|
|
@@ -54799,6 +55677,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
54799
55677
|
issueId: Scalars['String']['output'];
|
|
54800
55678
|
issueLinks?: Maybe<JiraIssueLinkConnection>;
|
|
54801
55679
|
issuePropertyByKey?: Maybe<Scalars['JSON']['output']>;
|
|
55680
|
+
issueRestrictionField?: Maybe<JiraIssueRestrictionField>;
|
|
54802
55681
|
issueTypeAvatarUrl?: Maybe<Scalars['URL']['output']>;
|
|
54803
55682
|
issueTypeField?: Maybe<JiraIssueTypeField>;
|
|
54804
55683
|
issueTypesForHierarchyAbove?: Maybe<JiraIssueTypeConnection>;
|
|
@@ -54836,6 +55715,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
54836
55715
|
resolutionField?: Maybe<JiraResolutionField>;
|
|
54837
55716
|
screenId?: Maybe<Scalars['Long']['output']>;
|
|
54838
55717
|
searchViewContext?: Maybe<JiraIssueSearchViewContexts>;
|
|
55718
|
+
securityLevelField?: Maybe<JiraSecurityLevelField>;
|
|
54839
55719
|
smartSummary?: Maybe<JiraAdf>;
|
|
54840
55720
|
startDateField?: Maybe<JiraDatePickerField>;
|
|
54841
55721
|
startDateViewField?: Maybe<JiraIssueField>;
|
|
@@ -54851,6 +55731,8 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
54851
55731
|
summaryField?: Maybe<JiraSingleLineTextField>;
|
|
54852
55732
|
timeTrackingField?: Maybe<JiraTimeTrackingField>;
|
|
54853
55733
|
updatedField?: Maybe<JiraDateTimePickerField>;
|
|
55734
|
+
votesField?: Maybe<JiraVotesField>;
|
|
55735
|
+
watchesField?: Maybe<JiraWatchesField>;
|
|
54854
55736
|
webUrl?: Maybe<Scalars['URL']['output']>;
|
|
54855
55737
|
worklogs?: Maybe<JiraWorkLogConnection>;
|
|
54856
55738
|
};
|
|
@@ -56523,6 +57405,7 @@ export declare enum JiraJqlAutocompleteType {
|
|
|
56523
57405
|
}
|
|
56524
57406
|
export declare type JiraJqlBoardInput = {
|
|
56525
57407
|
boardId: Scalars['Long']['input'];
|
|
57408
|
+
swimlaneStrategy?: InputMaybe<JiraBoardSwimlaneStrategy>;
|
|
56526
57409
|
};
|
|
56527
57410
|
export declare type JiraJqlBuilder = {
|
|
56528
57411
|
__typename?: 'JiraJqlBuilder';
|
|
@@ -60254,10 +61137,16 @@ export declare type JiraProjectUpdateNameMutationPayload = Payload & {
|
|
|
60254
61137
|
};
|
|
60255
61138
|
export declare type JiraProjectWithIssueTypeIds = {
|
|
60256
61139
|
__typename?: 'JiraProjectWithIssueTypeIds';
|
|
61140
|
+
aiSuggestedAvailableFields?: Maybe<JiraAvailableFieldsConnection>;
|
|
60257
61141
|
allowedCustomFieldTypes?: Maybe<JiraFieldTypeConnection>;
|
|
60258
61142
|
availableFields?: Maybe<JiraAvailableFieldsConnection>;
|
|
60259
61143
|
fieldAssociationWithIssueTypes?: Maybe<JiraFieldAssociationWithIssueTypesConnection>;
|
|
60260
61144
|
};
|
|
61145
|
+
export declare type JiraProjectWithIssueTypeIdsAiSuggestedAvailableFieldsArgs = {
|
|
61146
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
61147
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
61148
|
+
input?: InputMaybe<JiraProjectAvailableFieldsInput>;
|
|
61149
|
+
};
|
|
60261
61150
|
export declare type JiraProjectWithIssueTypeIdsAllowedCustomFieldTypesArgs = {
|
|
60262
61151
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
60263
61152
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -63441,6 +64330,17 @@ export declare type JiraSetBoardViewColumnStatePayload = Payload & {
|
|
|
63441
64330
|
errors?: Maybe<Array<MutationError>>;
|
|
63442
64331
|
success: Scalars['Boolean']['output'];
|
|
63443
64332
|
};
|
|
64333
|
+
export declare type JiraSetBoardViewColumnsOrderInput = {
|
|
64334
|
+
columnIds: Array<Scalars['ID']['input']>;
|
|
64335
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
64336
|
+
viewId: Scalars['ID']['input'];
|
|
64337
|
+
};
|
|
64338
|
+
export declare type JiraSetBoardViewColumnsOrderPayload = Payload & {
|
|
64339
|
+
__typename?: 'JiraSetBoardViewColumnsOrderPayload';
|
|
64340
|
+
boardView?: Maybe<JiraBoardView>;
|
|
64341
|
+
errors?: Maybe<Array<MutationError>>;
|
|
64342
|
+
success: Scalars['Boolean']['output'];
|
|
64343
|
+
};
|
|
63444
64344
|
export declare type JiraSetBoardViewCompletedIssueSearchCutOffInput = {
|
|
63445
64345
|
completedIssueSearchCutOffInDays: Scalars['Int']['input'];
|
|
63446
64346
|
viewId: Scalars['ID']['input'];
|
|
@@ -71682,8 +72582,6 @@ export declare type MercuryQueryApi = {
|
|
|
71682
72582
|
myPreference?: Maybe<MercuryPreference>;
|
|
71683
72583
|
myPreferences?: Maybe<Array<MercuryPreference>>;
|
|
71684
72584
|
portfoliosByAris?: Maybe<Array<MercuryPortfolio>>;
|
|
71685
|
-
providerWork?: Maybe<MercuryProviderWork>;
|
|
71686
|
-
providerWorksByAris?: Maybe<Array<MercuryProviderWork>>;
|
|
71687
72585
|
team?: Maybe<MercuryTeam>;
|
|
71688
72586
|
teams?: Maybe<MercuryTeamConnection>;
|
|
71689
72587
|
workspaceContext: MercuryWorkspaceContext;
|
|
@@ -71782,13 +72680,6 @@ export declare type MercuryQueryApiMyPreferencesArgs = {
|
|
|
71782
72680
|
export declare type MercuryQueryApiPortfoliosByArisArgs = {
|
|
71783
72681
|
aris?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
71784
72682
|
};
|
|
71785
|
-
export declare type MercuryQueryApiProviderWorkArgs = {
|
|
71786
|
-
cloudId: Scalars['ID']['input'];
|
|
71787
|
-
id: Scalars['ID']['input'];
|
|
71788
|
-
};
|
|
71789
|
-
export declare type MercuryQueryApiProviderWorksByArisArgs = {
|
|
71790
|
-
aris?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
71791
|
-
};
|
|
71792
72683
|
export declare type MercuryQueryApiTeamArgs = {
|
|
71793
72684
|
cloudId: Scalars['ID']['input'];
|
|
71794
72685
|
id: Scalars['ID']['input'];
|
|
@@ -72228,7 +73119,9 @@ export declare type Mutation = {
|
|
|
72228
73119
|
addPublicLinkPermissions?: Maybe<AddPublicLinkPermissionsPayload>;
|
|
72229
73120
|
addReaction?: Maybe<SaveReactionResponse>;
|
|
72230
73121
|
agentStudio_createAgent?: Maybe<AgentStudioCreateAgentPayload>;
|
|
73122
|
+
agentStudio_updateAgentActions?: Maybe<AgentStudioUpdateAgentActionsPayload>;
|
|
72231
73123
|
agentStudio_updateAgentDetails?: Maybe<AgentStudioUpdateAgentDetailsPayload>;
|
|
73124
|
+
agentStudio_updateConversationStarters?: Maybe<AgentStudioUpdateConversationStartersPayload>;
|
|
72232
73125
|
appRecommendations?: Maybe<AppRecMutation>;
|
|
72233
73126
|
appStorage?: Maybe<AppStorageMutation>;
|
|
72234
73127
|
appStorageCustomEntity?: Maybe<AppStorageCustomEntityMutation>;
|
|
@@ -72521,6 +73414,7 @@ export declare type Mutation = {
|
|
|
72521
73414
|
devai_continueJobWithPrompt?: Maybe<DevAiAutodevContinueJobWithPromptPayload>;
|
|
72522
73415
|
devai_createTechnicalPlannerJob?: Maybe<DevAiCreateTechnicalPlannerJobPayload>;
|
|
72523
73416
|
devai_invokeAutodevRovoAgent?: Maybe<DevAiInvokeAutodevRovoAgentPayload>;
|
|
73417
|
+
devai_invokeAutodevRovoAgentInBulk?: Maybe<DevAiInvokeAutodevRovoAgentInBulkPayload>;
|
|
72524
73418
|
disableExperiment?: Maybe<TapExperiment>;
|
|
72525
73419
|
disablePublicLinkForPage?: Maybe<DisablePublicLinkForPagePayload>;
|
|
72526
73420
|
disablePublicLinkForSite?: Maybe<PublicLinkSitePayload>;
|
|
@@ -72562,6 +73456,7 @@ export declare type Mutation = {
|
|
|
72562
73456
|
jira_setBoardViewCardFieldSelected?: Maybe<JiraSetBoardViewCardFieldSelectedPayload>;
|
|
72563
73457
|
jira_setBoardViewCardOptionState?: Maybe<JiraSetBoardViewCardOptionStatePayload>;
|
|
72564
73458
|
jira_setBoardViewColumnState?: Maybe<JiraSetBoardViewColumnStatePayload>;
|
|
73459
|
+
jira_setBoardViewColumnsOrder?: Maybe<JiraSetBoardViewColumnsOrderPayload>;
|
|
72565
73460
|
jira_setBoardViewCompletedIssueSearchCutOff?: Maybe<JiraSetBoardViewCompletedIssueSearchCutOffPayload>;
|
|
72566
73461
|
jira_setBoardViewFilter?: Maybe<JiraSetBoardViewFilterPayload>;
|
|
72567
73462
|
jira_setBoardViewGroupBy?: Maybe<JiraSetBoardViewGroupByPayload>;
|
|
@@ -72783,10 +73678,18 @@ export declare type MutationAgentStudio_CreateAgentArgs = {
|
|
|
72783
73678
|
cloudId: Scalars['String']['input'];
|
|
72784
73679
|
input: AgentStudioCreateAgentInput;
|
|
72785
73680
|
};
|
|
73681
|
+
export declare type MutationAgentStudio_UpdateAgentActionsArgs = {
|
|
73682
|
+
id: Scalars['ID']['input'];
|
|
73683
|
+
input: AgentStudioActionConfigurationInput;
|
|
73684
|
+
};
|
|
72786
73685
|
export declare type MutationAgentStudio_UpdateAgentDetailsArgs = {
|
|
72787
73686
|
id: Scalars['ID']['input'];
|
|
72788
73687
|
input: AgentStudioUpdateAgentDetailsInput;
|
|
72789
73688
|
};
|
|
73689
|
+
export declare type MutationAgentStudio_UpdateConversationStartersArgs = {
|
|
73690
|
+
id: Scalars['ID']['input'];
|
|
73691
|
+
input: AgentStudioUpdateConversationStartersInput;
|
|
73692
|
+
};
|
|
72790
73693
|
export declare type MutationApplyPolarisProjectTemplateArgs = {
|
|
72791
73694
|
input: ApplyPolarisProjectTemplateInput;
|
|
72792
73695
|
};
|
|
@@ -73713,6 +74616,10 @@ export declare type MutationDevai_InvokeAutodevRovoAgentArgs = {
|
|
|
73713
74616
|
agentId: Scalars['ID']['input'];
|
|
73714
74617
|
issueId: Scalars['ID']['input'];
|
|
73715
74618
|
};
|
|
74619
|
+
export declare type MutationDevai_InvokeAutodevRovoAgentInBulkArgs = {
|
|
74620
|
+
agentId: Scalars['ID']['input'];
|
|
74621
|
+
issueIds: Array<Scalars['ID']['input']>;
|
|
74622
|
+
};
|
|
73716
74623
|
export declare type MutationDisableExperimentArgs = {
|
|
73717
74624
|
experimentKey: Scalars['String']['input'];
|
|
73718
74625
|
};
|
|
@@ -73804,6 +74711,9 @@ export declare type MutationJira_SetBoardViewCardOptionStateArgs = {
|
|
|
73804
74711
|
export declare type MutationJira_SetBoardViewColumnStateArgs = {
|
|
73805
74712
|
input: JiraSetBoardViewColumnStateInput;
|
|
73806
74713
|
};
|
|
74714
|
+
export declare type MutationJira_SetBoardViewColumnsOrderArgs = {
|
|
74715
|
+
input: JiraSetBoardViewColumnsOrderInput;
|
|
74716
|
+
};
|
|
73807
74717
|
export declare type MutationJira_SetBoardViewCompletedIssueSearchCutOffArgs = {
|
|
73808
74718
|
input: JiraSetBoardViewCompletedIssueSearchCutOffInput;
|
|
73809
74719
|
};
|
|
@@ -76982,6 +77892,7 @@ export declare type Query = {
|
|
|
76982
77892
|
agentAI_contextPanel?: Maybe<AgentAiContextPanelResult>;
|
|
76983
77893
|
agentAI_summarizeIssue?: Maybe<AgentAiIssueSummaryResult>;
|
|
76984
77894
|
agentStudio_agentById?: Maybe<AgentStudioAgentResult>;
|
|
77895
|
+
agentStudio_suggestConversationStarters?: Maybe<AgentStudioSuggestConversationStartersResult>;
|
|
76985
77896
|
allIndividualSpaces?: Maybe<SpaceInfoConnection>;
|
|
76986
77897
|
allTemplates?: Maybe<PaginatedTemplateInfoList>;
|
|
76987
77898
|
allUpdatesFeed?: Maybe<PaginatedAllUpdatesFeed>;
|
|
@@ -77251,6 +78162,7 @@ export declare type Query = {
|
|
|
77251
78162
|
confluence_atlassianUser?: Maybe<AtlassianUser>;
|
|
77252
78163
|
confluence_calendarPreference?: Maybe<ConfluenceCalendarPreference>;
|
|
77253
78164
|
confluence_calendarTimezones?: Maybe<ConfluenceCalendarTimezones>;
|
|
78165
|
+
confluence_externalCollaboratorsByCriteria?: Maybe<ConfluencePersonConnection>;
|
|
77254
78166
|
confluence_mutationsPlaceholderQuery?: Maybe<Scalars['Boolean']['output']>;
|
|
77255
78167
|
confluence_refreshMigrationMediaSession?: Maybe<ContentMediaSession>;
|
|
77256
78168
|
confluence_search?: Maybe<ConfluenceSearchConnection>;
|
|
@@ -77667,6 +78579,10 @@ export declare type QueryAgentAi_SummarizeIssueArgs = {
|
|
|
77667
78579
|
export declare type QueryAgentStudio_AgentByIdArgs = {
|
|
77668
78580
|
id: Scalars['ID']['input'];
|
|
77669
78581
|
};
|
|
78582
|
+
export declare type QueryAgentStudio_SuggestConversationStartersArgs = {
|
|
78583
|
+
cloudId: Scalars['String']['input'];
|
|
78584
|
+
input: AgentStudioSuggestConversationStartersInput;
|
|
78585
|
+
};
|
|
77670
78586
|
export declare type QueryAllIndividualSpacesArgs = {
|
|
77671
78587
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
77672
78588
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -78832,6 +79748,18 @@ export declare type QueryConfluence_CalendarPreferenceArgs = {
|
|
|
78832
79748
|
export declare type QueryConfluence_CalendarTimezonesArgs = {
|
|
78833
79749
|
cloudId: Scalars['ID']['input'];
|
|
78834
79750
|
};
|
|
79751
|
+
export declare type QueryConfluence_ExternalCollaboratorsByCriteriaArgs = {
|
|
79752
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
79753
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
79754
|
+
email?: InputMaybe<Scalars['String']['input']>;
|
|
79755
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
79756
|
+
groupIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
79757
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
79758
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
79759
|
+
sorts?: InputMaybe<Array<InputMaybe<ExternalCollaboratorsSortType>>>;
|
|
79760
|
+
spaceAssignmentType?: InputMaybe<SpaceAssignmentType>;
|
|
79761
|
+
spaceIds?: InputMaybe<Array<InputMaybe<Scalars['Long']['input']>>>;
|
|
79762
|
+
};
|
|
78835
79763
|
export declare type QueryConfluence_RefreshMigrationMediaSessionArgs = {
|
|
78836
79764
|
cloudId: Scalars['ID']['input'];
|
|
78837
79765
|
migrationId: Scalars['String']['input'];
|
|
@@ -78839,7 +79767,7 @@ export declare type QueryConfluence_RefreshMigrationMediaSessionArgs = {
|
|
|
78839
79767
|
export declare type QueryConfluence_SearchArgs = {
|
|
78840
79768
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
78841
79769
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
78842
|
-
cloudId
|
|
79770
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
78843
79771
|
cql: Scalars['String']['input'];
|
|
78844
79772
|
cqlcontext?: InputMaybe<Scalars['String']['input']>;
|
|
78845
79773
|
disableArchivedSpaceFallback?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -78857,14 +79785,14 @@ export declare type QueryConfluence_SearchTeamLabelsArgs = {
|
|
|
78857
79785
|
};
|
|
78858
79786
|
export declare type QueryConfluence_SearchUserArgs = {
|
|
78859
79787
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
78860
|
-
cloudId
|
|
79788
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
78861
79789
|
cql: Scalars['String']['input'];
|
|
78862
79790
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
78863
79791
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
78864
79792
|
sitePermissionTypeFilter?: InputMaybe<Scalars['String']['input']>;
|
|
78865
79793
|
};
|
|
78866
79794
|
export declare type QueryConfluence_StorageArgs = {
|
|
78867
|
-
cloudId
|
|
79795
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
78868
79796
|
};
|
|
78869
79797
|
export declare type QueryConfluence_SubCalendarSubscribersCountArgs = {
|
|
78870
79798
|
cloudId: Scalars['ID']['input'];
|
|
@@ -78879,11 +79807,11 @@ export declare type QueryConfluence_TeamPresenceSpaceSettingsArgs = {
|
|
|
78879
79807
|
spaceId: Scalars['Long']['input'];
|
|
78880
79808
|
};
|
|
78881
79809
|
export declare type QueryConfluence_TemplateArgs = {
|
|
78882
|
-
cloudId
|
|
79810
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
78883
79811
|
contentTemplateId: Scalars['String']['input'];
|
|
78884
79812
|
};
|
|
78885
79813
|
export declare type QueryConfluence_TenantContextArgs = {
|
|
78886
|
-
cloudId
|
|
79814
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
78887
79815
|
};
|
|
78888
79816
|
export declare type QueryConfluence_UserContentAccessArgs = {
|
|
78889
79817
|
accessType: ResourceAccessType;
|
|
@@ -80737,6 +81665,7 @@ export declare type RawStatus = {
|
|
|
80737
81665
|
export declare type ReactedUsersResponse = {
|
|
80738
81666
|
__typename?: 'ReactedUsersResponse';
|
|
80739
81667
|
ari: Scalars['String']['output'];
|
|
81668
|
+
confluencePerson: Array<Maybe<ConfluencePerson>>;
|
|
80740
81669
|
containerAri: Scalars['String']['output'];
|
|
80741
81670
|
count: Scalars['Int']['output'];
|
|
80742
81671
|
emojiId: Scalars['String']['output'];
|
|
@@ -81913,6 +82842,7 @@ export declare type ScheduledPublishSummary = {
|
|
|
81913
82842
|
export declare type ScheduledRestriction = {
|
|
81914
82843
|
__typename?: 'ScheduledRestriction';
|
|
81915
82844
|
group?: Maybe<PaginatedGroupList>;
|
|
82845
|
+
personConnection?: Maybe<ConfluencePersonConnection>;
|
|
81916
82846
|
};
|
|
81917
82847
|
export declare type ScheduledRestrictions = {
|
|
81918
82848
|
__typename?: 'ScheduledRestrictions';
|
|
@@ -82512,10 +83442,12 @@ export declare type SearchJiraFilter = {
|
|
|
82512
83442
|
};
|
|
82513
83443
|
export declare type SearchJiraIssueFilter = {
|
|
82514
83444
|
assigneeARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
83445
|
+
commenterARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
82515
83446
|
issueTypeIDs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
82516
83447
|
projectARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
82517
83448
|
reporterARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
82518
83449
|
statusCategories?: InputMaybe<Array<SearchIssueStatusCategory>>;
|
|
83450
|
+
watcherARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
82519
83451
|
};
|
|
82520
83452
|
export declare type SearchJiraProjectFilter = {
|
|
82521
83453
|
projectTypes?: InputMaybe<Array<SearchProjectType>>;
|
|
@@ -82610,6 +83542,18 @@ export declare type SearchResultAtlasGoal = SearchResult & {
|
|
|
82610
83542
|
type: SearchResultType;
|
|
82611
83543
|
url: Scalars['URL']['output'];
|
|
82612
83544
|
};
|
|
83545
|
+
export declare type SearchResultAtlasGoalUpdate = SearchResult & {
|
|
83546
|
+
__typename?: 'SearchResultAtlasGoalUpdate';
|
|
83547
|
+
description: Scalars['String']['output'];
|
|
83548
|
+
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
83549
|
+
id: Scalars['ID']['output'];
|
|
83550
|
+
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
83551
|
+
score?: Maybe<Scalars['Float']['output']>;
|
|
83552
|
+
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
83553
|
+
title: Scalars['String']['output'];
|
|
83554
|
+
type: SearchResultType;
|
|
83555
|
+
url: Scalars['URL']['output'];
|
|
83556
|
+
};
|
|
82613
83557
|
export declare type SearchResultAtlasProject = SearchResult & {
|
|
82614
83558
|
__typename?: 'SearchResultAtlasProject';
|
|
82615
83559
|
description: Scalars['String']['output'];
|
|
@@ -82622,6 +83566,18 @@ export declare type SearchResultAtlasProject = SearchResult & {
|
|
|
82622
83566
|
type: SearchResultType;
|
|
82623
83567
|
url: Scalars['URL']['output'];
|
|
82624
83568
|
};
|
|
83569
|
+
export declare type SearchResultAtlasProjectUpdate = SearchResult & {
|
|
83570
|
+
__typename?: 'SearchResultAtlasProjectUpdate';
|
|
83571
|
+
description: Scalars['String']['output'];
|
|
83572
|
+
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
83573
|
+
id: Scalars['ID']['output'];
|
|
83574
|
+
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
83575
|
+
score?: Maybe<Scalars['Float']['output']>;
|
|
83576
|
+
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
83577
|
+
title: Scalars['String']['output'];
|
|
83578
|
+
type: SearchResultType;
|
|
83579
|
+
url: Scalars['URL']['output'];
|
|
83580
|
+
};
|
|
82625
83581
|
export declare type SearchResultBitbucketRepository = SearchResult & {
|
|
82626
83582
|
__typename?: 'SearchResultBitbucketRepository';
|
|
82627
83583
|
description: Scalars['String']['output'];
|
|
@@ -82949,6 +83905,7 @@ export declare enum SearchResultType {
|
|
|
82949
83905
|
FocusAreaStatusUpdate = "focus_area_status_update",
|
|
82950
83906
|
Folder = "folder",
|
|
82951
83907
|
Goal = "goal",
|
|
83908
|
+
GoalUpdate = "goal_update",
|
|
82952
83909
|
Issue = "issue",
|
|
82953
83910
|
Learning = "learning",
|
|
82954
83911
|
Message = "message",
|
|
@@ -82956,6 +83913,7 @@ export declare enum SearchResultType {
|
|
|
82956
83913
|
Plan = "plan",
|
|
82957
83914
|
Presentation = "presentation",
|
|
82958
83915
|
Project = "project",
|
|
83916
|
+
ProjectUpdate = "project_update",
|
|
82959
83917
|
Question = "question",
|
|
82960
83918
|
Repository = "repository",
|
|
82961
83919
|
Space = "space",
|
|
@@ -84830,6 +85788,7 @@ export declare type SitePermission = {
|
|
|
84830
85788
|
anonymous?: Maybe<Anonymous>;
|
|
84831
85789
|
anonymousAccessDSPBlocked: Scalars['Boolean']['output'];
|
|
84832
85790
|
groups?: Maybe<PaginatedGroupWithPermissions>;
|
|
85791
|
+
personConnection?: Maybe<ConfluencePersonWithPermissionsConnection>;
|
|
84833
85792
|
unlicensedUserWithPermissions?: Maybe<UnlicensedUserWithPermissions>;
|
|
84834
85793
|
};
|
|
84835
85794
|
export declare type SitePermissionGroupsArgs = {
|
|
@@ -84837,6 +85796,11 @@ export declare type SitePermissionGroupsArgs = {
|
|
|
84837
85796
|
filterText?: InputMaybe<Scalars['String']['input']>;
|
|
84838
85797
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
84839
85798
|
};
|
|
85799
|
+
export declare type SitePermissionPersonConnectionArgs = {
|
|
85800
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
85801
|
+
filterText?: InputMaybe<Scalars['String']['input']>;
|
|
85802
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
85803
|
+
};
|
|
84840
85804
|
export declare type SitePermissionInput = {
|
|
84841
85805
|
permissionsToAdd?: InputMaybe<UpdateSitePermissionInput>;
|
|
84842
85806
|
permissionsToRemove?: InputMaybe<UpdateSitePermissionInput>;
|
|
@@ -85381,6 +86345,10 @@ export declare type SpaceSpaceAdminsArgs = {
|
|
|
85381
86345
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
85382
86346
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
85383
86347
|
};
|
|
86348
|
+
export declare enum SpaceAssignmentType {
|
|
86349
|
+
Assigned = "ASSIGNED",
|
|
86350
|
+
Unassigned = "UNASSIGNED"
|
|
86351
|
+
}
|
|
85384
86352
|
export declare type SpaceDescriptions = {
|
|
85385
86353
|
__typename?: 'SpaceDescriptions';
|
|
85386
86354
|
atlas_doc_format?: Maybe<FormattedBody>;
|
|
@@ -85511,6 +86479,8 @@ export declare type SpaceManagerRecordPageInfo = {
|
|
|
85511
86479
|
export declare type SpaceMetadata = {
|
|
85512
86480
|
__typename?: 'SpaceMetadata';
|
|
85513
86481
|
labels?: Maybe<PaginatedLabelList>;
|
|
86482
|
+
recentCommenterConnection?: Maybe<ConfluencePersonConnection>;
|
|
86483
|
+
recentWatcherConnection?: Maybe<ConfluencePersonConnection>;
|
|
85514
86484
|
totalCommenters: Scalars['Long']['output'];
|
|
85515
86485
|
totalCurrentBlogPosts: Scalars['Long']['output'];
|
|
85516
86486
|
totalCurrentPages: Scalars['Long']['output'];
|
|
@@ -86021,6 +86991,7 @@ export declare type SubjectsByType = {
|
|
|
86021
86991
|
group?: Maybe<PaginatedGroupList>;
|
|
86022
86992
|
groupWithRestrictions?: Maybe<PaginatedGroupWithRestrictions>;
|
|
86023
86993
|
links?: Maybe<LinksContextBase>;
|
|
86994
|
+
personConnection?: Maybe<ConfluencePersonConnection>;
|
|
86024
86995
|
userWithRestrictions?: Maybe<PaginatedUserWithRestrictions>;
|
|
86025
86996
|
};
|
|
86026
86997
|
export declare type SubjectsByTypeGroupArgs = {
|
|
@@ -86031,6 +87002,10 @@ export declare type SubjectsByTypeGroupWithRestrictionsArgs = {
|
|
|
86031
87002
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
86032
87003
|
start?: InputMaybe<Scalars['Int']['input']>;
|
|
86033
87004
|
};
|
|
87005
|
+
export declare type SubjectsByTypePersonConnectionArgs = {
|
|
87006
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
87007
|
+
start?: InputMaybe<Scalars['Int']['input']>;
|
|
87008
|
+
};
|
|
86034
87009
|
export declare type SubjectsByTypeUserWithRestrictionsArgs = {
|
|
86035
87010
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
86036
87011
|
start?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -87434,6 +88409,17 @@ export declare type TownsquareCreateGoalPayload = {
|
|
|
87434
88409
|
__typename?: 'TownsquareCreateGoalPayload';
|
|
87435
88410
|
goal?: Maybe<TownsquareGoal>;
|
|
87436
88411
|
};
|
|
88412
|
+
export declare type TownsquareCreateGoalTypeInput = {
|
|
88413
|
+
containerId: Scalars['String']['input'];
|
|
88414
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
88415
|
+
iconKey?: InputMaybe<TownsquareGoalIconKey>;
|
|
88416
|
+
name: Scalars['String']['input'];
|
|
88417
|
+
state?: InputMaybe<TownsquareGoalTypeState>;
|
|
88418
|
+
};
|
|
88419
|
+
export declare type TownsquareCreateGoalTypePayload = {
|
|
88420
|
+
__typename?: 'TownsquareCreateGoalTypePayload';
|
|
88421
|
+
goalTypeEdge?: Maybe<TownsquareGoalTypeEdge>;
|
|
88422
|
+
};
|
|
87437
88423
|
export declare type TownsquareCreateRelationshipsInput = {
|
|
87438
88424
|
relationships: Array<TownsquareRelationshipInput>;
|
|
87439
88425
|
};
|
|
@@ -87476,7 +88462,10 @@ export declare type TownsquareEditGoalPayload = {
|
|
|
87476
88462
|
goal?: Maybe<TownsquareGoal>;
|
|
87477
88463
|
};
|
|
87478
88464
|
export declare type TownsquareEditGoalTypeInput = {
|
|
88465
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
87479
88466
|
goalTypeAri: Scalars['String']['input'];
|
|
88467
|
+
iconKey?: InputMaybe<TownsquareGoalIconKey>;
|
|
88468
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
87480
88469
|
state?: InputMaybe<TownsquareGoalTypeState>;
|
|
87481
88470
|
};
|
|
87482
88471
|
export declare type TownsquareEditGoalTypePayload = {
|
|
@@ -87695,6 +88684,7 @@ export declare type TownsquareMutationApi = {
|
|
|
87695
88684
|
__typename?: 'TownsquareMutationApi';
|
|
87696
88685
|
archiveGoal?: Maybe<TownsquareArchiveGoalPayload>;
|
|
87697
88686
|
createGoal?: Maybe<TownsquareCreateGoalPayload>;
|
|
88687
|
+
createGoalType?: Maybe<TownsquareCreateGoalTypePayload>;
|
|
87698
88688
|
createRelationships?: Maybe<TownsquareCreateRelationshipsPayload>;
|
|
87699
88689
|
deleteRelationships?: Maybe<TownsquareDeleteRelationshipsPayload>;
|
|
87700
88690
|
editGoal?: Maybe<TownsquareEditGoalPayload>;
|
|
@@ -87709,6 +88699,9 @@ export declare type TownsquareMutationApiArchiveGoalArgs = {
|
|
|
87709
88699
|
export declare type TownsquareMutationApiCreateGoalArgs = {
|
|
87710
88700
|
input: TownsquareCreateGoalInput;
|
|
87711
88701
|
};
|
|
88702
|
+
export declare type TownsquareMutationApiCreateGoalTypeArgs = {
|
|
88703
|
+
input: TownsquareCreateGoalTypeInput;
|
|
88704
|
+
};
|
|
87712
88705
|
export declare type TownsquareMutationApiCreateRelationshipsArgs = {
|
|
87713
88706
|
input: TownsquareCreateRelationshipsInput;
|
|
87714
88707
|
};
|
|
@@ -87754,9 +88747,16 @@ export declare type TownsquareProject = HasMercuryProjectFields & Node & {
|
|
|
87754
88747
|
name: Scalars['String']['output'];
|
|
87755
88748
|
owner?: Maybe<User>;
|
|
87756
88749
|
state?: Maybe<TownsquareProjectState>;
|
|
88750
|
+
updates?: Maybe<TownsquareProjectUpdateConnection>;
|
|
87757
88751
|
url?: Maybe<Scalars['String']['output']>;
|
|
87758
88752
|
uuid: Scalars['String']['output'];
|
|
87759
88753
|
};
|
|
88754
|
+
export declare type TownsquareProjectUpdatesArgs = {
|
|
88755
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
88756
|
+
createdAtOrAfter?: InputMaybe<Scalars['DateTime']['input']>;
|
|
88757
|
+
createdAtOrBefore?: InputMaybe<Scalars['DateTime']['input']>;
|
|
88758
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
88759
|
+
};
|
|
87760
88760
|
export declare type TownsquareProjectConnection = {
|
|
87761
88761
|
__typename?: 'TownsquareProjectConnection';
|
|
87762
88762
|
edges?: Maybe<Array<Maybe<TownsquareProjectEdge>>>;
|
|
@@ -87850,6 +88850,17 @@ export declare type TownsquareProjectUpdateCommentsArgs = {
|
|
|
87850
88850
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
87851
88851
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
87852
88852
|
};
|
|
88853
|
+
export declare type TownsquareProjectUpdateConnection = {
|
|
88854
|
+
__typename?: 'TownsquareProjectUpdateConnection';
|
|
88855
|
+
count: Scalars['Int']['output'];
|
|
88856
|
+
edges?: Maybe<Array<Maybe<TownsquareProjectUpdateEdge>>>;
|
|
88857
|
+
pageInfo: PageInfo;
|
|
88858
|
+
};
|
|
88859
|
+
export declare type TownsquareProjectUpdateEdge = {
|
|
88860
|
+
__typename?: 'TownsquareProjectUpdateEdge';
|
|
88861
|
+
cursor: Scalars['String']['output'];
|
|
88862
|
+
node?: Maybe<TownsquareProjectUpdate>;
|
|
88863
|
+
};
|
|
87853
88864
|
export declare type TownsquareQueryApi = {
|
|
87854
88865
|
__typename?: 'TownsquareQueryApi';
|
|
87855
88866
|
allWorkspaceSummariesForOrg?: Maybe<TownsquareWorkspaceSummaryConnection>;
|
|
@@ -88633,6 +89644,7 @@ export declare type TrelloCard = Node & {
|
|
|
88633
89644
|
badges?: Maybe<TrelloCardBadges>;
|
|
88634
89645
|
checklists?: Maybe<TrelloChecklistConnection>;
|
|
88635
89646
|
closed?: Maybe<Scalars['Boolean']['output']>;
|
|
89647
|
+
complete?: Maybe<Scalars['Boolean']['output']>;
|
|
88636
89648
|
cover?: Maybe<TrelloCardCover>;
|
|
88637
89649
|
creation?: Maybe<TrelloCardCreationInfo>;
|
|
88638
89650
|
customFieldItems?: Maybe<TrelloCustomFieldItemConnection>;
|
|
@@ -88857,6 +89869,7 @@ export declare type TrelloCardUpdated = {
|
|
|
88857
89869
|
badges?: Maybe<TrelloCardBadges>;
|
|
88858
89870
|
checklists?: Maybe<TrelloChecklistConnectionUpdated>;
|
|
88859
89871
|
closed?: Maybe<Scalars['Boolean']['output']>;
|
|
89872
|
+
complete?: Maybe<Scalars['Boolean']['output']>;
|
|
88860
89873
|
cover?: Maybe<TrelloCardCoverUpdated>;
|
|
88861
89874
|
creation?: Maybe<TrelloCardCreationInfo>;
|
|
88862
89875
|
customFieldItems?: Maybe<TrelloCustomFieldItemUpdatedConnection>;
|
|
@@ -90333,6 +91346,7 @@ export declare type UnifiedAccount = UnifiedINode & {
|
|
|
90333
91346
|
emailId: Scalars['String']['output'];
|
|
90334
91347
|
id: Scalars['ID']['output'];
|
|
90335
91348
|
internalId: Scalars['String']['output'];
|
|
91349
|
+
isForumsAccountBanned: Scalars['Boolean']['output'];
|
|
90336
91350
|
isForumsModerator: Scalars['Boolean']['output'];
|
|
90337
91351
|
isLinked: Scalars['Boolean']['output'];
|
|
90338
91352
|
isManaged: Scalars['Boolean']['output'];
|
|
@@ -90899,6 +91913,7 @@ export declare type UnifiedProfile = UnifiedINode & {
|
|
|
90899
91913
|
isLinkedView?: Maybe<Scalars['Boolean']['output']>;
|
|
90900
91914
|
isPersonalView?: Maybe<Scalars['Boolean']['output']>;
|
|
90901
91915
|
isPrivate: Scalars['Boolean']['output'];
|
|
91916
|
+
isProfileBanned?: Maybe<Scalars['Boolean']['output']>;
|
|
90902
91917
|
learning?: Maybe<UnifiedULearningResult>;
|
|
90903
91918
|
linkedinUrl?: Maybe<Scalars['String']['output']>;
|
|
90904
91919
|
location?: Maybe<Scalars['String']['output']>;
|
|
@@ -91108,8 +92123,13 @@ export declare type UpdateAppDetailsInput = {
|
|
|
91108
92123
|
avatarFileId?: InputMaybe<Scalars['String']['input']>;
|
|
91109
92124
|
contactLink?: InputMaybe<Scalars['String']['input']>;
|
|
91110
92125
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
92126
|
+
distributionStatus?: InputMaybe<DistributionStatus>;
|
|
92127
|
+
hasPDReportingApiImplemented?: InputMaybe<Scalars['Boolean']['input']>;
|
|
91111
92128
|
name: Scalars['String']['input'];
|
|
91112
92129
|
privacyPolicy?: InputMaybe<Scalars['String']['input']>;
|
|
92130
|
+
storesPersonalData?: InputMaybe<Scalars['Boolean']['input']>;
|
|
92131
|
+
termsOfService?: InputMaybe<Scalars['String']['input']>;
|
|
92132
|
+
vendorName?: InputMaybe<Scalars['String']['input']>;
|
|
91113
92133
|
};
|
|
91114
92134
|
export declare type UpdateAppDetailsResponse = Payload & {
|
|
91115
92135
|
__typename?: 'UpdateAppDetailsResponse';
|