@forge/cli-shared 6.6.1-next.0 → 6.6.1-next.10

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.
@@ -161,6 +161,7 @@ export declare type ActionsAction = {
161
161
  __typename?: 'ActionsAction';
162
162
  actionType: Scalars['String']['output'];
163
163
  actionVerb?: Maybe<Scalars['String']['output']>;
164
+ actionVersion?: Maybe<Scalars['String']['output']>;
164
165
  auth: Array<ActionsAuthType>;
165
166
  description?: Maybe<ActionsDescription>;
166
167
  enabledCapabilities?: Maybe<Array<Maybe<ActionsCapabilityType>>>;
@@ -263,6 +264,7 @@ export declare type ActionsActionableAppsFilter = {
263
264
  byActionId?: InputMaybe<Scalars['String']['input']>;
264
265
  byActionType?: InputMaybe<Array<Scalars['String']['input']>>;
265
266
  byActionVerb?: InputMaybe<Array<Scalars['String']['input']>>;
267
+ byActionVersion?: InputMaybe<Scalars['String']['input']>;
266
268
  byCapability?: InputMaybe<Array<Scalars['String']['input']>>;
267
269
  byContextEntityType?: InputMaybe<Array<Scalars['String']['input']>>;
268
270
  byEntityProperty?: InputMaybe<Array<Scalars['String']['input']>>;
@@ -594,7 +596,7 @@ export declare type ActivityObject = {
594
596
  subProduct?: Maybe<Scalars['String']['output']>;
595
597
  type: Scalars['String']['output'];
596
598
  };
597
- 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;
598
600
  export declare enum ActivityObjectType {
599
601
  Blogpost = "BLOGPOST",
600
602
  Comment = "COMMENT",
@@ -773,17 +775,29 @@ export declare type AgentAiSummary = {
773
775
  export declare type AgentStudioAction = {
774
776
  __typename?: 'AgentStudioAction';
775
777
  actionKey: Scalars['String']['output'];
778
+ description?: Maybe<Scalars['String']['output']>;
779
+ name?: Maybe<Scalars['String']['output']>;
780
+ tags?: Maybe<Array<Scalars['String']['output']>>;
776
781
  };
777
782
  export declare type AgentStudioActionConfiguration = {
778
783
  __typename?: 'AgentStudioActionConfiguration';
779
784
  actions?: Maybe<Array<AgentStudioAction>>;
780
785
  };
786
+ export declare type AgentStudioActionConfigurationInput = {
787
+ actions?: InputMaybe<Array<AgentStudioActionInput>>;
788
+ };
789
+ export declare type AgentStudioActionInput = {
790
+ actionKey: Scalars['String']['input'];
791
+ };
781
792
  export declare type AgentStudioAgent = {
782
793
  description?: Maybe<Scalars['String']['output']>;
783
794
  id: Scalars['ID']['output'];
784
795
  name?: Maybe<Scalars['String']['output']>;
785
796
  };
786
797
  export declare type AgentStudioAgentResult = AgentStudioAssistant | QueryError;
798
+ export declare enum AgentStudioAgentType {
799
+ Assistant = "ASSISTANT"
800
+ }
787
801
  export declare type AgentStudioAssistant = AgentStudioAgent & Node & {
788
802
  __typename?: 'AgentStudioAssistant';
789
803
  actions?: Maybe<AgentStudioActionConfiguration>;
@@ -792,8 +806,120 @@ export declare type AgentStudioAssistant = AgentStudioAgent & Node & {
792
806
  description?: Maybe<Scalars['String']['output']>;
793
807
  id: Scalars['ID']['output'];
794
808
  instructions?: Maybe<Scalars['String']['output']>;
809
+ knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
795
810
  name?: Maybe<Scalars['String']['output']>;
796
811
  };
812
+ export declare type AgentStudioConfluenceKnowledgeFilter = {
813
+ __typename?: 'AgentStudioConfluenceKnowledgeFilter';
814
+ parentFilter?: Maybe<Array<Scalars['ID']['output']>>;
815
+ spaceFilter?: Maybe<Array<Scalars['ID']['output']>>;
816
+ };
817
+ export declare type AgentStudioConfluenceKnowledgeFilterInput = {
818
+ parentFilter?: InputMaybe<Array<Scalars['ID']['input']>>;
819
+ spaceFilter?: InputMaybe<Array<Scalars['ID']['input']>>;
820
+ };
821
+ export declare type AgentStudioConversationStarterSuggestions = {
822
+ __typename?: 'AgentStudioConversationStarterSuggestions';
823
+ suggestions?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
824
+ };
825
+ export declare type AgentStudioCreateAgentInput = {
826
+ actions?: InputMaybe<AgentStudioActionConfigurationInput>;
827
+ agentType: AgentStudioAgentType;
828
+ conversationStarters?: InputMaybe<Array<Scalars['String']['input']>>;
829
+ description?: InputMaybe<Scalars['String']['input']>;
830
+ instructions?: InputMaybe<Scalars['String']['input']>;
831
+ knowledgeSources?: InputMaybe<AgentStudioKnowledgeConfigurationInput>;
832
+ name: Scalars['String']['input'];
833
+ };
834
+ export declare type AgentStudioCreateAgentPayload = Payload & {
835
+ __typename?: 'AgentStudioCreateAgentPayload';
836
+ agent?: Maybe<AgentStudioAgent>;
837
+ errors?: Maybe<Array<MutationError>>;
838
+ success: Scalars['Boolean']['output'];
839
+ };
840
+ export declare type AgentStudioJiraKnowledgeFilter = {
841
+ __typename?: 'AgentStudioJiraKnowledgeFilter';
842
+ projectFilter?: Maybe<Array<Scalars['ID']['output']>>;
843
+ };
844
+ export declare type AgentStudioJiraKnowledgeFilterInput = {
845
+ projectFilter?: InputMaybe<Array<Scalars['ID']['input']>>;
846
+ };
847
+ export declare type AgentStudioKnowledgeConfiguration = {
848
+ __typename?: 'AgentStudioKnowledgeConfiguration';
849
+ enabled?: Maybe<Scalars['Boolean']['output']>;
850
+ sources?: Maybe<Array<AgentStudioKnowledgeSource>>;
851
+ };
852
+ export declare type AgentStudioKnowledgeConfigurationInput = {
853
+ enabled?: InputMaybe<Scalars['Boolean']['input']>;
854
+ sources?: InputMaybe<Array<AgentStudioKnowledgeSourceInput>>;
855
+ };
856
+ export declare type AgentStudioKnowledgeFilter = AgentStudioConfluenceKnowledgeFilter | AgentStudioJiraKnowledgeFilter;
857
+ export declare type AgentStudioKnowledgeFiltersInput = {
858
+ confluenceFilter?: InputMaybe<AgentStudioConfluenceKnowledgeFilterInput>;
859
+ jiraFilter?: InputMaybe<AgentStudioJiraKnowledgeFilterInput>;
860
+ };
861
+ export declare type AgentStudioKnowledgeSource = {
862
+ __typename?: 'AgentStudioKnowledgeSource';
863
+ enabled?: Maybe<Scalars['Boolean']['output']>;
864
+ filters?: Maybe<AgentStudioKnowledgeFilter>;
865
+ source: Scalars['String']['output'];
866
+ };
867
+ export declare type AgentStudioKnowledgeSourceInput = {
868
+ enabled?: InputMaybe<Scalars['Boolean']['input']>;
869
+ filters?: InputMaybe<AgentStudioKnowledgeFiltersInput>;
870
+ source: Scalars['String']['input'];
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
+ };
884
+ export declare type AgentStudioUpdateAgentDetailsInput = {
885
+ creatorId?: InputMaybe<Scalars['ID']['input']>;
886
+ description?: InputMaybe<Scalars['String']['input']>;
887
+ instructions?: InputMaybe<Scalars['String']['input']>;
888
+ name?: InputMaybe<Scalars['String']['input']>;
889
+ };
890
+ export declare type AgentStudioUpdateAgentDetailsPayload = Payload & {
891
+ __typename?: 'AgentStudioUpdateAgentDetailsPayload';
892
+ agent?: Maybe<AgentStudioAgent>;
893
+ errors?: Maybe<Array<MutationError>>;
894
+ success: Scalars['Boolean']['output'];
895
+ };
896
+ export declare type AgentStudioUpdateConversationStartersInput = {
897
+ conversationStarters?: InputMaybe<Array<Scalars['String']['input']>>;
898
+ };
899
+ export declare type AgentStudioUpdateConversationStartersPayload = Payload & {
900
+ __typename?: 'AgentStudioUpdateConversationStartersPayload';
901
+ agent?: Maybe<AgentStudioAgent>;
902
+ errors?: Maybe<Array<MutationError>>;
903
+ success: Scalars['Boolean']['output'];
904
+ };
905
+ export declare type AiCoreApiVsaReporting = {
906
+ __typename?: 'AiCoreApiVSAReporting';
907
+ projectAri: Scalars['ID']['output'];
908
+ unassistedConversationStatsWithMetaData?: Maybe<AiCoreApiVsaUnassistedConversationStatsWithMetaData>;
909
+ };
910
+ export declare type AiCoreApiVsaReportingResult = AiCoreApiVsaReporting | QueryError;
911
+ export declare type AiCoreApiVsaUnassistedConversationStats = {
912
+ __typename?: 'AiCoreApiVSAUnassistedConversationStats';
913
+ clusterId: Scalars['ID']['output'];
914
+ conversationIds?: Maybe<Array<Scalars['ID']['output']>>;
915
+ conversationsCount: Scalars['Int']['output'];
916
+ title: Scalars['String']['output'];
917
+ };
918
+ export declare type AiCoreApiVsaUnassistedConversationStatsWithMetaData = {
919
+ __typename?: 'AiCoreApiVSAUnassistedConversationStatsWithMetaData';
920
+ refreshedUntil?: Maybe<Scalars['DateTime']['output']>;
921
+ unassistedConversationStats?: Maybe<Array<AiCoreApiVsaUnassistedConversationStats>>;
922
+ };
797
923
  export declare enum AlertEventStatus {
798
924
  Acknowledged = "ACKNOWLEDGED",
799
925
  Closed = "CLOSED",
@@ -857,13 +983,10 @@ export declare enum AnalyticsEventName {
857
983
  WhiteboardViewed = "whiteboard_viewed"
858
984
  }
859
985
  export declare enum AnalyticsMeasuresEventName {
860
- CurrentBlogpostCountSitestateMeasured = "currentBlogpostCount_sitestate_measured",
861
986
  CurrentBlogpostCountSpacestateMeasured = "currentBlogpostCount_spacestate_measured",
862
- CurrentDatabaseCountSitestateMeasured = "currentDatabaseCount_sitestate_measured",
863
987
  CurrentDatabaseCountSpacestateMeasured = "currentDatabaseCount_spacestate_measured",
864
- CurrentPageCountSitestateMeasured = "currentPageCount_sitestate_measured",
988
+ CurrentLivedocsCountSpacestateMeasured = "currentLivedocsCount_spacestate_measured",
865
989
  CurrentPageCountSpacestateMeasured = "currentPageCount_spacestate_measured",
866
- CurrentWhiteboardCountSitestateMeasured = "currentWhiteboardCount_sitestate_measured",
867
990
  CurrentWhiteboardCountSpacestateMeasured = "currentWhiteboardCount_spacestate_measured",
868
991
  InactivePageCountSitestateMeasured = "inactivePageCount_sitestate_measured",
869
992
  InactivePageCountSpacestateMeasured = "inactivePageCount_spacestate_measured",
@@ -874,6 +997,7 @@ export declare enum AnalyticsMeasuresEventName {
874
997
  TotalActiveSpacesSitestateMeasured = "totalActiveSpaces_sitestate_measured",
875
998
  TotalCurrentBlogpostCountSitestateMeasured = "totalCurrentBlogpostCount_sitestate_measured",
876
999
  TotalCurrentDatabaseCountSitestateMeasured = "totalCurrentDatabaseCount_sitestate_measured",
1000
+ TotalCurrentLivedocsCountSitestateMeasured = "totalCurrentLivedocsCount_sitestate_measured",
877
1001
  TotalCurrentPageCountSitestateMeasured = "totalCurrentPageCount_sitestate_measured",
878
1002
  TotalCurrentWhiteboardCountSitestateMeasured = "totalCurrentWhiteboardCount_sitestate_measured",
879
1003
  TotalPagesDeactivatedOwnerSitestateMeasured = "totalPagesDeactivatedOwner_sitestate_measured",
@@ -882,6 +1006,7 @@ export declare enum AnalyticsMeasuresEventName {
882
1006
  export declare enum AnalyticsMeasuresSpaceEventName {
883
1007
  CurrentBlogpostCountSpacestateMeasured = "currentBlogpostCount_spacestate_measured",
884
1008
  CurrentDatabaseCountSpacestateMeasured = "currentDatabaseCount_spacestate_measured",
1009
+ CurrentLivedocsCountSpacestateMeasured = "currentLivedocsCount_spacestate_measured",
885
1010
  CurrentPageCountSpacestateMeasured = "currentPageCount_spacestate_measured",
886
1011
  CurrentWhiteboardCountSpacestateMeasured = "currentWhiteboardCount_spacestate_measured",
887
1012
  InactivePageCountSpacestateMeasured = "inactivePageCount_spacestate_measured",
@@ -972,6 +1097,7 @@ export declare type App = {
972
1097
  environmentByKey?: Maybe<AppEnvironment>;
973
1098
  environmentByOauthClient?: Maybe<AppEnvironment>;
974
1099
  environments: Array<AppEnvironment>;
1100
+ hasPDReportingApiImplemented?: Maybe<Scalars['Boolean']['output']>;
975
1101
  id: Scalars['ID']['output'];
976
1102
  installationsByContexts?: Maybe<AppInstallationByIndexConnection>;
977
1103
  marketplaceApp?: Maybe<MarketplaceApp>;
@@ -1215,6 +1341,22 @@ export declare type AppEnvironmentVersionEdge = {
1215
1341
  cursor: Scalars['String']['output'];
1216
1342
  node?: Maybe<AppEnvironmentVersion>;
1217
1343
  };
1344
+ export declare type AppFeaturesExposedCredentialsInput = {
1345
+ contactLink?: InputMaybe<Scalars['String']['input']>;
1346
+ defaultAuthClientType?: InputMaybe<AuthClientType>;
1347
+ distributionStatus?: InputMaybe<DistributionStatus>;
1348
+ hasPDReportingApiImplemented?: InputMaybe<Scalars['Boolean']['input']>;
1349
+ privacyPolicy?: InputMaybe<Scalars['String']['input']>;
1350
+ refreshTokenRotation?: InputMaybe<Scalars['Boolean']['input']>;
1351
+ storesPersonalData?: InputMaybe<Scalars['Boolean']['input']>;
1352
+ termsOfService?: InputMaybe<Scalars['String']['input']>;
1353
+ vendorName?: InputMaybe<Scalars['String']['input']>;
1354
+ vendorType?: InputMaybe<VendorType>;
1355
+ };
1356
+ export declare type AppFeaturesInput = {
1357
+ hasCustomLifecycle?: InputMaybe<Scalars['Boolean']['input']>;
1358
+ hasExposedCredentials?: InputMaybe<AppFeaturesExposedCredentialsInput>;
1359
+ };
1218
1360
  export declare type AppHostService = {
1219
1361
  __typename?: 'AppHostService';
1220
1362
  description: Scalars['String']['output'];
@@ -2200,6 +2342,7 @@ export declare type AtlassianOAuthClient = {
2200
2342
  clientARI: Scalars['ID']['output'];
2201
2343
  clientID: Scalars['ID']['output'];
2202
2344
  refreshToken?: Maybe<RefreshToken>;
2345
+ systemUser?: Maybe<SystemUser>;
2203
2346
  };
2204
2347
  export declare enum AtlassianProductHostingType {
2205
2348
  Cloud = "CLOUD",
@@ -2281,6 +2424,11 @@ export declare type AuditsPageInfo = {
2281
2424
  hasPreviousPage: Scalars['Boolean']['output'];
2282
2425
  startCursor?: Maybe<Scalars['String']['output']>;
2283
2426
  };
2427
+ export declare enum AuthClientType {
2428
+ AtlassianMobile = "ATLASSIAN_MOBILE",
2429
+ ThirdParty = "THIRD_PARTY",
2430
+ ThirdPartyNative = "THIRD_PARTY_NATIVE"
2431
+ }
2284
2432
  export declare type AuthToken = {
2285
2433
  __typename?: 'AuthToken';
2286
2434
  token: Scalars['String']['output'];
@@ -2419,10 +2567,14 @@ export declare type BitbucketPullRequest = Node & {
2419
2567
  };
2420
2568
  export declare type BitbucketQuery = {
2421
2569
  __typename?: 'BitbucketQuery';
2570
+ bitbucketPullRequests?: Maybe<Array<Maybe<BitbucketPullRequest>>>;
2422
2571
  bitbucketRepositories?: Maybe<Array<Maybe<BitbucketRepository>>>;
2423
2572
  bitbucketRepository?: Maybe<BitbucketRepository>;
2424
2573
  bitbucketWorkspace?: Maybe<BitbucketWorkspace>;
2425
2574
  };
2575
+ export declare type BitbucketQueryBitbucketPullRequestsArgs = {
2576
+ ids: Array<Scalars['ID']['input']>;
2577
+ };
2426
2578
  export declare type BitbucketQueryBitbucketRepositoriesArgs = {
2427
2579
  ids: Array<Scalars['ID']['input']>;
2428
2580
  };
@@ -3188,7 +3340,15 @@ export declare enum CcpCreateEntitlementExperienceCapabilityErrorReasonCode {
3188
3340
  MultipleTransactionAccount = "MULTIPLE_TRANSACTION_ACCOUNT",
3189
3341
  UsecaseNotImplemented = "USECASE_NOT_IMPLEMENTED"
3190
3342
  }
3343
+ export declare type CcpCreateEntitlementExperienceOptions = {
3344
+ confirmationScreen?: InputMaybe<CcpCreateEntitlementExperienceOptionsConfirmationScreen>;
3345
+ };
3346
+ export declare enum CcpCreateEntitlementExperienceOptionsConfirmationScreen {
3347
+ Comparison = "COMPARISON",
3348
+ Default = "DEFAULT"
3349
+ }
3191
3350
  export declare type CcpCreateEntitlementInput = {
3351
+ experienceOptions?: InputMaybe<CcpCreateEntitlementExperienceOptions>;
3192
3352
  offeringKey: Scalars['ID']['input'];
3193
3353
  orderOptions?: InputMaybe<CcpCreateEntitlementOrderOptions>;
3194
3354
  relatesToEntitlements?: InputMaybe<Array<CcpCreateEntitlementRelatesTo>>;
@@ -6888,6 +7048,7 @@ export declare type CompassJqlMetricDefinitionConfiguration = {
6888
7048
  };
6889
7049
  export declare type CompassJqlMetricDefinitionConfigurationInput = {
6890
7050
  customizable: Scalars['Boolean']['input'];
7051
+ format?: InputMaybe<Scalars['String']['input']>;
6891
7052
  jql: Scalars['String']['input'];
6892
7053
  };
6893
7054
  export declare type CompassJqlMetricSourceConfiguration = {
@@ -15186,6 +15347,26 @@ export declare type ConfluencePerson = Person & {
15186
15347
  userKey?: Maybe<Scalars['String']['output']>;
15187
15348
  username?: Maybe<Scalars['String']['output']>;
15188
15349
  };
15350
+ export declare type ConfluencePersonConnection = {
15351
+ __typename?: 'ConfluencePersonConnection';
15352
+ count?: Maybe<Scalars['Int']['output']>;
15353
+ edges?: Maybe<Array<Maybe<ConfluencePersonEdge>>>;
15354
+ nodes?: Maybe<Array<Maybe<ConfluencePerson>>>;
15355
+ pageInfo?: Maybe<PageInfo>;
15356
+ };
15357
+ export declare type ConfluencePersonEdge = {
15358
+ __typename?: 'ConfluencePersonEdge';
15359
+ cursor?: Maybe<Scalars['String']['output']>;
15360
+ node?: Maybe<ConfluencePerson>;
15361
+ };
15362
+ export declare type ConfluencePersonWithPermissionsConnection = {
15363
+ __typename?: 'ConfluencePersonWithPermissionsConnection';
15364
+ count?: Maybe<Scalars['Int']['output']>;
15365
+ edges?: Maybe<Array<Maybe<ConfluencePersonEdge>>>;
15366
+ links?: Maybe<LinksContextBase>;
15367
+ nodes?: Maybe<Array<Maybe<ConfluencePerson>>>;
15368
+ pageInfo?: Maybe<PageInfo>;
15369
+ };
15189
15370
  export declare enum ConfluencePrincipalType {
15190
15371
  Group = "GROUP",
15191
15372
  User = "USER"
@@ -16289,64 +16470,6 @@ export declare type ConfluenceWhiteboardLinks = {
16289
16470
  base?: Maybe<Scalars['String']['output']>;
16290
16471
  webUi?: Maybe<Scalars['String']['output']>;
16291
16472
  };
16292
- export declare type ConfluenceWorkflow = {
16293
- __typename?: 'ConfluenceWorkflow';
16294
- description?: Maybe<Scalars['String']['output']>;
16295
- id: Scalars['ID']['output'];
16296
- name: Scalars['String']['output'];
16297
- workflowId: Scalars['ID']['output'];
16298
- };
16299
- export declare type ConfluenceWorkflowApplication = {
16300
- __typename?: 'ConfluenceWorkflowApplication';
16301
- availableTransitions?: Maybe<Array<Maybe<ConfluenceWorkflowTransition>>>;
16302
- currentWorkflowStatus?: Maybe<ConfluenceWorkflowStatus>;
16303
- workflow: ConfluenceWorkflow;
16304
- };
16305
- export declare type ConfluenceWorkflowApplicationConnection = {
16306
- __typename?: 'ConfluenceWorkflowApplicationConnection';
16307
- edges?: Maybe<Array<Maybe<ConfluenceWorkflowApplicationEdge>>>;
16308
- nodes?: Maybe<Array<Maybe<ConfluenceWorkflowApplication>>>;
16309
- pageInfo: ConfluencePageInfo;
16310
- };
16311
- export declare type ConfluenceWorkflowApplicationEdge = {
16312
- __typename?: 'ConfluenceWorkflowApplicationEdge';
16313
- cursor: Scalars['String']['output'];
16314
- node?: Maybe<ConfluenceWorkflowApplication>;
16315
- };
16316
- export declare type ConfluenceWorkflowConnection = {
16317
- __typename?: 'ConfluenceWorkflowConnection';
16318
- edges?: Maybe<Array<Maybe<ConfluenceWorkflowEdge>>>;
16319
- nodes?: Maybe<Array<Maybe<ConfluenceWorkflow>>>;
16320
- pageInfo: ConfluencePageInfo;
16321
- };
16322
- export declare type ConfluenceWorkflowEdge = {
16323
- __typename?: 'ConfluenceWorkflowEdge';
16324
- cursor: Scalars['String']['output'];
16325
- node?: Maybe<ConfluenceWorkflow>;
16326
- };
16327
- export declare type ConfluenceWorkflowStatus = {
16328
- __typename?: 'ConfluenceWorkflowStatus';
16329
- displayProperties?: Maybe<ConfluenceWorkflowStatusDisplayProperties>;
16330
- id?: Maybe<Scalars['ID']['output']>;
16331
- };
16332
- export declare type ConfluenceWorkflowStatusDisplayProperties = {
16333
- __typename?: 'ConfluenceWorkflowStatusDisplayProperties';
16334
- color?: Maybe<Scalars['String']['output']>;
16335
- description?: Maybe<Scalars['String']['output']>;
16336
- name?: Maybe<Scalars['String']['output']>;
16337
- };
16338
- export declare type ConfluenceWorkflowTransition = {
16339
- __typename?: 'ConfluenceWorkflowTransition';
16340
- destinationStatus: ConfluenceWorkflowStatus;
16341
- displayProperties?: Maybe<ConfluenceWorkflowTransitionDisplayProperties>;
16342
- id: Scalars['ID']['output'];
16343
- startStatus?: Maybe<ConfluenceWorkflowStatus>;
16344
- };
16345
- export declare type ConfluenceWorkflowTransitionDisplayProperties = {
16346
- __typename?: 'ConfluenceWorkflowTransitionDisplayProperties';
16347
- description?: Maybe<Scalars['String']['output']>;
16348
- name?: Maybe<Scalars['String']['output']>;
16349
- };
16350
16473
  export declare type Confluence_CqlMetaData = {
16351
16474
  __typename?: 'Confluence_cqlMetaData';
16352
16475
  cqlContentTypes: Array<Maybe<CqlDisplayableType>>;
@@ -16396,12 +16519,8 @@ export declare type ConnectAppScope = {
16396
16519
  };
16397
16520
  export declare type ConnectedDataQuery = {
16398
16521
  __typename?: 'ConnectedDataQuery';
16399
- incidentWithId?: Maybe<JsmIncident>;
16400
16522
  services?: Maybe<DevOpsService>;
16401
16523
  };
16402
- export declare type ConnectedDataQueryIncidentWithIdArgs = {
16403
- id: Scalars['ID']['input'];
16404
- };
16405
16524
  export declare type ConnectedDataQueryServicesArgs = {
16406
16525
  cloudId: Scalars['ID']['input'];
16407
16526
  id: Scalars['ID']['input'];
@@ -18594,6 +18713,7 @@ export declare type CreateAppEnvironmentResponse = Payload & {
18594
18713
  success: Scalars['Boolean']['output'];
18595
18714
  };
18596
18715
  export declare type CreateAppInput = {
18716
+ appFeatures?: InputMaybe<AppFeaturesInput>;
18597
18717
  description?: InputMaybe<Scalars['String']['input']>;
18598
18718
  name: Scalars['String']['input'];
18599
18719
  };
@@ -21120,8 +21240,14 @@ export declare type DevAiGenericMutationErrorExtension = MutationErrorExtension
21120
21240
  errorType?: Maybe<Scalars['String']['output']>;
21121
21241
  statusCode?: Maybe<Scalars['Int']['output']>;
21122
21242
  };
21243
+ export declare type DevAiInvokeAutodevRovoAgentInBulkPayload = Payload & {
21244
+ __typename?: 'DevAiInvokeAutodevRovoAgentInBulkPayload';
21245
+ errors?: Maybe<Array<MutationError>>;
21246
+ success: Scalars['Boolean']['output'];
21247
+ };
21123
21248
  export declare type DevAiInvokeAutodevRovoAgentPayload = Payload & {
21124
21249
  __typename?: 'DevAiInvokeAutodevRovoAgentPayload';
21250
+ conversationId?: Maybe<Scalars['ID']['output']>;
21125
21251
  errors?: Maybe<Array<MutationError>>;
21126
21252
  jobId?: Maybe<Scalars['ID']['output']>;
21127
21253
  success: Scalars['Boolean']['output'];
@@ -21180,6 +21306,7 @@ export declare type DevAiPhaseStartedAutodevLog = DevAiAutodevLog & {
21180
21306
  priority?: Maybe<DevAiAutodevLogPriority>;
21181
21307
  status?: Maybe<DevAiAutodevLogStatus>;
21182
21308
  timestamp?: Maybe<Scalars['DateTime']['output']>;
21309
+ userCommand?: Maybe<Scalars['String']['output']>;
21183
21310
  };
21184
21311
  export declare type DevAiPlaintextAutodevLog = DevAiAutodevLog & {
21185
21312
  __typename?: 'DevAiPlaintextAutodevLog';
@@ -22930,6 +23057,10 @@ export declare type DiscoveredFeature = {
22930
23057
  pluginKey?: Maybe<Scalars['String']['output']>;
22931
23058
  userKey?: Maybe<Scalars['String']['output']>;
22932
23059
  };
23060
+ export declare enum DistributionStatus {
23061
+ Development = "DEVELOPMENT",
23062
+ Public = "PUBLIC"
23063
+ }
22933
23064
  export declare type DocumentBody = {
22934
23065
  __typename?: 'DocumentBody';
22935
23066
  representation: DocumentRepresentation;
@@ -22975,6 +23106,11 @@ export declare type EarliestViewViewedForUser = {
22975
23106
  datetime?: Maybe<Scalars['String']['output']>;
22976
23107
  };
22977
23108
  export declare type EcosystemApp = App | EcosystemConnectApp;
23109
+ export declare type EcosystemAppInstallationConfigExtension = {
23110
+ __typename?: 'EcosystemAppInstallationConfigExtension';
23111
+ key: Scalars['String']['output'];
23112
+ value: Scalars['Boolean']['output'];
23113
+ };
22978
23114
  export declare enum EcosystemAppInstallationConfigIdType {
22979
23115
  Cloud = "CLOUD",
22980
23116
  Installation = "INSTALLATION"
@@ -23144,6 +23280,7 @@ export declare type EcosystemMarketplaceAppVersion = {
23144
23280
  buildNumber: Scalars['Float']['output'];
23145
23281
  editionsEnabled?: Maybe<Scalars['Boolean']['output']>;
23146
23282
  isSupported?: Maybe<Scalars['Boolean']['output']>;
23283
+ paymentModel?: Maybe<EcosystemMarketplacePaymentModel>;
23147
23284
  version: Scalars['String']['output'];
23148
23285
  };
23149
23286
  export declare type EcosystemMarketplaceData = {
@@ -23153,12 +23290,41 @@ export declare type EcosystemMarketplaceData = {
23153
23290
  cloudAppId: Scalars['ID']['output'];
23154
23291
  forumsUrl?: Maybe<Scalars['String']['output']>;
23155
23292
  issueTrackerUrl?: Maybe<Scalars['String']['output']>;
23293
+ listingStatus?: Maybe<EcosystemMarketplaceListingStatus>;
23156
23294
  name?: Maybe<Scalars['String']['output']>;
23295
+ partner?: Maybe<EcosystemMarketplacePartner>;
23157
23296
  slug?: Maybe<Scalars['String']['output']>;
23158
23297
  supportTicketSystemUrl?: Maybe<Scalars['String']['output']>;
23159
23298
  versions?: Maybe<EcosystemMarketplaceVersionConnection>;
23160
23299
  wikiUrl?: Maybe<Scalars['String']['output']>;
23161
23300
  };
23301
+ export declare enum EcosystemMarketplaceListingStatus {
23302
+ Private = "PRIVATE",
23303
+ Public = "PUBLIC",
23304
+ ReadyToLaunch = "READY_TO_LAUNCH",
23305
+ Rejected = "REJECTED",
23306
+ Submitted = "SUBMITTED"
23307
+ }
23308
+ export declare type EcosystemMarketplacePartner = {
23309
+ __typename?: 'EcosystemMarketplacePartner';
23310
+ id: Scalars['ID']['output'];
23311
+ name?: Maybe<Scalars['String']['output']>;
23312
+ support?: Maybe<EcosystemMarketplacePartnerSupport>;
23313
+ };
23314
+ export declare type EcosystemMarketplacePartnerSupport = {
23315
+ __typename?: 'EcosystemMarketplacePartnerSupport';
23316
+ contactDetails?: Maybe<EcosystemMarketplacePartnerSupportContact>;
23317
+ };
23318
+ export declare type EcosystemMarketplacePartnerSupportContact = {
23319
+ __typename?: 'EcosystemMarketplacePartnerSupportContact';
23320
+ emailId?: Maybe<Scalars['String']['output']>;
23321
+ websiteUrl?: Maybe<Scalars['String']['output']>;
23322
+ };
23323
+ export declare enum EcosystemMarketplacePaymentModel {
23324
+ Free = "FREE",
23325
+ PaidViaAtlassian = "PAID_VIA_ATLASSIAN",
23326
+ PaidViaPartner = "PAID_VIA_PARTNER"
23327
+ }
23162
23328
  export declare type EcosystemMarketplaceVersionConnection = {
23163
23329
  __typename?: 'EcosystemMarketplaceVersionConnection';
23164
23330
  edges?: Maybe<Array<EcosystemMarketplaceVersionEdge>>;
@@ -23647,6 +23813,7 @@ export declare type Extension = {
23647
23813
  environmentType: Scalars['String']['output'];
23648
23814
  id: Scalars['ID']['output'];
23649
23815
  installation?: Maybe<AppInstallationSummary>;
23816
+ installationConfig?: Maybe<Array<EcosystemAppInstallationConfigExtension>>;
23650
23817
  installationId: Scalars['String']['output'];
23651
23818
  key: Scalars['String']['output'];
23652
23819
  license?: Maybe<AppInstallationLicense>;
@@ -23654,6 +23821,7 @@ export declare type Extension = {
23654
23821
  migrationKey?: Maybe<Scalars['String']['output']>;
23655
23822
  name?: Maybe<Scalars['String']['output']>;
23656
23823
  oauthClientId: Scalars['ID']['output'];
23824
+ overrides?: Maybe<Scalars['JSON']['output']>;
23657
23825
  principal?: Maybe<AppPrincipal>;
23658
23826
  properties: Scalars['JSON']['output'];
23659
23827
  remoteInstallationRegion?: Maybe<Scalars['String']['output']>;
@@ -23897,6 +24065,13 @@ export declare type ExternalCollaboratorFeature = {
23897
24065
  __typename?: 'ExternalCollaboratorFeature';
23898
24066
  isEntitled: Scalars['Boolean']['output'];
23899
24067
  };
24068
+ export declare enum ExternalCollaboratorsSortField {
24069
+ Name = "NAME"
24070
+ }
24071
+ export declare type ExternalCollaboratorsSortType = {
24072
+ field?: InputMaybe<ExternalCollaboratorsSortField>;
24073
+ isAscending?: InputMaybe<Scalars['Boolean']['input']>;
24074
+ };
23900
24075
  export declare type ExternalComment = Node & {
23901
24076
  __typename?: 'ExternalComment';
23902
24077
  associatedWith?: Maybe<ExternalAssociationConnection>;
@@ -24137,6 +24312,97 @@ export declare type ExternalEntities = {
24137
24312
  workItem?: Maybe<Array<Maybe<ExternalWorkItem>>>;
24138
24313
  worker?: Maybe<Array<Maybe<ExternalWorker>>>;
24139
24314
  };
24315
+ export declare type ExternalEntitiesV2ForHydration = {
24316
+ __typename?: 'ExternalEntitiesV2ForHydration';
24317
+ branch?: Maybe<Array<Maybe<ExternalBranch>>>;
24318
+ buildInfo?: Maybe<Array<Maybe<ExternalBuildInfo>>>;
24319
+ calendarEvent?: Maybe<Array<Maybe<ExternalCalendarEvent>>>;
24320
+ comment?: Maybe<Array<Maybe<ExternalComment>>>;
24321
+ commit?: Maybe<Array<Maybe<ExternalCommit>>>;
24322
+ conversation?: Maybe<Array<Maybe<ExternalConversation>>>;
24323
+ deployment?: Maybe<Array<Maybe<ExternalDeployment>>>;
24324
+ design?: Maybe<Array<Maybe<ExternalDesign>>>;
24325
+ document?: Maybe<Array<Maybe<ExternalDocument>>>;
24326
+ featureFlag?: Maybe<Array<Maybe<ExternalFeatureFlag>>>;
24327
+ message?: Maybe<Array<Maybe<ExternalMessage>>>;
24328
+ organisation?: Maybe<Array<Maybe<ExternalOrganisation>>>;
24329
+ position?: Maybe<Array<Maybe<ExternalPosition>>>;
24330
+ pullRequest?: Maybe<Array<Maybe<ExternalPullRequest>>>;
24331
+ remoteLink?: Maybe<Array<Maybe<ExternalRemoteLink>>>;
24332
+ repository?: Maybe<Array<Maybe<ExternalRepository>>>;
24333
+ space?: Maybe<Array<Maybe<ExternalSpace>>>;
24334
+ video?: Maybe<Array<Maybe<ExternalVideo>>>;
24335
+ vulnerability?: Maybe<Array<Maybe<ExternalVulnerability>>>;
24336
+ workItem?: Maybe<Array<Maybe<ExternalWorkItem>>>;
24337
+ worker?: Maybe<Array<Maybe<ExternalWorker>>>;
24338
+ };
24339
+ export declare type ExternalEntitiesV2ForHydrationBranchArgs = {
24340
+ externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
24341
+ };
24342
+ export declare type ExternalEntitiesV2ForHydrationBuildInfoArgs = {
24343
+ externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
24344
+ };
24345
+ export declare type ExternalEntitiesV2ForHydrationCalendarEventArgs = {
24346
+ externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
24347
+ };
24348
+ export declare type ExternalEntitiesV2ForHydrationCommentArgs = {
24349
+ externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
24350
+ };
24351
+ export declare type ExternalEntitiesV2ForHydrationCommitArgs = {
24352
+ externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
24353
+ };
24354
+ export declare type ExternalEntitiesV2ForHydrationConversationArgs = {
24355
+ externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
24356
+ };
24357
+ export declare type ExternalEntitiesV2ForHydrationDeploymentArgs = {
24358
+ externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
24359
+ };
24360
+ export declare type ExternalEntitiesV2ForHydrationDesignArgs = {
24361
+ externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
24362
+ };
24363
+ export declare type ExternalEntitiesV2ForHydrationDocumentArgs = {
24364
+ externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
24365
+ };
24366
+ export declare type ExternalEntitiesV2ForHydrationFeatureFlagArgs = {
24367
+ externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
24368
+ };
24369
+ export declare type ExternalEntitiesV2ForHydrationMessageArgs = {
24370
+ externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
24371
+ };
24372
+ export declare type ExternalEntitiesV2ForHydrationOrganisationArgs = {
24373
+ externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
24374
+ };
24375
+ export declare type ExternalEntitiesV2ForHydrationPositionArgs = {
24376
+ externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
24377
+ };
24378
+ export declare type ExternalEntitiesV2ForHydrationPullRequestArgs = {
24379
+ externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
24380
+ };
24381
+ export declare type ExternalEntitiesV2ForHydrationRemoteLinkArgs = {
24382
+ externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
24383
+ };
24384
+ export declare type ExternalEntitiesV2ForHydrationRepositoryArgs = {
24385
+ externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
24386
+ };
24387
+ export declare type ExternalEntitiesV2ForHydrationSpaceArgs = {
24388
+ externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
24389
+ };
24390
+ export declare type ExternalEntitiesV2ForHydrationVideoArgs = {
24391
+ externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
24392
+ };
24393
+ export declare type ExternalEntitiesV2ForHydrationVulnerabilityArgs = {
24394
+ externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
24395
+ };
24396
+ export declare type ExternalEntitiesV2ForHydrationWorkItemArgs = {
24397
+ externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
24398
+ };
24399
+ export declare type ExternalEntitiesV2ForHydrationWorkerArgs = {
24400
+ externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
24401
+ };
24402
+ export declare type ExternalEntitiesV2ForHydrationInput = {
24403
+ ari?: InputMaybe<Scalars['ID']['input']>;
24404
+ graphWorkspaceAri?: InputMaybe<Scalars['ID']['input']>;
24405
+ };
24140
24406
  export declare type ExternalEntity = ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSpace | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker;
24141
24407
  export declare type ExternalEnvironment = {
24142
24408
  __typename?: 'ExternalEnvironment';
@@ -27029,7 +27295,6 @@ export declare type GraphJiraIssue = Node & {
27029
27295
  __typename?: 'GraphJiraIssue';
27030
27296
  data?: Maybe<JiraIssue>;
27031
27297
  id: Scalars['ID']['output'];
27032
- incident?: Maybe<JsmIncident>;
27033
27298
  };
27034
27299
  export declare type GraphJiraIssueConnection = {
27035
27300
  __typename?: 'GraphJiraIssueConnection';
@@ -29590,6 +29855,8 @@ export declare type GraphStore = {
29590
29855
  atlasGoalHasOwnerInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasOwnerInverseConnection>;
29591
29856
  atlasGoalHasSubAtlasGoal?: Maybe<GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalConnection>;
29592
29857
  atlasGoalHasSubAtlasGoalInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalInverseConnection>;
29858
+ atlasGoalHasUpdate?: Maybe<GraphStoreSimplifiedAtlasGoalHasUpdateConnection>;
29859
+ atlasGoalHasUpdateInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasUpdateInverseConnection>;
29593
29860
  atlasHomeFeed: GraphStoreAtlasHomeQueryConnection;
29594
29861
  atlasProjectContributesToAtlasGoal?: Maybe<GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalConnection>;
29595
29862
  atlasProjectContributesToAtlasGoalInverse?: Maybe<GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalInverseConnection>;
@@ -29603,12 +29870,18 @@ export declare type GraphStore = {
29603
29870
  atlasProjectHasFollowerInverse?: Maybe<GraphStoreSimplifiedAtlasProjectHasFollowerInverseConnection>;
29604
29871
  atlasProjectHasOwner?: Maybe<GraphStoreSimplifiedAtlasProjectHasOwnerConnection>;
29605
29872
  atlasProjectHasOwnerInverse?: Maybe<GraphStoreSimplifiedAtlasProjectHasOwnerInverseConnection>;
29873
+ atlasProjectHasUpdate?: Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateConnection>;
29874
+ atlasProjectHasUpdateInverse?: Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateInverseConnection>;
29606
29875
  atlasProjectIsRelatedToAtlasProject?: Maybe<GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectConnection>;
29607
29876
  atlasProjectIsRelatedToAtlasProjectInverse?: Maybe<GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectInverseConnection>;
29608
29877
  atlasProjectIsTrackedOnJiraEpic?: Maybe<GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicConnection>;
29609
29878
  atlasProjectIsTrackedOnJiraEpicInverse?: Maybe<GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicInverseConnection>;
29610
29879
  atlasProjectIsTrackedOnJiraEpicInverseRelationship?: Maybe<GraphStoreFullAtlasProjectIsTrackedOnJiraEpicConnection>;
29611
29880
  atlasProjectIsTrackedOnJiraEpicRelationship?: Maybe<GraphStoreFullAtlasProjectIsTrackedOnJiraEpicConnection>;
29881
+ boardBelongsToProject?: Maybe<GraphStoreSimplifiedBoardBelongsToProjectConnection>;
29882
+ boardBelongsToProjectInverse?: Maybe<GraphStoreSimplifiedBoardBelongsToProjectInverseConnection>;
29883
+ calendarHasLinkedDocument?: Maybe<GraphStoreSimplifiedCalendarHasLinkedDocumentConnection>;
29884
+ calendarHasLinkedDocumentInverse?: Maybe<GraphStoreSimplifiedCalendarHasLinkedDocumentInverseConnection>;
29612
29885
  componentAssociatedDocument?: Maybe<GraphStoreSimplifiedComponentAssociatedDocumentConnection>;
29613
29886
  componentAssociatedDocumentInverse?: Maybe<GraphStoreSimplifiedComponentAssociatedDocumentInverseConnection>;
29614
29887
  componentAssociatedDocumentInverseRelationship?: Maybe<GraphStoreFullComponentAssociatedDocumentConnection>;
@@ -29622,8 +29895,12 @@ export declare type GraphStore = {
29622
29895
  componentLinkedJswIssueInverse?: Maybe<GraphStoreSimplifiedComponentLinkedJswIssueInverseConnection>;
29623
29896
  componentLinkedJswIssueInverseRelationship?: Maybe<GraphStoreFullComponentLinkedJswIssueConnection>;
29624
29897
  componentLinkedJswIssueRelationship?: Maybe<GraphStoreFullComponentLinkedJswIssueConnection>;
29898
+ confluenceBlogpostHasComment?: Maybe<GraphStoreSimplifiedConfluenceBlogpostHasCommentConnection>;
29899
+ confluenceBlogpostHasCommentInverse?: Maybe<GraphStoreSimplifiedConfluenceBlogpostHasCommentInverseConnection>;
29625
29900
  confluenceBlogpostSharedWithUser?: Maybe<GraphStoreSimplifiedConfluenceBlogpostSharedWithUserConnection>;
29626
29901
  confluenceBlogpostSharedWithUserInverse?: Maybe<GraphStoreSimplifiedConfluenceBlogpostSharedWithUserInverseConnection>;
29902
+ confluencePageHasComment?: Maybe<GraphStoreSimplifiedConfluencePageHasCommentConnection>;
29903
+ confluencePageHasCommentInverse?: Maybe<GraphStoreSimplifiedConfluencePageHasCommentInverseConnection>;
29627
29904
  confluencePageHasConfluenceComment?: Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceCommentConnection>;
29628
29905
  confluencePageHasConfluenceCommentInverse?: Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceCommentInverseConnection>;
29629
29906
  confluencePageHasConfluenceDatabase?: Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceDatabaseConnection>;
@@ -29666,6 +29943,8 @@ export declare type GraphStore = {
29666
29943
  focusAreaHasFocusAreaBatch?: Maybe<GraphStoreBatchFocusAreaHasFocusAreaConnection>;
29667
29944
  focusAreaHasFocusAreaInverse?: Maybe<GraphStoreSimplifiedFocusAreaHasFocusAreaInverseConnection>;
29668
29945
  focusAreaHasFocusAreaInverseBatch?: Maybe<GraphStoreBatchFocusAreaHasFocusAreaConnection>;
29946
+ focusAreaHasPage?: Maybe<GraphStoreSimplifiedFocusAreaHasPageConnection>;
29947
+ focusAreaHasPageInverse?: Maybe<GraphStoreSimplifiedFocusAreaHasPageInverseConnection>;
29669
29948
  focusAreaHasProject?: Maybe<GraphStoreSimplifiedFocusAreaHasProjectConnection>;
29670
29949
  focusAreaHasProjectBatch?: Maybe<GraphStoreBatchFocusAreaHasProjectConnection>;
29671
29950
  focusAreaHasProjectInverse?: Maybe<GraphStoreSimplifiedFocusAreaHasProjectInverseConnection>;
@@ -29765,6 +30044,8 @@ export declare type GraphStore = {
29765
30044
  issueToWhiteboardInverse?: Maybe<GraphStoreSimplifiedIssueToWhiteboardInverseConnection>;
29766
30045
  issueToWhiteboardInverseRelationship?: Maybe<GraphStoreFullIssueToWhiteboardConnection>;
29767
30046
  issueToWhiteboardRelationship?: Maybe<GraphStoreFullIssueToWhiteboardConnection>;
30047
+ jcsIssueAssociatedSupportEscalation?: Maybe<GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationConnection>;
30048
+ jcsIssueAssociatedSupportEscalationInverse?: Maybe<GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationInverseConnection>;
29768
30049
  jiraEpicContributesToAtlasGoal?: Maybe<GraphStoreSimplifiedJiraEpicContributesToAtlasGoalConnection>;
29769
30050
  jiraEpicContributesToAtlasGoalInverse?: Maybe<GraphStoreSimplifiedJiraEpicContributesToAtlasGoalInverseConnection>;
29770
30051
  jiraEpicContributesToAtlasGoalInverseRelationship?: Maybe<GraphStoreFullJiraEpicContributesToAtlasGoalConnection>;
@@ -29798,11 +30079,15 @@ export declare type GraphStore = {
29798
30079
  linkedProjectHasVersionInverse?: Maybe<GraphStoreSimplifiedLinkedProjectHasVersionInverseConnection>;
29799
30080
  linkedProjectHasVersionInverseRelationship?: Maybe<GraphStoreFullLinkedProjectHasVersionConnection>;
29800
30081
  linkedProjectHasVersionRelationship?: Maybe<GraphStoreFullLinkedProjectHasVersionConnection>;
30082
+ loomVideoSharedWithUser?: Maybe<GraphStoreSimplifiedLoomVideoSharedWithUserConnection>;
30083
+ loomVideoSharedWithUserInverse?: Maybe<GraphStoreSimplifiedLoomVideoSharedWithUserInverseConnection>;
29801
30084
  mediaAttachedToContent?: Maybe<GraphStoreSimplifiedMediaAttachedToContentConnection>;
29802
30085
  mediaAttachedToContentBatch?: Maybe<GraphStoreBatchMediaAttachedToContentConnection>;
29803
30086
  mediaAttachedToContentInverseBatch?: Maybe<GraphStoreBatchMediaAttachedToContentConnection>;
30087
+ meetingHasMeetingNotesPage?: Maybe<GraphStoreSimplifiedMeetingHasMeetingNotesPageConnection>;
29804
30088
  meetingRecordingOwnerHasMeetingNotesFolder?: Maybe<GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderConnection>;
29805
30089
  meetingRecordingOwnerHasMeetingNotesFolderInverse?: Maybe<GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderInverseConnection>;
30090
+ meetingRecurrenceHasMeetingRecurrenceNotesPage?: Maybe<GraphStoreSimplifiedMeetingRecurrenceHasMeetingRecurrenceNotesPageConnection>;
29806
30091
  onPremProjectHasIssue?: Maybe<GraphStoreSimplifiedOnPremProjectHasIssueConnection>;
29807
30092
  onPremProjectHasIssueInverse?: Maybe<GraphStoreSimplifiedOnPremProjectHasIssueInverseConnection>;
29808
30093
  operationsContainerImpactedByIncident?: Maybe<GraphStoreSimplifiedOperationsContainerImpactedByIncidentConnection>;
@@ -29918,11 +30203,15 @@ export declare type GraphStore = {
29918
30203
  projectHasVersionRelationship?: Maybe<GraphStoreFullProjectHasVersionConnection>;
29919
30204
  projectLinkedToCompassComponent?: Maybe<GraphStoreSimplifiedProjectLinkedToCompassComponentConnection>;
29920
30205
  projectLinkedToCompassComponentInverse?: Maybe<GraphStoreSimplifiedProjectLinkedToCompassComponentInverseConnection>;
30206
+ pullRequestLinksToService?: Maybe<GraphStoreSimplifiedPullRequestLinksToServiceConnection>;
30207
+ pullRequestLinksToServiceInverse?: Maybe<GraphStoreSimplifiedPullRequestLinksToServiceInverseConnection>;
29921
30208
  securityContainerAssociatedToVulnerability?: Maybe<GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityConnection>;
29922
30209
  securityContainerAssociatedToVulnerabilityBatch?: Maybe<GraphStoreBatchSecurityContainerAssociatedToVulnerabilityConnection>;
29923
30210
  securityContainerAssociatedToVulnerabilityInverseBatch?: Maybe<GraphStoreBatchSecurityContainerAssociatedToVulnerabilityConnection>;
29924
30211
  securityContainerAssociatedToVulnerabilityInverseRelationship?: Maybe<GraphStoreFullSecurityContainerAssociatedToVulnerabilityConnection>;
29925
30212
  securityContainerAssociatedToVulnerabilityRelationship?: Maybe<GraphStoreFullSecurityContainerAssociatedToVulnerabilityConnection>;
30213
+ serviceAssociatedBranch?: Maybe<GraphStoreSimplifiedServiceAssociatedBranchConnection>;
30214
+ serviceAssociatedBranchInverse?: Maybe<GraphStoreSimplifiedServiceAssociatedBranchInverseConnection>;
29926
30215
  serviceAssociatedDeployment?: Maybe<GraphStoreSimplifiedServiceAssociatedDeploymentConnection>;
29927
30216
  serviceAssociatedDeploymentInverse?: Maybe<GraphStoreSimplifiedServiceAssociatedDeploymentInverseConnection>;
29928
30217
  serviceAssociatedRemoteLink?: Maybe<GraphStoreSimplifiedServiceAssociatedRemoteLinkConnection>;
@@ -29994,6 +30283,8 @@ export declare type GraphStore = {
29994
30283
  thirdPartyToGraphRemoteLink?: Maybe<GraphStoreSimplifiedThirdPartyToGraphRemoteLinkConnection>;
29995
30284
  userAssignedIncident?: Maybe<GraphStoreSimplifiedUserAssignedIncidentConnection>;
29996
30285
  userAssignedIncidentInverse?: Maybe<GraphStoreSimplifiedUserAssignedIncidentInverseConnection>;
30286
+ userAssignedIssue?: Maybe<GraphStoreSimplifiedUserAssignedIssueConnection>;
30287
+ userAssignedIssueInverse?: Maybe<GraphStoreSimplifiedUserAssignedIssueInverseConnection>;
29997
30288
  userAssignedPir?: Maybe<GraphStoreSimplifiedUserAssignedPirConnection>;
29998
30289
  userAssignedPirInverse?: Maybe<GraphStoreSimplifiedUserAssignedPirInverseConnection>;
29999
30290
  userAttendedCalendarEvent?: Maybe<GraphStoreSimplifiedUserAttendedCalendarEventConnection>;
@@ -30036,12 +30327,16 @@ export declare type GraphStore = {
30036
30327
  userCreatedDesignInverse?: Maybe<GraphStoreSimplifiedUserCreatedDesignInverseConnection>;
30037
30328
  userCreatedDocument?: Maybe<GraphStoreSimplifiedUserCreatedDocumentConnection>;
30038
30329
  userCreatedDocumentInverse?: Maybe<GraphStoreSimplifiedUserCreatedDocumentInverseConnection>;
30330
+ userCreatedIssueComment?: Maybe<GraphStoreSimplifiedUserCreatedIssueCommentConnection>;
30331
+ userCreatedIssueCommentInverse?: Maybe<GraphStoreSimplifiedUserCreatedIssueCommentInverseConnection>;
30039
30332
  userCreatedIssueWorklog?: Maybe<GraphStoreSimplifiedUserCreatedIssueWorklogConnection>;
30040
30333
  userCreatedIssueWorklogInverse?: Maybe<GraphStoreSimplifiedUserCreatedIssueWorklogInverseConnection>;
30041
30334
  userCreatedLoomVideo?: Maybe<GraphStoreSimplifiedUserCreatedLoomVideoConnection>;
30042
30335
  userCreatedLoomVideoInverse?: Maybe<GraphStoreSimplifiedUserCreatedLoomVideoInverseConnection>;
30043
30336
  userCreatedMessage?: Maybe<GraphStoreSimplifiedUserCreatedMessageConnection>;
30044
30337
  userCreatedMessageInverse?: Maybe<GraphStoreSimplifiedUserCreatedMessageInverseConnection>;
30338
+ userCreatedRelease?: Maybe<GraphStoreSimplifiedUserCreatedReleaseConnection>;
30339
+ userCreatedReleaseInverse?: Maybe<GraphStoreSimplifiedUserCreatedReleaseInverseConnection>;
30045
30340
  userCreatedRemoteLink?: Maybe<GraphStoreSimplifiedUserCreatedRemoteLinkConnection>;
30046
30341
  userCreatedRemoteLinkInverse?: Maybe<GraphStoreSimplifiedUserCreatedRemoteLinkInverseConnection>;
30047
30342
  userCreatedRepository?: Maybe<GraphStoreSimplifiedUserCreatedRepositoryConnection>;
@@ -30088,6 +30383,8 @@ export declare type GraphStore = {
30088
30383
  userOwnedRepositoryInverse?: Maybe<GraphStoreSimplifiedUserOwnedRepositoryInverseConnection>;
30089
30384
  userOwnsComponent?: Maybe<GraphStoreSimplifiedUserOwnsComponentConnection>;
30090
30385
  userOwnsComponentInverse?: Maybe<GraphStoreSimplifiedUserOwnsComponentInverseConnection>;
30386
+ userOwnsFocusArea?: Maybe<GraphStoreSimplifiedUserOwnsFocusAreaConnection>;
30387
+ userOwnsFocusAreaInverse?: Maybe<GraphStoreSimplifiedUserOwnsFocusAreaInverseConnection>;
30091
30388
  userReportedIncident?: Maybe<GraphStoreSimplifiedUserReportedIncidentConnection>;
30092
30389
  userReportedIncidentInverse?: Maybe<GraphStoreSimplifiedUserReportedIncidentInverseConnection>;
30093
30390
  userReportsIssue?: Maybe<GraphStoreSimplifiedUserReportsIssueConnection>;
@@ -30098,6 +30395,7 @@ export declare type GraphStore = {
30098
30395
  userTaggedInCommentInverse?: Maybe<GraphStoreSimplifiedUserTaggedInCommentInverseConnection>;
30099
30396
  userTaggedInConfluencePage?: Maybe<GraphStoreSimplifiedUserTaggedInConfluencePageConnection>;
30100
30397
  userTaggedInConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserTaggedInConfluencePageInverseConnection>;
30398
+ userTaggedInIssueComment?: Maybe<GraphStoreSimplifiedUserTaggedInIssueCommentConnection>;
30101
30399
  userTaggedInIssueCommentInverse?: Maybe<GraphStoreSimplifiedUserTaggedInIssueCommentInverseConnection>;
30102
30400
  userTriggeredDeployment?: Maybe<GraphStoreSimplifiedUserTriggeredDeploymentConnection>;
30103
30401
  userTriggeredDeploymentInverse?: Maybe<GraphStoreSimplifiedUserTriggeredDeploymentInverseConnection>;
@@ -30113,6 +30411,7 @@ export declare type GraphStore = {
30113
30411
  userUpdatedGraphDocumentInverse?: Maybe<GraphStoreSimplifiedUserUpdatedGraphDocumentInverseConnection>;
30114
30412
  userUpdatedIssue?: Maybe<GraphStoreSimplifiedUserUpdatedIssueConnection>;
30115
30413
  userUpdatedIssueInverse?: Maybe<GraphStoreSimplifiedUserUpdatedIssueInverseConnection>;
30414
+ userUpdatedIssueStatusInverse?: Maybe<GraphStoreSimplifiedUserUpdatedIssueStatusInverseConnection>;
30116
30415
  userViewedAtlasGoal?: Maybe<GraphStoreSimplifiedUserViewedAtlasGoalConnection>;
30117
30416
  userViewedAtlasGoalInverse?: Maybe<GraphStoreSimplifiedUserViewedAtlasGoalInverseConnection>;
30118
30417
  userViewedAtlasProject?: Maybe<GraphStoreSimplifiedUserViewedAtlasProjectConnection>;
@@ -30250,6 +30549,22 @@ export declare type GraphStoreAtlasGoalHasSubAtlasGoalInverseArgs = {
30250
30549
  id: Scalars['ID']['input'];
30251
30550
  sort?: InputMaybe<GraphStoreAtlasGoalHasSubAtlasGoalSortInput>;
30252
30551
  };
30552
+ export declare type GraphStoreAtlasGoalHasUpdateArgs = {
30553
+ after?: InputMaybe<Scalars['String']['input']>;
30554
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
30555
+ filter?: InputMaybe<GraphStoreAtlasGoalHasUpdateFilterInput>;
30556
+ first?: InputMaybe<Scalars['Int']['input']>;
30557
+ id: Scalars['ID']['input'];
30558
+ sort?: InputMaybe<GraphStoreAtlasGoalHasUpdateSortInput>;
30559
+ };
30560
+ export declare type GraphStoreAtlasGoalHasUpdateInverseArgs = {
30561
+ after?: InputMaybe<Scalars['String']['input']>;
30562
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
30563
+ filter?: InputMaybe<GraphStoreAtlasGoalHasUpdateFilterInput>;
30564
+ first?: InputMaybe<Scalars['Int']['input']>;
30565
+ id: Scalars['ID']['input'];
30566
+ sort?: InputMaybe<GraphStoreAtlasGoalHasUpdateSortInput>;
30567
+ };
30253
30568
  export declare type GraphStoreAtlasHomeFeedArgs = {
30254
30569
  container_ids: Array<Scalars['ID']['input']>;
30255
30570
  ranking_criteria?: InputMaybe<GraphStoreAtlasHomeRankingCriteria>;
@@ -30334,6 +30649,22 @@ export declare type GraphStoreAtlasProjectHasOwnerInverseArgs = {
30334
30649
  id: Scalars['ID']['input'];
30335
30650
  sort?: InputMaybe<GraphStoreAtlasProjectHasOwnerSortInput>;
30336
30651
  };
30652
+ export declare type GraphStoreAtlasProjectHasUpdateArgs = {
30653
+ after?: InputMaybe<Scalars['String']['input']>;
30654
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
30655
+ filter?: InputMaybe<GraphStoreAtlasProjectHasUpdateFilterInput>;
30656
+ first?: InputMaybe<Scalars['Int']['input']>;
30657
+ id: Scalars['ID']['input'];
30658
+ sort?: InputMaybe<GraphStoreAtlasProjectHasUpdateSortInput>;
30659
+ };
30660
+ export declare type GraphStoreAtlasProjectHasUpdateInverseArgs = {
30661
+ after?: InputMaybe<Scalars['String']['input']>;
30662
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
30663
+ filter?: InputMaybe<GraphStoreAtlasProjectHasUpdateFilterInput>;
30664
+ first?: InputMaybe<Scalars['Int']['input']>;
30665
+ id: Scalars['ID']['input'];
30666
+ sort?: InputMaybe<GraphStoreAtlasProjectHasUpdateSortInput>;
30667
+ };
30337
30668
  export declare type GraphStoreAtlasProjectIsRelatedToAtlasProjectArgs = {
30338
30669
  after?: InputMaybe<Scalars['String']['input']>;
30339
30670
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -30372,6 +30703,34 @@ export declare type GraphStoreAtlasProjectIsTrackedOnJiraEpicRelationshipArgs =
30372
30703
  first?: InputMaybe<Scalars['Int']['input']>;
30373
30704
  id: Scalars['ID']['input'];
30374
30705
  };
30706
+ export declare type GraphStoreBoardBelongsToProjectArgs = {
30707
+ after?: InputMaybe<Scalars['String']['input']>;
30708
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
30709
+ first?: InputMaybe<Scalars['Int']['input']>;
30710
+ id: Scalars['ID']['input'];
30711
+ sort?: InputMaybe<GraphStoreBoardBelongsToProjectSortInput>;
30712
+ };
30713
+ export declare type GraphStoreBoardBelongsToProjectInverseArgs = {
30714
+ after?: InputMaybe<Scalars['String']['input']>;
30715
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
30716
+ first?: InputMaybe<Scalars['Int']['input']>;
30717
+ id: Scalars['ID']['input'];
30718
+ sort?: InputMaybe<GraphStoreBoardBelongsToProjectSortInput>;
30719
+ };
30720
+ export declare type GraphStoreCalendarHasLinkedDocumentArgs = {
30721
+ after?: InputMaybe<Scalars['String']['input']>;
30722
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
30723
+ first?: InputMaybe<Scalars['Int']['input']>;
30724
+ id: Scalars['ID']['input'];
30725
+ sort?: InputMaybe<GraphStoreCalendarHasLinkedDocumentSortInput>;
30726
+ };
30727
+ export declare type GraphStoreCalendarHasLinkedDocumentInverseArgs = {
30728
+ after?: InputMaybe<Scalars['String']['input']>;
30729
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
30730
+ first?: InputMaybe<Scalars['Int']['input']>;
30731
+ id: Scalars['ID']['input'];
30732
+ sort?: InputMaybe<GraphStoreCalendarHasLinkedDocumentSortInput>;
30733
+ };
30375
30734
  export declare type GraphStoreComponentAssociatedDocumentArgs = {
30376
30735
  after?: InputMaybe<Scalars['String']['input']>;
30377
30736
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -30451,6 +30810,20 @@ export declare type GraphStoreComponentLinkedJswIssueRelationshipArgs = {
30451
30810
  first?: InputMaybe<Scalars['Int']['input']>;
30452
30811
  id: Scalars['ID']['input'];
30453
30812
  };
30813
+ export declare type GraphStoreConfluenceBlogpostHasCommentArgs = {
30814
+ after?: InputMaybe<Scalars['String']['input']>;
30815
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
30816
+ first?: InputMaybe<Scalars['Int']['input']>;
30817
+ id: Scalars['ID']['input'];
30818
+ sort?: InputMaybe<GraphStoreConfluenceBlogpostHasCommentSortInput>;
30819
+ };
30820
+ export declare type GraphStoreConfluenceBlogpostHasCommentInverseArgs = {
30821
+ after?: InputMaybe<Scalars['String']['input']>;
30822
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
30823
+ first?: InputMaybe<Scalars['Int']['input']>;
30824
+ id: Scalars['ID']['input'];
30825
+ sort?: InputMaybe<GraphStoreConfluenceBlogpostHasCommentSortInput>;
30826
+ };
30454
30827
  export declare type GraphStoreConfluenceBlogpostSharedWithUserArgs = {
30455
30828
  after?: InputMaybe<Scalars['String']['input']>;
30456
30829
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -30465,6 +30838,20 @@ export declare type GraphStoreConfluenceBlogpostSharedWithUserInverseArgs = {
30465
30838
  id: Scalars['ID']['input'];
30466
30839
  sort?: InputMaybe<GraphStoreConfluenceBlogpostSharedWithUserSortInput>;
30467
30840
  };
30841
+ export declare type GraphStoreConfluencePageHasCommentArgs = {
30842
+ after?: InputMaybe<Scalars['String']['input']>;
30843
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
30844
+ first?: InputMaybe<Scalars['Int']['input']>;
30845
+ id: Scalars['ID']['input'];
30846
+ sort?: InputMaybe<GraphStoreConfluencePageHasCommentSortInput>;
30847
+ };
30848
+ export declare type GraphStoreConfluencePageHasCommentInverseArgs = {
30849
+ after?: InputMaybe<Scalars['String']['input']>;
30850
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
30851
+ first?: InputMaybe<Scalars['Int']['input']>;
30852
+ id: Scalars['ID']['input'];
30853
+ sort?: InputMaybe<GraphStoreConfluencePageHasCommentSortInput>;
30854
+ };
30468
30855
  export declare type GraphStoreConfluencePageHasConfluenceCommentArgs = {
30469
30856
  after?: InputMaybe<Scalars['String']['input']>;
30470
30857
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -30745,6 +31132,20 @@ export declare type GraphStoreFocusAreaHasFocusAreaInverseBatchArgs = {
30745
31132
  ids: Array<Scalars['ID']['input']>;
30746
31133
  sort?: InputMaybe<GraphStoreFocusAreaHasFocusAreaSortInput>;
30747
31134
  };
31135
+ export declare type GraphStoreFocusAreaHasPageArgs = {
31136
+ after?: InputMaybe<Scalars['String']['input']>;
31137
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
31138
+ first?: InputMaybe<Scalars['Int']['input']>;
31139
+ id: Scalars['ID']['input'];
31140
+ sort?: InputMaybe<GraphStoreFocusAreaHasPageSortInput>;
31141
+ };
31142
+ export declare type GraphStoreFocusAreaHasPageInverseArgs = {
31143
+ after?: InputMaybe<Scalars['String']['input']>;
31144
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
31145
+ first?: InputMaybe<Scalars['Int']['input']>;
31146
+ id: Scalars['ID']['input'];
31147
+ sort?: InputMaybe<GraphStoreFocusAreaHasPageSortInput>;
31148
+ };
30748
31149
  export declare type GraphStoreFocusAreaHasProjectArgs = {
30749
31150
  after?: InputMaybe<Scalars['String']['input']>;
30750
31151
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -31358,6 +31759,22 @@ export declare type GraphStoreIssueToWhiteboardRelationshipArgs = {
31358
31759
  first?: InputMaybe<Scalars['Int']['input']>;
31359
31760
  id: Scalars['ID']['input'];
31360
31761
  };
31762
+ export declare type GraphStoreJcsIssueAssociatedSupportEscalationArgs = {
31763
+ after?: InputMaybe<Scalars['String']['input']>;
31764
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
31765
+ filter?: InputMaybe<GraphStoreJcsIssueAssociatedSupportEscalationFilterInput>;
31766
+ first?: InputMaybe<Scalars['Int']['input']>;
31767
+ id: Scalars['ID']['input'];
31768
+ sort?: InputMaybe<GraphStoreJcsIssueAssociatedSupportEscalationSortInput>;
31769
+ };
31770
+ export declare type GraphStoreJcsIssueAssociatedSupportEscalationInverseArgs = {
31771
+ after?: InputMaybe<Scalars['String']['input']>;
31772
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
31773
+ filter?: InputMaybe<GraphStoreJcsIssueAssociatedSupportEscalationFilterInput>;
31774
+ first?: InputMaybe<Scalars['Int']['input']>;
31775
+ id: Scalars['ID']['input'];
31776
+ sort?: InputMaybe<GraphStoreJcsIssueAssociatedSupportEscalationSortInput>;
31777
+ };
31361
31778
  export declare type GraphStoreJiraEpicContributesToAtlasGoalArgs = {
31362
31779
  after?: InputMaybe<Scalars['String']['input']>;
31363
31780
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -31565,6 +31982,20 @@ export declare type GraphStoreLinkedProjectHasVersionRelationshipArgs = {
31565
31982
  first?: InputMaybe<Scalars['Int']['input']>;
31566
31983
  id: Scalars['ID']['input'];
31567
31984
  };
31985
+ export declare type GraphStoreLoomVideoSharedWithUserArgs = {
31986
+ after?: InputMaybe<Scalars['String']['input']>;
31987
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
31988
+ first?: InputMaybe<Scalars['Int']['input']>;
31989
+ id: Scalars['ID']['input'];
31990
+ sort?: InputMaybe<GraphStoreLoomVideoSharedWithUserSortInput>;
31991
+ };
31992
+ export declare type GraphStoreLoomVideoSharedWithUserInverseArgs = {
31993
+ after?: InputMaybe<Scalars['String']['input']>;
31994
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
31995
+ first?: InputMaybe<Scalars['Int']['input']>;
31996
+ id: Scalars['ID']['input'];
31997
+ sort?: InputMaybe<GraphStoreLoomVideoSharedWithUserSortInput>;
31998
+ };
31568
31999
  export declare type GraphStoreMediaAttachedToContentArgs = {
31569
32000
  after?: InputMaybe<Scalars['String']['input']>;
31570
32001
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -31584,6 +32015,13 @@ export declare type GraphStoreMediaAttachedToContentInverseBatchArgs = {
31584
32015
  ids: Array<Scalars['ID']['input']>;
31585
32016
  sort?: InputMaybe<GraphStoreMediaAttachedToContentSortInput>;
31586
32017
  };
32018
+ export declare type GraphStoreMeetingHasMeetingNotesPageArgs = {
32019
+ after?: InputMaybe<Scalars['String']['input']>;
32020
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
32021
+ first?: InputMaybe<Scalars['Int']['input']>;
32022
+ id: Scalars['ID']['input'];
32023
+ sort?: InputMaybe<GraphStoreMeetingHasMeetingNotesPageSortInput>;
32024
+ };
31587
32025
  export declare type GraphStoreMeetingRecordingOwnerHasMeetingNotesFolderArgs = {
31588
32026
  after?: InputMaybe<Scalars['String']['input']>;
31589
32027
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -31598,6 +32036,13 @@ export declare type GraphStoreMeetingRecordingOwnerHasMeetingNotesFolderInverseA
31598
32036
  id: Scalars['ID']['input'];
31599
32037
  sort?: InputMaybe<GraphStoreMeetingRecordingOwnerHasMeetingNotesFolderSortInput>;
31600
32038
  };
32039
+ export declare type GraphStoreMeetingRecurrenceHasMeetingRecurrenceNotesPageArgs = {
32040
+ after?: InputMaybe<Scalars['String']['input']>;
32041
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
32042
+ first?: InputMaybe<Scalars['Int']['input']>;
32043
+ id: Scalars['ID']['input'];
32044
+ sort?: InputMaybe<GraphStoreMeetingRecurrenceHasMeetingRecurrenceNotesPageSortInput>;
32045
+ };
31601
32046
  export declare type GraphStoreOnPremProjectHasIssueArgs = {
31602
32047
  after?: InputMaybe<Scalars['String']['input']>;
31603
32048
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -32335,6 +32780,20 @@ export declare type GraphStoreProjectLinkedToCompassComponentInverseArgs = {
32335
32780
  id: Scalars['ID']['input'];
32336
32781
  sort?: InputMaybe<GraphStoreProjectLinkedToCompassComponentSortInput>;
32337
32782
  };
32783
+ export declare type GraphStorePullRequestLinksToServiceArgs = {
32784
+ after?: InputMaybe<Scalars['String']['input']>;
32785
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
32786
+ first?: InputMaybe<Scalars['Int']['input']>;
32787
+ id: Scalars['ID']['input'];
32788
+ sort?: InputMaybe<GraphStorePullRequestLinksToServiceSortInput>;
32789
+ };
32790
+ export declare type GraphStorePullRequestLinksToServiceInverseArgs = {
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<GraphStorePullRequestLinksToServiceSortInput>;
32796
+ };
32338
32797
  export declare type GraphStoreSecurityContainerAssociatedToVulnerabilityArgs = {
32339
32798
  after?: InputMaybe<Scalars['String']['input']>;
32340
32799
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -32364,6 +32823,20 @@ export declare type GraphStoreSecurityContainerAssociatedToVulnerabilityRelation
32364
32823
  first?: InputMaybe<Scalars['Int']['input']>;
32365
32824
  id: Scalars['ID']['input'];
32366
32825
  };
32826
+ export declare type GraphStoreServiceAssociatedBranchArgs = {
32827
+ after?: InputMaybe<Scalars['String']['input']>;
32828
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
32829
+ first?: InputMaybe<Scalars['Int']['input']>;
32830
+ id: Scalars['ID']['input'];
32831
+ sort?: InputMaybe<GraphStoreServiceAssociatedBranchSortInput>;
32832
+ };
32833
+ export declare type GraphStoreServiceAssociatedBranchInverseArgs = {
32834
+ after?: InputMaybe<Scalars['String']['input']>;
32835
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
32836
+ first?: InputMaybe<Scalars['Int']['input']>;
32837
+ id: Scalars['ID']['input'];
32838
+ sort?: InputMaybe<GraphStoreServiceAssociatedBranchSortInput>;
32839
+ };
32367
32840
  export declare type GraphStoreServiceAssociatedDeploymentArgs = {
32368
32841
  after?: InputMaybe<Scalars['String']['input']>;
32369
32842
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -32834,6 +33307,20 @@ export declare type GraphStoreUserAssignedIncidentInverseArgs = {
32834
33307
  id: Scalars['ID']['input'];
32835
33308
  sort?: InputMaybe<GraphStoreUserAssignedIncidentSortInput>;
32836
33309
  };
33310
+ export declare type GraphStoreUserAssignedIssueArgs = {
33311
+ after?: InputMaybe<Scalars['String']['input']>;
33312
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
33313
+ first?: InputMaybe<Scalars['Int']['input']>;
33314
+ id: Scalars['ID']['input'];
33315
+ sort?: InputMaybe<GraphStoreUserAssignedIssueSortInput>;
33316
+ };
33317
+ export declare type GraphStoreUserAssignedIssueInverseArgs = {
33318
+ after?: InputMaybe<Scalars['String']['input']>;
33319
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
33320
+ first?: InputMaybe<Scalars['Int']['input']>;
33321
+ id: Scalars['ID']['input'];
33322
+ sort?: InputMaybe<GraphStoreUserAssignedIssueSortInput>;
33323
+ };
32837
33324
  export declare type GraphStoreUserAssignedPirArgs = {
32838
33325
  after?: InputMaybe<Scalars['String']['input']>;
32839
33326
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -33130,6 +33617,20 @@ export declare type GraphStoreUserCreatedDocumentInverseArgs = {
33130
33617
  id: Scalars['ID']['input'];
33131
33618
  sort?: InputMaybe<GraphStoreUserCreatedDocumentSortInput>;
33132
33619
  };
33620
+ export declare type GraphStoreUserCreatedIssueCommentArgs = {
33621
+ after?: InputMaybe<Scalars['String']['input']>;
33622
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
33623
+ first?: InputMaybe<Scalars['Int']['input']>;
33624
+ id: Scalars['ID']['input'];
33625
+ sort?: InputMaybe<GraphStoreUserCreatedIssueCommentSortInput>;
33626
+ };
33627
+ export declare type GraphStoreUserCreatedIssueCommentInverseArgs = {
33628
+ after?: InputMaybe<Scalars['String']['input']>;
33629
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
33630
+ first?: InputMaybe<Scalars['Int']['input']>;
33631
+ id: Scalars['ID']['input'];
33632
+ sort?: InputMaybe<GraphStoreUserCreatedIssueCommentSortInput>;
33633
+ };
33133
33634
  export declare type GraphStoreUserCreatedIssueWorklogArgs = {
33134
33635
  after?: InputMaybe<Scalars['String']['input']>;
33135
33636
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -33172,6 +33673,20 @@ export declare type GraphStoreUserCreatedMessageInverseArgs = {
33172
33673
  id: Scalars['ID']['input'];
33173
33674
  sort?: InputMaybe<GraphStoreUserCreatedMessageSortInput>;
33174
33675
  };
33676
+ export declare type GraphStoreUserCreatedReleaseArgs = {
33677
+ after?: InputMaybe<Scalars['String']['input']>;
33678
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
33679
+ first?: InputMaybe<Scalars['Int']['input']>;
33680
+ id: Scalars['ID']['input'];
33681
+ sort?: InputMaybe<GraphStoreUserCreatedReleaseSortInput>;
33682
+ };
33683
+ export declare type GraphStoreUserCreatedReleaseInverseArgs = {
33684
+ after?: InputMaybe<Scalars['String']['input']>;
33685
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
33686
+ first?: InputMaybe<Scalars['Int']['input']>;
33687
+ id: Scalars['ID']['input'];
33688
+ sort?: InputMaybe<GraphStoreUserCreatedReleaseSortInput>;
33689
+ };
33175
33690
  export declare type GraphStoreUserCreatedRemoteLinkArgs = {
33176
33691
  after?: InputMaybe<Scalars['String']['input']>;
33177
33692
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -33496,6 +34011,20 @@ export declare type GraphStoreUserOwnsComponentInverseArgs = {
33496
34011
  id: Scalars['ID']['input'];
33497
34012
  sort?: InputMaybe<GraphStoreUserOwnsComponentSortInput>;
33498
34013
  };
34014
+ export declare type GraphStoreUserOwnsFocusAreaArgs = {
34015
+ after?: InputMaybe<Scalars['String']['input']>;
34016
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
34017
+ first?: InputMaybe<Scalars['Int']['input']>;
34018
+ id: Scalars['ID']['input'];
34019
+ sort?: InputMaybe<GraphStoreUserOwnsFocusAreaSortInput>;
34020
+ };
34021
+ export declare type GraphStoreUserOwnsFocusAreaInverseArgs = {
34022
+ after?: InputMaybe<Scalars['String']['input']>;
34023
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
34024
+ first?: InputMaybe<Scalars['Int']['input']>;
34025
+ id: Scalars['ID']['input'];
34026
+ sort?: InputMaybe<GraphStoreUserOwnsFocusAreaSortInput>;
34027
+ };
33499
34028
  export declare type GraphStoreUserReportedIncidentArgs = {
33500
34029
  after?: InputMaybe<Scalars['String']['input']>;
33501
34030
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -33566,6 +34095,13 @@ export declare type GraphStoreUserTaggedInConfluencePageInverseArgs = {
33566
34095
  id: Scalars['ID']['input'];
33567
34096
  sort?: InputMaybe<GraphStoreUserTaggedInConfluencePageSortInput>;
33568
34097
  };
34098
+ export declare type GraphStoreUserTaggedInIssueCommentArgs = {
34099
+ after?: InputMaybe<Scalars['String']['input']>;
34100
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
34101
+ first?: InputMaybe<Scalars['Int']['input']>;
34102
+ id: Scalars['ID']['input'];
34103
+ sort?: InputMaybe<GraphStoreUserTaggedInIssueCommentSortInput>;
34104
+ };
33569
34105
  export declare type GraphStoreUserTaggedInIssueCommentInverseArgs = {
33570
34106
  after?: InputMaybe<Scalars['String']['input']>;
33571
34107
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -33671,6 +34207,13 @@ export declare type GraphStoreUserUpdatedIssueInverseArgs = {
33671
34207
  id: Scalars['ID']['input'];
33672
34208
  sort?: InputMaybe<GraphStoreUserUpdatedIssueSortInput>;
33673
34209
  };
34210
+ export declare type GraphStoreUserUpdatedIssueStatusInverseArgs = {
34211
+ after?: InputMaybe<Scalars['String']['input']>;
34212
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
34213
+ first?: InputMaybe<Scalars['Int']['input']>;
34214
+ id: Scalars['ID']['input'];
34215
+ sort?: InputMaybe<GraphStoreUserUpdatedIssueStatusSortInput>;
34216
+ };
33674
34217
  export declare type GraphStoreUserViewedAtlasGoalArgs = {
33675
34218
  after?: InputMaybe<Scalars['String']['input']>;
33676
34219
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -34095,8 +34638,109 @@ export declare type GraphStoreAtlasGoalHasOwnerSortInput = {
34095
34638
  export declare type GraphStoreAtlasGoalHasSubAtlasGoalSortInput = {
34096
34639
  lastModified?: InputMaybe<GraphStoreSortInput>;
34097
34640
  };
34098
- export declare type GraphStoreAtlasHomeFeedQueryToMetadataNodeUnion = JiraIssue | TeamV2 | TownsquareGoal | TownsquareProject;
34099
- export declare type GraphStoreAtlasHomeFeedQueryToNodeUnion = JiraIssue | TeamV2 | TownsquareGoal | TownsquareProject;
34641
+ export declare type GraphStoreAtlasGoalHasUpdateConditionalFilterInput = {
34642
+ createdAt?: InputMaybe<GraphStoreDateFilterInput>;
34643
+ fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
34644
+ lastModified?: InputMaybe<GraphStoreDateFilterInput>;
34645
+ relationship_createdBy?: InputMaybe<GraphStoreAriFilterInput>;
34646
+ relationship_creationDate?: InputMaybe<GraphStoreLongFilterInput>;
34647
+ relationship_lastEditedBy?: InputMaybe<GraphStoreAriFilterInput>;
34648
+ relationship_lastUpdated?: InputMaybe<GraphStoreLongFilterInput>;
34649
+ relationship_newConfidence?: InputMaybe<GraphStoreAtlasGoalHasUpdateNewConfidenceFilterInput>;
34650
+ relationship_newScore?: InputMaybe<GraphStoreLongFilterInput>;
34651
+ relationship_newStatus?: InputMaybe<GraphStoreAtlasGoalHasUpdateNewStatusFilterInput>;
34652
+ relationship_newTargetDate?: InputMaybe<GraphStoreLongFilterInput>;
34653
+ relationship_oldConfidence?: InputMaybe<GraphStoreAtlasGoalHasUpdateOldConfidenceFilterInput>;
34654
+ relationship_oldScore?: InputMaybe<GraphStoreLongFilterInput>;
34655
+ relationship_oldStatus?: InputMaybe<GraphStoreAtlasGoalHasUpdateOldStatusFilterInput>;
34656
+ relationship_oldTargetDate?: InputMaybe<GraphStoreLongFilterInput>;
34657
+ relationship_updateType?: InputMaybe<GraphStoreAtlasGoalHasUpdateUpdateTypeFilterInput>;
34658
+ toAti?: InputMaybe<GraphStoreAtiFilterInput>;
34659
+ };
34660
+ export declare type GraphStoreAtlasGoalHasUpdateFilterInput = {
34661
+ and?: InputMaybe<Array<InputMaybe<GraphStoreAtlasGoalHasUpdateConditionalFilterInput>>>;
34662
+ or?: InputMaybe<Array<InputMaybe<GraphStoreAtlasGoalHasUpdateConditionalFilterInput>>>;
34663
+ };
34664
+ export declare enum GraphStoreAtlasGoalHasUpdateNewConfidence {
34665
+ Day = "DAY",
34666
+ Month = "MONTH",
34667
+ NotSet = "NOT_SET",
34668
+ Quarter = "QUARTER"
34669
+ }
34670
+ export declare type GraphStoreAtlasGoalHasUpdateNewConfidenceFilterInput = {
34671
+ is?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateNewConfidence>>;
34672
+ isNot?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateNewConfidence>>;
34673
+ };
34674
+ export declare enum GraphStoreAtlasGoalHasUpdateNewStatus {
34675
+ AtRisk = "AT_RISK",
34676
+ Cancelled = "CANCELLED",
34677
+ Done = "DONE",
34678
+ NotSet = "NOT_SET",
34679
+ OffTrack = "OFF_TRACK",
34680
+ OnTrack = "ON_TRACK",
34681
+ Paused = "PAUSED",
34682
+ Pending = "PENDING"
34683
+ }
34684
+ export declare type GraphStoreAtlasGoalHasUpdateNewStatusFilterInput = {
34685
+ is?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateNewStatus>>;
34686
+ isNot?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateNewStatus>>;
34687
+ };
34688
+ export declare enum GraphStoreAtlasGoalHasUpdateOldConfidence {
34689
+ Day = "DAY",
34690
+ Month = "MONTH",
34691
+ NotSet = "NOT_SET",
34692
+ Null = "NULL",
34693
+ Quarter = "QUARTER"
34694
+ }
34695
+ export declare type GraphStoreAtlasGoalHasUpdateOldConfidenceFilterInput = {
34696
+ is?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateOldConfidence>>;
34697
+ isNot?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateOldConfidence>>;
34698
+ };
34699
+ export declare enum GraphStoreAtlasGoalHasUpdateOldStatus {
34700
+ AtRisk = "AT_RISK",
34701
+ Cancelled = "CANCELLED",
34702
+ Done = "DONE",
34703
+ NotSet = "NOT_SET",
34704
+ Null = "NULL",
34705
+ OffTrack = "OFF_TRACK",
34706
+ OnTrack = "ON_TRACK",
34707
+ Paused = "PAUSED",
34708
+ Pending = "PENDING"
34709
+ }
34710
+ export declare type GraphStoreAtlasGoalHasUpdateOldStatusFilterInput = {
34711
+ is?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateOldStatus>>;
34712
+ isNot?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateOldStatus>>;
34713
+ };
34714
+ export declare type GraphStoreAtlasGoalHasUpdateSortInput = {
34715
+ createdAt?: InputMaybe<GraphStoreSortInput>;
34716
+ fromAti?: InputMaybe<GraphStoreSortInput>;
34717
+ lastModified?: InputMaybe<GraphStoreSortInput>;
34718
+ relationship_createdBy?: InputMaybe<GraphStoreSortInput>;
34719
+ relationship_creationDate?: InputMaybe<GraphStoreSortInput>;
34720
+ relationship_lastEditedBy?: InputMaybe<GraphStoreSortInput>;
34721
+ relationship_lastUpdated?: InputMaybe<GraphStoreSortInput>;
34722
+ relationship_newConfidence?: InputMaybe<GraphStoreSortInput>;
34723
+ relationship_newScore?: InputMaybe<GraphStoreSortInput>;
34724
+ relationship_newStatus?: InputMaybe<GraphStoreSortInput>;
34725
+ relationship_newTargetDate?: InputMaybe<GraphStoreSortInput>;
34726
+ relationship_oldConfidence?: InputMaybe<GraphStoreSortInput>;
34727
+ relationship_oldScore?: InputMaybe<GraphStoreSortInput>;
34728
+ relationship_oldStatus?: InputMaybe<GraphStoreSortInput>;
34729
+ relationship_oldTargetDate?: InputMaybe<GraphStoreSortInput>;
34730
+ relationship_updateType?: InputMaybe<GraphStoreSortInput>;
34731
+ toAti?: InputMaybe<GraphStoreSortInput>;
34732
+ };
34733
+ export declare enum GraphStoreAtlasGoalHasUpdateUpdateType {
34734
+ NotSet = "NOT_SET",
34735
+ System = "SYSTEM",
34736
+ User = "USER"
34737
+ }
34738
+ export declare type GraphStoreAtlasGoalHasUpdateUpdateTypeFilterInput = {
34739
+ is?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateUpdateType>>;
34740
+ isNot?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateUpdateType>>;
34741
+ };
34742
+ export declare type GraphStoreAtlasHomeFeedQueryToMetadataNodeUnion = ConfluencePage | JiraIssue | TeamV2 | TownsquareGoal | TownsquareProject;
34743
+ export declare type GraphStoreAtlasHomeFeedQueryToNodeUnion = ConfluencePage | JiraIssue | TeamV2 | TownsquareGoal | TownsquareProject;
34100
34744
  export declare type GraphStoreAtlasHomeQueryConnection = {
34101
34745
  __typename?: 'GraphStoreAtlasHomeQueryConnection';
34102
34746
  nodes: Array<GraphStoreAtlasHomeQueryNode>;
@@ -34140,6 +34784,103 @@ export declare type GraphStoreAtlasProjectHasFollowerSortInput = {
34140
34784
  export declare type GraphStoreAtlasProjectHasOwnerSortInput = {
34141
34785
  lastModified?: InputMaybe<GraphStoreSortInput>;
34142
34786
  };
34787
+ export declare type GraphStoreAtlasProjectHasUpdateConditionalFilterInput = {
34788
+ createdAt?: InputMaybe<GraphStoreDateFilterInput>;
34789
+ fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
34790
+ lastModified?: InputMaybe<GraphStoreDateFilterInput>;
34791
+ relationship_createdBy?: InputMaybe<GraphStoreAriFilterInput>;
34792
+ relationship_creationDate?: InputMaybe<GraphStoreLongFilterInput>;
34793
+ relationship_lastEditedBy?: InputMaybe<GraphStoreAriFilterInput>;
34794
+ relationship_lastUpdated?: InputMaybe<GraphStoreLongFilterInput>;
34795
+ relationship_newConfidence?: InputMaybe<GraphStoreAtlasProjectHasUpdateNewConfidenceFilterInput>;
34796
+ relationship_newStatus?: InputMaybe<GraphStoreAtlasProjectHasUpdateNewStatusFilterInput>;
34797
+ relationship_newTargetDate?: InputMaybe<GraphStoreLongFilterInput>;
34798
+ relationship_oldConfidence?: InputMaybe<GraphStoreAtlasProjectHasUpdateOldConfidenceFilterInput>;
34799
+ relationship_oldStatus?: InputMaybe<GraphStoreAtlasProjectHasUpdateOldStatusFilterInput>;
34800
+ relationship_oldTargetDate?: InputMaybe<GraphStoreLongFilterInput>;
34801
+ relationship_updateType?: InputMaybe<GraphStoreAtlasProjectHasUpdateUpdateTypeFilterInput>;
34802
+ toAti?: InputMaybe<GraphStoreAtiFilterInput>;
34803
+ };
34804
+ export declare type GraphStoreAtlasProjectHasUpdateFilterInput = {
34805
+ and?: InputMaybe<Array<InputMaybe<GraphStoreAtlasProjectHasUpdateConditionalFilterInput>>>;
34806
+ or?: InputMaybe<Array<InputMaybe<GraphStoreAtlasProjectHasUpdateConditionalFilterInput>>>;
34807
+ };
34808
+ export declare enum GraphStoreAtlasProjectHasUpdateNewConfidence {
34809
+ Day = "DAY",
34810
+ Month = "MONTH",
34811
+ NotSet = "NOT_SET",
34812
+ Quarter = "QUARTER"
34813
+ }
34814
+ export declare type GraphStoreAtlasProjectHasUpdateNewConfidenceFilterInput = {
34815
+ is?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateNewConfidence>>;
34816
+ isNot?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateNewConfidence>>;
34817
+ };
34818
+ export declare enum GraphStoreAtlasProjectHasUpdateNewStatus {
34819
+ AtRisk = "AT_RISK",
34820
+ Cancelled = "CANCELLED",
34821
+ Done = "DONE",
34822
+ NotSet = "NOT_SET",
34823
+ OffTrack = "OFF_TRACK",
34824
+ OnTrack = "ON_TRACK",
34825
+ Paused = "PAUSED",
34826
+ Pending = "PENDING"
34827
+ }
34828
+ export declare type GraphStoreAtlasProjectHasUpdateNewStatusFilterInput = {
34829
+ is?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateNewStatus>>;
34830
+ isNot?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateNewStatus>>;
34831
+ };
34832
+ export declare enum GraphStoreAtlasProjectHasUpdateOldConfidence {
34833
+ Day = "DAY",
34834
+ Month = "MONTH",
34835
+ NotSet = "NOT_SET",
34836
+ Null = "NULL",
34837
+ Quarter = "QUARTER"
34838
+ }
34839
+ export declare type GraphStoreAtlasProjectHasUpdateOldConfidenceFilterInput = {
34840
+ is?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateOldConfidence>>;
34841
+ isNot?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateOldConfidence>>;
34842
+ };
34843
+ export declare enum GraphStoreAtlasProjectHasUpdateOldStatus {
34844
+ AtRisk = "AT_RISK",
34845
+ Cancelled = "CANCELLED",
34846
+ Done = "DONE",
34847
+ NotSet = "NOT_SET",
34848
+ Null = "NULL",
34849
+ OffTrack = "OFF_TRACK",
34850
+ OnTrack = "ON_TRACK",
34851
+ Paused = "PAUSED",
34852
+ Pending = "PENDING"
34853
+ }
34854
+ export declare type GraphStoreAtlasProjectHasUpdateOldStatusFilterInput = {
34855
+ is?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateOldStatus>>;
34856
+ isNot?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateOldStatus>>;
34857
+ };
34858
+ export declare type GraphStoreAtlasProjectHasUpdateSortInput = {
34859
+ createdAt?: InputMaybe<GraphStoreSortInput>;
34860
+ fromAti?: InputMaybe<GraphStoreSortInput>;
34861
+ lastModified?: InputMaybe<GraphStoreSortInput>;
34862
+ relationship_createdBy?: InputMaybe<GraphStoreSortInput>;
34863
+ relationship_creationDate?: InputMaybe<GraphStoreSortInput>;
34864
+ relationship_lastEditedBy?: InputMaybe<GraphStoreSortInput>;
34865
+ relationship_lastUpdated?: InputMaybe<GraphStoreSortInput>;
34866
+ relationship_newConfidence?: InputMaybe<GraphStoreSortInput>;
34867
+ relationship_newStatus?: InputMaybe<GraphStoreSortInput>;
34868
+ relationship_newTargetDate?: InputMaybe<GraphStoreSortInput>;
34869
+ relationship_oldConfidence?: InputMaybe<GraphStoreSortInput>;
34870
+ relationship_oldStatus?: InputMaybe<GraphStoreSortInput>;
34871
+ relationship_oldTargetDate?: InputMaybe<GraphStoreSortInput>;
34872
+ relationship_updateType?: InputMaybe<GraphStoreSortInput>;
34873
+ toAti?: InputMaybe<GraphStoreSortInput>;
34874
+ };
34875
+ export declare enum GraphStoreAtlasProjectHasUpdateUpdateType {
34876
+ NotSet = "NOT_SET",
34877
+ System = "SYSTEM",
34878
+ User = "USER"
34879
+ }
34880
+ export declare type GraphStoreAtlasProjectHasUpdateUpdateTypeFilterInput = {
34881
+ is?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateUpdateType>>;
34882
+ isNot?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateUpdateType>>;
34883
+ };
34143
34884
  export declare type GraphStoreAtlasProjectIsRelatedToAtlasProjectSortInput = {
34144
34885
  lastModified?: InputMaybe<GraphStoreSortInput>;
34145
34886
  };
@@ -34798,9 +35539,15 @@ export declare type GraphStoreBatchTestPerfhammerRelationshipStartNode = {
34798
35539
  id: Scalars['ID']['output'];
34799
35540
  };
34800
35541
  export declare type GraphStoreBatchTestPerfhammerRelationshipStartUnion = JiraIssue;
35542
+ export declare type GraphStoreBoardBelongsToProjectSortInput = {
35543
+ lastModified?: InputMaybe<GraphStoreSortInput>;
35544
+ };
34801
35545
  export declare type GraphStoreBooleanFilterInput = {
34802
35546
  is?: InputMaybe<Scalars['Boolean']['input']>;
34803
35547
  };
35548
+ export declare type GraphStoreCalendarHasLinkedDocumentSortInput = {
35549
+ lastModified?: InputMaybe<GraphStoreSortInput>;
35550
+ };
34804
35551
  export declare type GraphStoreComponentAssociatedDocumentSortInput = {
34805
35552
  lastModified?: InputMaybe<GraphStoreSortInput>;
34806
35553
  };
@@ -34816,9 +35563,15 @@ export declare type GraphStoreComponentLinkedJswIssueSortInput = {
34816
35563
  lastModified?: InputMaybe<GraphStoreSortInput>;
34817
35564
  toAti?: InputMaybe<GraphStoreSortInput>;
34818
35565
  };
35566
+ export declare type GraphStoreConfluenceBlogpostHasCommentSortInput = {
35567
+ lastModified?: InputMaybe<GraphStoreSortInput>;
35568
+ };
34819
35569
  export declare type GraphStoreConfluenceBlogpostSharedWithUserSortInput = {
34820
35570
  lastModified?: InputMaybe<GraphStoreSortInput>;
34821
35571
  };
35572
+ export declare type GraphStoreConfluencePageHasCommentSortInput = {
35573
+ lastModified?: InputMaybe<GraphStoreSortInput>;
35574
+ };
34822
35575
  export declare type GraphStoreConfluencePageHasConfluenceCommentSortInput = {
34823
35576
  lastModified?: InputMaybe<GraphStoreSortInput>;
34824
35577
  };
@@ -34948,6 +35701,25 @@ export declare type GraphStoreCreateIssueToWhiteboardRelationshipInput = {
34948
35701
  to: Scalars['ID']['input'];
34949
35702
  updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
34950
35703
  };
35704
+ export declare type GraphStoreCreateJcsIssueAssociatedSupportEscalationInput = {
35705
+ relationships: Array<GraphStoreCreateJcsIssueAssociatedSupportEscalationRelationshipInput>;
35706
+ };
35707
+ export declare type GraphStoreCreateJcsIssueAssociatedSupportEscalationPayload = Payload & {
35708
+ __typename?: 'GraphStoreCreateJcsIssueAssociatedSupportEscalationPayload';
35709
+ errors?: Maybe<Array<MutationError>>;
35710
+ success: Scalars['Boolean']['output'];
35711
+ };
35712
+ export declare type GraphStoreCreateJcsIssueAssociatedSupportEscalationRelationshipInput = {
35713
+ from: Scalars['ID']['input'];
35714
+ relationshipMetadata?: InputMaybe<GraphStoreCreateJcsIssueAssociatedSupportEscalationRelationshipMetadataInput>;
35715
+ sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
35716
+ to: Scalars['ID']['input'];
35717
+ updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
35718
+ };
35719
+ export declare type GraphStoreCreateJcsIssueAssociatedSupportEscalationRelationshipMetadataInput = {
35720
+ SupportEscalationLastUpdated?: InputMaybe<Scalars['Long']['input']>;
35721
+ creatorAri?: InputMaybe<Scalars['String']['input']>;
35722
+ };
34951
35723
  export declare type GraphStoreCreateJswProjectAssociatedComponentInput = {
34952
35724
  relationships: Array<GraphStoreCreateJswProjectAssociatedComponentRelationshipInput>;
34953
35725
  };
@@ -35267,7 +36039,7 @@ export declare type GraphStoreCypherQueryFromNode = {
35267
36039
  data?: Maybe<GraphStoreCypherQueryFromNodeUnion>;
35268
36040
  id: Scalars['ID']['output'];
35269
36041
  };
35270
- 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 | JiraPostIncidentReviewLink | JiraProject | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareProject;
36042
+ 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 | LoomComment | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
35271
36043
  export declare type GraphStoreCypherQueryNode = {
35272
36044
  __typename?: 'GraphStoreCypherQueryNode';
35273
36045
  from: GraphStoreCypherQueryFromNode;
@@ -35292,8 +36064,8 @@ export declare type GraphStoreCypherQueryToNode = {
35292
36064
  data?: Maybe<GraphStoreCypherQueryToNodeUnion>;
35293
36065
  id: Scalars['ID']['output'];
35294
36066
  };
35295
- 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 | JiraPostIncidentReviewLink | JiraProject | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareProject;
35296
- 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 | JiraPostIncidentReviewLink | JiraProject | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareProject;
36067
+ 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 | LoomComment | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
36068
+ 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 | LoomComment | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
35297
36069
  export declare type GraphStoreCypherQueryValueNode = {
35298
36070
  __typename?: 'GraphStoreCypherQueryValueNode';
35299
36071
  data?: Maybe<GraphStoreCypherQueryValueItemUnion>;
@@ -35368,6 +36140,19 @@ export declare type GraphStoreDeleteIssueToWhiteboardRelationshipInput = {
35368
36140
  from: Scalars['ID']['input'];
35369
36141
  to: Scalars['ID']['input'];
35370
36142
  };
36143
+ export declare type GraphStoreDeleteJcsIssueAssociatedSupportEscalationInput = {
36144
+ relationships: Array<GraphStoreDeleteJcsIssueAssociatedSupportEscalationRelationshipInput>;
36145
+ synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
36146
+ };
36147
+ export declare type GraphStoreDeleteJcsIssueAssociatedSupportEscalationPayload = Payload & {
36148
+ __typename?: 'GraphStoreDeleteJcsIssueAssociatedSupportEscalationPayload';
36149
+ errors?: Maybe<Array<MutationError>>;
36150
+ success: Scalars['Boolean']['output'];
36151
+ };
36152
+ export declare type GraphStoreDeleteJcsIssueAssociatedSupportEscalationRelationshipInput = {
36153
+ from: Scalars['ID']['input'];
36154
+ to: Scalars['ID']['input'];
36155
+ };
35371
36156
  export declare type GraphStoreDeleteJswProjectAssociatedComponentInput = {
35372
36157
  relationships: Array<GraphStoreDeleteJswProjectAssociatedComponentRelationshipInput>;
35373
36158
  synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
@@ -35638,6 +36423,9 @@ export declare type GraphStoreFocusAreaHasAtlasGoalSortInput = {
35638
36423
  export declare type GraphStoreFocusAreaHasFocusAreaSortInput = {
35639
36424
  lastModified?: InputMaybe<GraphStoreSortInput>;
35640
36425
  };
36426
+ export declare type GraphStoreFocusAreaHasPageSortInput = {
36427
+ lastModified?: InputMaybe<GraphStoreSortInput>;
36428
+ };
35641
36429
  export declare type GraphStoreFocusAreaHasProjectSortInput = {
35642
36430
  lastModified?: InputMaybe<GraphStoreSortInput>;
35643
36431
  };
@@ -39224,6 +40012,26 @@ export declare type GraphStoreIssueToWhiteboardSortInput = {
39224
40012
  lastModified?: InputMaybe<GraphStoreSortInput>;
39225
40013
  toAti?: InputMaybe<GraphStoreSortInput>;
39226
40014
  };
40015
+ export declare type GraphStoreJcsIssueAssociatedSupportEscalationConditionalFilterInput = {
40016
+ createdAt?: InputMaybe<GraphStoreDateFilterInput>;
40017
+ fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
40018
+ lastModified?: InputMaybe<GraphStoreDateFilterInput>;
40019
+ relationship_SupportEscalationLastUpdated?: InputMaybe<GraphStoreLongFilterInput>;
40020
+ relationship_creatorAri?: InputMaybe<GraphStoreAriFilterInput>;
40021
+ toAti?: InputMaybe<GraphStoreAtiFilterInput>;
40022
+ };
40023
+ export declare type GraphStoreJcsIssueAssociatedSupportEscalationFilterInput = {
40024
+ and?: InputMaybe<Array<InputMaybe<GraphStoreJcsIssueAssociatedSupportEscalationConditionalFilterInput>>>;
40025
+ or?: InputMaybe<Array<InputMaybe<GraphStoreJcsIssueAssociatedSupportEscalationConditionalFilterInput>>>;
40026
+ };
40027
+ export declare type GraphStoreJcsIssueAssociatedSupportEscalationSortInput = {
40028
+ createdAt?: InputMaybe<GraphStoreSortInput>;
40029
+ fromAti?: InputMaybe<GraphStoreSortInput>;
40030
+ lastModified?: InputMaybe<GraphStoreSortInput>;
40031
+ relationship_SupportEscalationLastUpdated?: InputMaybe<GraphStoreSortInput>;
40032
+ relationship_creatorAri?: InputMaybe<GraphStoreSortInput>;
40033
+ toAti?: InputMaybe<GraphStoreSortInput>;
40034
+ };
39227
40035
  export declare type GraphStoreJiraEpicContributesToAtlasGoalSortInput = {
39228
40036
  lastModified?: InputMaybe<GraphStoreSortInput>;
39229
40037
  };
@@ -39324,15 +40132,24 @@ export declare type GraphStoreLongFilterInput = {
39324
40132
  lessThan?: InputMaybe<Scalars['Long']['input']>;
39325
40133
  lessThanOrEqual?: InputMaybe<Scalars['Long']['input']>;
39326
40134
  };
40135
+ export declare type GraphStoreLoomVideoSharedWithUserSortInput = {
40136
+ lastModified?: InputMaybe<GraphStoreSortInput>;
40137
+ };
39327
40138
  export declare type GraphStoreMediaAttachedToContentSortInput = {
39328
40139
  lastModified?: InputMaybe<GraphStoreSortInput>;
39329
40140
  };
40141
+ export declare type GraphStoreMeetingHasMeetingNotesPageSortInput = {
40142
+ lastModified?: InputMaybe<GraphStoreSortInput>;
40143
+ };
39330
40144
  export declare type GraphStoreMeetingRecordingOwnerHasMeetingNotesFolderSortInput = {
39331
40145
  createdAt?: InputMaybe<GraphStoreSortInput>;
39332
40146
  fromAti?: InputMaybe<GraphStoreSortInput>;
39333
40147
  lastModified?: InputMaybe<GraphStoreSortInput>;
39334
40148
  toAti?: InputMaybe<GraphStoreSortInput>;
39335
40149
  };
40150
+ export declare type GraphStoreMeetingRecurrenceHasMeetingRecurrenceNotesPageSortInput = {
40151
+ lastModified?: InputMaybe<GraphStoreSortInput>;
40152
+ };
39336
40153
  export declare type GraphStoreMutation = {
39337
40154
  __typename?: 'GraphStoreMutation';
39338
40155
  createComponentImpactedByIncident?: Maybe<GraphStoreCreateComponentImpactedByIncidentPayload>;
@@ -39340,6 +40157,7 @@ export declare type GraphStoreMutation = {
39340
40157
  createIncidentHasActionItem?: Maybe<GraphStoreCreateIncidentHasActionItemPayload>;
39341
40158
  createIncidentLinkedJswIssue?: Maybe<GraphStoreCreateIncidentLinkedJswIssuePayload>;
39342
40159
  createIssueToWhiteboard?: Maybe<GraphStoreCreateIssueToWhiteboardPayload>;
40160
+ createJcsIssueAssociatedSupportEscalation?: Maybe<GraphStoreCreateJcsIssueAssociatedSupportEscalationPayload>;
39343
40161
  createJswProjectAssociatedComponent?: Maybe<GraphStoreCreateJswProjectAssociatedComponentPayload>;
39344
40162
  createMeetingRecordingOwnerHasMeetingNotesFolder?: Maybe<GraphStoreCreateMeetingRecordingOwnerHasMeetingNotesFolderPayload>;
39345
40163
  createProjectAssociatedOpsgenieTeam?: Maybe<GraphStoreCreateProjectAssociatedOpsgenieTeamPayload>;
@@ -39364,6 +40182,7 @@ export declare type GraphStoreMutation = {
39364
40182
  deleteIncidentHasActionItem?: Maybe<GraphStoreDeleteIncidentHasActionItemPayload>;
39365
40183
  deleteIncidentLinkedJswIssue?: Maybe<GraphStoreDeleteIncidentLinkedJswIssuePayload>;
39366
40184
  deleteIssueToWhiteboard?: Maybe<GraphStoreDeleteIssueToWhiteboardPayload>;
40185
+ deleteJcsIssueAssociatedSupportEscalation?: Maybe<GraphStoreDeleteJcsIssueAssociatedSupportEscalationPayload>;
39367
40186
  deleteJswProjectAssociatedComponent?: Maybe<GraphStoreDeleteJswProjectAssociatedComponentPayload>;
39368
40187
  deleteMeetingRecordingOwnerHasMeetingNotesFolder?: Maybe<GraphStoreDeleteMeetingRecordingOwnerHasMeetingNotesFolderPayload>;
39369
40188
  deleteProjectAssociatedOpsgenieTeam?: Maybe<GraphStoreDeleteProjectAssociatedOpsgenieTeamPayload>;
@@ -39399,6 +40218,9 @@ export declare type GraphStoreMutationCreateIncidentLinkedJswIssueArgs = {
39399
40218
  export declare type GraphStoreMutationCreateIssueToWhiteboardArgs = {
39400
40219
  input?: InputMaybe<GraphStoreCreateIssueToWhiteboardInput>;
39401
40220
  };
40221
+ export declare type GraphStoreMutationCreateJcsIssueAssociatedSupportEscalationArgs = {
40222
+ input?: InputMaybe<GraphStoreCreateJcsIssueAssociatedSupportEscalationInput>;
40223
+ };
39402
40224
  export declare type GraphStoreMutationCreateJswProjectAssociatedComponentArgs = {
39403
40225
  input?: InputMaybe<GraphStoreCreateJswProjectAssociatedComponentInput>;
39404
40226
  };
@@ -39471,6 +40293,9 @@ export declare type GraphStoreMutationDeleteIncidentLinkedJswIssueArgs = {
39471
40293
  export declare type GraphStoreMutationDeleteIssueToWhiteboardArgs = {
39472
40294
  input?: InputMaybe<GraphStoreDeleteIssueToWhiteboardInput>;
39473
40295
  };
40296
+ export declare type GraphStoreMutationDeleteJcsIssueAssociatedSupportEscalationArgs = {
40297
+ input?: InputMaybe<GraphStoreDeleteJcsIssueAssociatedSupportEscalationInput>;
40298
+ };
39474
40299
  export declare type GraphStoreMutationDeleteJswProjectAssociatedComponentArgs = {
39475
40300
  input?: InputMaybe<GraphStoreDeleteJswProjectAssociatedComponentInput>;
39476
40301
  };
@@ -39984,9 +40809,15 @@ export declare type GraphStoreProjectLinkedToCompassComponentSortInput = {
39984
40809
  lastModified?: InputMaybe<GraphStoreSortInput>;
39985
40810
  toAti?: InputMaybe<GraphStoreSortInput>;
39986
40811
  };
40812
+ export declare type GraphStorePullRequestLinksToServiceSortInput = {
40813
+ lastModified?: InputMaybe<GraphStoreSortInput>;
40814
+ };
39987
40815
  export declare type GraphStoreSecurityContainerAssociatedToVulnerabilitySortInput = {
39988
40816
  lastModified?: InputMaybe<GraphStoreSortInput>;
39989
40817
  };
40818
+ export declare type GraphStoreServiceAssociatedBranchSortInput = {
40819
+ lastModified?: InputMaybe<GraphStoreSortInput>;
40820
+ };
39990
40821
  export declare type GraphStoreServiceAssociatedDeploymentSortInput = {
39991
40822
  lastModified?: InputMaybe<GraphStoreSortInput>;
39992
40823
  };
@@ -40177,6 +41008,38 @@ export declare type GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalInverseEdge = {
40177
41008
  };
40178
41009
  export declare type GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalInverseUnion = TownsquareGoal;
40179
41010
  export declare type GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalUnion = TownsquareGoal;
41011
+ export declare type GraphStoreSimplifiedAtlasGoalHasUpdateConnection = HasPageInfo & HasTotal & {
41012
+ __typename?: 'GraphStoreSimplifiedAtlasGoalHasUpdateConnection';
41013
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasGoalHasUpdateEdge>>>;
41014
+ isExactCount?: Maybe<Scalars['Boolean']['output']>;
41015
+ pageInfo: PageInfo;
41016
+ totalCount?: Maybe<Scalars['Int']['output']>;
41017
+ };
41018
+ export declare type GraphStoreSimplifiedAtlasGoalHasUpdateEdge = {
41019
+ __typename?: 'GraphStoreSimplifiedAtlasGoalHasUpdateEdge';
41020
+ createdAt: Scalars['DateTime']['output'];
41021
+ cursor?: Maybe<Scalars['String']['output']>;
41022
+ id: Scalars['ID']['output'];
41023
+ lastUpdated: Scalars['DateTime']['output'];
41024
+ node?: Maybe<GraphStoreSimplifiedAtlasGoalHasUpdateUnion>;
41025
+ };
41026
+ export declare type GraphStoreSimplifiedAtlasGoalHasUpdateInverseConnection = HasPageInfo & HasTotal & {
41027
+ __typename?: 'GraphStoreSimplifiedAtlasGoalHasUpdateInverseConnection';
41028
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasGoalHasUpdateInverseEdge>>>;
41029
+ isExactCount?: Maybe<Scalars['Boolean']['output']>;
41030
+ pageInfo: PageInfo;
41031
+ totalCount?: Maybe<Scalars['Int']['output']>;
41032
+ };
41033
+ export declare type GraphStoreSimplifiedAtlasGoalHasUpdateInverseEdge = {
41034
+ __typename?: 'GraphStoreSimplifiedAtlasGoalHasUpdateInverseEdge';
41035
+ createdAt: Scalars['DateTime']['output'];
41036
+ cursor?: Maybe<Scalars['String']['output']>;
41037
+ id: Scalars['ID']['output'];
41038
+ lastUpdated: Scalars['DateTime']['output'];
41039
+ node?: Maybe<GraphStoreSimplifiedAtlasGoalHasUpdateInverseUnion>;
41040
+ };
41041
+ export declare type GraphStoreSimplifiedAtlasGoalHasUpdateInverseUnion = TownsquareGoal;
41042
+ export declare type GraphStoreSimplifiedAtlasGoalHasUpdateUnion = TownsquareGoalUpdate;
40180
41043
  export declare type GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalConnection = HasPageInfo & {
40181
41044
  __typename?: 'GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalConnection';
40182
41045
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalEdge>>>;
@@ -40317,6 +41180,38 @@ export declare type GraphStoreSimplifiedAtlasProjectHasOwnerInverseEdge = {
40317
41180
  };
40318
41181
  export declare type GraphStoreSimplifiedAtlasProjectHasOwnerInverseUnion = TownsquareProject;
40319
41182
  export declare type GraphStoreSimplifiedAtlasProjectHasOwnerUnion = AppUser | AtlassianAccountUser | CustomerUser;
41183
+ export declare type GraphStoreSimplifiedAtlasProjectHasUpdateConnection = HasPageInfo & HasTotal & {
41184
+ __typename?: 'GraphStoreSimplifiedAtlasProjectHasUpdateConnection';
41185
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateEdge>>>;
41186
+ isExactCount?: Maybe<Scalars['Boolean']['output']>;
41187
+ pageInfo: PageInfo;
41188
+ totalCount?: Maybe<Scalars['Int']['output']>;
41189
+ };
41190
+ export declare type GraphStoreSimplifiedAtlasProjectHasUpdateEdge = {
41191
+ __typename?: 'GraphStoreSimplifiedAtlasProjectHasUpdateEdge';
41192
+ createdAt: Scalars['DateTime']['output'];
41193
+ cursor?: Maybe<Scalars['String']['output']>;
41194
+ id: Scalars['ID']['output'];
41195
+ lastUpdated: Scalars['DateTime']['output'];
41196
+ node?: Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateUnion>;
41197
+ };
41198
+ export declare type GraphStoreSimplifiedAtlasProjectHasUpdateInverseConnection = HasPageInfo & HasTotal & {
41199
+ __typename?: 'GraphStoreSimplifiedAtlasProjectHasUpdateInverseConnection';
41200
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateInverseEdge>>>;
41201
+ isExactCount?: Maybe<Scalars['Boolean']['output']>;
41202
+ pageInfo: PageInfo;
41203
+ totalCount?: Maybe<Scalars['Int']['output']>;
41204
+ };
41205
+ export declare type GraphStoreSimplifiedAtlasProjectHasUpdateInverseEdge = {
41206
+ __typename?: 'GraphStoreSimplifiedAtlasProjectHasUpdateInverseEdge';
41207
+ createdAt: Scalars['DateTime']['output'];
41208
+ cursor?: Maybe<Scalars['String']['output']>;
41209
+ id: Scalars['ID']['output'];
41210
+ lastUpdated: Scalars['DateTime']['output'];
41211
+ node?: Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateInverseUnion>;
41212
+ };
41213
+ export declare type GraphStoreSimplifiedAtlasProjectHasUpdateInverseUnion = TownsquareProject;
41214
+ export declare type GraphStoreSimplifiedAtlasProjectHasUpdateUnion = TownsquareProjectUpdate;
40320
41215
  export declare type GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectConnection = HasPageInfo & {
40321
41216
  __typename?: 'GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectConnection';
40322
41217
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectEdge>>>;
@@ -40373,6 +41268,62 @@ export declare type GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicInverseEd
40373
41268
  };
40374
41269
  export declare type GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicInverseUnion = TownsquareProject;
40375
41270
  export declare type GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicUnion = JiraIssue;
41271
+ export declare type GraphStoreSimplifiedBoardBelongsToProjectConnection = HasPageInfo & {
41272
+ __typename?: 'GraphStoreSimplifiedBoardBelongsToProjectConnection';
41273
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedBoardBelongsToProjectEdge>>>;
41274
+ pageInfo: PageInfo;
41275
+ };
41276
+ export declare type GraphStoreSimplifiedBoardBelongsToProjectEdge = {
41277
+ __typename?: 'GraphStoreSimplifiedBoardBelongsToProjectEdge';
41278
+ createdAt: Scalars['DateTime']['output'];
41279
+ cursor?: Maybe<Scalars['String']['output']>;
41280
+ id: Scalars['ID']['output'];
41281
+ lastUpdated: Scalars['DateTime']['output'];
41282
+ node?: Maybe<GraphStoreSimplifiedBoardBelongsToProjectUnion>;
41283
+ };
41284
+ export declare type GraphStoreSimplifiedBoardBelongsToProjectInverseConnection = HasPageInfo & {
41285
+ __typename?: 'GraphStoreSimplifiedBoardBelongsToProjectInverseConnection';
41286
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedBoardBelongsToProjectInverseEdge>>>;
41287
+ pageInfo: PageInfo;
41288
+ };
41289
+ export declare type GraphStoreSimplifiedBoardBelongsToProjectInverseEdge = {
41290
+ __typename?: 'GraphStoreSimplifiedBoardBelongsToProjectInverseEdge';
41291
+ createdAt: Scalars['DateTime']['output'];
41292
+ cursor?: Maybe<Scalars['String']['output']>;
41293
+ id: Scalars['ID']['output'];
41294
+ lastUpdated: Scalars['DateTime']['output'];
41295
+ node?: Maybe<GraphStoreSimplifiedBoardBelongsToProjectInverseUnion>;
41296
+ };
41297
+ export declare type GraphStoreSimplifiedBoardBelongsToProjectInverseUnion = JiraBoard;
41298
+ export declare type GraphStoreSimplifiedBoardBelongsToProjectUnion = JiraProject;
41299
+ export declare type GraphStoreSimplifiedCalendarHasLinkedDocumentConnection = HasPageInfo & {
41300
+ __typename?: 'GraphStoreSimplifiedCalendarHasLinkedDocumentConnection';
41301
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedCalendarHasLinkedDocumentEdge>>>;
41302
+ pageInfo: PageInfo;
41303
+ };
41304
+ export declare type GraphStoreSimplifiedCalendarHasLinkedDocumentEdge = {
41305
+ __typename?: 'GraphStoreSimplifiedCalendarHasLinkedDocumentEdge';
41306
+ createdAt: Scalars['DateTime']['output'];
41307
+ cursor?: Maybe<Scalars['String']['output']>;
41308
+ id: Scalars['ID']['output'];
41309
+ lastUpdated: Scalars['DateTime']['output'];
41310
+ node?: Maybe<GraphStoreSimplifiedCalendarHasLinkedDocumentUnion>;
41311
+ };
41312
+ export declare type GraphStoreSimplifiedCalendarHasLinkedDocumentInverseConnection = HasPageInfo & {
41313
+ __typename?: 'GraphStoreSimplifiedCalendarHasLinkedDocumentInverseConnection';
41314
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedCalendarHasLinkedDocumentInverseEdge>>>;
41315
+ pageInfo: PageInfo;
41316
+ };
41317
+ export declare type GraphStoreSimplifiedCalendarHasLinkedDocumentInverseEdge = {
41318
+ __typename?: 'GraphStoreSimplifiedCalendarHasLinkedDocumentInverseEdge';
41319
+ createdAt: Scalars['DateTime']['output'];
41320
+ cursor?: Maybe<Scalars['String']['output']>;
41321
+ id: Scalars['ID']['output'];
41322
+ lastUpdated: Scalars['DateTime']['output'];
41323
+ node?: Maybe<GraphStoreSimplifiedCalendarHasLinkedDocumentInverseUnion>;
41324
+ };
41325
+ export declare type GraphStoreSimplifiedCalendarHasLinkedDocumentInverseUnion = ExternalCalendarEvent;
41326
+ export declare type GraphStoreSimplifiedCalendarHasLinkedDocumentUnion = DevOpsDocument | ExternalDocument;
40376
41327
  export declare type GraphStoreSimplifiedComponentAssociatedDocumentConnection = HasPageInfo & {
40377
41328
  __typename?: 'GraphStoreSimplifiedComponentAssociatedDocumentConnection';
40378
41329
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedComponentAssociatedDocumentEdge>>>;
@@ -40475,6 +41426,34 @@ export declare type GraphStoreSimplifiedComponentLinkedJswIssueInverseEdge = {
40475
41426
  };
40476
41427
  export declare type GraphStoreSimplifiedComponentLinkedJswIssueInverseUnion = CompassComponent | DevOpsOperationsComponentDetails | DevOpsService;
40477
41428
  export declare type GraphStoreSimplifiedComponentLinkedJswIssueUnion = JiraIssue;
41429
+ export declare type GraphStoreSimplifiedConfluenceBlogpostHasCommentConnection = HasPageInfo & {
41430
+ __typename?: 'GraphStoreSimplifiedConfluenceBlogpostHasCommentConnection';
41431
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluenceBlogpostHasCommentEdge>>>;
41432
+ pageInfo: PageInfo;
41433
+ };
41434
+ export declare type GraphStoreSimplifiedConfluenceBlogpostHasCommentEdge = {
41435
+ __typename?: 'GraphStoreSimplifiedConfluenceBlogpostHasCommentEdge';
41436
+ createdAt: Scalars['DateTime']['output'];
41437
+ cursor?: Maybe<Scalars['String']['output']>;
41438
+ id: Scalars['ID']['output'];
41439
+ lastUpdated: Scalars['DateTime']['output'];
41440
+ node?: Maybe<GraphStoreSimplifiedConfluenceBlogpostHasCommentUnion>;
41441
+ };
41442
+ export declare type GraphStoreSimplifiedConfluenceBlogpostHasCommentInverseConnection = HasPageInfo & {
41443
+ __typename?: 'GraphStoreSimplifiedConfluenceBlogpostHasCommentInverseConnection';
41444
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluenceBlogpostHasCommentInverseEdge>>>;
41445
+ pageInfo: PageInfo;
41446
+ };
41447
+ export declare type GraphStoreSimplifiedConfluenceBlogpostHasCommentInverseEdge = {
41448
+ __typename?: 'GraphStoreSimplifiedConfluenceBlogpostHasCommentInverseEdge';
41449
+ createdAt: Scalars['DateTime']['output'];
41450
+ cursor?: Maybe<Scalars['String']['output']>;
41451
+ id: Scalars['ID']['output'];
41452
+ lastUpdated: Scalars['DateTime']['output'];
41453
+ node?: Maybe<GraphStoreSimplifiedConfluenceBlogpostHasCommentInverseUnion>;
41454
+ };
41455
+ export declare type GraphStoreSimplifiedConfluenceBlogpostHasCommentInverseUnion = ConfluenceBlogPost;
41456
+ export declare type GraphStoreSimplifiedConfluenceBlogpostHasCommentUnion = ConfluenceFooterComment | ConfluenceInlineComment;
40478
41457
  export declare type GraphStoreSimplifiedConfluenceBlogpostSharedWithUserConnection = HasPageInfo & {
40479
41458
  __typename?: 'GraphStoreSimplifiedConfluenceBlogpostSharedWithUserConnection';
40480
41459
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluenceBlogpostSharedWithUserEdge>>>;
@@ -40503,6 +41482,34 @@ export declare type GraphStoreSimplifiedConfluenceBlogpostSharedWithUserInverseE
40503
41482
  };
40504
41483
  export declare type GraphStoreSimplifiedConfluenceBlogpostSharedWithUserInverseUnion = ConfluenceBlogPost;
40505
41484
  export declare type GraphStoreSimplifiedConfluenceBlogpostSharedWithUserUnion = AppUser | AtlassianAccountUser | CustomerUser;
41485
+ export declare type GraphStoreSimplifiedConfluencePageHasCommentConnection = HasPageInfo & {
41486
+ __typename?: 'GraphStoreSimplifiedConfluencePageHasCommentConnection';
41487
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluencePageHasCommentEdge>>>;
41488
+ pageInfo: PageInfo;
41489
+ };
41490
+ export declare type GraphStoreSimplifiedConfluencePageHasCommentEdge = {
41491
+ __typename?: 'GraphStoreSimplifiedConfluencePageHasCommentEdge';
41492
+ createdAt: Scalars['DateTime']['output'];
41493
+ cursor?: Maybe<Scalars['String']['output']>;
41494
+ id: Scalars['ID']['output'];
41495
+ lastUpdated: Scalars['DateTime']['output'];
41496
+ node?: Maybe<GraphStoreSimplifiedConfluencePageHasCommentUnion>;
41497
+ };
41498
+ export declare type GraphStoreSimplifiedConfluencePageHasCommentInverseConnection = HasPageInfo & {
41499
+ __typename?: 'GraphStoreSimplifiedConfluencePageHasCommentInverseConnection';
41500
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluencePageHasCommentInverseEdge>>>;
41501
+ pageInfo: PageInfo;
41502
+ };
41503
+ export declare type GraphStoreSimplifiedConfluencePageHasCommentInverseEdge = {
41504
+ __typename?: 'GraphStoreSimplifiedConfluencePageHasCommentInverseEdge';
41505
+ createdAt: Scalars['DateTime']['output'];
41506
+ cursor?: Maybe<Scalars['String']['output']>;
41507
+ id: Scalars['ID']['output'];
41508
+ lastUpdated: Scalars['DateTime']['output'];
41509
+ node?: Maybe<GraphStoreSimplifiedConfluencePageHasCommentInverseUnion>;
41510
+ };
41511
+ export declare type GraphStoreSimplifiedConfluencePageHasCommentInverseUnion = ConfluencePage;
41512
+ export declare type GraphStoreSimplifiedConfluencePageHasCommentUnion = ConfluenceFooterComment | ConfluenceInlineComment;
40506
41513
  export declare type GraphStoreSimplifiedConfluencePageHasConfluenceCommentConnection = HasPageInfo & {
40507
41514
  __typename?: 'GraphStoreSimplifiedConfluencePageHasConfluenceCommentConnection';
40508
41515
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceCommentEdge>>>;
@@ -40923,6 +41930,34 @@ export declare type GraphStoreSimplifiedFocusAreaHasFocusAreaInverseEdge = {
40923
41930
  };
40924
41931
  export declare type GraphStoreSimplifiedFocusAreaHasFocusAreaInverseUnion = MercuryFocusArea;
40925
41932
  export declare type GraphStoreSimplifiedFocusAreaHasFocusAreaUnion = MercuryFocusArea;
41933
+ export declare type GraphStoreSimplifiedFocusAreaHasPageConnection = HasPageInfo & {
41934
+ __typename?: 'GraphStoreSimplifiedFocusAreaHasPageConnection';
41935
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedFocusAreaHasPageEdge>>>;
41936
+ pageInfo: PageInfo;
41937
+ };
41938
+ export declare type GraphStoreSimplifiedFocusAreaHasPageEdge = {
41939
+ __typename?: 'GraphStoreSimplifiedFocusAreaHasPageEdge';
41940
+ createdAt: Scalars['DateTime']['output'];
41941
+ cursor?: Maybe<Scalars['String']['output']>;
41942
+ id: Scalars['ID']['output'];
41943
+ lastUpdated: Scalars['DateTime']['output'];
41944
+ node?: Maybe<GraphStoreSimplifiedFocusAreaHasPageUnion>;
41945
+ };
41946
+ export declare type GraphStoreSimplifiedFocusAreaHasPageInverseConnection = HasPageInfo & {
41947
+ __typename?: 'GraphStoreSimplifiedFocusAreaHasPageInverseConnection';
41948
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedFocusAreaHasPageInverseEdge>>>;
41949
+ pageInfo: PageInfo;
41950
+ };
41951
+ export declare type GraphStoreSimplifiedFocusAreaHasPageInverseEdge = {
41952
+ __typename?: 'GraphStoreSimplifiedFocusAreaHasPageInverseEdge';
41953
+ createdAt: Scalars['DateTime']['output'];
41954
+ cursor?: Maybe<Scalars['String']['output']>;
41955
+ id: Scalars['ID']['output'];
41956
+ lastUpdated: Scalars['DateTime']['output'];
41957
+ node?: Maybe<GraphStoreSimplifiedFocusAreaHasPageInverseUnion>;
41958
+ };
41959
+ export declare type GraphStoreSimplifiedFocusAreaHasPageInverseUnion = MercuryFocusArea;
41960
+ export declare type GraphStoreSimplifiedFocusAreaHasPageUnion = ConfluencePage;
40926
41961
  export declare type GraphStoreSimplifiedFocusAreaHasProjectConnection = HasPageInfo & {
40927
41962
  __typename?: 'GraphStoreSimplifiedFocusAreaHasProjectConnection';
40928
41963
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedFocusAreaHasProjectEdge>>>;
@@ -41621,6 +42656,38 @@ export declare type GraphStoreSimplifiedIssueToWhiteboardInverseEdge = {
41621
42656
  };
41622
42657
  export declare type GraphStoreSimplifiedIssueToWhiteboardInverseUnion = JiraIssue;
41623
42658
  export declare type GraphStoreSimplifiedIssueToWhiteboardUnion = ConfluenceWhiteboard;
42659
+ export declare type GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationConnection = HasPageInfo & HasTotal & {
42660
+ __typename?: 'GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationConnection';
42661
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationEdge>>>;
42662
+ isExactCount?: Maybe<Scalars['Boolean']['output']>;
42663
+ pageInfo: PageInfo;
42664
+ totalCount?: Maybe<Scalars['Int']['output']>;
42665
+ };
42666
+ export declare type GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationEdge = {
42667
+ __typename?: 'GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationEdge';
42668
+ createdAt: Scalars['DateTime']['output'];
42669
+ cursor?: Maybe<Scalars['String']['output']>;
42670
+ id: Scalars['ID']['output'];
42671
+ lastUpdated: Scalars['DateTime']['output'];
42672
+ node?: Maybe<GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationUnion>;
42673
+ };
42674
+ export declare type GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationInverseConnection = HasPageInfo & HasTotal & {
42675
+ __typename?: 'GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationInverseConnection';
42676
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationInverseEdge>>>;
42677
+ isExactCount?: Maybe<Scalars['Boolean']['output']>;
42678
+ pageInfo: PageInfo;
42679
+ totalCount?: Maybe<Scalars['Int']['output']>;
42680
+ };
42681
+ export declare type GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationInverseEdge = {
42682
+ __typename?: 'GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationInverseEdge';
42683
+ createdAt: Scalars['DateTime']['output'];
42684
+ cursor?: Maybe<Scalars['String']['output']>;
42685
+ id: Scalars['ID']['output'];
42686
+ lastUpdated: Scalars['DateTime']['output'];
42687
+ node?: Maybe<GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationInverseUnion>;
42688
+ };
42689
+ export declare type GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationInverseUnion = JiraIssue;
42690
+ export declare type GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationUnion = JiraIssue | JiraProject;
41624
42691
  export declare type GraphStoreSimplifiedJiraEpicContributesToAtlasGoalConnection = HasPageInfo & {
41625
42692
  __typename?: 'GraphStoreSimplifiedJiraEpicContributesToAtlasGoalConnection';
41626
42693
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJiraEpicContributesToAtlasGoalEdge>>>;
@@ -41883,6 +42950,34 @@ export declare type GraphStoreSimplifiedLinkedProjectHasVersionInverseEdge = {
41883
42950
  };
41884
42951
  export declare type GraphStoreSimplifiedLinkedProjectHasVersionInverseUnion = JiraProject;
41885
42952
  export declare type GraphStoreSimplifiedLinkedProjectHasVersionUnion = JiraVersion;
42953
+ export declare type GraphStoreSimplifiedLoomVideoSharedWithUserConnection = HasPageInfo & {
42954
+ __typename?: 'GraphStoreSimplifiedLoomVideoSharedWithUserConnection';
42955
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedLoomVideoSharedWithUserEdge>>>;
42956
+ pageInfo: PageInfo;
42957
+ };
42958
+ export declare type GraphStoreSimplifiedLoomVideoSharedWithUserEdge = {
42959
+ __typename?: 'GraphStoreSimplifiedLoomVideoSharedWithUserEdge';
42960
+ createdAt: Scalars['DateTime']['output'];
42961
+ cursor?: Maybe<Scalars['String']['output']>;
42962
+ id: Scalars['ID']['output'];
42963
+ lastUpdated: Scalars['DateTime']['output'];
42964
+ node?: Maybe<GraphStoreSimplifiedLoomVideoSharedWithUserUnion>;
42965
+ };
42966
+ export declare type GraphStoreSimplifiedLoomVideoSharedWithUserInverseConnection = HasPageInfo & {
42967
+ __typename?: 'GraphStoreSimplifiedLoomVideoSharedWithUserInverseConnection';
42968
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedLoomVideoSharedWithUserInverseEdge>>>;
42969
+ pageInfo: PageInfo;
42970
+ };
42971
+ export declare type GraphStoreSimplifiedLoomVideoSharedWithUserInverseEdge = {
42972
+ __typename?: 'GraphStoreSimplifiedLoomVideoSharedWithUserInverseEdge';
42973
+ createdAt: Scalars['DateTime']['output'];
42974
+ cursor?: Maybe<Scalars['String']['output']>;
42975
+ id: Scalars['ID']['output'];
42976
+ lastUpdated: Scalars['DateTime']['output'];
42977
+ node?: Maybe<GraphStoreSimplifiedLoomVideoSharedWithUserInverseUnion>;
42978
+ };
42979
+ export declare type GraphStoreSimplifiedLoomVideoSharedWithUserInverseUnion = LoomVideo;
42980
+ export declare type GraphStoreSimplifiedLoomVideoSharedWithUserUnion = AppUser | AtlassianAccountUser | CustomerUser;
41886
42981
  export declare type GraphStoreSimplifiedMediaAttachedToContentConnection = HasPageInfo & {
41887
42982
  __typename?: 'GraphStoreSimplifiedMediaAttachedToContentConnection';
41888
42983
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedMediaAttachedToContentEdge>>>;
@@ -41897,6 +42992,20 @@ export declare type GraphStoreSimplifiedMediaAttachedToContentEdge = {
41897
42992
  node?: Maybe<GraphStoreSimplifiedMediaAttachedToContentUnion>;
41898
42993
  };
41899
42994
  export declare type GraphStoreSimplifiedMediaAttachedToContentUnion = ConfluenceBlogPost | ConfluencePage | JiraIssue;
42995
+ export declare type GraphStoreSimplifiedMeetingHasMeetingNotesPageConnection = HasPageInfo & {
42996
+ __typename?: 'GraphStoreSimplifiedMeetingHasMeetingNotesPageConnection';
42997
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedMeetingHasMeetingNotesPageEdge>>>;
42998
+ pageInfo: PageInfo;
42999
+ };
43000
+ export declare type GraphStoreSimplifiedMeetingHasMeetingNotesPageEdge = {
43001
+ __typename?: 'GraphStoreSimplifiedMeetingHasMeetingNotesPageEdge';
43002
+ createdAt: Scalars['DateTime']['output'];
43003
+ cursor?: Maybe<Scalars['String']['output']>;
43004
+ id: Scalars['ID']['output'];
43005
+ lastUpdated: Scalars['DateTime']['output'];
43006
+ node?: Maybe<GraphStoreSimplifiedMeetingHasMeetingNotesPageUnion>;
43007
+ };
43008
+ export declare type GraphStoreSimplifiedMeetingHasMeetingNotesPageUnion = ConfluencePage;
41900
43009
  export declare type GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderConnection = HasPageInfo & HasTotal & {
41901
43010
  __typename?: 'GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderConnection';
41902
43011
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderEdge>>>;
@@ -41929,6 +43038,20 @@ export declare type GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFold
41929
43038
  };
41930
43039
  export declare type GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
41931
43040
  export declare type GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderUnion = ConfluenceFolder;
43041
+ export declare type GraphStoreSimplifiedMeetingRecurrenceHasMeetingRecurrenceNotesPageConnection = HasPageInfo & {
43042
+ __typename?: 'GraphStoreSimplifiedMeetingRecurrenceHasMeetingRecurrenceNotesPageConnection';
43043
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedMeetingRecurrenceHasMeetingRecurrenceNotesPageEdge>>>;
43044
+ pageInfo: PageInfo;
43045
+ };
43046
+ export declare type GraphStoreSimplifiedMeetingRecurrenceHasMeetingRecurrenceNotesPageEdge = {
43047
+ __typename?: 'GraphStoreSimplifiedMeetingRecurrenceHasMeetingRecurrenceNotesPageEdge';
43048
+ createdAt: Scalars['DateTime']['output'];
43049
+ cursor?: Maybe<Scalars['String']['output']>;
43050
+ id: Scalars['ID']['output'];
43051
+ lastUpdated: Scalars['DateTime']['output'];
43052
+ node?: Maybe<GraphStoreSimplifiedMeetingRecurrenceHasMeetingRecurrenceNotesPageUnion>;
43053
+ };
43054
+ export declare type GraphStoreSimplifiedMeetingRecurrenceHasMeetingRecurrenceNotesPageUnion = ConfluencePage;
41932
43055
  export declare type GraphStoreSimplifiedOnPremProjectHasIssueConnection = HasPageInfo & {
41933
43056
  __typename?: 'GraphStoreSimplifiedOnPremProjectHasIssueConnection';
41934
43057
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedOnPremProjectHasIssueEdge>>>;
@@ -42901,6 +44024,34 @@ export declare type GraphStoreSimplifiedProjectLinkedToCompassComponentInverseEd
42901
44024
  };
42902
44025
  export declare type GraphStoreSimplifiedProjectLinkedToCompassComponentInverseUnion = JiraProject;
42903
44026
  export declare type GraphStoreSimplifiedProjectLinkedToCompassComponentUnion = CompassComponent;
44027
+ export declare type GraphStoreSimplifiedPullRequestLinksToServiceConnection = HasPageInfo & {
44028
+ __typename?: 'GraphStoreSimplifiedPullRequestLinksToServiceConnection';
44029
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedPullRequestLinksToServiceEdge>>>;
44030
+ pageInfo: PageInfo;
44031
+ };
44032
+ export declare type GraphStoreSimplifiedPullRequestLinksToServiceEdge = {
44033
+ __typename?: 'GraphStoreSimplifiedPullRequestLinksToServiceEdge';
44034
+ createdAt: Scalars['DateTime']['output'];
44035
+ cursor?: Maybe<Scalars['String']['output']>;
44036
+ id: Scalars['ID']['output'];
44037
+ lastUpdated: Scalars['DateTime']['output'];
44038
+ node?: Maybe<GraphStoreSimplifiedPullRequestLinksToServiceUnion>;
44039
+ };
44040
+ export declare type GraphStoreSimplifiedPullRequestLinksToServiceInverseConnection = HasPageInfo & {
44041
+ __typename?: 'GraphStoreSimplifiedPullRequestLinksToServiceInverseConnection';
44042
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedPullRequestLinksToServiceInverseEdge>>>;
44043
+ pageInfo: PageInfo;
44044
+ };
44045
+ export declare type GraphStoreSimplifiedPullRequestLinksToServiceInverseEdge = {
44046
+ __typename?: 'GraphStoreSimplifiedPullRequestLinksToServiceInverseEdge';
44047
+ createdAt: Scalars['DateTime']['output'];
44048
+ cursor?: Maybe<Scalars['String']['output']>;
44049
+ id: Scalars['ID']['output'];
44050
+ lastUpdated: Scalars['DateTime']['output'];
44051
+ node?: Maybe<GraphStoreSimplifiedPullRequestLinksToServiceInverseUnion>;
44052
+ };
44053
+ export declare type GraphStoreSimplifiedPullRequestLinksToServiceInverseUnion = DevOpsPullRequestDetails | ExternalPullRequest;
44054
+ export declare type GraphStoreSimplifiedPullRequestLinksToServiceUnion = DevOpsService;
42904
44055
  export declare type GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityConnection = HasPageInfo & {
42905
44056
  __typename?: 'GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityConnection';
42906
44057
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityEdge>>>;
@@ -42915,6 +44066,34 @@ export declare type GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabili
42915
44066
  node?: Maybe<GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityUnion>;
42916
44067
  };
42917
44068
  export declare type GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityUnion = DevOpsSecurityVulnerabilityDetails | ExternalVulnerability;
44069
+ export declare type GraphStoreSimplifiedServiceAssociatedBranchConnection = HasPageInfo & {
44070
+ __typename?: 'GraphStoreSimplifiedServiceAssociatedBranchConnection';
44071
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedServiceAssociatedBranchEdge>>>;
44072
+ pageInfo: PageInfo;
44073
+ };
44074
+ export declare type GraphStoreSimplifiedServiceAssociatedBranchEdge = {
44075
+ __typename?: 'GraphStoreSimplifiedServiceAssociatedBranchEdge';
44076
+ createdAt: Scalars['DateTime']['output'];
44077
+ cursor?: Maybe<Scalars['String']['output']>;
44078
+ id: Scalars['ID']['output'];
44079
+ lastUpdated: Scalars['DateTime']['output'];
44080
+ node?: Maybe<GraphStoreSimplifiedServiceAssociatedBranchUnion>;
44081
+ };
44082
+ export declare type GraphStoreSimplifiedServiceAssociatedBranchInverseConnection = HasPageInfo & {
44083
+ __typename?: 'GraphStoreSimplifiedServiceAssociatedBranchInverseConnection';
44084
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedServiceAssociatedBranchInverseEdge>>>;
44085
+ pageInfo: PageInfo;
44086
+ };
44087
+ export declare type GraphStoreSimplifiedServiceAssociatedBranchInverseEdge = {
44088
+ __typename?: 'GraphStoreSimplifiedServiceAssociatedBranchInverseEdge';
44089
+ createdAt: Scalars['DateTime']['output'];
44090
+ cursor?: Maybe<Scalars['String']['output']>;
44091
+ id: Scalars['ID']['output'];
44092
+ lastUpdated: Scalars['DateTime']['output'];
44093
+ node?: Maybe<GraphStoreSimplifiedServiceAssociatedBranchInverseUnion>;
44094
+ };
44095
+ export declare type GraphStoreSimplifiedServiceAssociatedBranchInverseUnion = DevOpsService;
44096
+ export declare type GraphStoreSimplifiedServiceAssociatedBranchUnion = ExternalBranch;
42918
44097
  export declare type GraphStoreSimplifiedServiceAssociatedDeploymentConnection = HasPageInfo & {
42919
44098
  __typename?: 'GraphStoreSimplifiedServiceAssociatedDeploymentConnection';
42920
44099
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedServiceAssociatedDeploymentEdge>>>;
@@ -43533,6 +44712,34 @@ export declare type GraphStoreSimplifiedUserAssignedIncidentInverseEdge = {
43533
44712
  };
43534
44713
  export declare type GraphStoreSimplifiedUserAssignedIncidentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
43535
44714
  export declare type GraphStoreSimplifiedUserAssignedIncidentUnion = JiraIssue;
44715
+ export declare type GraphStoreSimplifiedUserAssignedIssueConnection = HasPageInfo & {
44716
+ __typename?: 'GraphStoreSimplifiedUserAssignedIssueConnection';
44717
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserAssignedIssueEdge>>>;
44718
+ pageInfo: PageInfo;
44719
+ };
44720
+ export declare type GraphStoreSimplifiedUserAssignedIssueEdge = {
44721
+ __typename?: 'GraphStoreSimplifiedUserAssignedIssueEdge';
44722
+ createdAt: Scalars['DateTime']['output'];
44723
+ cursor?: Maybe<Scalars['String']['output']>;
44724
+ id: Scalars['ID']['output'];
44725
+ lastUpdated: Scalars['DateTime']['output'];
44726
+ node?: Maybe<GraphStoreSimplifiedUserAssignedIssueUnion>;
44727
+ };
44728
+ export declare type GraphStoreSimplifiedUserAssignedIssueInverseConnection = HasPageInfo & {
44729
+ __typename?: 'GraphStoreSimplifiedUserAssignedIssueInverseConnection';
44730
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserAssignedIssueInverseEdge>>>;
44731
+ pageInfo: PageInfo;
44732
+ };
44733
+ export declare type GraphStoreSimplifiedUserAssignedIssueInverseEdge = {
44734
+ __typename?: 'GraphStoreSimplifiedUserAssignedIssueInverseEdge';
44735
+ createdAt: Scalars['DateTime']['output'];
44736
+ cursor?: Maybe<Scalars['String']['output']>;
44737
+ id: Scalars['ID']['output'];
44738
+ lastUpdated: Scalars['DateTime']['output'];
44739
+ node?: Maybe<GraphStoreSimplifiedUserAssignedIssueInverseUnion>;
44740
+ };
44741
+ export declare type GraphStoreSimplifiedUserAssignedIssueInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
44742
+ export declare type GraphStoreSimplifiedUserAssignedIssueUnion = JiraIssue;
43536
44743
  export declare type GraphStoreSimplifiedUserAssignedPirConnection = HasPageInfo & {
43537
44744
  __typename?: 'GraphStoreSimplifiedUserAssignedPirConnection';
43538
44745
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserAssignedPirEdge>>>;
@@ -44125,6 +45332,34 @@ export declare type GraphStoreSimplifiedUserCreatedDocumentInverseEdge = {
44125
45332
  };
44126
45333
  export declare type GraphStoreSimplifiedUserCreatedDocumentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
44127
45334
  export declare type GraphStoreSimplifiedUserCreatedDocumentUnion = DevOpsDocument | ExternalDocument;
45335
+ export declare type GraphStoreSimplifiedUserCreatedIssueCommentConnection = HasPageInfo & {
45336
+ __typename?: 'GraphStoreSimplifiedUserCreatedIssueCommentConnection';
45337
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedIssueCommentEdge>>>;
45338
+ pageInfo: PageInfo;
45339
+ };
45340
+ export declare type GraphStoreSimplifiedUserCreatedIssueCommentEdge = {
45341
+ __typename?: 'GraphStoreSimplifiedUserCreatedIssueCommentEdge';
45342
+ createdAt: Scalars['DateTime']['output'];
45343
+ cursor?: Maybe<Scalars['String']['output']>;
45344
+ id: Scalars['ID']['output'];
45345
+ lastUpdated: Scalars['DateTime']['output'];
45346
+ node?: Maybe<GraphStoreSimplifiedUserCreatedIssueCommentUnion>;
45347
+ };
45348
+ export declare type GraphStoreSimplifiedUserCreatedIssueCommentInverseConnection = HasPageInfo & {
45349
+ __typename?: 'GraphStoreSimplifiedUserCreatedIssueCommentInverseConnection';
45350
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedIssueCommentInverseEdge>>>;
45351
+ pageInfo: PageInfo;
45352
+ };
45353
+ export declare type GraphStoreSimplifiedUserCreatedIssueCommentInverseEdge = {
45354
+ __typename?: 'GraphStoreSimplifiedUserCreatedIssueCommentInverseEdge';
45355
+ createdAt: Scalars['DateTime']['output'];
45356
+ cursor?: Maybe<Scalars['String']['output']>;
45357
+ id: Scalars['ID']['output'];
45358
+ lastUpdated: Scalars['DateTime']['output'];
45359
+ node?: Maybe<GraphStoreSimplifiedUserCreatedIssueCommentInverseUnion>;
45360
+ };
45361
+ export declare type GraphStoreSimplifiedUserCreatedIssueCommentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
45362
+ export declare type GraphStoreSimplifiedUserCreatedIssueCommentUnion = JiraPlatformComment | JiraServiceManagementComment;
44128
45363
  export declare type GraphStoreSimplifiedUserCreatedIssueWorklogConnection = HasPageInfo & {
44129
45364
  __typename?: 'GraphStoreSimplifiedUserCreatedIssueWorklogConnection';
44130
45365
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedIssueWorklogEdge>>>;
@@ -44209,6 +45444,34 @@ export declare type GraphStoreSimplifiedUserCreatedMessageInverseEdge = {
44209
45444
  };
44210
45445
  export declare type GraphStoreSimplifiedUserCreatedMessageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
44211
45446
  export declare type GraphStoreSimplifiedUserCreatedMessageUnion = ExternalMessage;
45447
+ export declare type GraphStoreSimplifiedUserCreatedReleaseConnection = HasPageInfo & {
45448
+ __typename?: 'GraphStoreSimplifiedUserCreatedReleaseConnection';
45449
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedReleaseEdge>>>;
45450
+ pageInfo: PageInfo;
45451
+ };
45452
+ export declare type GraphStoreSimplifiedUserCreatedReleaseEdge = {
45453
+ __typename?: 'GraphStoreSimplifiedUserCreatedReleaseEdge';
45454
+ createdAt: Scalars['DateTime']['output'];
45455
+ cursor?: Maybe<Scalars['String']['output']>;
45456
+ id: Scalars['ID']['output'];
45457
+ lastUpdated: Scalars['DateTime']['output'];
45458
+ node?: Maybe<GraphStoreSimplifiedUserCreatedReleaseUnion>;
45459
+ };
45460
+ export declare type GraphStoreSimplifiedUserCreatedReleaseInverseConnection = HasPageInfo & {
45461
+ __typename?: 'GraphStoreSimplifiedUserCreatedReleaseInverseConnection';
45462
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedReleaseInverseEdge>>>;
45463
+ pageInfo: PageInfo;
45464
+ };
45465
+ export declare type GraphStoreSimplifiedUserCreatedReleaseInverseEdge = {
45466
+ __typename?: 'GraphStoreSimplifiedUserCreatedReleaseInverseEdge';
45467
+ createdAt: Scalars['DateTime']['output'];
45468
+ cursor?: Maybe<Scalars['String']['output']>;
45469
+ id: Scalars['ID']['output'];
45470
+ lastUpdated: Scalars['DateTime']['output'];
45471
+ node?: Maybe<GraphStoreSimplifiedUserCreatedReleaseInverseUnion>;
45472
+ };
45473
+ export declare type GraphStoreSimplifiedUserCreatedReleaseInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
45474
+ export declare type GraphStoreSimplifiedUserCreatedReleaseUnion = JiraVersion;
44212
45475
  export declare type GraphStoreSimplifiedUserCreatedRemoteLinkConnection = HasPageInfo & {
44213
45476
  __typename?: 'GraphStoreSimplifiedUserCreatedRemoteLinkConnection';
44214
45477
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedRemoteLinkEdge>>>;
@@ -44865,6 +46128,34 @@ export declare type GraphStoreSimplifiedUserOwnsComponentInverseEdge = {
44865
46128
  };
44866
46129
  export declare type GraphStoreSimplifiedUserOwnsComponentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
44867
46130
  export declare type GraphStoreSimplifiedUserOwnsComponentUnion = CompassComponent;
46131
+ export declare type GraphStoreSimplifiedUserOwnsFocusAreaConnection = HasPageInfo & {
46132
+ __typename?: 'GraphStoreSimplifiedUserOwnsFocusAreaConnection';
46133
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnsFocusAreaEdge>>>;
46134
+ pageInfo: PageInfo;
46135
+ };
46136
+ export declare type GraphStoreSimplifiedUserOwnsFocusAreaEdge = {
46137
+ __typename?: 'GraphStoreSimplifiedUserOwnsFocusAreaEdge';
46138
+ createdAt: Scalars['DateTime']['output'];
46139
+ cursor?: Maybe<Scalars['String']['output']>;
46140
+ id: Scalars['ID']['output'];
46141
+ lastUpdated: Scalars['DateTime']['output'];
46142
+ node?: Maybe<GraphStoreSimplifiedUserOwnsFocusAreaUnion>;
46143
+ };
46144
+ export declare type GraphStoreSimplifiedUserOwnsFocusAreaInverseConnection = HasPageInfo & {
46145
+ __typename?: 'GraphStoreSimplifiedUserOwnsFocusAreaInverseConnection';
46146
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnsFocusAreaInverseEdge>>>;
46147
+ pageInfo: PageInfo;
46148
+ };
46149
+ export declare type GraphStoreSimplifiedUserOwnsFocusAreaInverseEdge = {
46150
+ __typename?: 'GraphStoreSimplifiedUserOwnsFocusAreaInverseEdge';
46151
+ createdAt: Scalars['DateTime']['output'];
46152
+ cursor?: Maybe<Scalars['String']['output']>;
46153
+ id: Scalars['ID']['output'];
46154
+ lastUpdated: Scalars['DateTime']['output'];
46155
+ node?: Maybe<GraphStoreSimplifiedUserOwnsFocusAreaInverseUnion>;
46156
+ };
46157
+ export declare type GraphStoreSimplifiedUserOwnsFocusAreaInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
46158
+ export declare type GraphStoreSimplifiedUserOwnsFocusAreaUnion = MercuryFocusArea;
44868
46159
  export declare type GraphStoreSimplifiedUserReportedIncidentConnection = HasPageInfo & {
44869
46160
  __typename?: 'GraphStoreSimplifiedUserReportedIncidentConnection';
44870
46161
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserReportedIncidentEdge>>>;
@@ -45005,6 +46296,19 @@ export declare type GraphStoreSimplifiedUserTaggedInConfluencePageInverseEdge =
45005
46296
  };
45006
46297
  export declare type GraphStoreSimplifiedUserTaggedInConfluencePageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
45007
46298
  export declare type GraphStoreSimplifiedUserTaggedInConfluencePageUnion = ConfluencePage;
46299
+ export declare type GraphStoreSimplifiedUserTaggedInIssueCommentConnection = HasPageInfo & {
46300
+ __typename?: 'GraphStoreSimplifiedUserTaggedInIssueCommentConnection';
46301
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserTaggedInIssueCommentEdge>>>;
46302
+ pageInfo: PageInfo;
46303
+ };
46304
+ export declare type GraphStoreSimplifiedUserTaggedInIssueCommentEdge = {
46305
+ __typename?: 'GraphStoreSimplifiedUserTaggedInIssueCommentEdge';
46306
+ createdAt: Scalars['DateTime']['output'];
46307
+ cursor?: Maybe<Scalars['String']['output']>;
46308
+ id: Scalars['ID']['output'];
46309
+ lastUpdated: Scalars['DateTime']['output'];
46310
+ node?: Maybe<GraphStoreSimplifiedUserTaggedInIssueCommentUnion>;
46311
+ };
45008
46312
  export declare type GraphStoreSimplifiedUserTaggedInIssueCommentInverseConnection = HasPageInfo & {
45009
46313
  __typename?: 'GraphStoreSimplifiedUserTaggedInIssueCommentInverseConnection';
45010
46314
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserTaggedInIssueCommentInverseEdge>>>;
@@ -45019,6 +46323,7 @@ export declare type GraphStoreSimplifiedUserTaggedInIssueCommentInverseEdge = {
45019
46323
  node?: Maybe<GraphStoreSimplifiedUserTaggedInIssueCommentInverseUnion>;
45020
46324
  };
45021
46325
  export declare type GraphStoreSimplifiedUserTaggedInIssueCommentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
46326
+ export declare type GraphStoreSimplifiedUserTaggedInIssueCommentUnion = JiraPlatformComment | JiraServiceManagementComment;
45022
46327
  export declare type GraphStoreSimplifiedUserTriggeredDeploymentConnection = HasPageInfo & {
45023
46328
  __typename?: 'GraphStoreSimplifiedUserTriggeredDeploymentConnection';
45024
46329
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserTriggeredDeploymentEdge>>>;
@@ -45214,6 +46519,20 @@ export declare type GraphStoreSimplifiedUserUpdatedIssueInverseEdge = {
45214
46519
  node?: Maybe<GraphStoreSimplifiedUserUpdatedIssueInverseUnion>;
45215
46520
  };
45216
46521
  export declare type GraphStoreSimplifiedUserUpdatedIssueInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
46522
+ export declare type GraphStoreSimplifiedUserUpdatedIssueStatusInverseConnection = HasPageInfo & {
46523
+ __typename?: 'GraphStoreSimplifiedUserUpdatedIssueStatusInverseConnection';
46524
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedIssueStatusInverseEdge>>>;
46525
+ pageInfo: PageInfo;
46526
+ };
46527
+ export declare type GraphStoreSimplifiedUserUpdatedIssueStatusInverseEdge = {
46528
+ __typename?: 'GraphStoreSimplifiedUserUpdatedIssueStatusInverseEdge';
46529
+ createdAt: Scalars['DateTime']['output'];
46530
+ cursor?: Maybe<Scalars['String']['output']>;
46531
+ id: Scalars['ID']['output'];
46532
+ lastUpdated: Scalars['DateTime']['output'];
46533
+ node?: Maybe<GraphStoreSimplifiedUserUpdatedIssueStatusInverseUnion>;
46534
+ };
46535
+ export declare type GraphStoreSimplifiedUserUpdatedIssueStatusInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
45217
46536
  export declare type GraphStoreSimplifiedUserUpdatedIssueUnion = JiraIssue;
45218
46537
  export declare type GraphStoreSimplifiedUserViewedAtlasGoalConnection = HasPageInfo & {
45219
46538
  __typename?: 'GraphStoreSimplifiedUserViewedAtlasGoalConnection';
@@ -46153,6 +47472,9 @@ export declare type GraphStoreThirdPartyToGraphRemoteLinkSortInput = {
46153
47472
  export declare type GraphStoreUserAssignedIncidentSortInput = {
46154
47473
  lastModified?: InputMaybe<GraphStoreSortInput>;
46155
47474
  };
47475
+ export declare type GraphStoreUserAssignedIssueSortInput = {
47476
+ lastModified?: InputMaybe<GraphStoreSortInput>;
47477
+ };
46156
47478
  export declare type GraphStoreUserAssignedPirSortInput = {
46157
47479
  lastModified?: InputMaybe<GraphStoreSortInput>;
46158
47480
  };
@@ -46237,6 +47559,9 @@ export declare type GraphStoreUserCreatedDesignSortInput = {
46237
47559
  export declare type GraphStoreUserCreatedDocumentSortInput = {
46238
47560
  lastModified?: InputMaybe<GraphStoreSortInput>;
46239
47561
  };
47562
+ export declare type GraphStoreUserCreatedIssueCommentSortInput = {
47563
+ lastModified?: InputMaybe<GraphStoreSortInput>;
47564
+ };
46240
47565
  export declare type GraphStoreUserCreatedIssueWorklogSortInput = {
46241
47566
  lastModified?: InputMaybe<GraphStoreSortInput>;
46242
47567
  };
@@ -46246,6 +47571,9 @@ export declare type GraphStoreUserCreatedLoomVideoSortInput = {
46246
47571
  export declare type GraphStoreUserCreatedMessageSortInput = {
46247
47572
  lastModified?: InputMaybe<GraphStoreSortInput>;
46248
47573
  };
47574
+ export declare type GraphStoreUserCreatedReleaseSortInput = {
47575
+ lastModified?: InputMaybe<GraphStoreSortInput>;
47576
+ };
46249
47577
  export declare type GraphStoreUserCreatedRemoteLinkSortInput = {
46250
47578
  lastModified?: InputMaybe<GraphStoreSortInput>;
46251
47579
  };
@@ -46342,6 +47670,9 @@ export declare type GraphStoreUserOwnsComponentSortInput = {
46342
47670
  lastModified?: InputMaybe<GraphStoreSortInput>;
46343
47671
  toAti?: InputMaybe<GraphStoreSortInput>;
46344
47672
  };
47673
+ export declare type GraphStoreUserOwnsFocusAreaSortInput = {
47674
+ lastModified?: InputMaybe<GraphStoreSortInput>;
47675
+ };
46345
47676
  export declare type GraphStoreUserReportedIncidentSortInput = {
46346
47677
  lastModified?: InputMaybe<GraphStoreSortInput>;
46347
47678
  };
@@ -46381,6 +47712,9 @@ export declare type GraphStoreUserUpdatedGraphDocumentSortInput = {
46381
47712
  export declare type GraphStoreUserUpdatedIssueSortInput = {
46382
47713
  lastModified?: InputMaybe<GraphStoreSortInput>;
46383
47714
  };
47715
+ export declare type GraphStoreUserUpdatedIssueStatusSortInput = {
47716
+ lastModified?: InputMaybe<GraphStoreSortInput>;
47717
+ };
46384
47718
  export declare type GraphStoreUserViewedAtlasGoalSortInput = {
46385
47719
  lastModified?: InputMaybe<GraphStoreSortInput>;
46386
47720
  };
@@ -49671,69 +51005,6 @@ export declare type IssueDevOpsTestSummary = {
49671
51005
  numberSkipped?: Maybe<Scalars['Int']['output']>;
49672
51006
  totalNumber?: Maybe<Scalars['Int']['output']>;
49673
51007
  };
49674
- export declare type JsmAssignee = {
49675
- __typename?: 'JSMAssignee';
49676
- id: Scalars['ID']['output'];
49677
- };
49678
- export declare type JsmIncident = {
49679
- __typename?: 'JSMIncident';
49680
- affectedServices?: Maybe<Array<Maybe<DevOpsService>>>;
49681
- assignee?: Maybe<User>;
49682
- description?: Maybe<Scalars['String']['output']>;
49683
- id: Scalars['ID']['output'];
49684
- issueLinks?: Maybe<Array<Maybe<JsmIssueLink>>>;
49685
- linkedAlerts?: Maybe<Array<Maybe<JsmLinkedAlerts>>>;
49686
- majorIncident?: Maybe<JsmMajorIncident>;
49687
- participants?: Maybe<Array<Maybe<User>>>;
49688
- priority?: Maybe<JsmPriority>;
49689
- reporter?: Maybe<User>;
49690
- responders?: Maybe<Array<Maybe<JsmResponder>>>;
49691
- status?: Maybe<JsmStatus>;
49692
- summary?: Maybe<Scalars['String']['output']>;
49693
- };
49694
- export declare enum JsmIncidentLinkDirection {
49695
- Inward = "INWARD",
49696
- Outward = "OUTWARD"
49697
- }
49698
- export declare type JsmIssueLink = {
49699
- __typename?: 'JSMIssueLink';
49700
- direction?: Maybe<JsmIncidentLinkDirection>;
49701
- issue?: Maybe<JiraIssue>;
49702
- type?: Maybe<JsmIssueLinkType>;
49703
- };
49704
- export declare type JsmIssueLinkType = {
49705
- __typename?: 'JSMIssueLinkType';
49706
- id: Scalars['ID']['output'];
49707
- };
49708
- export declare type JsmLinkedAlerts = {
49709
- __typename?: 'JSMLinkedAlerts';
49710
- id: Scalars['ID']['output'];
49711
- };
49712
- export declare enum JsmMajorIncident {
49713
- MajorIncident = "MAJOR_INCIDENT"
49714
- }
49715
- export declare type JsmPriority = {
49716
- __typename?: 'JSMPriority';
49717
- id: Scalars['ID']['output'];
49718
- name?: Maybe<Scalars['String']['output']>;
49719
- };
49720
- export declare type JsmReporter = {
49721
- __typename?: 'JSMReporter';
49722
- id: Scalars['ID']['output'];
49723
- };
49724
- export declare type JsmResponder = AppUser | AtlassianAccountUser | CustomerUser | OpsgenieTeam;
49725
- export declare type JsmStatus = {
49726
- __typename?: 'JSMStatus';
49727
- id: Scalars['ID']['output'];
49728
- name?: Maybe<Scalars['String']['output']>;
49729
- statusCategory?: Maybe<JsmStatusCategory>;
49730
- };
49731
- export declare type JsmStatusCategory = {
49732
- __typename?: 'JSMStatusCategory';
49733
- id: Scalars['ID']['output'];
49734
- key?: Maybe<Scalars['String']['output']>;
49735
- name?: Maybe<Scalars['String']['output']>;
49736
- };
49737
51008
  export declare type JiraAdf = {
49738
51009
  __typename?: 'JiraADF';
49739
51010
  convertedPlainText?: Maybe<JiraAdfToConvertedPlainText>;
@@ -50807,6 +52078,18 @@ export declare enum JiraBoardLocationType {
50807
52078
  User = "USER"
50808
52079
  }
50809
52080
  export declare type JiraBoardResult = JiraBoard | QueryError;
52081
+ export declare enum JiraBoardSwimlaneStrategy {
52082
+ AssigneeUnassignedFirst = "ASSIGNEE_UNASSIGNED_FIRST",
52083
+ AssigneeUnassignedLast = "ASSIGNEE_UNASSIGNED_LAST",
52084
+ Custom = "CUSTOM",
52085
+ Epic = "EPIC",
52086
+ IssueChildren = "ISSUE_CHILDREN",
52087
+ IssueParent = "ISSUE_PARENT",
52088
+ None = "NONE",
52089
+ ParentChild = "PARENT_CHILD",
52090
+ Project = "PROJECT",
52091
+ RequestType = "REQUEST_TYPE"
52092
+ }
50810
52093
  export declare enum JiraBoardType {
50811
52094
  Kanban = "KANBAN",
50812
52095
  Scrum = "SCRUM"
@@ -51006,6 +52289,17 @@ export declare enum JiraBulkOperationType {
51006
52289
  BulkUnwatch = "BULK_UNWATCH",
51007
52290
  BulkWatch = "BULK_WATCH"
51008
52291
  }
52292
+ export declare type JiraBulkSetBoardViewColumnStateInput = {
52293
+ collapsed: Scalars['Boolean']['input'];
52294
+ settings?: InputMaybe<JiraBoardViewSettings>;
52295
+ viewId: Scalars['ID']['input'];
52296
+ };
52297
+ export declare type JiraBulkSetBoardViewColumnStatePayload = Payload & {
52298
+ __typename?: 'JiraBulkSetBoardViewColumnStatePayload';
52299
+ boardView?: Maybe<JiraBoardView>;
52300
+ errors?: Maybe<Array<MutationError>>;
52301
+ success: Scalars['Boolean']['output'];
52302
+ };
51009
52303
  export declare type JiraBulkTransition = Node & {
51010
52304
  __typename?: 'JiraBulkTransition';
51011
52305
  id: Scalars['ID']['output'];
@@ -51851,6 +53145,7 @@ export declare type JiraCommentSortInput = {
51851
53145
  };
51852
53146
  export declare type JiraCommentSummary = {
51853
53147
  __typename?: 'JiraCommentSummary';
53148
+ canAddComment?: Maybe<Scalars['Boolean']['output']>;
51854
53149
  totalCount?: Maybe<Scalars['Int']['output']>;
51855
53150
  };
51856
53151
  export declare type JiraCommentSummaryField = JiraIssueField & JiraIssueFieldConfiguration & Node & {
@@ -52432,6 +53727,12 @@ export declare type JiraCreateJourneyConfigurationPayload = Payload & {
52432
53727
  jiraJourneyConfigurationEdge?: Maybe<JiraJourneyConfigurationEdge>;
52433
53728
  success: Scalars['Boolean']['output'];
52434
53729
  };
53730
+ export declare type JiraCreateJourneyItemInput = {
53731
+ configuration?: InputMaybe<JiraJourneyItemConfigurationInput>;
53732
+ insertAfterItemId?: InputMaybe<Scalars['ID']['input']>;
53733
+ journeyId: Scalars['ID']['input'];
53734
+ journeyVersion: Scalars['Long']['input'];
53735
+ };
52435
53736
  export declare type JiraCreateNavigationItemPayload = Payload & {
52436
53737
  __typename?: 'JiraCreateNavigationItemPayload';
52437
53738
  errors?: Maybe<Array<MutationError>>;
@@ -53228,6 +54529,7 @@ export declare type JiraDisableJourneyConfigurationInput = {
53228
54529
  version: Scalars['Long']['input'];
53229
54530
  };
53230
54531
  export declare type JiraDiscardUserBoardViewConfigInput = {
54532
+ settings?: InputMaybe<JiraBoardViewSettings>;
53231
54533
  viewId: Scalars['ID']['input'];
53232
54534
  };
53233
54535
  export declare type JiraDiscardUserBoardViewConfigPayload = Payload & {
@@ -54532,6 +55834,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
54532
55834
  issueId: Scalars['String']['output'];
54533
55835
  issueLinks?: Maybe<JiraIssueLinkConnection>;
54534
55836
  issuePropertyByKey?: Maybe<Scalars['JSON']['output']>;
55837
+ issueRestrictionField?: Maybe<JiraIssueRestrictionField>;
54535
55838
  issueTypeAvatarUrl?: Maybe<Scalars['URL']['output']>;
54536
55839
  issueTypeField?: Maybe<JiraIssueTypeField>;
54537
55840
  issueTypesForHierarchyAbove?: Maybe<JiraIssueTypeConnection>;
@@ -54569,6 +55872,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
54569
55872
  resolutionField?: Maybe<JiraResolutionField>;
54570
55873
  screenId?: Maybe<Scalars['Long']['output']>;
54571
55874
  searchViewContext?: Maybe<JiraIssueSearchViewContexts>;
55875
+ securityLevelField?: Maybe<JiraSecurityLevelField>;
54572
55876
  smartSummary?: Maybe<JiraAdf>;
54573
55877
  startDateField?: Maybe<JiraDatePickerField>;
54574
55878
  startDateViewField?: Maybe<JiraIssueField>;
@@ -54584,6 +55888,8 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
54584
55888
  summaryField?: Maybe<JiraSingleLineTextField>;
54585
55889
  timeTrackingField?: Maybe<JiraTimeTrackingField>;
54586
55890
  updatedField?: Maybe<JiraDateTimePickerField>;
55891
+ votesField?: Maybe<JiraVotesField>;
55892
+ watchesField?: Maybe<JiraWatchesField>;
54587
55893
  webUrl?: Maybe<Scalars['URL']['output']>;
54588
55894
  worklogs?: Maybe<JiraWorkLogConnection>;
54589
55895
  };
@@ -56115,6 +57421,10 @@ export declare type JiraJqlHistoryEdge = {
56115
57421
  __typename?: 'JiraJQLHistoryEdge';
56116
57422
  node?: Maybe<JiraJqlHistory>;
56117
57423
  };
57424
+ export declare type JiraJourneyBuilderAssociatedAutomationRule = {
57425
+ __typename?: 'JiraJourneyBuilderAssociatedAutomationRule';
57426
+ id: Scalars['ID']['output'];
57427
+ };
56118
57428
  export declare type JiraJourneyConfiguration = Node & {
56119
57429
  __typename?: 'JiraJourneyConfiguration';
56120
57430
  activityConfigurations?: Maybe<Array<Maybe<JiraActivityConfiguration>>>;
@@ -56148,6 +57458,10 @@ export declare type JiraJourneyItemCommon = {
56148
57458
  id: Scalars['ID']['output'];
56149
57459
  name?: Maybe<Scalars['String']['output']>;
56150
57460
  };
57461
+ export declare type JiraJourneyItemConfigurationInput = {
57462
+ statusDependencyConfiguration?: InputMaybe<JiraJourneyStatusDependencyConfigurationInput>;
57463
+ workItemConfiguration?: InputMaybe<JiraJourneyWorkItemConfigurationInput>;
57464
+ };
56151
57465
  export declare type JiraJourneyParentIssue = {
56152
57466
  __typename?: 'JiraJourneyParentIssue';
56153
57467
  project?: Maybe<JiraProject>;
@@ -56183,6 +57497,14 @@ export declare type JiraJourneyStatusDependency = JiraJourneyItemCommon & {
56183
57497
  statusType?: Maybe<JiraJourneyStatusDependencyType>;
56184
57498
  workItemIds?: Maybe<Array<Scalars['ID']['output']>>;
56185
57499
  };
57500
+ export declare type JiraJourneyStatusDependencyConfigurationInput = {
57501
+ statuses?: InputMaybe<Array<JiraJourneyStatusDependencyConfigurationStatusInput>>;
57502
+ workItemIds?: InputMaybe<Array<Scalars['ID']['input']>>;
57503
+ };
57504
+ export declare type JiraJourneyStatusDependencyConfigurationStatusInput = {
57505
+ id: Scalars['ID']['input'];
57506
+ type: JiraJourneyStatusDependencyType;
57507
+ };
56186
57508
  export declare enum JiraJourneyStatusDependencyType {
56187
57509
  Status = "STATUS",
56188
57510
  StatusCategory = "STATUS_CATEGORY"
@@ -56205,6 +57527,7 @@ export declare enum JiraJourneyTriggerType {
56205
57527
  }
56206
57528
  export declare type JiraJourneyWorkItem = JiraJourneyItemCommon & {
56207
57529
  __typename?: 'JiraJourneyWorkItem';
57530
+ associatedAutomationRules?: Maybe<Array<JiraJourneyBuilderAssociatedAutomationRule>>;
56208
57531
  fieldValues?: Maybe<Array<JiraJourneyWorkItemFieldValueKeyValuePair>>;
56209
57532
  id: Scalars['ID']['output'];
56210
57533
  issueType?: Maybe<JiraIssueType>;
@@ -56212,11 +57535,22 @@ export declare type JiraJourneyWorkItem = JiraJourneyItemCommon & {
56212
57535
  project?: Maybe<JiraProject>;
56213
57536
  requestType?: Maybe<JiraServiceManagementRequestType>;
56214
57537
  };
57538
+ export declare type JiraJourneyWorkItemConfigurationInput = {
57539
+ fieldValues?: InputMaybe<Array<InputMaybe<JiraJourneyWorkItemFieldValueKeyValuePairInput>>>;
57540
+ issueTypeId?: InputMaybe<Scalars['ID']['input']>;
57541
+ name?: InputMaybe<Scalars['String']['input']>;
57542
+ projectId?: InputMaybe<Scalars['ID']['input']>;
57543
+ requestTypeId?: InputMaybe<Scalars['ID']['input']>;
57544
+ };
56215
57545
  export declare type JiraJourneyWorkItemFieldValueKeyValuePair = {
56216
57546
  __typename?: 'JiraJourneyWorkItemFieldValueKeyValuePair';
56217
57547
  key?: Maybe<Scalars['String']['output']>;
56218
57548
  value?: Maybe<Array<Scalars['String']['output']>>;
56219
57549
  };
57550
+ export declare type JiraJourneyWorkItemFieldValueKeyValuePairInput = {
57551
+ key: Scalars['String']['input'];
57552
+ value: Array<InputMaybe<Scalars['String']['input']>>;
57553
+ };
56220
57554
  export declare type JiraJourneyWorkdayIntegrationTriggerConfiguration = {
56221
57555
  __typename?: 'JiraJourneyWorkdayIntegrationTriggerConfiguration';
56222
57556
  ruleId?: Maybe<Scalars['ID']['output']>;
@@ -56251,6 +57585,7 @@ export declare enum JiraJqlAutocompleteType {
56251
57585
  }
56252
57586
  export declare type JiraJqlBoardInput = {
56253
57587
  boardId: Scalars['Long']['input'];
57588
+ swimlaneStrategy?: InputMaybe<JiraBoardSwimlaneStrategy>;
56254
57589
  };
56255
57590
  export declare type JiraJqlBuilder = {
56256
57591
  __typename?: 'JiraJqlBuilder';
@@ -57316,6 +58651,7 @@ export declare type JiraMutation = {
57316
58651
  __typename?: 'JiraMutation';
57317
58652
  addFieldsToProject?: Maybe<JiraAddFieldsToProjectPayload>;
57318
58653
  addIssuesToFixVersion?: Maybe<JiraAddIssuesToFixVersionPayload>;
58654
+ addJiraJourneyWorkItemAssociatedAutomationRule?: Maybe<JiraUpdateJourneyConfigurationPayload>;
57319
58655
  addJiraVersionApprover?: Maybe<JiraVersionAddApproverPayload>;
57320
58656
  addPermissionSchemeGrants?: Maybe<JiraPermissionSchemeAddGrantPayload>;
57321
58657
  addPostIncidentReviewLink?: Maybe<JiraAddPostIncidentReviewLinkMutationPayload>;
@@ -57339,6 +58675,7 @@ export declare type JiraMutation = {
57339
58675
  createIssueLinks?: Maybe<JiraBulkCreateIssueLinksPayload>;
57340
58676
  createJiraActivityConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
57341
58677
  createJiraJourneyConfiguration?: Maybe<JiraCreateJourneyConfigurationPayload>;
58678
+ createJiraJourneyItem?: Maybe<JiraUpdateJourneyConfigurationPayload>;
57342
58679
  createJiraVersion?: Maybe<JiraUpdateVersionPayload>;
57343
58680
  createJwmFilter?: Maybe<JiraWorkManagementCreateFilterPayload>;
57344
58681
  createJwmIssue?: Maybe<JiraWorkManagementCreateIssuePayload>;
@@ -57394,6 +58731,7 @@ export declare type JiraMutation = {
57394
58731
  removeCustomField?: Maybe<JiraRemoveCustomFieldPayload>;
57395
58732
  removeIssuesFromAllFixVersions?: Maybe<JiraRemoveIssuesFromAllFixVersionsPayload>;
57396
58733
  removeIssuesFromFixVersion?: Maybe<JiraRemoveIssuesFromFixVersionPayload>;
58734
+ removeJiraJourneyWorkItemAssociatedAutomationRule?: Maybe<JiraUpdateJourneyConfigurationPayload>;
57397
58735
  removePermissionSchemeGrants?: Maybe<JiraPermissionSchemeRemoveGrantPayload>;
57398
58736
  removePostIncidentReviewLink?: Maybe<JiraRemovePostIncidentReviewLinkMutationPayload>;
57399
58737
  removeRelatedWorkFromVersion?: Maybe<JiraRemoveRelatedWorkFromVersionPayload>;
@@ -57513,6 +58851,10 @@ export declare type JiraMutationAddFieldsToProjectArgs = {
57513
58851
  export declare type JiraMutationAddIssuesToFixVersionArgs = {
57514
58852
  input: JiraAddIssuesToFixVersionInput;
57515
58853
  };
58854
+ export declare type JiraMutationAddJiraJourneyWorkItemAssociatedAutomationRuleArgs = {
58855
+ cloudId: Scalars['ID']['input'];
58856
+ input: JiraUpdateJourneyWorkItemAssociatedAutomationRuleInput;
58857
+ };
57516
58858
  export declare type JiraMutationAddJiraVersionApproverArgs = {
57517
58859
  input: JiraVersionAddApproverInput;
57518
58860
  };
@@ -57594,6 +58936,10 @@ export declare type JiraMutationCreateJiraJourneyConfigurationArgs = {
57594
58936
  cloudId: Scalars['ID']['input'];
57595
58937
  input: JiraCreateJourneyConfigurationInput;
57596
58938
  };
58939
+ export declare type JiraMutationCreateJiraJourneyItemArgs = {
58940
+ cloudId: Scalars['ID']['input'];
58941
+ input: JiraCreateJourneyItemInput;
58942
+ };
57597
58943
  export declare type JiraMutationCreateJiraVersionArgs = {
57598
58944
  input: JiraVersionCreateMutationInput;
57599
58945
  };
@@ -57769,6 +59115,10 @@ export declare type JiraMutationRemoveIssuesFromAllFixVersionsArgs = {
57769
59115
  export declare type JiraMutationRemoveIssuesFromFixVersionArgs = {
57770
59116
  input: JiraRemoveIssuesFromFixVersionInput;
57771
59117
  };
59118
+ export declare type JiraMutationRemoveJiraJourneyWorkItemAssociatedAutomationRuleArgs = {
59119
+ cloudId: Scalars['ID']['input'];
59120
+ input: JiraUpdateJourneyWorkItemAssociatedAutomationRuleInput;
59121
+ };
57772
59122
  export declare type JiraMutationRemovePermissionSchemeGrantsArgs = {
57773
59123
  input: JiraPermissionSchemeRemoveGrantInput;
57774
59124
  };
@@ -58194,6 +59544,7 @@ export declare enum JiraNavigationItemTypeKey {
58194
59544
  Calendar = "CALENDAR",
58195
59545
  Code = "CODE",
58196
59546
  Components = "COMPONENTS",
59547
+ CustomerSupport = "CUSTOMER_SUPPORT",
58197
59548
  Dependencies = "DEPENDENCIES",
58198
59549
  Deployments = "DEPLOYMENTS",
58199
59550
  Development = "DEVELOPMENT",
@@ -58243,7 +59594,8 @@ export declare enum JiraNotificationCategoryType {
58243
59594
  IssueChanges = "ISSUE_CHANGES",
58244
59595
  IssueMentioned = "ISSUE_MENTIONED",
58245
59596
  IssueMiscellaneous = "ISSUE_MISCELLANEOUS",
58246
- IssueWorklogChanges = "ISSUE_WORKLOG_CHANGES"
59597
+ IssueWorklogChanges = "ISSUE_WORKLOG_CHANGES",
59598
+ Recurring = "RECURRING"
58247
59599
  }
58248
59600
  export declare type JiraNotificationChannel = {
58249
59601
  __typename?: 'JiraNotificationChannel';
@@ -58292,6 +59644,7 @@ export declare type JiraNotificationPreferences = {
58292
59644
  commentCreated?: Maybe<JiraNotificationPreference>;
58293
59645
  commentDeleted?: Maybe<JiraNotificationPreference>;
58294
59646
  commentEdited?: Maybe<JiraNotificationPreference>;
59647
+ dailyDueDateNotification?: Maybe<JiraNotificationPreference>;
58295
59648
  issueAssigned?: Maybe<JiraNotificationPreference>;
58296
59649
  issueCreated?: Maybe<JiraNotificationPreference>;
58297
59650
  issueDeleted?: Maybe<JiraNotificationPreference>;
@@ -58318,6 +59671,7 @@ export declare enum JiraNotificationType {
58318
59671
  CommentCreated = "COMMENT_CREATED",
58319
59672
  CommentDeleted = "COMMENT_DELETED",
58320
59673
  CommentEdited = "COMMENT_EDITED",
59674
+ DailyDueDateNotification = "DAILY_DUE_DATE_NOTIFICATION",
58321
59675
  IssueAssigned = "ISSUE_ASSIGNED",
58322
59676
  IssueCreated = "ISSUE_CREATED",
58323
59677
  IssueDeleted = "ISSUE_DELETED",
@@ -58956,11 +60310,18 @@ export declare type JiraPlan = Node & {
58956
60310
  lastViewedTimestamp?: Maybe<Scalars['Long']['output']>;
58957
60311
  owner?: Maybe<User>;
58958
60312
  planId?: Maybe<Scalars['Long']['output']>;
60313
+ planScenarios?: Maybe<JiraScenarioConnection>;
58959
60314
  planStatus?: Maybe<JiraPlanStatus>;
58960
60315
  planUrl?: Maybe<Scalars['URL']['output']>;
58961
60316
  scenario?: Maybe<JiraScenario>;
58962
60317
  title?: Maybe<Scalars['String']['output']>;
58963
60318
  };
60319
+ export declare type JiraPlanPlanScenariosArgs = {
60320
+ after?: InputMaybe<Scalars['String']['input']>;
60321
+ before?: InputMaybe<Scalars['String']['input']>;
60322
+ first?: InputMaybe<Scalars['Int']['input']>;
60323
+ last?: InputMaybe<Scalars['Int']['input']>;
60324
+ };
58964
60325
  export declare type JiraPlanFeatureMutationInput = {
58965
60326
  enabled: Scalars['Boolean']['input'];
58966
60327
  planId: Scalars['ID']['input'];
@@ -59325,6 +60686,8 @@ export declare type JiraProject = Node & {
59325
60686
  opsgenieTeamsAvailableToLinkWith?: Maybe<OpsgenieTeamConnection>;
59326
60687
  projectFieldTypeGroups?: Maybe<JiraFieldTypeGroupConnection>;
59327
60688
  projectId?: Maybe<Scalars['String']['output']>;
60689
+ projectScopedFieldsCount?: Maybe<Scalars['Int']['output']>;
60690
+ projectScopedFieldsPerProjectLimit?: Maybe<Scalars['Int']['output']>;
59328
60691
  projectStyle?: Maybe<JiraProjectStyle>;
59329
60692
  projectType?: Maybe<JiraProjectType>;
59330
60693
  projectTypeName?: Maybe<Scalars['String']['output']>;
@@ -59972,10 +61335,16 @@ export declare type JiraProjectUpdateNameMutationPayload = Payload & {
59972
61335
  };
59973
61336
  export declare type JiraProjectWithIssueTypeIds = {
59974
61337
  __typename?: 'JiraProjectWithIssueTypeIds';
61338
+ aiSuggestedAvailableFields?: Maybe<JiraAvailableFieldsConnection>;
59975
61339
  allowedCustomFieldTypes?: Maybe<JiraFieldTypeConnection>;
59976
61340
  availableFields?: Maybe<JiraAvailableFieldsConnection>;
59977
61341
  fieldAssociationWithIssueTypes?: Maybe<JiraFieldAssociationWithIssueTypesConnection>;
59978
61342
  };
61343
+ export declare type JiraProjectWithIssueTypeIdsAiSuggestedAvailableFieldsArgs = {
61344
+ after?: InputMaybe<Scalars['String']['input']>;
61345
+ first?: InputMaybe<Scalars['Int']['input']>;
61346
+ input?: InputMaybe<JiraProjectAvailableFieldsInput>;
61347
+ };
59979
61348
  export declare type JiraProjectWithIssueTypeIdsAllowedCustomFieldTypesArgs = {
59980
61349
  after?: InputMaybe<Scalars['String']['input']>;
59981
61350
  first?: InputMaybe<Scalars['Int']['input']>;
@@ -61486,6 +62855,7 @@ export declare type JiraReorderBoardViewColumnInput = {
61486
62855
  columnId: Scalars['ID']['input'];
61487
62856
  position: JiraReorderBoardViewColumnPosition;
61488
62857
  relativeColumnId: Scalars['ID']['input'];
62858
+ settings?: InputMaybe<JiraBoardViewSettings>;
61489
62859
  viewId: Scalars['ID']['input'];
61490
62860
  };
61491
62861
  export declare type JiraReorderBoardViewColumnPayload = Payload & {
@@ -61814,6 +63184,17 @@ export declare type JiraScenario = Node & {
61814
63184
  scenarioUrl?: Maybe<Scalars['URL']['output']>;
61815
63185
  title?: Maybe<Scalars['String']['output']>;
61816
63186
  };
63187
+ export declare type JiraScenarioConnection = {
63188
+ __typename?: 'JiraScenarioConnection';
63189
+ edges?: Maybe<Array<Maybe<JiraScenarioEdge>>>;
63190
+ pageInfo?: Maybe<PageInfo>;
63191
+ totalCount?: Maybe<Scalars['Int']['output']>;
63192
+ };
63193
+ export declare type JiraScenarioEdge = {
63194
+ __typename?: 'JiraScenarioEdge';
63195
+ cursor: Scalars['String']['output'];
63196
+ node?: Maybe<JiraScenario>;
63197
+ };
61817
63198
  export declare type JiraScenarioIssue = JiraScenarioIssueLike & Node & {
61818
63199
  __typename?: 'JiraScenarioIssue';
61819
63200
  id: Scalars['ID']['output'];
@@ -63129,6 +64510,7 @@ export declare type JiraSetApplicationPropertyInput = {
63129
64510
  export declare type JiraSetBoardViewCardFieldSelectedInput = {
63130
64511
  fieldId: Scalars['String']['input'];
63131
64512
  selected: Scalars['Boolean']['input'];
64513
+ settings?: InputMaybe<JiraBoardViewSettings>;
63132
64514
  viewId: Scalars['ID']['input'];
63133
64515
  };
63134
64516
  export declare type JiraSetBoardViewCardFieldSelectedPayload = Payload & {
@@ -63140,6 +64522,7 @@ export declare type JiraSetBoardViewCardFieldSelectedPayload = Payload & {
63140
64522
  export declare type JiraSetBoardViewCardOptionStateInput = {
63141
64523
  enabled: Scalars['Boolean']['input'];
63142
64524
  id: Scalars['ID']['input'];
64525
+ settings?: InputMaybe<JiraBoardViewSettings>;
63143
64526
  viewId: Scalars['ID']['input'];
63144
64527
  };
63145
64528
  export declare type JiraSetBoardViewCardOptionStatePayload = Payload & {
@@ -63151,6 +64534,7 @@ export declare type JiraSetBoardViewCardOptionStatePayload = Payload & {
63151
64534
  export declare type JiraSetBoardViewColumnStateInput = {
63152
64535
  collapsed: Scalars['Boolean']['input'];
63153
64536
  columnId: Scalars['ID']['input'];
64537
+ settings?: InputMaybe<JiraBoardViewSettings>;
63154
64538
  viewId: Scalars['ID']['input'];
63155
64539
  };
63156
64540
  export declare type JiraSetBoardViewColumnStatePayload = Payload & {
@@ -63159,8 +64543,20 @@ export declare type JiraSetBoardViewColumnStatePayload = Payload & {
63159
64543
  errors?: Maybe<Array<MutationError>>;
63160
64544
  success: Scalars['Boolean']['output'];
63161
64545
  };
64546
+ export declare type JiraSetBoardViewColumnsOrderInput = {
64547
+ columnIds: Array<Scalars['ID']['input']>;
64548
+ settings?: InputMaybe<JiraBoardViewSettings>;
64549
+ viewId: Scalars['ID']['input'];
64550
+ };
64551
+ export declare type JiraSetBoardViewColumnsOrderPayload = Payload & {
64552
+ __typename?: 'JiraSetBoardViewColumnsOrderPayload';
64553
+ boardView?: Maybe<JiraBoardView>;
64554
+ errors?: Maybe<Array<MutationError>>;
64555
+ success: Scalars['Boolean']['output'];
64556
+ };
63162
64557
  export declare type JiraSetBoardViewCompletedIssueSearchCutOffInput = {
63163
64558
  completedIssueSearchCutOffInDays: Scalars['Int']['input'];
64559
+ settings?: InputMaybe<JiraBoardViewSettings>;
63164
64560
  viewId: Scalars['ID']['input'];
63165
64561
  };
63166
64562
  export declare type JiraSetBoardViewCompletedIssueSearchCutOffPayload = Payload & {
@@ -63171,6 +64567,7 @@ export declare type JiraSetBoardViewCompletedIssueSearchCutOffPayload = Payload
63171
64567
  };
63172
64568
  export declare type JiraSetBoardViewFilterInput = {
63173
64569
  jql: Scalars['String']['input'];
64570
+ settings?: InputMaybe<JiraBoardViewSettings>;
63174
64571
  viewId: Scalars['ID']['input'];
63175
64572
  };
63176
64573
  export declare type JiraSetBoardViewFilterPayload = Payload & {
@@ -63182,6 +64579,7 @@ export declare type JiraSetBoardViewFilterPayload = Payload & {
63182
64579
  };
63183
64580
  export declare type JiraSetBoardViewGroupByInput = {
63184
64581
  fieldId: Scalars['String']['input'];
64582
+ settings?: InputMaybe<JiraBoardViewSettings>;
63185
64583
  viewId: Scalars['ID']['input'];
63186
64584
  };
63187
64585
  export declare type JiraSetBoardViewGroupByPayload = Payload & {
@@ -63193,6 +64591,7 @@ export declare type JiraSetBoardViewGroupByPayload = Payload & {
63193
64591
  };
63194
64592
  export declare type JiraSetBoardViewWorkflowSelectedInput = {
63195
64593
  selectedWorkflowId: Scalars['ID']['input'];
64594
+ settings?: InputMaybe<JiraBoardViewSettings>;
63196
64595
  viewId: Scalars['ID']['input'];
63197
64596
  };
63198
64597
  export declare type JiraSetBoardViewWorkflowSelectedPayload = Payload & {
@@ -64651,6 +66050,12 @@ export declare type JiraUpdateJourneyTriggerConfigurationInput = {
64651
66050
  triggerConfiguration?: InputMaybe<JiraJourneyTriggerConfigurationInput>;
64652
66051
  version: Scalars['Long']['input'];
64653
66052
  };
66053
+ export declare type JiraUpdateJourneyWorkItemAssociatedAutomationRuleInput = {
66054
+ associatedRuleId: Scalars['ID']['input'];
66055
+ journeyId: Scalars['ID']['input'];
66056
+ journeyItemId: Scalars['ID']['input'];
66057
+ journeyVersion: Scalars['Long']['input'];
66058
+ };
64654
66059
  export declare type JiraUpdateLabelsFieldInput = {
64655
66060
  id: Scalars['ID']['input'];
64656
66061
  operations: Array<JiraLabelsFieldOperationInput>;
@@ -68019,6 +69424,18 @@ export declare type LookAndFeelSettings = {
68019
69424
  selected?: Maybe<Scalars['String']['output']>;
68020
69425
  theme?: Maybe<LookAndFeel>;
68021
69426
  };
69427
+ export declare type LoomComment = Node & {
69428
+ __typename?: 'LoomComment';
69429
+ content?: Maybe<Scalars['String']['output']>;
69430
+ createdAt?: Maybe<Scalars['String']['output']>;
69431
+ editedAt?: Maybe<Scalars['String']['output']>;
69432
+ id: Scalars['ID']['output'];
69433
+ timestamp?: Maybe<Scalars['Int']['output']>;
69434
+ url?: Maybe<Scalars['String']['output']>;
69435
+ user?: Maybe<User>;
69436
+ userId?: Maybe<Scalars['ID']['output']>;
69437
+ videoId: Scalars['ID']['output'];
69438
+ };
68022
69439
  export declare type LoomMeeting = Node & {
68023
69440
  __typename?: 'LoomMeeting';
68024
69441
  endsAt?: Maybe<Scalars['String']['output']>;
@@ -68032,6 +69449,15 @@ export declare type LoomMeeting = Node & {
68032
69449
  title: Scalars['String']['output'];
68033
69450
  video?: Maybe<LoomVideo>;
68034
69451
  };
69452
+ export declare type LoomMeetingRecurrence = Node & {
69453
+ __typename?: 'LoomMeetingRecurrence';
69454
+ id: Scalars['ID']['output'];
69455
+ meetings?: Maybe<Array<Maybe<LoomMeeting>>>;
69456
+ };
69457
+ export declare type LoomMeetingRecurrenceMeetingsArgs = {
69458
+ first?: InputMaybe<Scalars['Int']['input']>;
69459
+ meetingIds?: InputMaybe<Array<Scalars['ID']['input']>>;
69460
+ };
68035
69461
  export declare enum LoomMeetingSource {
68036
69462
  GoogleCalendar = "GOOGLE_CALENDAR",
68037
69463
  MicrosoftOutlook = "MICROSOFT_OUTLOOK",
@@ -68056,6 +69482,7 @@ export declare type LoomVideo = Node & {
68056
69482
  __typename?: 'LoomVideo';
68057
69483
  description?: Maybe<Scalars['String']['output']>;
68058
69484
  id: Scalars['ID']['output'];
69485
+ isArchived: Scalars['Boolean']['output'];
68059
69486
  name: Scalars['String']['output'];
68060
69487
  owner?: Maybe<User>;
68061
69488
  ownerId?: Maybe<Scalars['String']['output']>;
@@ -69960,6 +71387,7 @@ export declare type MarketplaceStoreHostStatusResponse = {
69960
71387
  };
69961
71388
  export declare type MarketplaceStoreInstallAppInput = {
69962
71389
  appKey: Scalars['String']['input'];
71390
+ offeringId?: InputMaybe<Scalars['String']['input']>;
69963
71391
  target: MarketplaceStoreInstallAppTargetInput;
69964
71392
  };
69965
71393
  export declare type MarketplaceStoreInstallAppResponse = {
@@ -70696,6 +72124,7 @@ export declare type MercuryFocusAreaActivityEdge = {
70696
72124
  };
70697
72125
  export declare type MercuryFocusAreaActivityHistory = Node & {
70698
72126
  __typename?: 'MercuryFocusAreaActivityHistory';
72127
+ associatedEntityAri?: Maybe<Scalars['String']['output']>;
70699
72128
  eventDate?: Maybe<Scalars['String']['output']>;
70700
72129
  eventType?: Maybe<MercuryEventType>;
70701
72130
  fields?: Maybe<Array<Maybe<MercuryUpdatedField>>>;
@@ -71291,6 +72720,14 @@ export declare type MercuryProviderOrchestrationMutationApiLinkAtlassianWorkToFo
71291
72720
  export declare type MercuryProviderOrchestrationMutationApiLinkWorkToFocusAreaArgs = {
71292
72721
  input: MercuryLinkWorkToFocusAreaInput;
71293
72722
  };
72723
+ export declare type MercuryProviderOrchestrationQueryApi = {
72724
+ __typename?: 'MercuryProviderOrchestrationQueryApi';
72725
+ isWorkspaceConnected: Array<MercuryWorkspaceConnectionStatus>;
72726
+ };
72727
+ export declare type MercuryProviderOrchestrationQueryApiIsWorkspaceConnectedArgs = {
72728
+ cloudId: Scalars['ID']['input'];
72729
+ workspaceAris: Array<Scalars['String']['input']>;
72730
+ };
71294
72731
  export declare type MercuryProviderUser = {
71295
72732
  id: Scalars['ID']['output'];
71296
72733
  name?: Maybe<Scalars['String']['output']>;
@@ -71376,8 +72813,6 @@ export declare type MercuryQueryApi = {
71376
72813
  myPreference?: Maybe<MercuryPreference>;
71377
72814
  myPreferences?: Maybe<Array<MercuryPreference>>;
71378
72815
  portfoliosByAris?: Maybe<Array<MercuryPortfolio>>;
71379
- providerWork?: Maybe<MercuryProviderWork>;
71380
- providerWorksByAris?: Maybe<Array<MercuryProviderWork>>;
71381
72816
  team?: Maybe<MercuryTeam>;
71382
72817
  teams?: Maybe<MercuryTeamConnection>;
71383
72818
  workspaceContext: MercuryWorkspaceContext;
@@ -71476,13 +72911,6 @@ export declare type MercuryQueryApiMyPreferencesArgs = {
71476
72911
  export declare type MercuryQueryApiPortfoliosByArisArgs = {
71477
72912
  aris?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
71478
72913
  };
71479
- export declare type MercuryQueryApiProviderWorkArgs = {
71480
- cloudId: Scalars['ID']['input'];
71481
- id: Scalars['ID']['input'];
71482
- };
71483
- export declare type MercuryQueryApiProviderWorksByArisArgs = {
71484
- aris?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
71485
- };
71486
72914
  export declare type MercuryQueryApiTeamArgs = {
71487
72915
  cloudId: Scalars['ID']['input'];
71488
72916
  id: Scalars['ID']['input'];
@@ -71685,6 +73113,11 @@ export declare type MercuryUserEdge = {
71685
73113
  node?: Maybe<User>;
71686
73114
  };
71687
73115
  export declare type MercuryWorkResult = MercuryProviderWork | MercuryProviderWorkError;
73116
+ export declare type MercuryWorkspaceConnectionStatus = {
73117
+ __typename?: 'MercuryWorkspaceConnectionStatus';
73118
+ isConnected: Scalars['Boolean']['output'];
73119
+ workspaceAri: Scalars['String']['output'];
73120
+ };
71688
73121
  export declare type MercuryWorkspaceContext = {
71689
73122
  __typename?: 'MercuryWorkspaceContext';
71690
73123
  activationId: Scalars['String']['output'];
@@ -71916,6 +73349,10 @@ export declare type Mutation = {
71916
73349
  addLabels?: Maybe<AddLabelsPayload>;
71917
73350
  addPublicLinkPermissions?: Maybe<AddPublicLinkPermissionsPayload>;
71918
73351
  addReaction?: Maybe<SaveReactionResponse>;
73352
+ agentStudio_createAgent?: Maybe<AgentStudioCreateAgentPayload>;
73353
+ agentStudio_updateAgentActions?: Maybe<AgentStudioUpdateAgentActionsPayload>;
73354
+ agentStudio_updateAgentDetails?: Maybe<AgentStudioUpdateAgentDetailsPayload>;
73355
+ agentStudio_updateConversationStarters?: Maybe<AgentStudioUpdateConversationStartersPayload>;
71919
73356
  appRecommendations?: Maybe<AppRecMutation>;
71920
73357
  appStorage?: Maybe<AppStorageMutation>;
71921
73358
  appStorageCustomEntity?: Maybe<AppStorageCustomEntityMutation>;
@@ -72208,6 +73645,7 @@ export declare type Mutation = {
72208
73645
  devai_continueJobWithPrompt?: Maybe<DevAiAutodevContinueJobWithPromptPayload>;
72209
73646
  devai_createTechnicalPlannerJob?: Maybe<DevAiCreateTechnicalPlannerJobPayload>;
72210
73647
  devai_invokeAutodevRovoAgent?: Maybe<DevAiInvokeAutodevRovoAgentPayload>;
73648
+ devai_invokeAutodevRovoAgentInBulk?: Maybe<DevAiInvokeAutodevRovoAgentInBulkPayload>;
72211
73649
  disableExperiment?: Maybe<TapExperiment>;
72212
73650
  disablePublicLinkForPage?: Maybe<DisablePublicLinkForPagePayload>;
72213
73651
  disablePublicLinkForSite?: Maybe<PublicLinkSitePayload>;
@@ -72241,6 +73679,7 @@ export declare type Mutation = {
72241
73679
  jira?: Maybe<JiraMutation>;
72242
73680
  jiraCannedResponse?: Maybe<JiraCannedResponseMutationApi>;
72243
73681
  jiraOAuthApps?: Maybe<JiraOAuthAppsMutation>;
73682
+ jira_bulkSetBoardViewColumnState?: Maybe<JiraBulkSetBoardViewColumnStatePayload>;
72244
73683
  jira_createCustomBackground?: Maybe<JiraProjectCreateCustomBackgroundMutationPayload>;
72245
73684
  jira_deleteCustomBackground?: Maybe<JiraProjectDeleteCustomBackgroundMutationPayload>;
72246
73685
  jira_discardUserBoardViewConfig?: Maybe<JiraDiscardUserBoardViewConfigPayload>;
@@ -72249,6 +73688,7 @@ export declare type Mutation = {
72249
73688
  jira_setBoardViewCardFieldSelected?: Maybe<JiraSetBoardViewCardFieldSelectedPayload>;
72250
73689
  jira_setBoardViewCardOptionState?: Maybe<JiraSetBoardViewCardOptionStatePayload>;
72251
73690
  jira_setBoardViewColumnState?: Maybe<JiraSetBoardViewColumnStatePayload>;
73691
+ jira_setBoardViewColumnsOrder?: Maybe<JiraSetBoardViewColumnsOrderPayload>;
72252
73692
  jira_setBoardViewCompletedIssueSearchCutOff?: Maybe<JiraSetBoardViewCompletedIssueSearchCutOffPayload>;
72253
73693
  jira_setBoardViewFilter?: Maybe<JiraSetBoardViewFilterPayload>;
72254
73694
  jira_setBoardViewGroupBy?: Maybe<JiraSetBoardViewGroupByPayload>;
@@ -72466,6 +73906,22 @@ export declare type MutationAddReactionArgs = {
72466
73906
  contentType: GraphQlReactionContentType;
72467
73907
  emojiId: Scalars['String']['input'];
72468
73908
  };
73909
+ export declare type MutationAgentStudio_CreateAgentArgs = {
73910
+ cloudId: Scalars['String']['input'];
73911
+ input: AgentStudioCreateAgentInput;
73912
+ };
73913
+ export declare type MutationAgentStudio_UpdateAgentActionsArgs = {
73914
+ id: Scalars['ID']['input'];
73915
+ input: AgentStudioActionConfigurationInput;
73916
+ };
73917
+ export declare type MutationAgentStudio_UpdateAgentDetailsArgs = {
73918
+ id: Scalars['ID']['input'];
73919
+ input: AgentStudioUpdateAgentDetailsInput;
73920
+ };
73921
+ export declare type MutationAgentStudio_UpdateConversationStartersArgs = {
73922
+ id: Scalars['ID']['input'];
73923
+ input: AgentStudioUpdateConversationStartersInput;
73924
+ };
72469
73925
  export declare type MutationApplyPolarisProjectTemplateArgs = {
72470
73926
  input: ApplyPolarisProjectTemplateInput;
72471
73927
  };
@@ -73392,6 +74848,10 @@ export declare type MutationDevai_InvokeAutodevRovoAgentArgs = {
73392
74848
  agentId: Scalars['ID']['input'];
73393
74849
  issueId: Scalars['ID']['input'];
73394
74850
  };
74851
+ export declare type MutationDevai_InvokeAutodevRovoAgentInBulkArgs = {
74852
+ agentId: Scalars['ID']['input'];
74853
+ issueIds: Array<Scalars['ID']['input']>;
74854
+ };
73395
74855
  export declare type MutationDisableExperimentArgs = {
73396
74856
  experimentKey: Scalars['String']['input'];
73397
74857
  };
@@ -73459,6 +74919,9 @@ export declare type MutationInvokeExtensionArgs = {
73459
74919
  export declare type MutationInvokePolarisObjectArgs = {
73460
74920
  input: InvokePolarisObjectInput;
73461
74921
  };
74922
+ export declare type MutationJira_BulkSetBoardViewColumnStateArgs = {
74923
+ input: JiraBulkSetBoardViewColumnStateInput;
74924
+ };
73462
74925
  export declare type MutationJira_CreateCustomBackgroundArgs = {
73463
74926
  input: JiraCreateCustomBackgroundInput;
73464
74927
  };
@@ -73483,6 +74946,9 @@ export declare type MutationJira_SetBoardViewCardOptionStateArgs = {
73483
74946
  export declare type MutationJira_SetBoardViewColumnStateArgs = {
73484
74947
  input: JiraSetBoardViewColumnStateInput;
73485
74948
  };
74949
+ export declare type MutationJira_SetBoardViewColumnsOrderArgs = {
74950
+ input: JiraSetBoardViewColumnsOrderInput;
74951
+ };
73486
74952
  export declare type MutationJira_SetBoardViewCompletedIssueSearchCutOffArgs = {
73487
74953
  input: JiraSetBoardViewCompletedIssueSearchCutOffInput;
73488
74954
  };
@@ -76661,6 +78127,8 @@ export declare type Query = {
76661
78127
  agentAI_contextPanel?: Maybe<AgentAiContextPanelResult>;
76662
78128
  agentAI_summarizeIssue?: Maybe<AgentAiIssueSummaryResult>;
76663
78129
  agentStudio_agentById?: Maybe<AgentStudioAgentResult>;
78130
+ agentStudio_suggestConversationStarters?: Maybe<AgentStudioSuggestConversationStartersResult>;
78131
+ aiCoreApi_vsaReportingByProject?: Maybe<AiCoreApiVsaReportingResult>;
76664
78132
  allIndividualSpaces?: Maybe<SpaceInfoConnection>;
76665
78133
  allTemplates?: Maybe<PaginatedTemplateInfoList>;
76666
78134
  allUpdatesFeed?: Maybe<PaginatedAllUpdatesFeed>;
@@ -76930,6 +78398,7 @@ export declare type Query = {
76930
78398
  confluence_atlassianUser?: Maybe<AtlassianUser>;
76931
78399
  confluence_calendarPreference?: Maybe<ConfluenceCalendarPreference>;
76932
78400
  confluence_calendarTimezones?: Maybe<ConfluenceCalendarTimezones>;
78401
+ confluence_externalCollaboratorsByCriteria?: Maybe<ConfluencePersonConnection>;
76933
78402
  confluence_mutationsPlaceholderQuery?: Maybe<Scalars['Boolean']['output']>;
76934
78403
  confluence_refreshMigrationMediaSession?: Maybe<ContentMediaSession>;
76935
78404
  confluence_search?: Maybe<ConfluenceSearchConnection>;
@@ -76943,9 +78412,6 @@ export declare type Query = {
76943
78412
  confluence_tenantContext?: Maybe<ConfluenceTenantContext>;
76944
78413
  confluence_userContentAccess?: Maybe<ConfluenceUserContentAccessResult>;
76945
78414
  confluence_validateCalendarJql?: Maybe<ConfluenceCalendarJqlValidationResult>;
76946
- confluence_workflow?: Maybe<ConfluenceWorkflow>;
76947
- confluence_workflowApplicationsByContentId?: Maybe<ConfluenceWorkflowApplicationConnection>;
76948
- confluence_workflowsAll?: Maybe<ConfluenceWorkflowConnection>;
76949
78415
  connectedData?: Maybe<ConnectedDataQuery>;
76950
78416
  connectionManager_connectionsByJiraProject?: Maybe<ConnectionManagerConnectionsByJiraProjectResult>;
76951
78417
  contactAdminPageConfig?: Maybe<ContactAdminPageConfig>;
@@ -77044,6 +78510,7 @@ export declare type Query = {
77044
78510
  externalContentMediaSession?: Maybe<ContentMediaSession>;
77045
78511
  external_entities?: Maybe<ExternalEntities>;
77046
78512
  external_entitiesV2?: Maybe<ExternalEntities>;
78513
+ external_entitiesV2ForHydration?: Maybe<ExternalEntitiesV2ForHydration>;
77047
78514
  favoriteContent?: Maybe<PaginatedContentList>;
77048
78515
  featureDiscovery?: Maybe<Array<Maybe<DiscoveredFeature>>>;
77049
78516
  feed?: Maybe<PaginatedFeed>;
@@ -77128,7 +78595,11 @@ export declare type Query = {
77128
78595
  lookAndFeel?: Maybe<LookAndFeelSettings>;
77129
78596
  loomToken?: Maybe<LoomToken>;
77130
78597
  loomUserStatus?: Maybe<LoomUserStatus>;
78598
+ loom_comment?: Maybe<LoomComment>;
78599
+ loom_comments?: Maybe<Array<Maybe<LoomComment>>>;
77131
78600
  loom_meeting?: Maybe<LoomMeeting>;
78601
+ loom_meetingRecurrence?: Maybe<LoomMeetingRecurrence>;
78602
+ loom_meetingRecurrences?: Maybe<Array<Maybe<LoomMeetingRecurrence>>>;
77132
78603
  loom_meetings?: Maybe<Array<Maybe<LoomMeeting>>>;
77133
78604
  loom_space?: Maybe<LoomSpace>;
77134
78605
  loom_spaces?: Maybe<Array<Maybe<LoomSpace>>>;
@@ -77147,6 +78618,7 @@ export declare type Query = {
77147
78618
  marketplaceStore: MarketplaceStoreQueryApi;
77148
78619
  me: AuthenticationContext;
77149
78620
  mercury?: Maybe<MercuryQueryApi>;
78621
+ mercury_providerOrchestration?: Maybe<MercuryProviderOrchestrationQueryApi>;
77150
78622
  migration: MigrationQuery;
77151
78623
  migrationCatalogue: MigrationCatalogueQuery;
77152
78624
  migrationMediaSession?: Maybe<ContentMediaSession>;
@@ -77345,6 +78817,13 @@ export declare type QueryAgentAi_SummarizeIssueArgs = {
77345
78817
  export declare type QueryAgentStudio_AgentByIdArgs = {
77346
78818
  id: Scalars['ID']['input'];
77347
78819
  };
78820
+ export declare type QueryAgentStudio_SuggestConversationStartersArgs = {
78821
+ cloudId: Scalars['String']['input'];
78822
+ input: AgentStudioSuggestConversationStartersInput;
78823
+ };
78824
+ export declare type QueryAiCoreApi_VsaReportingByProjectArgs = {
78825
+ projectAri: Scalars['ID']['input'];
78826
+ };
77348
78827
  export declare type QueryAllIndividualSpacesArgs = {
77349
78828
  after?: InputMaybe<Scalars['String']['input']>;
77350
78829
  first?: InputMaybe<Scalars['Int']['input']>;
@@ -78510,6 +79989,18 @@ export declare type QueryConfluence_CalendarPreferenceArgs = {
78510
79989
  export declare type QueryConfluence_CalendarTimezonesArgs = {
78511
79990
  cloudId: Scalars['ID']['input'];
78512
79991
  };
79992
+ export declare type QueryConfluence_ExternalCollaboratorsByCriteriaArgs = {
79993
+ after?: InputMaybe<Scalars['String']['input']>;
79994
+ cloudId?: InputMaybe<Scalars['ID']['input']>;
79995
+ email?: InputMaybe<Scalars['String']['input']>;
79996
+ first?: InputMaybe<Scalars['Int']['input']>;
79997
+ groupIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
79998
+ name?: InputMaybe<Scalars['String']['input']>;
79999
+ offset?: InputMaybe<Scalars['Int']['input']>;
80000
+ sorts?: InputMaybe<Array<InputMaybe<ExternalCollaboratorsSortType>>>;
80001
+ spaceAssignmentType?: InputMaybe<SpaceAssignmentType>;
80002
+ spaceIds?: InputMaybe<Array<InputMaybe<Scalars['Long']['input']>>>;
80003
+ };
78513
80004
  export declare type QueryConfluence_RefreshMigrationMediaSessionArgs = {
78514
80005
  cloudId: Scalars['ID']['input'];
78515
80006
  migrationId: Scalars['String']['input'];
@@ -78517,7 +80008,7 @@ export declare type QueryConfluence_RefreshMigrationMediaSessionArgs = {
78517
80008
  export declare type QueryConfluence_SearchArgs = {
78518
80009
  after?: InputMaybe<Scalars['String']['input']>;
78519
80010
  before?: InputMaybe<Scalars['String']['input']>;
78520
- cloudId: Scalars['ID']['input'];
80011
+ cloudId?: InputMaybe<Scalars['ID']['input']>;
78521
80012
  cql: Scalars['String']['input'];
78522
80013
  cqlcontext?: InputMaybe<Scalars['String']['input']>;
78523
80014
  disableArchivedSpaceFallback?: InputMaybe<Scalars['Boolean']['input']>;
@@ -78535,14 +80026,14 @@ export declare type QueryConfluence_SearchTeamLabelsArgs = {
78535
80026
  };
78536
80027
  export declare type QueryConfluence_SearchUserArgs = {
78537
80028
  after?: InputMaybe<Scalars['String']['input']>;
78538
- cloudId: Scalars['ID']['input'];
80029
+ cloudId?: InputMaybe<Scalars['ID']['input']>;
78539
80030
  cql: Scalars['String']['input'];
78540
80031
  first?: InputMaybe<Scalars['Int']['input']>;
78541
80032
  offset?: InputMaybe<Scalars['Int']['input']>;
78542
80033
  sitePermissionTypeFilter?: InputMaybe<Scalars['String']['input']>;
78543
80034
  };
78544
80035
  export declare type QueryConfluence_StorageArgs = {
78545
- cloudId: Scalars['ID']['input'];
80036
+ cloudId?: InputMaybe<Scalars['ID']['input']>;
78546
80037
  };
78547
80038
  export declare type QueryConfluence_SubCalendarSubscribersCountArgs = {
78548
80039
  cloudId: Scalars['ID']['input'];
@@ -78557,11 +80048,11 @@ export declare type QueryConfluence_TeamPresenceSpaceSettingsArgs = {
78557
80048
  spaceId: Scalars['Long']['input'];
78558
80049
  };
78559
80050
  export declare type QueryConfluence_TemplateArgs = {
78560
- cloudId: Scalars['ID']['input'];
80051
+ cloudId?: InputMaybe<Scalars['ID']['input']>;
78561
80052
  contentTemplateId: Scalars['String']['input'];
78562
80053
  };
78563
80054
  export declare type QueryConfluence_TenantContextArgs = {
78564
- cloudId: Scalars['ID']['input'];
80055
+ cloudId?: InputMaybe<Scalars['ID']['input']>;
78565
80056
  };
78566
80057
  export declare type QueryConfluence_UserContentAccessArgs = {
78567
80058
  accessType: ResourceAccessType;
@@ -78574,19 +80065,6 @@ export declare type QueryConfluence_ValidateCalendarJqlArgs = {
78574
80065
  cloudId: Scalars['ID']['input'];
78575
80066
  jql: Scalars['String']['input'];
78576
80067
  };
78577
- export declare type QueryConfluence_WorkflowArgs = {
78578
- id: Scalars['ID']['input'];
78579
- };
78580
- export declare type QueryConfluence_WorkflowApplicationsByContentIdArgs = {
78581
- after?: InputMaybe<Scalars['String']['input']>;
78582
- contentId: Scalars['ID']['input'];
78583
- first?: InputMaybe<Scalars['Int']['input']>;
78584
- };
78585
- export declare type QueryConfluence_WorkflowsAllArgs = {
78586
- after?: InputMaybe<Scalars['String']['input']>;
78587
- cloudId: Scalars['ID']['input'];
78588
- first?: InputMaybe<Scalars['Int']['input']>;
78589
- };
78590
80068
  export declare type QueryConnectionManager_ConnectionsByJiraProjectArgs = {
78591
80069
  filter?: InputMaybe<ConnectionManagerConnectionsFilter>;
78592
80070
  jiraProjectARI?: InputMaybe<Scalars['String']['input']>;
@@ -78932,6 +80410,8 @@ export declare type QueryDevai_TechnicalPlannerJobByIdArgs = {
78932
80410
  jobId: Scalars['ID']['input'];
78933
80411
  };
78934
80412
  export declare type QueryDevai_TechnicalPlannerJobsForIssueArgs = {
80413
+ after?: InputMaybe<Scalars['String']['input']>;
80414
+ first?: InputMaybe<Scalars['Int']['input']>;
78935
80415
  issueAri: Scalars['ID']['input'];
78936
80416
  };
78937
80417
  export declare type QueryDeveloperLogAccessArgs = {
@@ -79249,9 +80729,21 @@ export declare type QueryLabelSearchArgs = {
79249
80729
  export declare type QueryLookAndFeelArgs = {
79250
80730
  spaceKey?: InputMaybe<Scalars['String']['input']>;
79251
80731
  };
80732
+ export declare type QueryLoom_CommentArgs = {
80733
+ id: Scalars['ID']['input'];
80734
+ };
80735
+ export declare type QueryLoom_CommentsArgs = {
80736
+ ids: Array<Scalars['ID']['input']>;
80737
+ };
79252
80738
  export declare type QueryLoom_MeetingArgs = {
79253
80739
  id: Scalars['ID']['input'];
79254
80740
  };
80741
+ export declare type QueryLoom_MeetingRecurrenceArgs = {
80742
+ id: Scalars['ID']['input'];
80743
+ };
80744
+ export declare type QueryLoom_MeetingRecurrencesArgs = {
80745
+ ids: Array<Scalars['ID']['input']>;
80746
+ };
79255
80747
  export declare type QueryLoom_MeetingsArgs = {
79256
80748
  ids: Array<Scalars['ID']['input']>;
79257
80749
  };
@@ -79676,6 +81168,9 @@ export declare type QuerySitePermissionsArgs = {
79676
81168
  operations?: InputMaybe<Array<InputMaybe<SitePermissionOperationType>>>;
79677
81169
  permissionTypes?: InputMaybe<Array<InputMaybe<SitePermissionType>>>;
79678
81170
  };
81171
+ export declare type QuerySiteSettingsArgs = {
81172
+ cloudId?: InputMaybe<Scalars['ID']['input']>;
81173
+ };
79679
81174
  export declare type QuerySnippetsArgs = {
79680
81175
  accountId: Scalars['String']['input'];
79681
81176
  after?: InputMaybe<Scalars['String']['input']>;
@@ -79757,6 +81252,7 @@ export declare type QuerySpacesArgs = {
79757
81252
  assignedToGroupId?: InputMaybe<Scalars['String']['input']>;
79758
81253
  assignedToGroupName?: InputMaybe<Scalars['String']['input']>;
79759
81254
  assignedToUser?: InputMaybe<Scalars['String']['input']>;
81255
+ cloudId?: InputMaybe<Scalars['ID']['input']>;
79760
81256
  creatorAccountIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
79761
81257
  excludeTypes?: InputMaybe<Scalars['String']['input']>;
79762
81258
  favourite?: InputMaybe<Scalars['Boolean']['input']>;
@@ -79903,6 +81399,9 @@ export declare type QueryTownsquareUnsharded_AllWorkspaceSummariesForOrgArgs = {
79903
81399
  export declare type QueryUserArgs = {
79904
81400
  accountId: Scalars['ID']['input'];
79905
81401
  };
81402
+ export declare type QueryUserAccessStatusArgs = {
81403
+ cloudId?: InputMaybe<Scalars['ID']['input']>;
81404
+ };
79906
81405
  export declare type QueryUserGroupSearchArgs = {
79907
81406
  maxResults?: InputMaybe<Scalars['Int']['input']>;
79908
81407
  query?: InputMaybe<Scalars['String']['input']>;
@@ -80419,6 +81918,7 @@ export declare type RawStatus = {
80419
81918
  export declare type ReactedUsersResponse = {
80420
81919
  __typename?: 'ReactedUsersResponse';
80421
81920
  ari: Scalars['String']['output'];
81921
+ confluencePerson: Array<Maybe<ConfluencePerson>>;
80422
81922
  containerAri: Scalars['String']['output'];
80423
81923
  count: Scalars['Int']['output'];
80424
81924
  emojiId: Scalars['String']['output'];
@@ -81595,6 +83095,7 @@ export declare type ScheduledPublishSummary = {
81595
83095
  export declare type ScheduledRestriction = {
81596
83096
  __typename?: 'ScheduledRestriction';
81597
83097
  group?: Maybe<PaginatedGroupList>;
83098
+ personConnection?: Maybe<ConfluencePersonConnection>;
81598
83099
  };
81599
83100
  export declare type ScheduledRestrictions = {
81600
83101
  __typename?: 'ScheduledRestrictions';
@@ -82123,9 +83624,8 @@ export declare type SearchExperimentContextInput = {
82123
83624
  experimentLayers?: InputMaybe<Array<InputMaybe<SearchExperimentLayer>>>;
82124
83625
  };
82125
83626
  export declare type SearchExperimentLayer = {
82126
- layerId?: InputMaybe<Scalars['String']['input']>;
83627
+ definitions?: InputMaybe<Array<InputMaybe<SearchLayerDefinition>>>;
82127
83628
  name?: InputMaybe<Scalars['String']['input']>;
82128
- shadowId?: InputMaybe<Scalars['String']['input']>;
82129
83629
  };
82130
83630
  export declare type SearchExternalContainerFilter = {
82131
83631
  type: Scalars['String']['input'];
@@ -82181,6 +83681,7 @@ export declare enum SearchIssueStatusCategory {
82181
83681
  export declare type SearchItemConnection = {
82182
83682
  __typename?: 'SearchItemConnection';
82183
83683
  abTest?: Maybe<SearchAbTest>;
83684
+ deferredEdges?: Maybe<Array<SearchResultItemEdge>>;
82184
83685
  edges: Array<SearchResultItemEdge>;
82185
83686
  interleaverScrapingResult?: Maybe<SearchInterleaverScrapingResult>;
82186
83687
  pageInfo: PageInfo;
@@ -82195,10 +83696,12 @@ export declare type SearchJiraFilter = {
82195
83696
  };
82196
83697
  export declare type SearchJiraIssueFilter = {
82197
83698
  assigneeARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
83699
+ commenterARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
82198
83700
  issueTypeIDs?: InputMaybe<Array<Scalars['ID']['input']>>;
82199
83701
  projectARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
82200
83702
  reporterARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
82201
83703
  statusCategories?: InputMaybe<Array<SearchIssueStatusCategory>>;
83704
+ watcherARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
82202
83705
  };
82203
83706
  export declare type SearchJiraProjectFilter = {
82204
83707
  projectTypes?: InputMaybe<Array<SearchProjectType>>;
@@ -82211,6 +83714,12 @@ export declare type SearchL2Feature = {
82211
83714
  export declare type SearchL2FeatureProvider = {
82212
83715
  l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
82213
83716
  };
83717
+ export declare type SearchLayerDefinition = {
83718
+ entity?: InputMaybe<Scalars['String']['input']>;
83719
+ layerId?: InputMaybe<Scalars['String']['input']>;
83720
+ shadowId?: InputMaybe<Scalars['String']['input']>;
83721
+ subEntity?: InputMaybe<Scalars['String']['input']>;
83722
+ };
82214
83723
  export declare type SearchMercuryFilter = {
82215
83724
  focusAreaTypeIds?: InputMaybe<Array<Scalars['String']['input']>>;
82216
83725
  owners?: InputMaybe<Array<Scalars['String']['input']>>;
@@ -82287,6 +83796,18 @@ export declare type SearchResultAtlasGoal = SearchResult & {
82287
83796
  type: SearchResultType;
82288
83797
  url: Scalars['URL']['output'];
82289
83798
  };
83799
+ export declare type SearchResultAtlasGoalUpdate = SearchResult & {
83800
+ __typename?: 'SearchResultAtlasGoalUpdate';
83801
+ description: Scalars['String']['output'];
83802
+ iconUrl?: Maybe<Scalars['URL']['output']>;
83803
+ id: Scalars['ID']['output'];
83804
+ lastModifiedDate?: Maybe<Scalars['String']['output']>;
83805
+ score?: Maybe<Scalars['Float']['output']>;
83806
+ scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
83807
+ title: Scalars['String']['output'];
83808
+ type: SearchResultType;
83809
+ url: Scalars['URL']['output'];
83810
+ };
82290
83811
  export declare type SearchResultAtlasProject = SearchResult & {
82291
83812
  __typename?: 'SearchResultAtlasProject';
82292
83813
  description: Scalars['String']['output'];
@@ -82299,6 +83820,18 @@ export declare type SearchResultAtlasProject = SearchResult & {
82299
83820
  type: SearchResultType;
82300
83821
  url: Scalars['URL']['output'];
82301
83822
  };
83823
+ export declare type SearchResultAtlasProjectUpdate = SearchResult & {
83824
+ __typename?: 'SearchResultAtlasProjectUpdate';
83825
+ description: Scalars['String']['output'];
83826
+ iconUrl?: Maybe<Scalars['URL']['output']>;
83827
+ id: Scalars['ID']['output'];
83828
+ lastModifiedDate?: Maybe<Scalars['String']['output']>;
83829
+ score?: Maybe<Scalars['Float']['output']>;
83830
+ scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
83831
+ title: Scalars['String']['output'];
83832
+ type: SearchResultType;
83833
+ url: Scalars['URL']['output'];
83834
+ };
82302
83835
  export declare type SearchResultBitbucketRepository = SearchResult & {
82303
83836
  __typename?: 'SearchResultBitbucketRepository';
82304
83837
  description: Scalars['String']['output'];
@@ -82626,6 +84159,7 @@ export declare enum SearchResultType {
82626
84159
  FocusAreaStatusUpdate = "focus_area_status_update",
82627
84160
  Folder = "folder",
82628
84161
  Goal = "goal",
84162
+ GoalUpdate = "goal_update",
82629
84163
  Issue = "issue",
82630
84164
  Learning = "learning",
82631
84165
  Message = "message",
@@ -82633,6 +84167,7 @@ export declare enum SearchResultType {
82633
84167
  Plan = "plan",
82634
84168
  Presentation = "presentation",
82635
84169
  Project = "project",
84170
+ ProjectUpdate = "project_update",
82636
84171
  Question = "question",
82637
84172
  Repository = "repository",
82638
84173
  Space = "space",
@@ -84507,6 +86042,7 @@ export declare type SitePermission = {
84507
86042
  anonymous?: Maybe<Anonymous>;
84508
86043
  anonymousAccessDSPBlocked: Scalars['Boolean']['output'];
84509
86044
  groups?: Maybe<PaginatedGroupWithPermissions>;
86045
+ personConnection?: Maybe<ConfluencePersonWithPermissionsConnection>;
84510
86046
  unlicensedUserWithPermissions?: Maybe<UnlicensedUserWithPermissions>;
84511
86047
  };
84512
86048
  export declare type SitePermissionGroupsArgs = {
@@ -84514,6 +86050,11 @@ export declare type SitePermissionGroupsArgs = {
84514
86050
  filterText?: InputMaybe<Scalars['String']['input']>;
84515
86051
  first?: InputMaybe<Scalars['Int']['input']>;
84516
86052
  };
86053
+ export declare type SitePermissionPersonConnectionArgs = {
86054
+ after?: InputMaybe<Scalars['String']['input']>;
86055
+ filterText?: InputMaybe<Scalars['String']['input']>;
86056
+ first?: InputMaybe<Scalars['Int']['input']>;
86057
+ };
84517
86058
  export declare type SitePermissionInput = {
84518
86059
  permissionsToAdd?: InputMaybe<UpdateSitePermissionInput>;
84519
86060
  permissionsToRemove?: InputMaybe<UpdateSitePermissionInput>;
@@ -85058,6 +86599,10 @@ export declare type SpaceSpaceAdminsArgs = {
85058
86599
  first?: InputMaybe<Scalars['Int']['input']>;
85059
86600
  offset?: InputMaybe<Scalars['Int']['input']>;
85060
86601
  };
86602
+ export declare enum SpaceAssignmentType {
86603
+ Assigned = "ASSIGNED",
86604
+ Unassigned = "UNASSIGNED"
86605
+ }
85061
86606
  export declare type SpaceDescriptions = {
85062
86607
  __typename?: 'SpaceDescriptions';
85063
86608
  atlas_doc_format?: Maybe<FormattedBody>;
@@ -85188,6 +86733,8 @@ export declare type SpaceManagerRecordPageInfo = {
85188
86733
  export declare type SpaceMetadata = {
85189
86734
  __typename?: 'SpaceMetadata';
85190
86735
  labels?: Maybe<PaginatedLabelList>;
86736
+ recentCommenterConnection?: Maybe<ConfluencePersonConnection>;
86737
+ recentWatcherConnection?: Maybe<ConfluencePersonConnection>;
85191
86738
  totalCommenters: Scalars['Long']['output'];
85192
86739
  totalCurrentBlogPosts: Scalars['Long']['output'];
85193
86740
  totalCurrentPages: Scalars['Long']['output'];
@@ -85698,6 +87245,7 @@ export declare type SubjectsByType = {
85698
87245
  group?: Maybe<PaginatedGroupList>;
85699
87246
  groupWithRestrictions?: Maybe<PaginatedGroupWithRestrictions>;
85700
87247
  links?: Maybe<LinksContextBase>;
87248
+ personConnection?: Maybe<ConfluencePersonConnection>;
85701
87249
  userWithRestrictions?: Maybe<PaginatedUserWithRestrictions>;
85702
87250
  };
85703
87251
  export declare type SubjectsByTypeGroupArgs = {
@@ -85708,6 +87256,10 @@ export declare type SubjectsByTypeGroupWithRestrictionsArgs = {
85708
87256
  limit?: InputMaybe<Scalars['Int']['input']>;
85709
87257
  start?: InputMaybe<Scalars['Int']['input']>;
85710
87258
  };
87259
+ export declare type SubjectsByTypePersonConnectionArgs = {
87260
+ limit?: InputMaybe<Scalars['Int']['input']>;
87261
+ start?: InputMaybe<Scalars['Int']['input']>;
87262
+ };
85711
87263
  export declare type SubjectsByTypeUserWithRestrictionsArgs = {
85712
87264
  limit?: InputMaybe<Scalars['Int']['input']>;
85713
87265
  start?: InputMaybe<Scalars['Int']['input']>;
@@ -86223,6 +87775,13 @@ export declare enum SystemSpaceHomepageTemplate {
86223
87775
  Minimal = "MINIMAL",
86224
87776
  Visual = "VISUAL"
86225
87777
  }
87778
+ export declare type SystemUser = {
87779
+ __typename?: 'SystemUser';
87780
+ accountId: Scalars['ID']['output'];
87781
+ avatarUrl?: Maybe<Scalars['String']['output']>;
87782
+ isMentionable?: Maybe<Scalars['Boolean']['output']>;
87783
+ nickName?: Maybe<Scalars['String']['output']>;
87784
+ };
86226
87785
  export declare type TapExperiment = {
86227
87786
  __typename?: 'TapExperiment';
86228
87787
  experimentKey: Scalars['String']['output'];
@@ -87104,6 +88663,17 @@ export declare type TownsquareCreateGoalPayload = {
87104
88663
  __typename?: 'TownsquareCreateGoalPayload';
87105
88664
  goal?: Maybe<TownsquareGoal>;
87106
88665
  };
88666
+ export declare type TownsquareCreateGoalTypeInput = {
88667
+ containerId: Scalars['String']['input'];
88668
+ description?: InputMaybe<Scalars['String']['input']>;
88669
+ iconKey?: InputMaybe<TownsquareGoalIconKey>;
88670
+ name: Scalars['String']['input'];
88671
+ state?: InputMaybe<TownsquareGoalTypeState>;
88672
+ };
88673
+ export declare type TownsquareCreateGoalTypePayload = {
88674
+ __typename?: 'TownsquareCreateGoalTypePayload';
88675
+ goalTypeEdge?: Maybe<TownsquareGoalTypeEdge>;
88676
+ };
87107
88677
  export declare type TownsquareCreateRelationshipsInput = {
87108
88678
  relationships: Array<TownsquareRelationshipInput>;
87109
88679
  };
@@ -87146,7 +88716,10 @@ export declare type TownsquareEditGoalPayload = {
87146
88716
  goal?: Maybe<TownsquareGoal>;
87147
88717
  };
87148
88718
  export declare type TownsquareEditGoalTypeInput = {
88719
+ description?: InputMaybe<Scalars['String']['input']>;
87149
88720
  goalTypeAri: Scalars['String']['input'];
88721
+ iconKey?: InputMaybe<TownsquareGoalIconKey>;
88722
+ name?: InputMaybe<Scalars['String']['input']>;
87150
88723
  state?: InputMaybe<TownsquareGoalTypeState>;
87151
88724
  };
87152
88725
  export declare type TownsquareEditGoalTypePayload = {
@@ -87169,19 +88742,36 @@ export declare type TownsquareGoal = Node & {
87169
88742
  name: Scalars['String']['output'];
87170
88743
  owner?: Maybe<User>;
87171
88744
  parentGoal?: Maybe<TownsquareGoal>;
88745
+ parentGoalSuggestions?: Maybe<TownsquareGoalConnection>;
87172
88746
  state?: Maybe<TownsquareGoalState>;
87173
88747
  status?: Maybe<TownsquareStatus>;
88748
+ subGoalSuggestions?: Maybe<TownsquareGoalConnection>;
87174
88749
  subGoals?: Maybe<TownsquareGoalConnection>;
88750
+ tags?: Maybe<TownsquareTagConnection>;
87175
88751
  targetDate?: Maybe<TownsquareTargetDate>;
87176
88752
  updates?: Maybe<TownsquareGoalUpdateConnection>;
87177
88753
  url?: Maybe<Scalars['String']['output']>;
87178
88754
  uuid: Scalars['String']['output'];
87179
88755
  watchers?: Maybe<TownsquareUserConnection>;
87180
88756
  };
88757
+ export declare type TownsquareGoalParentGoalSuggestionsArgs = {
88758
+ after?: InputMaybe<Scalars['String']['input']>;
88759
+ first?: InputMaybe<Scalars['Int']['input']>;
88760
+ searchString?: InputMaybe<Scalars['String']['input']>;
88761
+ };
88762
+ export declare type TownsquareGoalSubGoalSuggestionsArgs = {
88763
+ after?: InputMaybe<Scalars['String']['input']>;
88764
+ first?: InputMaybe<Scalars['Int']['input']>;
88765
+ searchString?: InputMaybe<Scalars['String']['input']>;
88766
+ };
87181
88767
  export declare type TownsquareGoalSubGoalsArgs = {
87182
88768
  after?: InputMaybe<Scalars['String']['input']>;
87183
88769
  first?: InputMaybe<Scalars['Int']['input']>;
87184
88770
  };
88771
+ export declare type TownsquareGoalTagsArgs = {
88772
+ after?: InputMaybe<Scalars['String']['input']>;
88773
+ first?: InputMaybe<Scalars['Int']['input']>;
88774
+ };
87185
88775
  export declare type TownsquareGoalUpdatesArgs = {
87186
88776
  after?: InputMaybe<Scalars['String']['input']>;
87187
88777
  first?: InputMaybe<Scalars['Int']['input']>;
@@ -87353,6 +88943,7 @@ export declare type TownsquareMutationApi = {
87353
88943
  __typename?: 'TownsquareMutationApi';
87354
88944
  archiveGoal?: Maybe<TownsquareArchiveGoalPayload>;
87355
88945
  createGoal?: Maybe<TownsquareCreateGoalPayload>;
88946
+ createGoalType?: Maybe<TownsquareCreateGoalTypePayload>;
87356
88947
  createRelationships?: Maybe<TownsquareCreateRelationshipsPayload>;
87357
88948
  deleteRelationships?: Maybe<TownsquareDeleteRelationshipsPayload>;
87358
88949
  editGoal?: Maybe<TownsquareEditGoalPayload>;
@@ -87367,6 +88958,9 @@ export declare type TownsquareMutationApiArchiveGoalArgs = {
87367
88958
  export declare type TownsquareMutationApiCreateGoalArgs = {
87368
88959
  input: TownsquareCreateGoalInput;
87369
88960
  };
88961
+ export declare type TownsquareMutationApiCreateGoalTypeArgs = {
88962
+ input: TownsquareCreateGoalTypeInput;
88963
+ };
87370
88964
  export declare type TownsquareMutationApiCreateRelationshipsArgs = {
87371
88965
  input: TownsquareCreateRelationshipsInput;
87372
88966
  };
@@ -87412,9 +89006,21 @@ export declare type TownsquareProject = HasMercuryProjectFields & Node & {
87412
89006
  name: Scalars['String']['output'];
87413
89007
  owner?: Maybe<User>;
87414
89008
  state?: Maybe<TownsquareProjectState>;
89009
+ tags?: Maybe<TownsquareTagConnection>;
89010
+ updates?: Maybe<TownsquareProjectUpdateConnection>;
87415
89011
  url?: Maybe<Scalars['String']['output']>;
87416
89012
  uuid: Scalars['String']['output'];
87417
89013
  };
89014
+ export declare type TownsquareProjectTagsArgs = {
89015
+ after?: InputMaybe<Scalars['String']['input']>;
89016
+ first?: InputMaybe<Scalars['Int']['input']>;
89017
+ };
89018
+ export declare type TownsquareProjectUpdatesArgs = {
89019
+ after?: InputMaybe<Scalars['String']['input']>;
89020
+ createdAtOrAfter?: InputMaybe<Scalars['DateTime']['input']>;
89021
+ createdAtOrBefore?: InputMaybe<Scalars['DateTime']['input']>;
89022
+ first?: InputMaybe<Scalars['Int']['input']>;
89023
+ };
87418
89024
  export declare type TownsquareProjectConnection = {
87419
89025
  __typename?: 'TownsquareProjectConnection';
87420
89026
  edges?: Maybe<Array<Maybe<TownsquareProjectEdge>>>;
@@ -87508,6 +89114,17 @@ export declare type TownsquareProjectUpdateCommentsArgs = {
87508
89114
  after?: InputMaybe<Scalars['String']['input']>;
87509
89115
  first?: InputMaybe<Scalars['Int']['input']>;
87510
89116
  };
89117
+ export declare type TownsquareProjectUpdateConnection = {
89118
+ __typename?: 'TownsquareProjectUpdateConnection';
89119
+ count: Scalars['Int']['output'];
89120
+ edges?: Maybe<Array<Maybe<TownsquareProjectUpdateEdge>>>;
89121
+ pageInfo: PageInfo;
89122
+ };
89123
+ export declare type TownsquareProjectUpdateEdge = {
89124
+ __typename?: 'TownsquareProjectUpdateEdge';
89125
+ cursor: Scalars['String']['output'];
89126
+ node?: Maybe<TownsquareProjectUpdate>;
89127
+ };
87511
89128
  export declare type TownsquareQueryApi = {
87512
89129
  __typename?: 'TownsquareQueryApi';
87513
89130
  allWorkspaceSummariesForOrg?: Maybe<TownsquareWorkspaceSummaryConnection>;
@@ -87635,7 +89252,9 @@ export declare type TownsquareStatus = {
87635
89252
  };
87636
89253
  export declare type TownsquareTag = Node & {
87637
89254
  __typename?: 'TownsquareTag';
89255
+ creationDate?: Maybe<Scalars['DateTime']['output']>;
87638
89256
  description?: Maybe<Scalars['String']['output']>;
89257
+ iconData?: Maybe<Scalars['String']['output']>;
87639
89258
  id: Scalars['ID']['output'];
87640
89259
  name?: Maybe<Scalars['String']['output']>;
87641
89260
  };
@@ -88291,6 +89910,7 @@ export declare type TrelloCard = Node & {
88291
89910
  badges?: Maybe<TrelloCardBadges>;
88292
89911
  checklists?: Maybe<TrelloChecklistConnection>;
88293
89912
  closed?: Maybe<Scalars['Boolean']['output']>;
89913
+ complete?: Maybe<Scalars['Boolean']['output']>;
88294
89914
  cover?: Maybe<TrelloCardCover>;
88295
89915
  creation?: Maybe<TrelloCardCreationInfo>;
88296
89916
  customFieldItems?: Maybe<TrelloCustomFieldItemConnection>;
@@ -88484,6 +90104,7 @@ export declare type TrelloCardEdge = {
88484
90104
  };
88485
90105
  export declare enum TrelloCardExternalSource {
88486
90106
  Email = "EMAIL",
90107
+ Siri = "SIRI",
88487
90108
  Slack = "SLACK"
88488
90109
  }
88489
90110
  export declare type TrelloCardLimit = {
@@ -88515,6 +90136,7 @@ export declare type TrelloCardUpdated = {
88515
90136
  badges?: Maybe<TrelloCardBadges>;
88516
90137
  checklists?: Maybe<TrelloChecklistConnectionUpdated>;
88517
90138
  closed?: Maybe<Scalars['Boolean']['output']>;
90139
+ complete?: Maybe<Scalars['Boolean']['output']>;
88518
90140
  cover?: Maybe<TrelloCardCoverUpdated>;
88519
90141
  creation?: Maybe<TrelloCardCreationInfo>;
88520
90142
  customFieldItems?: Maybe<TrelloCustomFieldItemUpdatedConnection>;
@@ -88661,15 +90283,9 @@ export declare type TrelloCreateOrUpdatePlannerCalendarInput = {
88661
90283
  export declare type TrelloCreateOrUpdatePlannerCalendarPayload = Payload & {
88662
90284
  __typename?: 'TrelloCreateOrUpdatePlannerCalendarPayload';
88663
90285
  errors?: Maybe<Array<MutationError>>;
88664
- plannerCalendar?: Maybe<TrelloPlannerCalendarConnection>;
88665
90286
  plannerCalendarMutated?: Maybe<TrelloPlannerCalendarMutated>;
88666
- plannerCalendarUpdated?: Maybe<TrelloPlannerCalendarUpdated>;
88667
90287
  success: Scalars['Boolean']['output'];
88668
90288
  };
88669
- export declare type TrelloCreateOrUpdatePlannerCalendarPayloadPlannerCalendarArgs = {
88670
- after?: InputMaybe<Scalars['String']['input']>;
88671
- first?: InputMaybe<Scalars['Int']['input']>;
88672
- };
88673
90289
  export declare type TrelloCreatePlannerCalendarEventInput = {
88674
90290
  event: TrelloCreatePlannerCalendarEventOptions;
88675
90291
  plannerCalendarId: Scalars['ID']['input'];
@@ -89205,6 +90821,7 @@ export declare type TrelloPlannerCalendarAccount = Node & {
89205
90821
  };
89206
90822
  export declare type TrelloPlannerCalendarAccountEnabledCalendarsArgs = {
89207
90823
  after?: InputMaybe<Scalars['String']['input']>;
90824
+ filter?: InputMaybe<TrelloPlannerCalendarEnabledCalendarsFilter>;
89208
90825
  first?: InputMaybe<Scalars['Int']['input']>;
89209
90826
  };
89210
90827
  export declare type TrelloPlannerCalendarAccountProviderCalendarsArgs = {
@@ -89273,11 +90890,15 @@ export declare type TrelloPlannerCalendarDeleted = {
89273
90890
  export declare type TrelloPlannerCalendarEdge = {
89274
90891
  __typename?: 'TrelloPlannerCalendarEdge';
89275
90892
  cursor?: Maybe<Scalars['String']['output']>;
90893
+ deletedCalendar?: Maybe<TrelloPlannerCalendarDeleted>;
89276
90894
  node?: Maybe<TrelloPlannerCalendar>;
89277
90895
  };
89278
90896
  export declare type TrelloPlannerCalendarEdgeUpdated = {
89279
90897
  __typename?: 'TrelloPlannerCalendarEdgeUpdated';
89280
- node: TrelloPlannerUpdatedCalendar;
90898
+ node: TrelloPlannerCalendarUpdated;
90899
+ };
90900
+ export declare type TrelloPlannerCalendarEnabledCalendarsFilter = {
90901
+ updateCursor?: InputMaybe<Scalars['String']['input']>;
89281
90902
  };
89282
90903
  export declare type TrelloPlannerCalendarEvent = Node & {
89283
90904
  __typename?: 'TrelloPlannerCalendarEvent';
@@ -89395,7 +91016,11 @@ export declare type TrelloPlannerCalendarEventsFilter = {
89395
91016
  start?: InputMaybe<Scalars['DateTime']['input']>;
89396
91017
  };
89397
91018
  export declare type TrelloPlannerCalendarMutated = TrelloPlannerCalendarAccount | TrelloPlannerCalendarDeleted;
89398
- export declare type TrelloPlannerCalendarUpdated = TrelloPlannerCalendarAccount | TrelloPlannerCalendarDeleted;
91019
+ export declare type TrelloPlannerCalendarUpdated = {
91020
+ __typename?: 'TrelloPlannerCalendarUpdated';
91021
+ events?: Maybe<TrelloPlannerCalendarEventConnectionUpdated>;
91022
+ id: Scalars['ID']['output'];
91023
+ };
89399
91024
  export declare type TrelloPlannerProviderCalendar = Node & TrelloProviderCalendarInterface & {
89400
91025
  __typename?: 'TrelloPlannerProviderCalendar';
89401
91026
  color?: Maybe<TrelloPlannerCalendarColor>;
@@ -89424,11 +91049,6 @@ export declare type TrelloPlannerUpdated = {
89424
91049
  accounts?: Maybe<TrelloPlannerCalendarAccountConnectionUpdated>;
89425
91050
  id: Scalars['ID']['output'];
89426
91051
  };
89427
- export declare type TrelloPlannerUpdatedCalendar = {
89428
- __typename?: 'TrelloPlannerUpdatedCalendar';
89429
- events?: Maybe<TrelloPlannerCalendarEventConnectionUpdated>;
89430
- id: Scalars['ID']['output'];
89431
- };
89432
91052
  export declare type TrelloPowerUp = {
89433
91053
  __typename?: 'TrelloPowerUp';
89434
91054
  author?: Maybe<Scalars['String']['output']>;
@@ -89993,6 +91613,7 @@ export declare type UnifiedAccount = UnifiedINode & {
89993
91613
  emailId: Scalars['String']['output'];
89994
91614
  id: Scalars['ID']['output'];
89995
91615
  internalId: Scalars['String']['output'];
91616
+ isForumsAccountBanned: Scalars['Boolean']['output'];
89996
91617
  isForumsModerator: Scalars['Boolean']['output'];
89997
91618
  isLinked: Scalars['Boolean']['output'];
89998
91619
  isManaged: Scalars['Boolean']['output'];
@@ -90559,6 +92180,7 @@ export declare type UnifiedProfile = UnifiedINode & {
90559
92180
  isLinkedView?: Maybe<Scalars['Boolean']['output']>;
90560
92181
  isPersonalView?: Maybe<Scalars['Boolean']['output']>;
90561
92182
  isPrivate: Scalars['Boolean']['output'];
92183
+ isProfileBanned?: Maybe<Scalars['Boolean']['output']>;
90562
92184
  learning?: Maybe<UnifiedULearningResult>;
90563
92185
  linkedinUrl?: Maybe<Scalars['String']['output']>;
90564
92186
  location?: Maybe<Scalars['String']['output']>;
@@ -90768,8 +92390,13 @@ export declare type UpdateAppDetailsInput = {
90768
92390
  avatarFileId?: InputMaybe<Scalars['String']['input']>;
90769
92391
  contactLink?: InputMaybe<Scalars['String']['input']>;
90770
92392
  description?: InputMaybe<Scalars['String']['input']>;
92393
+ distributionStatus?: InputMaybe<DistributionStatus>;
92394
+ hasPDReportingApiImplemented?: InputMaybe<Scalars['Boolean']['input']>;
90771
92395
  name: Scalars['String']['input'];
90772
92396
  privacyPolicy?: InputMaybe<Scalars['String']['input']>;
92397
+ storesPersonalData?: InputMaybe<Scalars['Boolean']['input']>;
92398
+ termsOfService?: InputMaybe<Scalars['String']['input']>;
92399
+ vendorName?: InputMaybe<Scalars['String']['input']>;
90773
92400
  };
90774
92401
  export declare type UpdateAppDetailsResponse = Payload & {
90775
92402
  __typename?: 'UpdateAppDetailsResponse';
@@ -91840,6 +93467,10 @@ export declare type ValidateTitleForCreatePayload = {
91840
93467
  isValid: Scalars['Boolean']['output'];
91841
93468
  message?: Maybe<Scalars['String']['output']>;
91842
93469
  };
93470
+ export declare enum VendorType {
93471
+ Internal = "INTERNAL",
93472
+ ThirdParty = "THIRD_PARTY"
93473
+ }
91843
93474
  export declare type Version = {
91844
93475
  __typename?: 'Version';
91845
93476
  by?: Maybe<Person>;