@forge/cli-shared 6.6.1-next.7 → 6.6.1-next.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -818,6 +818,10 @@ export declare type AgentStudioConfluenceKnowledgeFilterInput = {
818
818
  parentFilter?: InputMaybe<Array<Scalars['ID']['input']>>;
819
819
  spaceFilter?: InputMaybe<Array<Scalars['ID']['input']>>;
820
820
  };
821
+ export declare type AgentStudioConversationStarterSuggestions = {
822
+ __typename?: 'AgentStudioConversationStarterSuggestions';
823
+ suggestions?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
824
+ };
821
825
  export declare type AgentStudioCreateAgentInput = {
822
826
  actions?: InputMaybe<AgentStudioActionConfigurationInput>;
823
827
  agentType: AgentStudioAgentType;
@@ -865,6 +869,18 @@ export declare type AgentStudioKnowledgeSourceInput = {
865
869
  filters?: InputMaybe<AgentStudioKnowledgeFiltersInput>;
866
870
  source: Scalars['String']['input'];
867
871
  };
872
+ export declare type AgentStudioSuggestConversationStartersInput = {
873
+ agentDescription?: InputMaybe<Scalars['String']['input']>;
874
+ agentInstructions?: InputMaybe<Scalars['String']['input']>;
875
+ agentName?: InputMaybe<Scalars['String']['input']>;
876
+ };
877
+ export declare type AgentStudioSuggestConversationStartersResult = AgentStudioConversationStarterSuggestions | QueryError;
878
+ export declare type AgentStudioUpdateAgentActionsPayload = Payload & {
879
+ __typename?: 'AgentStudioUpdateAgentActionsPayload';
880
+ agent?: Maybe<AgentStudioAgent>;
881
+ errors?: Maybe<Array<MutationError>>;
882
+ success: Scalars['Boolean']['output'];
883
+ };
868
884
  export declare type AgentStudioUpdateAgentDetailsInput = {
869
885
  creatorId?: InputMaybe<Scalars['ID']['input']>;
870
886
  description?: InputMaybe<Scalars['String']['input']>;
@@ -877,6 +893,15 @@ export declare type AgentStudioUpdateAgentDetailsPayload = Payload & {
877
893
  errors?: Maybe<Array<MutationError>>;
878
894
  success: Scalars['Boolean']['output'];
879
895
  };
896
+ export declare type AgentStudioUpdateConversationStartersInput = {
897
+ conversationStarters?: InputMaybe<Array<Scalars['String']['input']>>;
898
+ };
899
+ export declare type AgentStudioUpdateConversationStartersPayload = Payload & {
900
+ __typename?: 'AgentStudioUpdateConversationStartersPayload';
901
+ agent?: Maybe<AgentStudioAgent>;
902
+ errors?: Maybe<Array<MutationError>>;
903
+ success: Scalars['Boolean']['output'];
904
+ };
880
905
  export declare enum AlertEventStatus {
881
906
  Acknowledged = "ACKNOWLEDGED",
882
907
  Closed = "CLOSED",
@@ -3297,7 +3322,15 @@ export declare enum CcpCreateEntitlementExperienceCapabilityErrorReasonCode {
3297
3322
  MultipleTransactionAccount = "MULTIPLE_TRANSACTION_ACCOUNT",
3298
3323
  UsecaseNotImplemented = "USECASE_NOT_IMPLEMENTED"
3299
3324
  }
3325
+ export declare type CcpCreateEntitlementExperienceOptions = {
3326
+ confirmationScreen?: InputMaybe<CcpCreateEntitlementExperienceOptionsConfirmationScreen>;
3327
+ };
3328
+ export declare enum CcpCreateEntitlementExperienceOptionsConfirmationScreen {
3329
+ Comparison = "COMPARISON",
3330
+ Default = "DEFAULT"
3331
+ }
3300
3332
  export declare type CcpCreateEntitlementInput = {
3333
+ experienceOptions?: InputMaybe<CcpCreateEntitlementExperienceOptions>;
3301
3334
  offeringKey: Scalars['ID']['input'];
3302
3335
  orderOptions?: InputMaybe<CcpCreateEntitlementOrderOptions>;
3303
3336
  relatesToEntitlements?: InputMaybe<Array<CcpCreateEntitlementRelatesTo>>;
@@ -6997,6 +7030,7 @@ export declare type CompassJqlMetricDefinitionConfiguration = {
6997
7030
  };
6998
7031
  export declare type CompassJqlMetricDefinitionConfigurationInput = {
6999
7032
  customizable: Scalars['Boolean']['input'];
7033
+ format?: InputMaybe<Scalars['String']['input']>;
7000
7034
  jql: Scalars['String']['input'];
7001
7035
  };
7002
7036
  export declare type CompassJqlMetricSourceConfiguration = {
@@ -15295,6 +15329,26 @@ export declare type ConfluencePerson = Person & {
15295
15329
  userKey?: Maybe<Scalars['String']['output']>;
15296
15330
  username?: Maybe<Scalars['String']['output']>;
15297
15331
  };
15332
+ export declare type ConfluencePersonConnection = {
15333
+ __typename?: 'ConfluencePersonConnection';
15334
+ count?: Maybe<Scalars['Int']['output']>;
15335
+ edges?: Maybe<Array<Maybe<ConfluencePersonEdge>>>;
15336
+ nodes?: Maybe<Array<Maybe<ConfluencePerson>>>;
15337
+ pageInfo?: Maybe<PageInfo>;
15338
+ };
15339
+ export declare type ConfluencePersonEdge = {
15340
+ __typename?: 'ConfluencePersonEdge';
15341
+ cursor?: Maybe<Scalars['String']['output']>;
15342
+ node?: Maybe<ConfluencePerson>;
15343
+ };
15344
+ export declare type ConfluencePersonWithPermissionsConnection = {
15345
+ __typename?: 'ConfluencePersonWithPermissionsConnection';
15346
+ count?: Maybe<Scalars['Int']['output']>;
15347
+ edges?: Maybe<Array<Maybe<ConfluencePersonEdge>>>;
15348
+ links?: Maybe<LinksContextBase>;
15349
+ nodes?: Maybe<Array<Maybe<ConfluencePerson>>>;
15350
+ pageInfo?: Maybe<PageInfo>;
15351
+ };
15298
15352
  export declare enum ConfluencePrincipalType {
15299
15353
  Group = "GROUP",
15300
15354
  User = "USER"
@@ -21172,6 +21226,11 @@ export declare type DevAiGenericMutationErrorExtension = MutationErrorExtension
21172
21226
  errorType?: Maybe<Scalars['String']['output']>;
21173
21227
  statusCode?: Maybe<Scalars['Int']['output']>;
21174
21228
  };
21229
+ export declare type DevAiInvokeAutodevRovoAgentInBulkPayload = Payload & {
21230
+ __typename?: 'DevAiInvokeAutodevRovoAgentInBulkPayload';
21231
+ errors?: Maybe<Array<MutationError>>;
21232
+ success: Scalars['Boolean']['output'];
21233
+ };
21175
21234
  export declare type DevAiInvokeAutodevRovoAgentPayload = Payload & {
21176
21235
  __typename?: 'DevAiInvokeAutodevRovoAgentPayload';
21177
21236
  errors?: Maybe<Array<MutationError>>;
@@ -23206,6 +23265,7 @@ export declare type EcosystemMarketplaceAppVersion = {
23206
23265
  buildNumber: Scalars['Float']['output'];
23207
23266
  editionsEnabled?: Maybe<Scalars['Boolean']['output']>;
23208
23267
  isSupported?: Maybe<Scalars['Boolean']['output']>;
23268
+ paymentModel?: Maybe<EcosystemMarketplacePaymentModel>;
23209
23269
  version: Scalars['String']['output'];
23210
23270
  };
23211
23271
  export declare type EcosystemMarketplaceData = {
@@ -23215,12 +23275,41 @@ export declare type EcosystemMarketplaceData = {
23215
23275
  cloudAppId: Scalars['ID']['output'];
23216
23276
  forumsUrl?: Maybe<Scalars['String']['output']>;
23217
23277
  issueTrackerUrl?: Maybe<Scalars['String']['output']>;
23278
+ listingStatus?: Maybe<EcosystemMarketplaceListingStatus>;
23218
23279
  name?: Maybe<Scalars['String']['output']>;
23280
+ partner?: Maybe<EcosystemMarketplacePartner>;
23219
23281
  slug?: Maybe<Scalars['String']['output']>;
23220
23282
  supportTicketSystemUrl?: Maybe<Scalars['String']['output']>;
23221
23283
  versions?: Maybe<EcosystemMarketplaceVersionConnection>;
23222
23284
  wikiUrl?: Maybe<Scalars['String']['output']>;
23223
23285
  };
23286
+ export declare enum EcosystemMarketplaceListingStatus {
23287
+ Private = "PRIVATE",
23288
+ Public = "PUBLIC",
23289
+ ReadyToLaunch = "READY_TO_LAUNCH",
23290
+ Rejected = "REJECTED",
23291
+ Submitted = "SUBMITTED"
23292
+ }
23293
+ export declare type EcosystemMarketplacePartner = {
23294
+ __typename?: 'EcosystemMarketplacePartner';
23295
+ id: Scalars['ID']['output'];
23296
+ name?: Maybe<Scalars['String']['output']>;
23297
+ support?: Maybe<EcosystemMarketplacePartnerSupport>;
23298
+ };
23299
+ export declare type EcosystemMarketplacePartnerSupport = {
23300
+ __typename?: 'EcosystemMarketplacePartnerSupport';
23301
+ contactDetails?: Maybe<EcosystemMarketplacePartnerSupportContact>;
23302
+ };
23303
+ export declare type EcosystemMarketplacePartnerSupportContact = {
23304
+ __typename?: 'EcosystemMarketplacePartnerSupportContact';
23305
+ emailId?: Maybe<Scalars['String']['output']>;
23306
+ websiteUrl?: Maybe<Scalars['String']['output']>;
23307
+ };
23308
+ export declare enum EcosystemMarketplacePaymentModel {
23309
+ Free = "FREE",
23310
+ PaidViaAtlassian = "PAID_VIA_ATLASSIAN",
23311
+ PaidViaPartner = "PAID_VIA_PARTNER"
23312
+ }
23224
23313
  export declare type EcosystemMarketplaceVersionConnection = {
23225
23314
  __typename?: 'EcosystemMarketplaceVersionConnection';
23226
23315
  edges?: Maybe<Array<EcosystemMarketplaceVersionEdge>>;
@@ -23961,6 +24050,13 @@ export declare type ExternalCollaboratorFeature = {
23961
24050
  __typename?: 'ExternalCollaboratorFeature';
23962
24051
  isEntitled: Scalars['Boolean']['output'];
23963
24052
  };
24053
+ export declare enum ExternalCollaboratorsSortField {
24054
+ Name = "NAME"
24055
+ }
24056
+ export declare type ExternalCollaboratorsSortType = {
24057
+ field?: InputMaybe<ExternalCollaboratorsSortField>;
24058
+ isAscending?: InputMaybe<Scalars['Boolean']['input']>;
24059
+ };
23964
24060
  export declare type ExternalComment = Node & {
23965
24061
  __typename?: 'ExternalComment';
23966
24062
  associatedWith?: Maybe<ExternalAssociationConnection>;
@@ -29745,6 +29841,8 @@ export declare type GraphStore = {
29745
29841
  atlasGoalHasOwnerInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasOwnerInverseConnection>;
29746
29842
  atlasGoalHasSubAtlasGoal?: Maybe<GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalConnection>;
29747
29843
  atlasGoalHasSubAtlasGoalInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalInverseConnection>;
29844
+ atlasGoalHasUpdate?: Maybe<GraphStoreSimplifiedAtlasGoalHasUpdateConnection>;
29845
+ atlasGoalHasUpdateInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasUpdateInverseConnection>;
29748
29846
  atlasHomeFeed: GraphStoreAtlasHomeQueryConnection;
29749
29847
  atlasProjectContributesToAtlasGoal?: Maybe<GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalConnection>;
29750
29848
  atlasProjectContributesToAtlasGoalInverse?: Maybe<GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalInverseConnection>;
@@ -29768,6 +29866,8 @@ export declare type GraphStore = {
29768
29866
  atlasProjectIsTrackedOnJiraEpicRelationship?: Maybe<GraphStoreFullAtlasProjectIsTrackedOnJiraEpicConnection>;
29769
29867
  boardBelongsToProject?: Maybe<GraphStoreSimplifiedBoardBelongsToProjectConnection>;
29770
29868
  boardBelongsToProjectInverse?: Maybe<GraphStoreSimplifiedBoardBelongsToProjectInverseConnection>;
29869
+ calendarHasLinkedDocument?: Maybe<GraphStoreSimplifiedCalendarHasLinkedDocumentConnection>;
29870
+ calendarHasLinkedDocumentInverse?: Maybe<GraphStoreSimplifiedCalendarHasLinkedDocumentInverseConnection>;
29771
29871
  componentAssociatedDocument?: Maybe<GraphStoreSimplifiedComponentAssociatedDocumentConnection>;
29772
29872
  componentAssociatedDocumentInverse?: Maybe<GraphStoreSimplifiedComponentAssociatedDocumentInverseConnection>;
29773
29873
  componentAssociatedDocumentInverseRelationship?: Maybe<GraphStoreFullComponentAssociatedDocumentConnection>;
@@ -29781,8 +29881,12 @@ export declare type GraphStore = {
29781
29881
  componentLinkedJswIssueInverse?: Maybe<GraphStoreSimplifiedComponentLinkedJswIssueInverseConnection>;
29782
29882
  componentLinkedJswIssueInverseRelationship?: Maybe<GraphStoreFullComponentLinkedJswIssueConnection>;
29783
29883
  componentLinkedJswIssueRelationship?: Maybe<GraphStoreFullComponentLinkedJswIssueConnection>;
29884
+ confluenceBlogpostHasComment?: Maybe<GraphStoreSimplifiedConfluenceBlogpostHasCommentConnection>;
29885
+ confluenceBlogpostHasCommentInverse?: Maybe<GraphStoreSimplifiedConfluenceBlogpostHasCommentInverseConnection>;
29784
29886
  confluenceBlogpostSharedWithUser?: Maybe<GraphStoreSimplifiedConfluenceBlogpostSharedWithUserConnection>;
29785
29887
  confluenceBlogpostSharedWithUserInverse?: Maybe<GraphStoreSimplifiedConfluenceBlogpostSharedWithUserInverseConnection>;
29888
+ confluencePageHasComment?: Maybe<GraphStoreSimplifiedConfluencePageHasCommentConnection>;
29889
+ confluencePageHasCommentInverse?: Maybe<GraphStoreSimplifiedConfluencePageHasCommentInverseConnection>;
29786
29890
  confluencePageHasConfluenceComment?: Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceCommentConnection>;
29787
29891
  confluencePageHasConfluenceCommentInverse?: Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceCommentInverseConnection>;
29788
29892
  confluencePageHasConfluenceDatabase?: Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceDatabaseConnection>;
@@ -29825,6 +29929,8 @@ export declare type GraphStore = {
29825
29929
  focusAreaHasFocusAreaBatch?: Maybe<GraphStoreBatchFocusAreaHasFocusAreaConnection>;
29826
29930
  focusAreaHasFocusAreaInverse?: Maybe<GraphStoreSimplifiedFocusAreaHasFocusAreaInverseConnection>;
29827
29931
  focusAreaHasFocusAreaInverseBatch?: Maybe<GraphStoreBatchFocusAreaHasFocusAreaConnection>;
29932
+ focusAreaHasPage?: Maybe<GraphStoreSimplifiedFocusAreaHasPageConnection>;
29933
+ focusAreaHasPageInverse?: Maybe<GraphStoreSimplifiedFocusAreaHasPageInverseConnection>;
29828
29934
  focusAreaHasProject?: Maybe<GraphStoreSimplifiedFocusAreaHasProjectConnection>;
29829
29935
  focusAreaHasProjectBatch?: Maybe<GraphStoreBatchFocusAreaHasProjectConnection>;
29830
29936
  focusAreaHasProjectInverse?: Maybe<GraphStoreSimplifiedFocusAreaHasProjectInverseConnection>;
@@ -29924,6 +30030,8 @@ export declare type GraphStore = {
29924
30030
  issueToWhiteboardInverse?: Maybe<GraphStoreSimplifiedIssueToWhiteboardInverseConnection>;
29925
30031
  issueToWhiteboardInverseRelationship?: Maybe<GraphStoreFullIssueToWhiteboardConnection>;
29926
30032
  issueToWhiteboardRelationship?: Maybe<GraphStoreFullIssueToWhiteboardConnection>;
30033
+ jcsIssueAssociatedSupportEscalation?: Maybe<GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationConnection>;
30034
+ jcsIssueAssociatedSupportEscalationInverse?: Maybe<GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationInverseConnection>;
29927
30035
  jiraEpicContributesToAtlasGoal?: Maybe<GraphStoreSimplifiedJiraEpicContributesToAtlasGoalConnection>;
29928
30036
  jiraEpicContributesToAtlasGoalInverse?: Maybe<GraphStoreSimplifiedJiraEpicContributesToAtlasGoalInverseConnection>;
29929
30037
  jiraEpicContributesToAtlasGoalInverseRelationship?: Maybe<GraphStoreFullJiraEpicContributesToAtlasGoalConnection>;
@@ -29963,6 +30071,7 @@ export declare type GraphStore = {
29963
30071
  meetingHasMeetingNotesPage?: Maybe<GraphStoreSimplifiedMeetingHasMeetingNotesPageConnection>;
29964
30072
  meetingRecordingOwnerHasMeetingNotesFolder?: Maybe<GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderConnection>;
29965
30073
  meetingRecordingOwnerHasMeetingNotesFolderInverse?: Maybe<GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderInverseConnection>;
30074
+ meetingRecurrenceHasMeetingRecurrenceNotesPage?: Maybe<GraphStoreSimplifiedMeetingRecurrenceHasMeetingRecurrenceNotesPageConnection>;
29966
30075
  onPremProjectHasIssue?: Maybe<GraphStoreSimplifiedOnPremProjectHasIssueConnection>;
29967
30076
  onPremProjectHasIssueInverse?: Maybe<GraphStoreSimplifiedOnPremProjectHasIssueInverseConnection>;
29968
30077
  operationsContainerImpactedByIncident?: Maybe<GraphStoreSimplifiedOperationsContainerImpactedByIncidentConnection>;
@@ -30078,11 +30187,15 @@ export declare type GraphStore = {
30078
30187
  projectHasVersionRelationship?: Maybe<GraphStoreFullProjectHasVersionConnection>;
30079
30188
  projectLinkedToCompassComponent?: Maybe<GraphStoreSimplifiedProjectLinkedToCompassComponentConnection>;
30080
30189
  projectLinkedToCompassComponentInverse?: Maybe<GraphStoreSimplifiedProjectLinkedToCompassComponentInverseConnection>;
30190
+ pullRequestLinksToService?: Maybe<GraphStoreSimplifiedPullRequestLinksToServiceConnection>;
30191
+ pullRequestLinksToServiceInverse?: Maybe<GraphStoreSimplifiedPullRequestLinksToServiceInverseConnection>;
30081
30192
  securityContainerAssociatedToVulnerability?: Maybe<GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityConnection>;
30082
30193
  securityContainerAssociatedToVulnerabilityBatch?: Maybe<GraphStoreBatchSecurityContainerAssociatedToVulnerabilityConnection>;
30083
30194
  securityContainerAssociatedToVulnerabilityInverseBatch?: Maybe<GraphStoreBatchSecurityContainerAssociatedToVulnerabilityConnection>;
30084
30195
  securityContainerAssociatedToVulnerabilityInverseRelationship?: Maybe<GraphStoreFullSecurityContainerAssociatedToVulnerabilityConnection>;
30085
30196
  securityContainerAssociatedToVulnerabilityRelationship?: Maybe<GraphStoreFullSecurityContainerAssociatedToVulnerabilityConnection>;
30197
+ serviceAssociatedBranch?: Maybe<GraphStoreSimplifiedServiceAssociatedBranchConnection>;
30198
+ serviceAssociatedBranchInverse?: Maybe<GraphStoreSimplifiedServiceAssociatedBranchInverseConnection>;
30086
30199
  serviceAssociatedDeployment?: Maybe<GraphStoreSimplifiedServiceAssociatedDeploymentConnection>;
30087
30200
  serviceAssociatedDeploymentInverse?: Maybe<GraphStoreSimplifiedServiceAssociatedDeploymentInverseConnection>;
30088
30201
  serviceAssociatedRemoteLink?: Maybe<GraphStoreSimplifiedServiceAssociatedRemoteLinkConnection>;
@@ -30414,6 +30527,22 @@ export declare type GraphStoreAtlasGoalHasSubAtlasGoalInverseArgs = {
30414
30527
  id: Scalars['ID']['input'];
30415
30528
  sort?: InputMaybe<GraphStoreAtlasGoalHasSubAtlasGoalSortInput>;
30416
30529
  };
30530
+ export declare type GraphStoreAtlasGoalHasUpdateArgs = {
30531
+ after?: InputMaybe<Scalars['String']['input']>;
30532
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
30533
+ filter?: InputMaybe<GraphStoreAtlasGoalHasUpdateFilterInput>;
30534
+ first?: InputMaybe<Scalars['Int']['input']>;
30535
+ id: Scalars['ID']['input'];
30536
+ sort?: InputMaybe<GraphStoreAtlasGoalHasUpdateSortInput>;
30537
+ };
30538
+ export declare type GraphStoreAtlasGoalHasUpdateInverseArgs = {
30539
+ after?: InputMaybe<Scalars['String']['input']>;
30540
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
30541
+ filter?: InputMaybe<GraphStoreAtlasGoalHasUpdateFilterInput>;
30542
+ first?: InputMaybe<Scalars['Int']['input']>;
30543
+ id: Scalars['ID']['input'];
30544
+ sort?: InputMaybe<GraphStoreAtlasGoalHasUpdateSortInput>;
30545
+ };
30417
30546
  export declare type GraphStoreAtlasHomeFeedArgs = {
30418
30547
  container_ids: Array<Scalars['ID']['input']>;
30419
30548
  ranking_criteria?: InputMaybe<GraphStoreAtlasHomeRankingCriteria>;
@@ -30501,6 +30630,7 @@ export declare type GraphStoreAtlasProjectHasOwnerInverseArgs = {
30501
30630
  export declare type GraphStoreAtlasProjectHasUpdateArgs = {
30502
30631
  after?: InputMaybe<Scalars['String']['input']>;
30503
30632
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
30633
+ filter?: InputMaybe<GraphStoreAtlasProjectHasUpdateFilterInput>;
30504
30634
  first?: InputMaybe<Scalars['Int']['input']>;
30505
30635
  id: Scalars['ID']['input'];
30506
30636
  sort?: InputMaybe<GraphStoreAtlasProjectHasUpdateSortInput>;
@@ -30508,6 +30638,7 @@ export declare type GraphStoreAtlasProjectHasUpdateArgs = {
30508
30638
  export declare type GraphStoreAtlasProjectHasUpdateInverseArgs = {
30509
30639
  after?: InputMaybe<Scalars['String']['input']>;
30510
30640
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
30641
+ filter?: InputMaybe<GraphStoreAtlasProjectHasUpdateFilterInput>;
30511
30642
  first?: InputMaybe<Scalars['Int']['input']>;
30512
30643
  id: Scalars['ID']['input'];
30513
30644
  sort?: InputMaybe<GraphStoreAtlasProjectHasUpdateSortInput>;
@@ -30564,6 +30695,20 @@ export declare type GraphStoreBoardBelongsToProjectInverseArgs = {
30564
30695
  id: Scalars['ID']['input'];
30565
30696
  sort?: InputMaybe<GraphStoreBoardBelongsToProjectSortInput>;
30566
30697
  };
30698
+ export declare type GraphStoreCalendarHasLinkedDocumentArgs = {
30699
+ after?: InputMaybe<Scalars['String']['input']>;
30700
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
30701
+ first?: InputMaybe<Scalars['Int']['input']>;
30702
+ id: Scalars['ID']['input'];
30703
+ sort?: InputMaybe<GraphStoreCalendarHasLinkedDocumentSortInput>;
30704
+ };
30705
+ export declare type GraphStoreCalendarHasLinkedDocumentInverseArgs = {
30706
+ after?: InputMaybe<Scalars['String']['input']>;
30707
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
30708
+ first?: InputMaybe<Scalars['Int']['input']>;
30709
+ id: Scalars['ID']['input'];
30710
+ sort?: InputMaybe<GraphStoreCalendarHasLinkedDocumentSortInput>;
30711
+ };
30567
30712
  export declare type GraphStoreComponentAssociatedDocumentArgs = {
30568
30713
  after?: InputMaybe<Scalars['String']['input']>;
30569
30714
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -30643,6 +30788,20 @@ export declare type GraphStoreComponentLinkedJswIssueRelationshipArgs = {
30643
30788
  first?: InputMaybe<Scalars['Int']['input']>;
30644
30789
  id: Scalars['ID']['input'];
30645
30790
  };
30791
+ export declare type GraphStoreConfluenceBlogpostHasCommentArgs = {
30792
+ after?: InputMaybe<Scalars['String']['input']>;
30793
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
30794
+ first?: InputMaybe<Scalars['Int']['input']>;
30795
+ id: Scalars['ID']['input'];
30796
+ sort?: InputMaybe<GraphStoreConfluenceBlogpostHasCommentSortInput>;
30797
+ };
30798
+ export declare type GraphStoreConfluenceBlogpostHasCommentInverseArgs = {
30799
+ after?: InputMaybe<Scalars['String']['input']>;
30800
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
30801
+ first?: InputMaybe<Scalars['Int']['input']>;
30802
+ id: Scalars['ID']['input'];
30803
+ sort?: InputMaybe<GraphStoreConfluenceBlogpostHasCommentSortInput>;
30804
+ };
30646
30805
  export declare type GraphStoreConfluenceBlogpostSharedWithUserArgs = {
30647
30806
  after?: InputMaybe<Scalars['String']['input']>;
30648
30807
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -30657,6 +30816,20 @@ export declare type GraphStoreConfluenceBlogpostSharedWithUserInverseArgs = {
30657
30816
  id: Scalars['ID']['input'];
30658
30817
  sort?: InputMaybe<GraphStoreConfluenceBlogpostSharedWithUserSortInput>;
30659
30818
  };
30819
+ export declare type GraphStoreConfluencePageHasCommentArgs = {
30820
+ after?: InputMaybe<Scalars['String']['input']>;
30821
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
30822
+ first?: InputMaybe<Scalars['Int']['input']>;
30823
+ id: Scalars['ID']['input'];
30824
+ sort?: InputMaybe<GraphStoreConfluencePageHasCommentSortInput>;
30825
+ };
30826
+ export declare type GraphStoreConfluencePageHasCommentInverseArgs = {
30827
+ after?: InputMaybe<Scalars['String']['input']>;
30828
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
30829
+ first?: InputMaybe<Scalars['Int']['input']>;
30830
+ id: Scalars['ID']['input'];
30831
+ sort?: InputMaybe<GraphStoreConfluencePageHasCommentSortInput>;
30832
+ };
30660
30833
  export declare type GraphStoreConfluencePageHasConfluenceCommentArgs = {
30661
30834
  after?: InputMaybe<Scalars['String']['input']>;
30662
30835
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -30937,6 +31110,20 @@ export declare type GraphStoreFocusAreaHasFocusAreaInverseBatchArgs = {
30937
31110
  ids: Array<Scalars['ID']['input']>;
30938
31111
  sort?: InputMaybe<GraphStoreFocusAreaHasFocusAreaSortInput>;
30939
31112
  };
31113
+ export declare type GraphStoreFocusAreaHasPageArgs = {
31114
+ after?: InputMaybe<Scalars['String']['input']>;
31115
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
31116
+ first?: InputMaybe<Scalars['Int']['input']>;
31117
+ id: Scalars['ID']['input'];
31118
+ sort?: InputMaybe<GraphStoreFocusAreaHasPageSortInput>;
31119
+ };
31120
+ export declare type GraphStoreFocusAreaHasPageInverseArgs = {
31121
+ after?: InputMaybe<Scalars['String']['input']>;
31122
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
31123
+ first?: InputMaybe<Scalars['Int']['input']>;
31124
+ id: Scalars['ID']['input'];
31125
+ sort?: InputMaybe<GraphStoreFocusAreaHasPageSortInput>;
31126
+ };
30940
31127
  export declare type GraphStoreFocusAreaHasProjectArgs = {
30941
31128
  after?: InputMaybe<Scalars['String']['input']>;
30942
31129
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -31550,6 +31737,22 @@ export declare type GraphStoreIssueToWhiteboardRelationshipArgs = {
31550
31737
  first?: InputMaybe<Scalars['Int']['input']>;
31551
31738
  id: Scalars['ID']['input'];
31552
31739
  };
31740
+ export declare type GraphStoreJcsIssueAssociatedSupportEscalationArgs = {
31741
+ after?: InputMaybe<Scalars['String']['input']>;
31742
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
31743
+ filter?: InputMaybe<GraphStoreJcsIssueAssociatedSupportEscalationFilterInput>;
31744
+ first?: InputMaybe<Scalars['Int']['input']>;
31745
+ id: Scalars['ID']['input'];
31746
+ sort?: InputMaybe<GraphStoreJcsIssueAssociatedSupportEscalationSortInput>;
31747
+ };
31748
+ export declare type GraphStoreJcsIssueAssociatedSupportEscalationInverseArgs = {
31749
+ after?: InputMaybe<Scalars['String']['input']>;
31750
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
31751
+ filter?: InputMaybe<GraphStoreJcsIssueAssociatedSupportEscalationFilterInput>;
31752
+ first?: InputMaybe<Scalars['Int']['input']>;
31753
+ id: Scalars['ID']['input'];
31754
+ sort?: InputMaybe<GraphStoreJcsIssueAssociatedSupportEscalationSortInput>;
31755
+ };
31553
31756
  export declare type GraphStoreJiraEpicContributesToAtlasGoalArgs = {
31554
31757
  after?: InputMaybe<Scalars['String']['input']>;
31555
31758
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -31797,6 +32000,13 @@ export declare type GraphStoreMeetingRecordingOwnerHasMeetingNotesFolderInverseA
31797
32000
  id: Scalars['ID']['input'];
31798
32001
  sort?: InputMaybe<GraphStoreMeetingRecordingOwnerHasMeetingNotesFolderSortInput>;
31799
32002
  };
32003
+ export declare type GraphStoreMeetingRecurrenceHasMeetingRecurrenceNotesPageArgs = {
32004
+ after?: InputMaybe<Scalars['String']['input']>;
32005
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
32006
+ first?: InputMaybe<Scalars['Int']['input']>;
32007
+ id: Scalars['ID']['input'];
32008
+ sort?: InputMaybe<GraphStoreMeetingRecurrenceHasMeetingRecurrenceNotesPageSortInput>;
32009
+ };
31800
32010
  export declare type GraphStoreOnPremProjectHasIssueArgs = {
31801
32011
  after?: InputMaybe<Scalars['String']['input']>;
31802
32012
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -32534,6 +32744,20 @@ export declare type GraphStoreProjectLinkedToCompassComponentInverseArgs = {
32534
32744
  id: Scalars['ID']['input'];
32535
32745
  sort?: InputMaybe<GraphStoreProjectLinkedToCompassComponentSortInput>;
32536
32746
  };
32747
+ export declare type GraphStorePullRequestLinksToServiceArgs = {
32748
+ after?: InputMaybe<Scalars['String']['input']>;
32749
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
32750
+ first?: InputMaybe<Scalars['Int']['input']>;
32751
+ id: Scalars['ID']['input'];
32752
+ sort?: InputMaybe<GraphStorePullRequestLinksToServiceSortInput>;
32753
+ };
32754
+ export declare type GraphStorePullRequestLinksToServiceInverseArgs = {
32755
+ after?: InputMaybe<Scalars['String']['input']>;
32756
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
32757
+ first?: InputMaybe<Scalars['Int']['input']>;
32758
+ id: Scalars['ID']['input'];
32759
+ sort?: InputMaybe<GraphStorePullRequestLinksToServiceSortInput>;
32760
+ };
32537
32761
  export declare type GraphStoreSecurityContainerAssociatedToVulnerabilityArgs = {
32538
32762
  after?: InputMaybe<Scalars['String']['input']>;
32539
32763
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -32563,6 +32787,20 @@ export declare type GraphStoreSecurityContainerAssociatedToVulnerabilityRelation
32563
32787
  first?: InputMaybe<Scalars['Int']['input']>;
32564
32788
  id: Scalars['ID']['input'];
32565
32789
  };
32790
+ export declare type GraphStoreServiceAssociatedBranchArgs = {
32791
+ after?: InputMaybe<Scalars['String']['input']>;
32792
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
32793
+ first?: InputMaybe<Scalars['Int']['input']>;
32794
+ id: Scalars['ID']['input'];
32795
+ sort?: InputMaybe<GraphStoreServiceAssociatedBranchSortInput>;
32796
+ };
32797
+ export declare type GraphStoreServiceAssociatedBranchInverseArgs = {
32798
+ after?: InputMaybe<Scalars['String']['input']>;
32799
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
32800
+ first?: InputMaybe<Scalars['Int']['input']>;
32801
+ id: Scalars['ID']['input'];
32802
+ sort?: InputMaybe<GraphStoreServiceAssociatedBranchSortInput>;
32803
+ };
32566
32804
  export declare type GraphStoreServiceAssociatedDeploymentArgs = {
32567
32805
  after?: InputMaybe<Scalars['String']['input']>;
32568
32806
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -34322,8 +34560,109 @@ export declare type GraphStoreAtlasGoalHasOwnerSortInput = {
34322
34560
  export declare type GraphStoreAtlasGoalHasSubAtlasGoalSortInput = {
34323
34561
  lastModified?: InputMaybe<GraphStoreSortInput>;
34324
34562
  };
34325
- export declare type GraphStoreAtlasHomeFeedQueryToMetadataNodeUnion = JiraIssue | TeamV2 | TownsquareGoal | TownsquareProject;
34326
- export declare type GraphStoreAtlasHomeFeedQueryToNodeUnion = JiraIssue | TeamV2 | TownsquareGoal | TownsquareProject;
34563
+ export declare type GraphStoreAtlasGoalHasUpdateConditionalFilterInput = {
34564
+ createdAt?: InputMaybe<GraphStoreDateFilterInput>;
34565
+ fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
34566
+ lastModified?: InputMaybe<GraphStoreDateFilterInput>;
34567
+ relationship_createdBy?: InputMaybe<GraphStoreAriFilterInput>;
34568
+ relationship_creationDate?: InputMaybe<GraphStoreLongFilterInput>;
34569
+ relationship_lastEditedBy?: InputMaybe<GraphStoreAriFilterInput>;
34570
+ relationship_lastUpdated?: InputMaybe<GraphStoreLongFilterInput>;
34571
+ relationship_newConfidence?: InputMaybe<GraphStoreAtlasGoalHasUpdateNewConfidenceFilterInput>;
34572
+ relationship_newScore?: InputMaybe<GraphStoreLongFilterInput>;
34573
+ relationship_newStatus?: InputMaybe<GraphStoreAtlasGoalHasUpdateNewStatusFilterInput>;
34574
+ relationship_newTargetDate?: InputMaybe<GraphStoreLongFilterInput>;
34575
+ relationship_oldConfidence?: InputMaybe<GraphStoreAtlasGoalHasUpdateOldConfidenceFilterInput>;
34576
+ relationship_oldScore?: InputMaybe<GraphStoreLongFilterInput>;
34577
+ relationship_oldStatus?: InputMaybe<GraphStoreAtlasGoalHasUpdateOldStatusFilterInput>;
34578
+ relationship_oldTargetDate?: InputMaybe<GraphStoreLongFilterInput>;
34579
+ relationship_updateType?: InputMaybe<GraphStoreAtlasGoalHasUpdateUpdateTypeFilterInput>;
34580
+ toAti?: InputMaybe<GraphStoreAtiFilterInput>;
34581
+ };
34582
+ export declare type GraphStoreAtlasGoalHasUpdateFilterInput = {
34583
+ and?: InputMaybe<Array<InputMaybe<GraphStoreAtlasGoalHasUpdateConditionalFilterInput>>>;
34584
+ or?: InputMaybe<Array<InputMaybe<GraphStoreAtlasGoalHasUpdateConditionalFilterInput>>>;
34585
+ };
34586
+ export declare enum GraphStoreAtlasGoalHasUpdateNewConfidence {
34587
+ Day = "DAY",
34588
+ Month = "MONTH",
34589
+ NotSet = "NOT_SET",
34590
+ Quarter = "QUARTER"
34591
+ }
34592
+ export declare type GraphStoreAtlasGoalHasUpdateNewConfidenceFilterInput = {
34593
+ is?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateNewConfidence>>;
34594
+ isNot?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateNewConfidence>>;
34595
+ };
34596
+ export declare enum GraphStoreAtlasGoalHasUpdateNewStatus {
34597
+ AtRisk = "AT_RISK",
34598
+ Cancelled = "CANCELLED",
34599
+ Done = "DONE",
34600
+ NotSet = "NOT_SET",
34601
+ OffTrack = "OFF_TRACK",
34602
+ OnTrack = "ON_TRACK",
34603
+ Paused = "PAUSED",
34604
+ Pending = "PENDING"
34605
+ }
34606
+ export declare type GraphStoreAtlasGoalHasUpdateNewStatusFilterInput = {
34607
+ is?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateNewStatus>>;
34608
+ isNot?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateNewStatus>>;
34609
+ };
34610
+ export declare enum GraphStoreAtlasGoalHasUpdateOldConfidence {
34611
+ Day = "DAY",
34612
+ Month = "MONTH",
34613
+ NotSet = "NOT_SET",
34614
+ Null = "NULL",
34615
+ Quarter = "QUARTER"
34616
+ }
34617
+ export declare type GraphStoreAtlasGoalHasUpdateOldConfidenceFilterInput = {
34618
+ is?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateOldConfidence>>;
34619
+ isNot?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateOldConfidence>>;
34620
+ };
34621
+ export declare enum GraphStoreAtlasGoalHasUpdateOldStatus {
34622
+ AtRisk = "AT_RISK",
34623
+ Cancelled = "CANCELLED",
34624
+ Done = "DONE",
34625
+ NotSet = "NOT_SET",
34626
+ Null = "NULL",
34627
+ OffTrack = "OFF_TRACK",
34628
+ OnTrack = "ON_TRACK",
34629
+ Paused = "PAUSED",
34630
+ Pending = "PENDING"
34631
+ }
34632
+ export declare type GraphStoreAtlasGoalHasUpdateOldStatusFilterInput = {
34633
+ is?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateOldStatus>>;
34634
+ isNot?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateOldStatus>>;
34635
+ };
34636
+ export declare type GraphStoreAtlasGoalHasUpdateSortInput = {
34637
+ createdAt?: InputMaybe<GraphStoreSortInput>;
34638
+ fromAti?: InputMaybe<GraphStoreSortInput>;
34639
+ lastModified?: InputMaybe<GraphStoreSortInput>;
34640
+ relationship_createdBy?: InputMaybe<GraphStoreSortInput>;
34641
+ relationship_creationDate?: InputMaybe<GraphStoreSortInput>;
34642
+ relationship_lastEditedBy?: InputMaybe<GraphStoreSortInput>;
34643
+ relationship_lastUpdated?: InputMaybe<GraphStoreSortInput>;
34644
+ relationship_newConfidence?: InputMaybe<GraphStoreSortInput>;
34645
+ relationship_newScore?: InputMaybe<GraphStoreSortInput>;
34646
+ relationship_newStatus?: InputMaybe<GraphStoreSortInput>;
34647
+ relationship_newTargetDate?: InputMaybe<GraphStoreSortInput>;
34648
+ relationship_oldConfidence?: InputMaybe<GraphStoreSortInput>;
34649
+ relationship_oldScore?: InputMaybe<GraphStoreSortInput>;
34650
+ relationship_oldStatus?: InputMaybe<GraphStoreSortInput>;
34651
+ relationship_oldTargetDate?: InputMaybe<GraphStoreSortInput>;
34652
+ relationship_updateType?: InputMaybe<GraphStoreSortInput>;
34653
+ toAti?: InputMaybe<GraphStoreSortInput>;
34654
+ };
34655
+ export declare enum GraphStoreAtlasGoalHasUpdateUpdateType {
34656
+ NotSet = "NOT_SET",
34657
+ System = "SYSTEM",
34658
+ User = "USER"
34659
+ }
34660
+ export declare type GraphStoreAtlasGoalHasUpdateUpdateTypeFilterInput = {
34661
+ is?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateUpdateType>>;
34662
+ isNot?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateUpdateType>>;
34663
+ };
34664
+ export declare type GraphStoreAtlasHomeFeedQueryToMetadataNodeUnion = ConfluencePage | JiraIssue | TeamV2 | TownsquareGoal | TownsquareProject;
34665
+ export declare type GraphStoreAtlasHomeFeedQueryToNodeUnion = ConfluencePage | JiraIssue | TeamV2 | TownsquareGoal | TownsquareProject;
34327
34666
  export declare type GraphStoreAtlasHomeQueryConnection = {
34328
34667
  __typename?: 'GraphStoreAtlasHomeQueryConnection';
34329
34668
  nodes: Array<GraphStoreAtlasHomeQueryNode>;
@@ -34367,8 +34706,102 @@ export declare type GraphStoreAtlasProjectHasFollowerSortInput = {
34367
34706
  export declare type GraphStoreAtlasProjectHasOwnerSortInput = {
34368
34707
  lastModified?: InputMaybe<GraphStoreSortInput>;
34369
34708
  };
34709
+ export declare type GraphStoreAtlasProjectHasUpdateConditionalFilterInput = {
34710
+ createdAt?: InputMaybe<GraphStoreDateFilterInput>;
34711
+ fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
34712
+ lastModified?: InputMaybe<GraphStoreDateFilterInput>;
34713
+ relationship_createdBy?: InputMaybe<GraphStoreAriFilterInput>;
34714
+ relationship_creationDate?: InputMaybe<GraphStoreLongFilterInput>;
34715
+ relationship_lastEditedBy?: InputMaybe<GraphStoreAriFilterInput>;
34716
+ relationship_lastUpdated?: InputMaybe<GraphStoreLongFilterInput>;
34717
+ relationship_newConfidence?: InputMaybe<GraphStoreAtlasProjectHasUpdateNewConfidenceFilterInput>;
34718
+ relationship_newStatus?: InputMaybe<GraphStoreAtlasProjectHasUpdateNewStatusFilterInput>;
34719
+ relationship_newTargetDate?: InputMaybe<GraphStoreLongFilterInput>;
34720
+ relationship_oldConfidence?: InputMaybe<GraphStoreAtlasProjectHasUpdateOldConfidenceFilterInput>;
34721
+ relationship_oldStatus?: InputMaybe<GraphStoreAtlasProjectHasUpdateOldStatusFilterInput>;
34722
+ relationship_oldTargetDate?: InputMaybe<GraphStoreLongFilterInput>;
34723
+ relationship_updateType?: InputMaybe<GraphStoreAtlasProjectHasUpdateUpdateTypeFilterInput>;
34724
+ toAti?: InputMaybe<GraphStoreAtiFilterInput>;
34725
+ };
34726
+ export declare type GraphStoreAtlasProjectHasUpdateFilterInput = {
34727
+ and?: InputMaybe<Array<InputMaybe<GraphStoreAtlasProjectHasUpdateConditionalFilterInput>>>;
34728
+ or?: InputMaybe<Array<InputMaybe<GraphStoreAtlasProjectHasUpdateConditionalFilterInput>>>;
34729
+ };
34730
+ export declare enum GraphStoreAtlasProjectHasUpdateNewConfidence {
34731
+ Day = "DAY",
34732
+ Month = "MONTH",
34733
+ NotSet = "NOT_SET",
34734
+ Quarter = "QUARTER"
34735
+ }
34736
+ export declare type GraphStoreAtlasProjectHasUpdateNewConfidenceFilterInput = {
34737
+ is?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateNewConfidence>>;
34738
+ isNot?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateNewConfidence>>;
34739
+ };
34740
+ export declare enum GraphStoreAtlasProjectHasUpdateNewStatus {
34741
+ AtRisk = "AT_RISK",
34742
+ Cancelled = "CANCELLED",
34743
+ Done = "DONE",
34744
+ NotSet = "NOT_SET",
34745
+ OffTrack = "OFF_TRACK",
34746
+ OnTrack = "ON_TRACK",
34747
+ Paused = "PAUSED",
34748
+ Pending = "PENDING"
34749
+ }
34750
+ export declare type GraphStoreAtlasProjectHasUpdateNewStatusFilterInput = {
34751
+ is?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateNewStatus>>;
34752
+ isNot?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateNewStatus>>;
34753
+ };
34754
+ export declare enum GraphStoreAtlasProjectHasUpdateOldConfidence {
34755
+ Day = "DAY",
34756
+ Month = "MONTH",
34757
+ NotSet = "NOT_SET",
34758
+ Null = "NULL",
34759
+ Quarter = "QUARTER"
34760
+ }
34761
+ export declare type GraphStoreAtlasProjectHasUpdateOldConfidenceFilterInput = {
34762
+ is?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateOldConfidence>>;
34763
+ isNot?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateOldConfidence>>;
34764
+ };
34765
+ export declare enum GraphStoreAtlasProjectHasUpdateOldStatus {
34766
+ AtRisk = "AT_RISK",
34767
+ Cancelled = "CANCELLED",
34768
+ Done = "DONE",
34769
+ NotSet = "NOT_SET",
34770
+ Null = "NULL",
34771
+ OffTrack = "OFF_TRACK",
34772
+ OnTrack = "ON_TRACK",
34773
+ Paused = "PAUSED",
34774
+ Pending = "PENDING"
34775
+ }
34776
+ export declare type GraphStoreAtlasProjectHasUpdateOldStatusFilterInput = {
34777
+ is?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateOldStatus>>;
34778
+ isNot?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateOldStatus>>;
34779
+ };
34370
34780
  export declare type GraphStoreAtlasProjectHasUpdateSortInput = {
34781
+ createdAt?: InputMaybe<GraphStoreSortInput>;
34782
+ fromAti?: InputMaybe<GraphStoreSortInput>;
34371
34783
  lastModified?: InputMaybe<GraphStoreSortInput>;
34784
+ relationship_createdBy?: InputMaybe<GraphStoreSortInput>;
34785
+ relationship_creationDate?: InputMaybe<GraphStoreSortInput>;
34786
+ relationship_lastEditedBy?: InputMaybe<GraphStoreSortInput>;
34787
+ relationship_lastUpdated?: InputMaybe<GraphStoreSortInput>;
34788
+ relationship_newConfidence?: InputMaybe<GraphStoreSortInput>;
34789
+ relationship_newStatus?: InputMaybe<GraphStoreSortInput>;
34790
+ relationship_newTargetDate?: InputMaybe<GraphStoreSortInput>;
34791
+ relationship_oldConfidence?: InputMaybe<GraphStoreSortInput>;
34792
+ relationship_oldStatus?: InputMaybe<GraphStoreSortInput>;
34793
+ relationship_oldTargetDate?: InputMaybe<GraphStoreSortInput>;
34794
+ relationship_updateType?: InputMaybe<GraphStoreSortInput>;
34795
+ toAti?: InputMaybe<GraphStoreSortInput>;
34796
+ };
34797
+ export declare enum GraphStoreAtlasProjectHasUpdateUpdateType {
34798
+ NotSet = "NOT_SET",
34799
+ System = "SYSTEM",
34800
+ User = "USER"
34801
+ }
34802
+ export declare type GraphStoreAtlasProjectHasUpdateUpdateTypeFilterInput = {
34803
+ is?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateUpdateType>>;
34804
+ isNot?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateUpdateType>>;
34372
34805
  };
34373
34806
  export declare type GraphStoreAtlasProjectIsRelatedToAtlasProjectSortInput = {
34374
34807
  lastModified?: InputMaybe<GraphStoreSortInput>;
@@ -35034,6 +35467,9 @@ export declare type GraphStoreBoardBelongsToProjectSortInput = {
35034
35467
  export declare type GraphStoreBooleanFilterInput = {
35035
35468
  is?: InputMaybe<Scalars['Boolean']['input']>;
35036
35469
  };
35470
+ export declare type GraphStoreCalendarHasLinkedDocumentSortInput = {
35471
+ lastModified?: InputMaybe<GraphStoreSortInput>;
35472
+ };
35037
35473
  export declare type GraphStoreComponentAssociatedDocumentSortInput = {
35038
35474
  lastModified?: InputMaybe<GraphStoreSortInput>;
35039
35475
  };
@@ -35049,9 +35485,15 @@ export declare type GraphStoreComponentLinkedJswIssueSortInput = {
35049
35485
  lastModified?: InputMaybe<GraphStoreSortInput>;
35050
35486
  toAti?: InputMaybe<GraphStoreSortInput>;
35051
35487
  };
35488
+ export declare type GraphStoreConfluenceBlogpostHasCommentSortInput = {
35489
+ lastModified?: InputMaybe<GraphStoreSortInput>;
35490
+ };
35052
35491
  export declare type GraphStoreConfluenceBlogpostSharedWithUserSortInput = {
35053
35492
  lastModified?: InputMaybe<GraphStoreSortInput>;
35054
35493
  };
35494
+ export declare type GraphStoreConfluencePageHasCommentSortInput = {
35495
+ lastModified?: InputMaybe<GraphStoreSortInput>;
35496
+ };
35055
35497
  export declare type GraphStoreConfluencePageHasConfluenceCommentSortInput = {
35056
35498
  lastModified?: InputMaybe<GraphStoreSortInput>;
35057
35499
  };
@@ -35181,6 +35623,25 @@ export declare type GraphStoreCreateIssueToWhiteboardRelationshipInput = {
35181
35623
  to: Scalars['ID']['input'];
35182
35624
  updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
35183
35625
  };
35626
+ export declare type GraphStoreCreateJcsIssueAssociatedSupportEscalationInput = {
35627
+ relationships: Array<GraphStoreCreateJcsIssueAssociatedSupportEscalationRelationshipInput>;
35628
+ };
35629
+ export declare type GraphStoreCreateJcsIssueAssociatedSupportEscalationPayload = Payload & {
35630
+ __typename?: 'GraphStoreCreateJcsIssueAssociatedSupportEscalationPayload';
35631
+ errors?: Maybe<Array<MutationError>>;
35632
+ success: Scalars['Boolean']['output'];
35633
+ };
35634
+ export declare type GraphStoreCreateJcsIssueAssociatedSupportEscalationRelationshipInput = {
35635
+ from: Scalars['ID']['input'];
35636
+ relationshipMetadata?: InputMaybe<GraphStoreCreateJcsIssueAssociatedSupportEscalationRelationshipMetadataInput>;
35637
+ sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
35638
+ to: Scalars['ID']['input'];
35639
+ updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
35640
+ };
35641
+ export declare type GraphStoreCreateJcsIssueAssociatedSupportEscalationRelationshipMetadataInput = {
35642
+ SupportEscalationLastUpdated?: InputMaybe<Scalars['Long']['input']>;
35643
+ creatorAri?: InputMaybe<Scalars['String']['input']>;
35644
+ };
35184
35645
  export declare type GraphStoreCreateJswProjectAssociatedComponentInput = {
35185
35646
  relationships: Array<GraphStoreCreateJswProjectAssociatedComponentRelationshipInput>;
35186
35647
  };
@@ -35500,7 +35961,7 @@ export declare type GraphStoreCypherQueryFromNode = {
35500
35961
  data?: Maybe<GraphStoreCypherQueryFromNodeUnion>;
35501
35962
  id: Scalars['ID']['output'];
35502
35963
  };
35503
- export declare type GraphStoreCypherQueryFromNodeUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | JiraAlignAggProject | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraProject | JiraServiceManagementComment | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareProject | TownsquareProjectUpdate;
35964
+ export declare type GraphStoreCypherQueryFromNodeUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | JiraAlignAggProject | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraProject | JiraServiceManagementComment | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
35504
35965
  export declare type GraphStoreCypherQueryNode = {
35505
35966
  __typename?: 'GraphStoreCypherQueryNode';
35506
35967
  from: GraphStoreCypherQueryFromNode;
@@ -35525,8 +35986,8 @@ export declare type GraphStoreCypherQueryToNode = {
35525
35986
  data?: Maybe<GraphStoreCypherQueryToNodeUnion>;
35526
35987
  id: Scalars['ID']['output'];
35527
35988
  };
35528
- export declare type GraphStoreCypherQueryToNodeUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | JiraAlignAggProject | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraProject | JiraServiceManagementComment | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareProject | TownsquareProjectUpdate;
35529
- export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | JiraAlignAggProject | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraProject | JiraServiceManagementComment | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareProject | TownsquareProjectUpdate;
35989
+ export declare type GraphStoreCypherQueryToNodeUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | JiraAlignAggProject | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraProject | JiraServiceManagementComment | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
35990
+ export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | JiraAlignAggProject | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraProject | JiraServiceManagementComment | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
35530
35991
  export declare type GraphStoreCypherQueryValueNode = {
35531
35992
  __typename?: 'GraphStoreCypherQueryValueNode';
35532
35993
  data?: Maybe<GraphStoreCypherQueryValueItemUnion>;
@@ -35601,6 +36062,19 @@ export declare type GraphStoreDeleteIssueToWhiteboardRelationshipInput = {
35601
36062
  from: Scalars['ID']['input'];
35602
36063
  to: Scalars['ID']['input'];
35603
36064
  };
36065
+ export declare type GraphStoreDeleteJcsIssueAssociatedSupportEscalationInput = {
36066
+ relationships: Array<GraphStoreDeleteJcsIssueAssociatedSupportEscalationRelationshipInput>;
36067
+ synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
36068
+ };
36069
+ export declare type GraphStoreDeleteJcsIssueAssociatedSupportEscalationPayload = Payload & {
36070
+ __typename?: 'GraphStoreDeleteJcsIssueAssociatedSupportEscalationPayload';
36071
+ errors?: Maybe<Array<MutationError>>;
36072
+ success: Scalars['Boolean']['output'];
36073
+ };
36074
+ export declare type GraphStoreDeleteJcsIssueAssociatedSupportEscalationRelationshipInput = {
36075
+ from: Scalars['ID']['input'];
36076
+ to: Scalars['ID']['input'];
36077
+ };
35604
36078
  export declare type GraphStoreDeleteJswProjectAssociatedComponentInput = {
35605
36079
  relationships: Array<GraphStoreDeleteJswProjectAssociatedComponentRelationshipInput>;
35606
36080
  synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
@@ -35871,6 +36345,9 @@ export declare type GraphStoreFocusAreaHasAtlasGoalSortInput = {
35871
36345
  export declare type GraphStoreFocusAreaHasFocusAreaSortInput = {
35872
36346
  lastModified?: InputMaybe<GraphStoreSortInput>;
35873
36347
  };
36348
+ export declare type GraphStoreFocusAreaHasPageSortInput = {
36349
+ lastModified?: InputMaybe<GraphStoreSortInput>;
36350
+ };
35874
36351
  export declare type GraphStoreFocusAreaHasProjectSortInput = {
35875
36352
  lastModified?: InputMaybe<GraphStoreSortInput>;
35876
36353
  };
@@ -39457,6 +39934,26 @@ export declare type GraphStoreIssueToWhiteboardSortInput = {
39457
39934
  lastModified?: InputMaybe<GraphStoreSortInput>;
39458
39935
  toAti?: InputMaybe<GraphStoreSortInput>;
39459
39936
  };
39937
+ export declare type GraphStoreJcsIssueAssociatedSupportEscalationConditionalFilterInput = {
39938
+ createdAt?: InputMaybe<GraphStoreDateFilterInput>;
39939
+ fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
39940
+ lastModified?: InputMaybe<GraphStoreDateFilterInput>;
39941
+ relationship_SupportEscalationLastUpdated?: InputMaybe<GraphStoreLongFilterInput>;
39942
+ relationship_creatorAri?: InputMaybe<GraphStoreAriFilterInput>;
39943
+ toAti?: InputMaybe<GraphStoreAtiFilterInput>;
39944
+ };
39945
+ export declare type GraphStoreJcsIssueAssociatedSupportEscalationFilterInput = {
39946
+ and?: InputMaybe<Array<InputMaybe<GraphStoreJcsIssueAssociatedSupportEscalationConditionalFilterInput>>>;
39947
+ or?: InputMaybe<Array<InputMaybe<GraphStoreJcsIssueAssociatedSupportEscalationConditionalFilterInput>>>;
39948
+ };
39949
+ export declare type GraphStoreJcsIssueAssociatedSupportEscalationSortInput = {
39950
+ createdAt?: InputMaybe<GraphStoreSortInput>;
39951
+ fromAti?: InputMaybe<GraphStoreSortInput>;
39952
+ lastModified?: InputMaybe<GraphStoreSortInput>;
39953
+ relationship_SupportEscalationLastUpdated?: InputMaybe<GraphStoreSortInput>;
39954
+ relationship_creatorAri?: InputMaybe<GraphStoreSortInput>;
39955
+ toAti?: InputMaybe<GraphStoreSortInput>;
39956
+ };
39460
39957
  export declare type GraphStoreJiraEpicContributesToAtlasGoalSortInput = {
39461
39958
  lastModified?: InputMaybe<GraphStoreSortInput>;
39462
39959
  };
@@ -39569,6 +40066,9 @@ export declare type GraphStoreMeetingRecordingOwnerHasMeetingNotesFolderSortInpu
39569
40066
  lastModified?: InputMaybe<GraphStoreSortInput>;
39570
40067
  toAti?: InputMaybe<GraphStoreSortInput>;
39571
40068
  };
40069
+ export declare type GraphStoreMeetingRecurrenceHasMeetingRecurrenceNotesPageSortInput = {
40070
+ lastModified?: InputMaybe<GraphStoreSortInput>;
40071
+ };
39572
40072
  export declare type GraphStoreMutation = {
39573
40073
  __typename?: 'GraphStoreMutation';
39574
40074
  createComponentImpactedByIncident?: Maybe<GraphStoreCreateComponentImpactedByIncidentPayload>;
@@ -39576,6 +40076,7 @@ export declare type GraphStoreMutation = {
39576
40076
  createIncidentHasActionItem?: Maybe<GraphStoreCreateIncidentHasActionItemPayload>;
39577
40077
  createIncidentLinkedJswIssue?: Maybe<GraphStoreCreateIncidentLinkedJswIssuePayload>;
39578
40078
  createIssueToWhiteboard?: Maybe<GraphStoreCreateIssueToWhiteboardPayload>;
40079
+ createJcsIssueAssociatedSupportEscalation?: Maybe<GraphStoreCreateJcsIssueAssociatedSupportEscalationPayload>;
39579
40080
  createJswProjectAssociatedComponent?: Maybe<GraphStoreCreateJswProjectAssociatedComponentPayload>;
39580
40081
  createMeetingRecordingOwnerHasMeetingNotesFolder?: Maybe<GraphStoreCreateMeetingRecordingOwnerHasMeetingNotesFolderPayload>;
39581
40082
  createProjectAssociatedOpsgenieTeam?: Maybe<GraphStoreCreateProjectAssociatedOpsgenieTeamPayload>;
@@ -39600,6 +40101,7 @@ export declare type GraphStoreMutation = {
39600
40101
  deleteIncidentHasActionItem?: Maybe<GraphStoreDeleteIncidentHasActionItemPayload>;
39601
40102
  deleteIncidentLinkedJswIssue?: Maybe<GraphStoreDeleteIncidentLinkedJswIssuePayload>;
39602
40103
  deleteIssueToWhiteboard?: Maybe<GraphStoreDeleteIssueToWhiteboardPayload>;
40104
+ deleteJcsIssueAssociatedSupportEscalation?: Maybe<GraphStoreDeleteJcsIssueAssociatedSupportEscalationPayload>;
39603
40105
  deleteJswProjectAssociatedComponent?: Maybe<GraphStoreDeleteJswProjectAssociatedComponentPayload>;
39604
40106
  deleteMeetingRecordingOwnerHasMeetingNotesFolder?: Maybe<GraphStoreDeleteMeetingRecordingOwnerHasMeetingNotesFolderPayload>;
39605
40107
  deleteProjectAssociatedOpsgenieTeam?: Maybe<GraphStoreDeleteProjectAssociatedOpsgenieTeamPayload>;
@@ -39635,6 +40137,9 @@ export declare type GraphStoreMutationCreateIncidentLinkedJswIssueArgs = {
39635
40137
  export declare type GraphStoreMutationCreateIssueToWhiteboardArgs = {
39636
40138
  input?: InputMaybe<GraphStoreCreateIssueToWhiteboardInput>;
39637
40139
  };
40140
+ export declare type GraphStoreMutationCreateJcsIssueAssociatedSupportEscalationArgs = {
40141
+ input?: InputMaybe<GraphStoreCreateJcsIssueAssociatedSupportEscalationInput>;
40142
+ };
39638
40143
  export declare type GraphStoreMutationCreateJswProjectAssociatedComponentArgs = {
39639
40144
  input?: InputMaybe<GraphStoreCreateJswProjectAssociatedComponentInput>;
39640
40145
  };
@@ -39707,6 +40212,9 @@ export declare type GraphStoreMutationDeleteIncidentLinkedJswIssueArgs = {
39707
40212
  export declare type GraphStoreMutationDeleteIssueToWhiteboardArgs = {
39708
40213
  input?: InputMaybe<GraphStoreDeleteIssueToWhiteboardInput>;
39709
40214
  };
40215
+ export declare type GraphStoreMutationDeleteJcsIssueAssociatedSupportEscalationArgs = {
40216
+ input?: InputMaybe<GraphStoreDeleteJcsIssueAssociatedSupportEscalationInput>;
40217
+ };
39710
40218
  export declare type GraphStoreMutationDeleteJswProjectAssociatedComponentArgs = {
39711
40219
  input?: InputMaybe<GraphStoreDeleteJswProjectAssociatedComponentInput>;
39712
40220
  };
@@ -40220,9 +40728,15 @@ export declare type GraphStoreProjectLinkedToCompassComponentSortInput = {
40220
40728
  lastModified?: InputMaybe<GraphStoreSortInput>;
40221
40729
  toAti?: InputMaybe<GraphStoreSortInput>;
40222
40730
  };
40731
+ export declare type GraphStorePullRequestLinksToServiceSortInput = {
40732
+ lastModified?: InputMaybe<GraphStoreSortInput>;
40733
+ };
40223
40734
  export declare type GraphStoreSecurityContainerAssociatedToVulnerabilitySortInput = {
40224
40735
  lastModified?: InputMaybe<GraphStoreSortInput>;
40225
40736
  };
40737
+ export declare type GraphStoreServiceAssociatedBranchSortInput = {
40738
+ lastModified?: InputMaybe<GraphStoreSortInput>;
40739
+ };
40226
40740
  export declare type GraphStoreServiceAssociatedDeploymentSortInput = {
40227
40741
  lastModified?: InputMaybe<GraphStoreSortInput>;
40228
40742
  };
@@ -40413,6 +40927,38 @@ export declare type GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalInverseEdge = {
40413
40927
  };
40414
40928
  export declare type GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalInverseUnion = TownsquareGoal;
40415
40929
  export declare type GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalUnion = TownsquareGoal;
40930
+ export declare type GraphStoreSimplifiedAtlasGoalHasUpdateConnection = HasPageInfo & HasTotal & {
40931
+ __typename?: 'GraphStoreSimplifiedAtlasGoalHasUpdateConnection';
40932
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasGoalHasUpdateEdge>>>;
40933
+ isExactCount?: Maybe<Scalars['Boolean']['output']>;
40934
+ pageInfo: PageInfo;
40935
+ totalCount?: Maybe<Scalars['Int']['output']>;
40936
+ };
40937
+ export declare type GraphStoreSimplifiedAtlasGoalHasUpdateEdge = {
40938
+ __typename?: 'GraphStoreSimplifiedAtlasGoalHasUpdateEdge';
40939
+ createdAt: Scalars['DateTime']['output'];
40940
+ cursor?: Maybe<Scalars['String']['output']>;
40941
+ id: Scalars['ID']['output'];
40942
+ lastUpdated: Scalars['DateTime']['output'];
40943
+ node?: Maybe<GraphStoreSimplifiedAtlasGoalHasUpdateUnion>;
40944
+ };
40945
+ export declare type GraphStoreSimplifiedAtlasGoalHasUpdateInverseConnection = HasPageInfo & HasTotal & {
40946
+ __typename?: 'GraphStoreSimplifiedAtlasGoalHasUpdateInverseConnection';
40947
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasGoalHasUpdateInverseEdge>>>;
40948
+ isExactCount?: Maybe<Scalars['Boolean']['output']>;
40949
+ pageInfo: PageInfo;
40950
+ totalCount?: Maybe<Scalars['Int']['output']>;
40951
+ };
40952
+ export declare type GraphStoreSimplifiedAtlasGoalHasUpdateInverseEdge = {
40953
+ __typename?: 'GraphStoreSimplifiedAtlasGoalHasUpdateInverseEdge';
40954
+ createdAt: Scalars['DateTime']['output'];
40955
+ cursor?: Maybe<Scalars['String']['output']>;
40956
+ id: Scalars['ID']['output'];
40957
+ lastUpdated: Scalars['DateTime']['output'];
40958
+ node?: Maybe<GraphStoreSimplifiedAtlasGoalHasUpdateInverseUnion>;
40959
+ };
40960
+ export declare type GraphStoreSimplifiedAtlasGoalHasUpdateInverseUnion = TownsquareGoal;
40961
+ export declare type GraphStoreSimplifiedAtlasGoalHasUpdateUnion = TownsquareGoalUpdate;
40416
40962
  export declare type GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalConnection = HasPageInfo & {
40417
40963
  __typename?: 'GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalConnection';
40418
40964
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalEdge>>>;
@@ -40553,10 +41099,12 @@ export declare type GraphStoreSimplifiedAtlasProjectHasOwnerInverseEdge = {
40553
41099
  };
40554
41100
  export declare type GraphStoreSimplifiedAtlasProjectHasOwnerInverseUnion = TownsquareProject;
40555
41101
  export declare type GraphStoreSimplifiedAtlasProjectHasOwnerUnion = AppUser | AtlassianAccountUser | CustomerUser;
40556
- export declare type GraphStoreSimplifiedAtlasProjectHasUpdateConnection = HasPageInfo & {
41102
+ export declare type GraphStoreSimplifiedAtlasProjectHasUpdateConnection = HasPageInfo & HasTotal & {
40557
41103
  __typename?: 'GraphStoreSimplifiedAtlasProjectHasUpdateConnection';
40558
41104
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateEdge>>>;
41105
+ isExactCount?: Maybe<Scalars['Boolean']['output']>;
40559
41106
  pageInfo: PageInfo;
41107
+ totalCount?: Maybe<Scalars['Int']['output']>;
40560
41108
  };
40561
41109
  export declare type GraphStoreSimplifiedAtlasProjectHasUpdateEdge = {
40562
41110
  __typename?: 'GraphStoreSimplifiedAtlasProjectHasUpdateEdge';
@@ -40566,10 +41114,12 @@ export declare type GraphStoreSimplifiedAtlasProjectHasUpdateEdge = {
40566
41114
  lastUpdated: Scalars['DateTime']['output'];
40567
41115
  node?: Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateUnion>;
40568
41116
  };
40569
- export declare type GraphStoreSimplifiedAtlasProjectHasUpdateInverseConnection = HasPageInfo & {
41117
+ export declare type GraphStoreSimplifiedAtlasProjectHasUpdateInverseConnection = HasPageInfo & HasTotal & {
40570
41118
  __typename?: 'GraphStoreSimplifiedAtlasProjectHasUpdateInverseConnection';
40571
41119
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateInverseEdge>>>;
41120
+ isExactCount?: Maybe<Scalars['Boolean']['output']>;
40572
41121
  pageInfo: PageInfo;
41122
+ totalCount?: Maybe<Scalars['Int']['output']>;
40573
41123
  };
40574
41124
  export declare type GraphStoreSimplifiedAtlasProjectHasUpdateInverseEdge = {
40575
41125
  __typename?: 'GraphStoreSimplifiedAtlasProjectHasUpdateInverseEdge';
@@ -40665,6 +41215,34 @@ export declare type GraphStoreSimplifiedBoardBelongsToProjectInverseEdge = {
40665
41215
  };
40666
41216
  export declare type GraphStoreSimplifiedBoardBelongsToProjectInverseUnion = JiraBoard;
40667
41217
  export declare type GraphStoreSimplifiedBoardBelongsToProjectUnion = JiraProject;
41218
+ export declare type GraphStoreSimplifiedCalendarHasLinkedDocumentConnection = HasPageInfo & {
41219
+ __typename?: 'GraphStoreSimplifiedCalendarHasLinkedDocumentConnection';
41220
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedCalendarHasLinkedDocumentEdge>>>;
41221
+ pageInfo: PageInfo;
41222
+ };
41223
+ export declare type GraphStoreSimplifiedCalendarHasLinkedDocumentEdge = {
41224
+ __typename?: 'GraphStoreSimplifiedCalendarHasLinkedDocumentEdge';
41225
+ createdAt: Scalars['DateTime']['output'];
41226
+ cursor?: Maybe<Scalars['String']['output']>;
41227
+ id: Scalars['ID']['output'];
41228
+ lastUpdated: Scalars['DateTime']['output'];
41229
+ node?: Maybe<GraphStoreSimplifiedCalendarHasLinkedDocumentUnion>;
41230
+ };
41231
+ export declare type GraphStoreSimplifiedCalendarHasLinkedDocumentInverseConnection = HasPageInfo & {
41232
+ __typename?: 'GraphStoreSimplifiedCalendarHasLinkedDocumentInverseConnection';
41233
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedCalendarHasLinkedDocumentInverseEdge>>>;
41234
+ pageInfo: PageInfo;
41235
+ };
41236
+ export declare type GraphStoreSimplifiedCalendarHasLinkedDocumentInverseEdge = {
41237
+ __typename?: 'GraphStoreSimplifiedCalendarHasLinkedDocumentInverseEdge';
41238
+ createdAt: Scalars['DateTime']['output'];
41239
+ cursor?: Maybe<Scalars['String']['output']>;
41240
+ id: Scalars['ID']['output'];
41241
+ lastUpdated: Scalars['DateTime']['output'];
41242
+ node?: Maybe<GraphStoreSimplifiedCalendarHasLinkedDocumentInverseUnion>;
41243
+ };
41244
+ export declare type GraphStoreSimplifiedCalendarHasLinkedDocumentInverseUnion = ExternalCalendarEvent;
41245
+ export declare type GraphStoreSimplifiedCalendarHasLinkedDocumentUnion = DevOpsDocument | ExternalDocument;
40668
41246
  export declare type GraphStoreSimplifiedComponentAssociatedDocumentConnection = HasPageInfo & {
40669
41247
  __typename?: 'GraphStoreSimplifiedComponentAssociatedDocumentConnection';
40670
41248
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedComponentAssociatedDocumentEdge>>>;
@@ -40767,6 +41345,34 @@ export declare type GraphStoreSimplifiedComponentLinkedJswIssueInverseEdge = {
40767
41345
  };
40768
41346
  export declare type GraphStoreSimplifiedComponentLinkedJswIssueInverseUnion = CompassComponent | DevOpsOperationsComponentDetails | DevOpsService;
40769
41347
  export declare type GraphStoreSimplifiedComponentLinkedJswIssueUnion = JiraIssue;
41348
+ export declare type GraphStoreSimplifiedConfluenceBlogpostHasCommentConnection = HasPageInfo & {
41349
+ __typename?: 'GraphStoreSimplifiedConfluenceBlogpostHasCommentConnection';
41350
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluenceBlogpostHasCommentEdge>>>;
41351
+ pageInfo: PageInfo;
41352
+ };
41353
+ export declare type GraphStoreSimplifiedConfluenceBlogpostHasCommentEdge = {
41354
+ __typename?: 'GraphStoreSimplifiedConfluenceBlogpostHasCommentEdge';
41355
+ createdAt: Scalars['DateTime']['output'];
41356
+ cursor?: Maybe<Scalars['String']['output']>;
41357
+ id: Scalars['ID']['output'];
41358
+ lastUpdated: Scalars['DateTime']['output'];
41359
+ node?: Maybe<GraphStoreSimplifiedConfluenceBlogpostHasCommentUnion>;
41360
+ };
41361
+ export declare type GraphStoreSimplifiedConfluenceBlogpostHasCommentInverseConnection = HasPageInfo & {
41362
+ __typename?: 'GraphStoreSimplifiedConfluenceBlogpostHasCommentInverseConnection';
41363
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluenceBlogpostHasCommentInverseEdge>>>;
41364
+ pageInfo: PageInfo;
41365
+ };
41366
+ export declare type GraphStoreSimplifiedConfluenceBlogpostHasCommentInverseEdge = {
41367
+ __typename?: 'GraphStoreSimplifiedConfluenceBlogpostHasCommentInverseEdge';
41368
+ createdAt: Scalars['DateTime']['output'];
41369
+ cursor?: Maybe<Scalars['String']['output']>;
41370
+ id: Scalars['ID']['output'];
41371
+ lastUpdated: Scalars['DateTime']['output'];
41372
+ node?: Maybe<GraphStoreSimplifiedConfluenceBlogpostHasCommentInverseUnion>;
41373
+ };
41374
+ export declare type GraphStoreSimplifiedConfluenceBlogpostHasCommentInverseUnion = ConfluenceBlogPost;
41375
+ export declare type GraphStoreSimplifiedConfluenceBlogpostHasCommentUnion = ConfluenceFooterComment | ConfluenceInlineComment;
40770
41376
  export declare type GraphStoreSimplifiedConfluenceBlogpostSharedWithUserConnection = HasPageInfo & {
40771
41377
  __typename?: 'GraphStoreSimplifiedConfluenceBlogpostSharedWithUserConnection';
40772
41378
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluenceBlogpostSharedWithUserEdge>>>;
@@ -40795,6 +41401,34 @@ export declare type GraphStoreSimplifiedConfluenceBlogpostSharedWithUserInverseE
40795
41401
  };
40796
41402
  export declare type GraphStoreSimplifiedConfluenceBlogpostSharedWithUserInverseUnion = ConfluenceBlogPost;
40797
41403
  export declare type GraphStoreSimplifiedConfluenceBlogpostSharedWithUserUnion = AppUser | AtlassianAccountUser | CustomerUser;
41404
+ export declare type GraphStoreSimplifiedConfluencePageHasCommentConnection = HasPageInfo & {
41405
+ __typename?: 'GraphStoreSimplifiedConfluencePageHasCommentConnection';
41406
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluencePageHasCommentEdge>>>;
41407
+ pageInfo: PageInfo;
41408
+ };
41409
+ export declare type GraphStoreSimplifiedConfluencePageHasCommentEdge = {
41410
+ __typename?: 'GraphStoreSimplifiedConfluencePageHasCommentEdge';
41411
+ createdAt: Scalars['DateTime']['output'];
41412
+ cursor?: Maybe<Scalars['String']['output']>;
41413
+ id: Scalars['ID']['output'];
41414
+ lastUpdated: Scalars['DateTime']['output'];
41415
+ node?: Maybe<GraphStoreSimplifiedConfluencePageHasCommentUnion>;
41416
+ };
41417
+ export declare type GraphStoreSimplifiedConfluencePageHasCommentInverseConnection = HasPageInfo & {
41418
+ __typename?: 'GraphStoreSimplifiedConfluencePageHasCommentInverseConnection';
41419
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluencePageHasCommentInverseEdge>>>;
41420
+ pageInfo: PageInfo;
41421
+ };
41422
+ export declare type GraphStoreSimplifiedConfluencePageHasCommentInverseEdge = {
41423
+ __typename?: 'GraphStoreSimplifiedConfluencePageHasCommentInverseEdge';
41424
+ createdAt: Scalars['DateTime']['output'];
41425
+ cursor?: Maybe<Scalars['String']['output']>;
41426
+ id: Scalars['ID']['output'];
41427
+ lastUpdated: Scalars['DateTime']['output'];
41428
+ node?: Maybe<GraphStoreSimplifiedConfluencePageHasCommentInverseUnion>;
41429
+ };
41430
+ export declare type GraphStoreSimplifiedConfluencePageHasCommentInverseUnion = ConfluencePage;
41431
+ export declare type GraphStoreSimplifiedConfluencePageHasCommentUnion = ConfluenceFooterComment | ConfluenceInlineComment;
40798
41432
  export declare type GraphStoreSimplifiedConfluencePageHasConfluenceCommentConnection = HasPageInfo & {
40799
41433
  __typename?: 'GraphStoreSimplifiedConfluencePageHasConfluenceCommentConnection';
40800
41434
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceCommentEdge>>>;
@@ -41215,6 +41849,34 @@ export declare type GraphStoreSimplifiedFocusAreaHasFocusAreaInverseEdge = {
41215
41849
  };
41216
41850
  export declare type GraphStoreSimplifiedFocusAreaHasFocusAreaInverseUnion = MercuryFocusArea;
41217
41851
  export declare type GraphStoreSimplifiedFocusAreaHasFocusAreaUnion = MercuryFocusArea;
41852
+ export declare type GraphStoreSimplifiedFocusAreaHasPageConnection = HasPageInfo & {
41853
+ __typename?: 'GraphStoreSimplifiedFocusAreaHasPageConnection';
41854
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedFocusAreaHasPageEdge>>>;
41855
+ pageInfo: PageInfo;
41856
+ };
41857
+ export declare type GraphStoreSimplifiedFocusAreaHasPageEdge = {
41858
+ __typename?: 'GraphStoreSimplifiedFocusAreaHasPageEdge';
41859
+ createdAt: Scalars['DateTime']['output'];
41860
+ cursor?: Maybe<Scalars['String']['output']>;
41861
+ id: Scalars['ID']['output'];
41862
+ lastUpdated: Scalars['DateTime']['output'];
41863
+ node?: Maybe<GraphStoreSimplifiedFocusAreaHasPageUnion>;
41864
+ };
41865
+ export declare type GraphStoreSimplifiedFocusAreaHasPageInverseConnection = HasPageInfo & {
41866
+ __typename?: 'GraphStoreSimplifiedFocusAreaHasPageInverseConnection';
41867
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedFocusAreaHasPageInverseEdge>>>;
41868
+ pageInfo: PageInfo;
41869
+ };
41870
+ export declare type GraphStoreSimplifiedFocusAreaHasPageInverseEdge = {
41871
+ __typename?: 'GraphStoreSimplifiedFocusAreaHasPageInverseEdge';
41872
+ createdAt: Scalars['DateTime']['output'];
41873
+ cursor?: Maybe<Scalars['String']['output']>;
41874
+ id: Scalars['ID']['output'];
41875
+ lastUpdated: Scalars['DateTime']['output'];
41876
+ node?: Maybe<GraphStoreSimplifiedFocusAreaHasPageInverseUnion>;
41877
+ };
41878
+ export declare type GraphStoreSimplifiedFocusAreaHasPageInverseUnion = MercuryFocusArea;
41879
+ export declare type GraphStoreSimplifiedFocusAreaHasPageUnion = ConfluencePage;
41218
41880
  export declare type GraphStoreSimplifiedFocusAreaHasProjectConnection = HasPageInfo & {
41219
41881
  __typename?: 'GraphStoreSimplifiedFocusAreaHasProjectConnection';
41220
41882
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedFocusAreaHasProjectEdge>>>;
@@ -41913,6 +42575,38 @@ export declare type GraphStoreSimplifiedIssueToWhiteboardInverseEdge = {
41913
42575
  };
41914
42576
  export declare type GraphStoreSimplifiedIssueToWhiteboardInverseUnion = JiraIssue;
41915
42577
  export declare type GraphStoreSimplifiedIssueToWhiteboardUnion = ConfluenceWhiteboard;
42578
+ export declare type GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationConnection = HasPageInfo & HasTotal & {
42579
+ __typename?: 'GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationConnection';
42580
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationEdge>>>;
42581
+ isExactCount?: Maybe<Scalars['Boolean']['output']>;
42582
+ pageInfo: PageInfo;
42583
+ totalCount?: Maybe<Scalars['Int']['output']>;
42584
+ };
42585
+ export declare type GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationEdge = {
42586
+ __typename?: 'GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationEdge';
42587
+ createdAt: Scalars['DateTime']['output'];
42588
+ cursor?: Maybe<Scalars['String']['output']>;
42589
+ id: Scalars['ID']['output'];
42590
+ lastUpdated: Scalars['DateTime']['output'];
42591
+ node?: Maybe<GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationUnion>;
42592
+ };
42593
+ export declare type GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationInverseConnection = HasPageInfo & HasTotal & {
42594
+ __typename?: 'GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationInverseConnection';
42595
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationInverseEdge>>>;
42596
+ isExactCount?: Maybe<Scalars['Boolean']['output']>;
42597
+ pageInfo: PageInfo;
42598
+ totalCount?: Maybe<Scalars['Int']['output']>;
42599
+ };
42600
+ export declare type GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationInverseEdge = {
42601
+ __typename?: 'GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationInverseEdge';
42602
+ createdAt: Scalars['DateTime']['output'];
42603
+ cursor?: Maybe<Scalars['String']['output']>;
42604
+ id: Scalars['ID']['output'];
42605
+ lastUpdated: Scalars['DateTime']['output'];
42606
+ node?: Maybe<GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationInverseUnion>;
42607
+ };
42608
+ export declare type GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationInverseUnion = JiraIssue;
42609
+ export declare type GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationUnion = JiraIssue | JiraProject;
41916
42610
  export declare type GraphStoreSimplifiedJiraEpicContributesToAtlasGoalConnection = HasPageInfo & {
41917
42611
  __typename?: 'GraphStoreSimplifiedJiraEpicContributesToAtlasGoalConnection';
41918
42612
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJiraEpicContributesToAtlasGoalEdge>>>;
@@ -42235,6 +42929,20 @@ export declare type GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFold
42235
42929
  };
42236
42930
  export declare type GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
42237
42931
  export declare type GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderUnion = ConfluenceFolder;
42932
+ export declare type GraphStoreSimplifiedMeetingRecurrenceHasMeetingRecurrenceNotesPageConnection = HasPageInfo & {
42933
+ __typename?: 'GraphStoreSimplifiedMeetingRecurrenceHasMeetingRecurrenceNotesPageConnection';
42934
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedMeetingRecurrenceHasMeetingRecurrenceNotesPageEdge>>>;
42935
+ pageInfo: PageInfo;
42936
+ };
42937
+ export declare type GraphStoreSimplifiedMeetingRecurrenceHasMeetingRecurrenceNotesPageEdge = {
42938
+ __typename?: 'GraphStoreSimplifiedMeetingRecurrenceHasMeetingRecurrenceNotesPageEdge';
42939
+ createdAt: Scalars['DateTime']['output'];
42940
+ cursor?: Maybe<Scalars['String']['output']>;
42941
+ id: Scalars['ID']['output'];
42942
+ lastUpdated: Scalars['DateTime']['output'];
42943
+ node?: Maybe<GraphStoreSimplifiedMeetingRecurrenceHasMeetingRecurrenceNotesPageUnion>;
42944
+ };
42945
+ export declare type GraphStoreSimplifiedMeetingRecurrenceHasMeetingRecurrenceNotesPageUnion = ConfluencePage;
42238
42946
  export declare type GraphStoreSimplifiedOnPremProjectHasIssueConnection = HasPageInfo & {
42239
42947
  __typename?: 'GraphStoreSimplifiedOnPremProjectHasIssueConnection';
42240
42948
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedOnPremProjectHasIssueEdge>>>;
@@ -43207,6 +43915,34 @@ export declare type GraphStoreSimplifiedProjectLinkedToCompassComponentInverseEd
43207
43915
  };
43208
43916
  export declare type GraphStoreSimplifiedProjectLinkedToCompassComponentInverseUnion = JiraProject;
43209
43917
  export declare type GraphStoreSimplifiedProjectLinkedToCompassComponentUnion = CompassComponent;
43918
+ export declare type GraphStoreSimplifiedPullRequestLinksToServiceConnection = HasPageInfo & {
43919
+ __typename?: 'GraphStoreSimplifiedPullRequestLinksToServiceConnection';
43920
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedPullRequestLinksToServiceEdge>>>;
43921
+ pageInfo: PageInfo;
43922
+ };
43923
+ export declare type GraphStoreSimplifiedPullRequestLinksToServiceEdge = {
43924
+ __typename?: 'GraphStoreSimplifiedPullRequestLinksToServiceEdge';
43925
+ createdAt: Scalars['DateTime']['output'];
43926
+ cursor?: Maybe<Scalars['String']['output']>;
43927
+ id: Scalars['ID']['output'];
43928
+ lastUpdated: Scalars['DateTime']['output'];
43929
+ node?: Maybe<GraphStoreSimplifiedPullRequestLinksToServiceUnion>;
43930
+ };
43931
+ export declare type GraphStoreSimplifiedPullRequestLinksToServiceInverseConnection = HasPageInfo & {
43932
+ __typename?: 'GraphStoreSimplifiedPullRequestLinksToServiceInverseConnection';
43933
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedPullRequestLinksToServiceInverseEdge>>>;
43934
+ pageInfo: PageInfo;
43935
+ };
43936
+ export declare type GraphStoreSimplifiedPullRequestLinksToServiceInverseEdge = {
43937
+ __typename?: 'GraphStoreSimplifiedPullRequestLinksToServiceInverseEdge';
43938
+ createdAt: Scalars['DateTime']['output'];
43939
+ cursor?: Maybe<Scalars['String']['output']>;
43940
+ id: Scalars['ID']['output'];
43941
+ lastUpdated: Scalars['DateTime']['output'];
43942
+ node?: Maybe<GraphStoreSimplifiedPullRequestLinksToServiceInverseUnion>;
43943
+ };
43944
+ export declare type GraphStoreSimplifiedPullRequestLinksToServiceInverseUnion = DevOpsPullRequestDetails | ExternalPullRequest;
43945
+ export declare type GraphStoreSimplifiedPullRequestLinksToServiceUnion = DevOpsService;
43210
43946
  export declare type GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityConnection = HasPageInfo & {
43211
43947
  __typename?: 'GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityConnection';
43212
43948
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityEdge>>>;
@@ -43221,6 +43957,34 @@ export declare type GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabili
43221
43957
  node?: Maybe<GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityUnion>;
43222
43958
  };
43223
43959
  export declare type GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityUnion = DevOpsSecurityVulnerabilityDetails | ExternalVulnerability;
43960
+ export declare type GraphStoreSimplifiedServiceAssociatedBranchConnection = HasPageInfo & {
43961
+ __typename?: 'GraphStoreSimplifiedServiceAssociatedBranchConnection';
43962
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedServiceAssociatedBranchEdge>>>;
43963
+ pageInfo: PageInfo;
43964
+ };
43965
+ export declare type GraphStoreSimplifiedServiceAssociatedBranchEdge = {
43966
+ __typename?: 'GraphStoreSimplifiedServiceAssociatedBranchEdge';
43967
+ createdAt: Scalars['DateTime']['output'];
43968
+ cursor?: Maybe<Scalars['String']['output']>;
43969
+ id: Scalars['ID']['output'];
43970
+ lastUpdated: Scalars['DateTime']['output'];
43971
+ node?: Maybe<GraphStoreSimplifiedServiceAssociatedBranchUnion>;
43972
+ };
43973
+ export declare type GraphStoreSimplifiedServiceAssociatedBranchInverseConnection = HasPageInfo & {
43974
+ __typename?: 'GraphStoreSimplifiedServiceAssociatedBranchInverseConnection';
43975
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedServiceAssociatedBranchInverseEdge>>>;
43976
+ pageInfo: PageInfo;
43977
+ };
43978
+ export declare type GraphStoreSimplifiedServiceAssociatedBranchInverseEdge = {
43979
+ __typename?: 'GraphStoreSimplifiedServiceAssociatedBranchInverseEdge';
43980
+ createdAt: Scalars['DateTime']['output'];
43981
+ cursor?: Maybe<Scalars['String']['output']>;
43982
+ id: Scalars['ID']['output'];
43983
+ lastUpdated: Scalars['DateTime']['output'];
43984
+ node?: Maybe<GraphStoreSimplifiedServiceAssociatedBranchInverseUnion>;
43985
+ };
43986
+ export declare type GraphStoreSimplifiedServiceAssociatedBranchInverseUnion = DevOpsService;
43987
+ export declare type GraphStoreSimplifiedServiceAssociatedBranchUnion = ExternalBranch;
43224
43988
  export declare type GraphStoreSimplifiedServiceAssociatedDeploymentConnection = HasPageInfo & {
43225
43989
  __typename?: 'GraphStoreSimplifiedServiceAssociatedDeploymentConnection';
43226
43990
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedServiceAssociatedDeploymentEdge>>>;
@@ -63566,6 +64330,17 @@ export declare type JiraSetBoardViewColumnStatePayload = Payload & {
63566
64330
  errors?: Maybe<Array<MutationError>>;
63567
64331
  success: Scalars['Boolean']['output'];
63568
64332
  };
64333
+ export declare type JiraSetBoardViewColumnsOrderInput = {
64334
+ columnIds: Array<Scalars['ID']['input']>;
64335
+ settings?: InputMaybe<JiraBoardViewSettings>;
64336
+ viewId: Scalars['ID']['input'];
64337
+ };
64338
+ export declare type JiraSetBoardViewColumnsOrderPayload = Payload & {
64339
+ __typename?: 'JiraSetBoardViewColumnsOrderPayload';
64340
+ boardView?: Maybe<JiraBoardView>;
64341
+ errors?: Maybe<Array<MutationError>>;
64342
+ success: Scalars['Boolean']['output'];
64343
+ };
63569
64344
  export declare type JiraSetBoardViewCompletedIssueSearchCutOffInput = {
63570
64345
  completedIssueSearchCutOffInDays: Scalars['Int']['input'];
63571
64346
  viewId: Scalars['ID']['input'];
@@ -71807,8 +72582,6 @@ export declare type MercuryQueryApi = {
71807
72582
  myPreference?: Maybe<MercuryPreference>;
71808
72583
  myPreferences?: Maybe<Array<MercuryPreference>>;
71809
72584
  portfoliosByAris?: Maybe<Array<MercuryPortfolio>>;
71810
- providerWork?: Maybe<MercuryProviderWork>;
71811
- providerWorksByAris?: Maybe<Array<MercuryProviderWork>>;
71812
72585
  team?: Maybe<MercuryTeam>;
71813
72586
  teams?: Maybe<MercuryTeamConnection>;
71814
72587
  workspaceContext: MercuryWorkspaceContext;
@@ -71907,13 +72680,6 @@ export declare type MercuryQueryApiMyPreferencesArgs = {
71907
72680
  export declare type MercuryQueryApiPortfoliosByArisArgs = {
71908
72681
  aris?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
71909
72682
  };
71910
- export declare type MercuryQueryApiProviderWorkArgs = {
71911
- cloudId: Scalars['ID']['input'];
71912
- id: Scalars['ID']['input'];
71913
- };
71914
- export declare type MercuryQueryApiProviderWorksByArisArgs = {
71915
- aris?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
71916
- };
71917
72683
  export declare type MercuryQueryApiTeamArgs = {
71918
72684
  cloudId: Scalars['ID']['input'];
71919
72685
  id: Scalars['ID']['input'];
@@ -72353,7 +73119,9 @@ export declare type Mutation = {
72353
73119
  addPublicLinkPermissions?: Maybe<AddPublicLinkPermissionsPayload>;
72354
73120
  addReaction?: Maybe<SaveReactionResponse>;
72355
73121
  agentStudio_createAgent?: Maybe<AgentStudioCreateAgentPayload>;
73122
+ agentStudio_updateAgentActions?: Maybe<AgentStudioUpdateAgentActionsPayload>;
72356
73123
  agentStudio_updateAgentDetails?: Maybe<AgentStudioUpdateAgentDetailsPayload>;
73124
+ agentStudio_updateConversationStarters?: Maybe<AgentStudioUpdateConversationStartersPayload>;
72357
73125
  appRecommendations?: Maybe<AppRecMutation>;
72358
73126
  appStorage?: Maybe<AppStorageMutation>;
72359
73127
  appStorageCustomEntity?: Maybe<AppStorageCustomEntityMutation>;
@@ -72646,6 +73414,7 @@ export declare type Mutation = {
72646
73414
  devai_continueJobWithPrompt?: Maybe<DevAiAutodevContinueJobWithPromptPayload>;
72647
73415
  devai_createTechnicalPlannerJob?: Maybe<DevAiCreateTechnicalPlannerJobPayload>;
72648
73416
  devai_invokeAutodevRovoAgent?: Maybe<DevAiInvokeAutodevRovoAgentPayload>;
73417
+ devai_invokeAutodevRovoAgentInBulk?: Maybe<DevAiInvokeAutodevRovoAgentInBulkPayload>;
72649
73418
  disableExperiment?: Maybe<TapExperiment>;
72650
73419
  disablePublicLinkForPage?: Maybe<DisablePublicLinkForPagePayload>;
72651
73420
  disablePublicLinkForSite?: Maybe<PublicLinkSitePayload>;
@@ -72687,6 +73456,7 @@ export declare type Mutation = {
72687
73456
  jira_setBoardViewCardFieldSelected?: Maybe<JiraSetBoardViewCardFieldSelectedPayload>;
72688
73457
  jira_setBoardViewCardOptionState?: Maybe<JiraSetBoardViewCardOptionStatePayload>;
72689
73458
  jira_setBoardViewColumnState?: Maybe<JiraSetBoardViewColumnStatePayload>;
73459
+ jira_setBoardViewColumnsOrder?: Maybe<JiraSetBoardViewColumnsOrderPayload>;
72690
73460
  jira_setBoardViewCompletedIssueSearchCutOff?: Maybe<JiraSetBoardViewCompletedIssueSearchCutOffPayload>;
72691
73461
  jira_setBoardViewFilter?: Maybe<JiraSetBoardViewFilterPayload>;
72692
73462
  jira_setBoardViewGroupBy?: Maybe<JiraSetBoardViewGroupByPayload>;
@@ -72908,10 +73678,18 @@ export declare type MutationAgentStudio_CreateAgentArgs = {
72908
73678
  cloudId: Scalars['String']['input'];
72909
73679
  input: AgentStudioCreateAgentInput;
72910
73680
  };
73681
+ export declare type MutationAgentStudio_UpdateAgentActionsArgs = {
73682
+ id: Scalars['ID']['input'];
73683
+ input: AgentStudioActionConfigurationInput;
73684
+ };
72911
73685
  export declare type MutationAgentStudio_UpdateAgentDetailsArgs = {
72912
73686
  id: Scalars['ID']['input'];
72913
73687
  input: AgentStudioUpdateAgentDetailsInput;
72914
73688
  };
73689
+ export declare type MutationAgentStudio_UpdateConversationStartersArgs = {
73690
+ id: Scalars['ID']['input'];
73691
+ input: AgentStudioUpdateConversationStartersInput;
73692
+ };
72915
73693
  export declare type MutationApplyPolarisProjectTemplateArgs = {
72916
73694
  input: ApplyPolarisProjectTemplateInput;
72917
73695
  };
@@ -73838,6 +74616,10 @@ export declare type MutationDevai_InvokeAutodevRovoAgentArgs = {
73838
74616
  agentId: Scalars['ID']['input'];
73839
74617
  issueId: Scalars['ID']['input'];
73840
74618
  };
74619
+ export declare type MutationDevai_InvokeAutodevRovoAgentInBulkArgs = {
74620
+ agentId: Scalars['ID']['input'];
74621
+ issueIds: Array<Scalars['ID']['input']>;
74622
+ };
73841
74623
  export declare type MutationDisableExperimentArgs = {
73842
74624
  experimentKey: Scalars['String']['input'];
73843
74625
  };
@@ -73929,6 +74711,9 @@ export declare type MutationJira_SetBoardViewCardOptionStateArgs = {
73929
74711
  export declare type MutationJira_SetBoardViewColumnStateArgs = {
73930
74712
  input: JiraSetBoardViewColumnStateInput;
73931
74713
  };
74714
+ export declare type MutationJira_SetBoardViewColumnsOrderArgs = {
74715
+ input: JiraSetBoardViewColumnsOrderInput;
74716
+ };
73932
74717
  export declare type MutationJira_SetBoardViewCompletedIssueSearchCutOffArgs = {
73933
74718
  input: JiraSetBoardViewCompletedIssueSearchCutOffInput;
73934
74719
  };
@@ -77107,6 +77892,7 @@ export declare type Query = {
77107
77892
  agentAI_contextPanel?: Maybe<AgentAiContextPanelResult>;
77108
77893
  agentAI_summarizeIssue?: Maybe<AgentAiIssueSummaryResult>;
77109
77894
  agentStudio_agentById?: Maybe<AgentStudioAgentResult>;
77895
+ agentStudio_suggestConversationStarters?: Maybe<AgentStudioSuggestConversationStartersResult>;
77110
77896
  allIndividualSpaces?: Maybe<SpaceInfoConnection>;
77111
77897
  allTemplates?: Maybe<PaginatedTemplateInfoList>;
77112
77898
  allUpdatesFeed?: Maybe<PaginatedAllUpdatesFeed>;
@@ -77376,6 +78162,7 @@ export declare type Query = {
77376
78162
  confluence_atlassianUser?: Maybe<AtlassianUser>;
77377
78163
  confluence_calendarPreference?: Maybe<ConfluenceCalendarPreference>;
77378
78164
  confluence_calendarTimezones?: Maybe<ConfluenceCalendarTimezones>;
78165
+ confluence_externalCollaboratorsByCriteria?: Maybe<ConfluencePersonConnection>;
77379
78166
  confluence_mutationsPlaceholderQuery?: Maybe<Scalars['Boolean']['output']>;
77380
78167
  confluence_refreshMigrationMediaSession?: Maybe<ContentMediaSession>;
77381
78168
  confluence_search?: Maybe<ConfluenceSearchConnection>;
@@ -77792,6 +78579,10 @@ export declare type QueryAgentAi_SummarizeIssueArgs = {
77792
78579
  export declare type QueryAgentStudio_AgentByIdArgs = {
77793
78580
  id: Scalars['ID']['input'];
77794
78581
  };
78582
+ export declare type QueryAgentStudio_SuggestConversationStartersArgs = {
78583
+ cloudId: Scalars['String']['input'];
78584
+ input: AgentStudioSuggestConversationStartersInput;
78585
+ };
77795
78586
  export declare type QueryAllIndividualSpacesArgs = {
77796
78587
  after?: InputMaybe<Scalars['String']['input']>;
77797
78588
  first?: InputMaybe<Scalars['Int']['input']>;
@@ -78957,6 +79748,18 @@ export declare type QueryConfluence_CalendarPreferenceArgs = {
78957
79748
  export declare type QueryConfluence_CalendarTimezonesArgs = {
78958
79749
  cloudId: Scalars['ID']['input'];
78959
79750
  };
79751
+ export declare type QueryConfluence_ExternalCollaboratorsByCriteriaArgs = {
79752
+ after?: InputMaybe<Scalars['String']['input']>;
79753
+ cloudId?: InputMaybe<Scalars['ID']['input']>;
79754
+ email?: InputMaybe<Scalars['String']['input']>;
79755
+ first?: InputMaybe<Scalars['Int']['input']>;
79756
+ groupIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
79757
+ name?: InputMaybe<Scalars['String']['input']>;
79758
+ offset?: InputMaybe<Scalars['Int']['input']>;
79759
+ sorts?: InputMaybe<Array<InputMaybe<ExternalCollaboratorsSortType>>>;
79760
+ spaceAssignmentType?: InputMaybe<SpaceAssignmentType>;
79761
+ spaceIds?: InputMaybe<Array<InputMaybe<Scalars['Long']['input']>>>;
79762
+ };
78960
79763
  export declare type QueryConfluence_RefreshMigrationMediaSessionArgs = {
78961
79764
  cloudId: Scalars['ID']['input'];
78962
79765
  migrationId: Scalars['String']['input'];
@@ -80862,6 +81665,7 @@ export declare type RawStatus = {
80862
81665
  export declare type ReactedUsersResponse = {
80863
81666
  __typename?: 'ReactedUsersResponse';
80864
81667
  ari: Scalars['String']['output'];
81668
+ confluencePerson: Array<Maybe<ConfluencePerson>>;
80865
81669
  containerAri: Scalars['String']['output'];
80866
81670
  count: Scalars['Int']['output'];
80867
81671
  emojiId: Scalars['String']['output'];
@@ -82038,6 +82842,7 @@ export declare type ScheduledPublishSummary = {
82038
82842
  export declare type ScheduledRestriction = {
82039
82843
  __typename?: 'ScheduledRestriction';
82040
82844
  group?: Maybe<PaginatedGroupList>;
82845
+ personConnection?: Maybe<ConfluencePersonConnection>;
82041
82846
  };
82042
82847
  export declare type ScheduledRestrictions = {
82043
82848
  __typename?: 'ScheduledRestrictions';
@@ -82637,10 +83442,12 @@ export declare type SearchJiraFilter = {
82637
83442
  };
82638
83443
  export declare type SearchJiraIssueFilter = {
82639
83444
  assigneeARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
83445
+ commenterARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
82640
83446
  issueTypeIDs?: InputMaybe<Array<Scalars['ID']['input']>>;
82641
83447
  projectARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
82642
83448
  reporterARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
82643
83449
  statusCategories?: InputMaybe<Array<SearchIssueStatusCategory>>;
83450
+ watcherARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
82644
83451
  };
82645
83452
  export declare type SearchJiraProjectFilter = {
82646
83453
  projectTypes?: InputMaybe<Array<SearchProjectType>>;
@@ -84981,6 +85788,7 @@ export declare type SitePermission = {
84981
85788
  anonymous?: Maybe<Anonymous>;
84982
85789
  anonymousAccessDSPBlocked: Scalars['Boolean']['output'];
84983
85790
  groups?: Maybe<PaginatedGroupWithPermissions>;
85791
+ personConnection?: Maybe<ConfluencePersonWithPermissionsConnection>;
84984
85792
  unlicensedUserWithPermissions?: Maybe<UnlicensedUserWithPermissions>;
84985
85793
  };
84986
85794
  export declare type SitePermissionGroupsArgs = {
@@ -84988,6 +85796,11 @@ export declare type SitePermissionGroupsArgs = {
84988
85796
  filterText?: InputMaybe<Scalars['String']['input']>;
84989
85797
  first?: InputMaybe<Scalars['Int']['input']>;
84990
85798
  };
85799
+ export declare type SitePermissionPersonConnectionArgs = {
85800
+ after?: InputMaybe<Scalars['String']['input']>;
85801
+ filterText?: InputMaybe<Scalars['String']['input']>;
85802
+ first?: InputMaybe<Scalars['Int']['input']>;
85803
+ };
84991
85804
  export declare type SitePermissionInput = {
84992
85805
  permissionsToAdd?: InputMaybe<UpdateSitePermissionInput>;
84993
85806
  permissionsToRemove?: InputMaybe<UpdateSitePermissionInput>;
@@ -85532,6 +86345,10 @@ export declare type SpaceSpaceAdminsArgs = {
85532
86345
  first?: InputMaybe<Scalars['Int']['input']>;
85533
86346
  offset?: InputMaybe<Scalars['Int']['input']>;
85534
86347
  };
86348
+ export declare enum SpaceAssignmentType {
86349
+ Assigned = "ASSIGNED",
86350
+ Unassigned = "UNASSIGNED"
86351
+ }
85535
86352
  export declare type SpaceDescriptions = {
85536
86353
  __typename?: 'SpaceDescriptions';
85537
86354
  atlas_doc_format?: Maybe<FormattedBody>;
@@ -85662,6 +86479,8 @@ export declare type SpaceManagerRecordPageInfo = {
85662
86479
  export declare type SpaceMetadata = {
85663
86480
  __typename?: 'SpaceMetadata';
85664
86481
  labels?: Maybe<PaginatedLabelList>;
86482
+ recentCommenterConnection?: Maybe<ConfluencePersonConnection>;
86483
+ recentWatcherConnection?: Maybe<ConfluencePersonConnection>;
85665
86484
  totalCommenters: Scalars['Long']['output'];
85666
86485
  totalCurrentBlogPosts: Scalars['Long']['output'];
85667
86486
  totalCurrentPages: Scalars['Long']['output'];
@@ -86172,6 +86991,7 @@ export declare type SubjectsByType = {
86172
86991
  group?: Maybe<PaginatedGroupList>;
86173
86992
  groupWithRestrictions?: Maybe<PaginatedGroupWithRestrictions>;
86174
86993
  links?: Maybe<LinksContextBase>;
86994
+ personConnection?: Maybe<ConfluencePersonConnection>;
86175
86995
  userWithRestrictions?: Maybe<PaginatedUserWithRestrictions>;
86176
86996
  };
86177
86997
  export declare type SubjectsByTypeGroupArgs = {
@@ -86182,6 +87002,10 @@ export declare type SubjectsByTypeGroupWithRestrictionsArgs = {
86182
87002
  limit?: InputMaybe<Scalars['Int']['input']>;
86183
87003
  start?: InputMaybe<Scalars['Int']['input']>;
86184
87004
  };
87005
+ export declare type SubjectsByTypePersonConnectionArgs = {
87006
+ limit?: InputMaybe<Scalars['Int']['input']>;
87007
+ start?: InputMaybe<Scalars['Int']['input']>;
87008
+ };
86185
87009
  export declare type SubjectsByTypeUserWithRestrictionsArgs = {
86186
87010
  limit?: InputMaybe<Scalars['Int']['input']>;
86187
87011
  start?: InputMaybe<Scalars['Int']['input']>;
@@ -88820,6 +89644,7 @@ export declare type TrelloCard = Node & {
88820
89644
  badges?: Maybe<TrelloCardBadges>;
88821
89645
  checklists?: Maybe<TrelloChecklistConnection>;
88822
89646
  closed?: Maybe<Scalars['Boolean']['output']>;
89647
+ complete?: Maybe<Scalars['Boolean']['output']>;
88823
89648
  cover?: Maybe<TrelloCardCover>;
88824
89649
  creation?: Maybe<TrelloCardCreationInfo>;
88825
89650
  customFieldItems?: Maybe<TrelloCustomFieldItemConnection>;
@@ -89044,6 +89869,7 @@ export declare type TrelloCardUpdated = {
89044
89869
  badges?: Maybe<TrelloCardBadges>;
89045
89870
  checklists?: Maybe<TrelloChecklistConnectionUpdated>;
89046
89871
  closed?: Maybe<Scalars['Boolean']['output']>;
89872
+ complete?: Maybe<Scalars['Boolean']['output']>;
89047
89873
  cover?: Maybe<TrelloCardCoverUpdated>;
89048
89874
  creation?: Maybe<TrelloCardCreationInfo>;
89049
89875
  customFieldItems?: Maybe<TrelloCustomFieldItemUpdatedConnection>;
@@ -91297,8 +92123,13 @@ export declare type UpdateAppDetailsInput = {
91297
92123
  avatarFileId?: InputMaybe<Scalars['String']['input']>;
91298
92124
  contactLink?: InputMaybe<Scalars['String']['input']>;
91299
92125
  description?: InputMaybe<Scalars['String']['input']>;
92126
+ distributionStatus?: InputMaybe<DistributionStatus>;
92127
+ hasPDReportingApiImplemented?: InputMaybe<Scalars['Boolean']['input']>;
91300
92128
  name: Scalars['String']['input'];
91301
92129
  privacyPolicy?: InputMaybe<Scalars['String']['input']>;
92130
+ storesPersonalData?: InputMaybe<Scalars['Boolean']['input']>;
92131
+ termsOfService?: InputMaybe<Scalars['String']['input']>;
92132
+ vendorName?: InputMaybe<Scalars['String']['input']>;
91302
92133
  };
91303
92134
  export declare type UpdateAppDetailsResponse = Payload & {
91304
92135
  __typename?: 'UpdateAppDetailsResponse';