@forge/cli-shared 8.8.0-next.2 → 8.8.0-next.4

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.
@@ -416,7 +416,7 @@ export declare type AvpCreateDashboardFilterResponse = {
416
416
  };
417
417
  export declare type AvpCreateDashboardFromTemplateInput = {
418
418
  cloudId: Scalars['ID']['input'];
419
- dashboard?: InputMaybe<AvpDashboardTemplateInput>;
419
+ dashboard: AvpDashboardTemplateInput;
420
420
  dashboardPermissionType?: InputMaybe<AvpDashboardPermissionType>;
421
421
  workspaceId: Scalars['ID']['input'];
422
422
  };
@@ -1735,16 +1735,23 @@ export declare enum AdminInviteAllowedAction {
1735
1735
  DirectInvite = "DIRECT_INVITE",
1736
1736
  RequestAccess = "REQUEST_ACCESS"
1737
1737
  }
1738
+ export declare type AdminInviteGroup = {
1739
+ __typename?: 'AdminInviteGroup';
1740
+ id: Scalars['ID']['output'];
1741
+ };
1742
+ export declare type AdminInviteGroupInput = {
1743
+ id: Scalars['ID']['input'];
1744
+ };
1738
1745
  export declare type AdminInviteInput = {
1739
1746
  groupIds?: InputMaybe<Array<Scalars['String']['input']>>;
1740
1747
  inviteeNotificationSettings?: InputMaybe<AdminInviteeNotificationSettingsInput>;
1741
- resourceRole: Array<AdminResourceRoleInput>;
1748
+ resourceRole?: InputMaybe<Array<AdminResourceRoleInput>>;
1742
1749
  users: Array<AdminInviteUserInput>;
1743
1750
  };
1744
1751
  export declare type AdminInviteNotApplied = {
1745
1752
  __typename?: 'AdminInviteNotApplied';
1753
+ appliesTo?: Maybe<AdminUserInviteAppliesTo>;
1746
1754
  reason?: Maybe<AdminInviteNotAppliedReason>;
1747
- resourceRole?: Maybe<AdminResourceRole>;
1748
1755
  user?: Maybe<AdminInviteUser>;
1749
1756
  };
1750
1757
  export declare enum AdminInviteNotAppliedReason {
@@ -1755,7 +1762,7 @@ export declare enum AdminInviteNotAppliedReason {
1755
1762
  }
1756
1763
  export declare type AdminInvitePendingApproval = {
1757
1764
  __typename?: 'AdminInvitePendingApproval';
1758
- resourceRole?: Maybe<AdminResourceRole>;
1765
+ appliesTo?: Maybe<AdminUserInviteAppliesTo>;
1759
1766
  user?: Maybe<AdminInviteUser>;
1760
1767
  };
1761
1768
  export declare type AdminInvitePolicy = {
@@ -2179,7 +2186,7 @@ export declare type AdminUserConnection = {
2179
2186
  };
2180
2187
  export declare type AdminUserDirectlyInvited = {
2181
2188
  __typename?: 'AdminUserDirectlyInvited';
2182
- resourceRole?: Maybe<AdminResourceRole>;
2189
+ appliesTo?: Maybe<AdminUserInviteAppliesTo>;
2183
2190
  user?: Maybe<AdminInviteUser>;
2184
2191
  };
2185
2192
  export declare type AdminUserEdge = {
@@ -2187,6 +2194,7 @@ export declare type AdminUserEdge = {
2187
2194
  cursor: Scalars['String']['output'];
2188
2195
  node?: Maybe<AdminUser>;
2189
2196
  };
2197
+ export declare type AdminUserInviteAppliesTo = AdminInviteGroup | AdminResourceRole;
2190
2198
  export declare type AdminUserManagement = {
2191
2199
  __typename?: 'AdminUserManagement';
2192
2200
  availableRoles?: Maybe<Array<Scalars['String']['output']>>;
@@ -2447,6 +2455,7 @@ export declare type AgentStudioAssistantScenario = AgentStudioScenario & Node &
2447
2455
  instructions?: Maybe<Scalars['String']['output']>;
2448
2456
  invocationDescription?: Maybe<Scalars['String']['output']>;
2449
2457
  isActive: Scalars['Boolean']['output'];
2458
+ isDeepResearchEnabled?: Maybe<Scalars['Boolean']['output']>;
2450
2459
  isDefault: Scalars['Boolean']['output'];
2451
2460
  isValid: AgentStudioScenarioValidation;
2452
2461
  knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
@@ -2586,6 +2595,7 @@ export declare type AgentStudioCreateScenarioInput = {
2586
2595
  instructions?: InputMaybe<Scalars['String']['input']>;
2587
2596
  invocationDescription?: InputMaybe<Scalars['String']['input']>;
2588
2597
  isActive?: InputMaybe<Scalars['Boolean']['input']>;
2598
+ isDeepResearchEnabled?: InputMaybe<Scalars['Boolean']['input']>;
2589
2599
  isDefault?: InputMaybe<Scalars['Boolean']['input']>;
2590
2600
  knowledgeSources?: InputMaybe<AgentStudioKnowledgeConfigurationInput>;
2591
2601
  name: Scalars['String']['input'];
@@ -2781,6 +2791,7 @@ export declare type AgentStudioScenario = {
2781
2791
  instructions?: Maybe<Scalars['String']['output']>;
2782
2792
  invocationDescription?: Maybe<Scalars['String']['output']>;
2783
2793
  isActive: Scalars['Boolean']['output'];
2794
+ isDeepResearchEnabled?: Maybe<Scalars['Boolean']['output']>;
2784
2795
  isDefault: Scalars['Boolean']['output'];
2785
2796
  isValid: AgentStudioScenarioValidation;
2786
2797
  knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
@@ -3032,6 +3043,7 @@ export declare type AgentStudioUpdateScenarioInput = {
3032
3043
  instructions?: InputMaybe<Scalars['String']['input']>;
3033
3044
  invocationDescription?: InputMaybe<Scalars['String']['input']>;
3034
3045
  isActive?: InputMaybe<Scalars['Boolean']['input']>;
3046
+ isDeepResearchEnabled?: InputMaybe<Scalars['Boolean']['input']>;
3035
3047
  isDefault?: InputMaybe<Scalars['Boolean']['input']>;
3036
3048
  knowledgeSources?: InputMaybe<AgentStudioKnowledgeConfigurationInput>;
3037
3049
  name?: InputMaybe<Scalars['String']['input']>;
@@ -6040,6 +6052,8 @@ export declare type BitbucketPullRequest = Node & {
6040
6052
  __typename?: 'BitbucketPullRequest';
6041
6053
  author?: Maybe<User>;
6042
6054
  createdDate?: Maybe<Scalars['DateTime']['output']>;
6055
+ diff?: Maybe<Scalars['URL']['output']>;
6056
+ diffstat?: Maybe<Scalars['URL']['output']>;
6043
6057
  href?: Maybe<Scalars['URL']['output']>;
6044
6058
  id: Scalars['ID']['output'];
6045
6059
  state?: Maybe<Scalars['String']['output']>;
@@ -6047,11 +6061,15 @@ export declare type BitbucketPullRequest = Node & {
6047
6061
  };
6048
6062
  export declare type BitbucketQuery = {
6049
6063
  __typename?: 'BitbucketQuery';
6064
+ bitbucketPullRequest?: Maybe<BitbucketPullRequest>;
6050
6065
  bitbucketPullRequests?: Maybe<Array<Maybe<BitbucketPullRequest>>>;
6051
6066
  bitbucketRepositories?: Maybe<Array<Maybe<BitbucketRepository>>>;
6052
6067
  bitbucketRepository?: Maybe<BitbucketRepository>;
6053
6068
  bitbucketWorkspace?: Maybe<BitbucketWorkspace>;
6054
6069
  };
6070
+ export declare type BitbucketQueryBitbucketPullRequestArgs = {
6071
+ id: Scalars['ID']['input'];
6072
+ };
6055
6073
  export declare type BitbucketQueryBitbucketPullRequestsArgs = {
6056
6074
  ids: Array<Scalars['ID']['input']>;
6057
6075
  };
@@ -10389,6 +10407,7 @@ export declare type CompassComponent = Node & {
10389
10407
  metricSources?: Maybe<CompassComponentMetricSourcesQueryResult>;
10390
10408
  name: Scalars['String']['output'];
10391
10409
  ownerId?: Maybe<Scalars['ID']['output']>;
10410
+ ownerTeam?: Maybe<TeamV2>;
10392
10411
  packageDependencies?: Maybe<CompassComponentPackageDependencyConnection>;
10393
10412
  relationships?: Maybe<CompassRelationshipConnectionResult>;
10394
10413
  scorecardScore?: Maybe<CompassScorecardScore>;
@@ -14802,6 +14821,7 @@ export declare type ConfluenceAnswer = {
14802
14821
  id: Scalars['ID']['output'];
14803
14822
  isAccepted: Scalars['Boolean']['output'];
14804
14823
  latestVersion?: Maybe<ConfluenceContentVersion>;
14824
+ operations?: Maybe<Array<Maybe<ConfluenceQuestionsOperationCheck>>>;
14805
14825
  voteProperties: ConfluenceVotePropertyValue;
14806
14826
  };
14807
14827
  export declare type ConfluenceAnswerCommentsArgs = {
@@ -16063,6 +16083,15 @@ export declare type ConfluenceDeleteCommentPayload = {
16063
16083
  errors?: Maybe<Array<MutationError>>;
16064
16084
  success: Scalars['Boolean']['output'];
16065
16085
  };
16086
+ export declare type ConfluenceDeleteContentVersionInput = {
16087
+ versionNumber?: InputMaybe<Scalars['Int']['input']>;
16088
+ };
16089
+ export declare type ConfluenceDeleteContentVersionPayload = Payload & {
16090
+ __typename?: 'ConfluenceDeleteContentVersionPayload';
16091
+ errors?: Maybe<Array<MutationError>>;
16092
+ success: Scalars['Boolean']['output'];
16093
+ version?: Maybe<Version>;
16094
+ };
16066
16095
  export declare type ConfluenceDeleteCustomApplicationLinkInput = {
16067
16096
  id: Scalars['ID']['input'];
16068
16097
  };
@@ -21575,6 +21604,11 @@ export declare type ConvoAiAgentTraceMessage = ConvoAiAgentMessage & {
21575
21604
  status: ConvoAiAgentSessionStatus;
21576
21605
  timeCreated: Scalars['DateTime']['output'];
21577
21606
  };
21607
+ export declare type ConvoAiConfluenceSpaceRecommendation = {
21608
+ __typename?: 'ConvoAiConfluenceSpaceRecommendation';
21609
+ id: Scalars['ID']['output'];
21610
+ name: Scalars['String']['output'];
21611
+ };
21578
21612
  export declare type ConvoAiEmptyConversation = ConvoAiAgentMessage & {
21579
21613
  __typename?: 'ConvoAiEmptyConversation';
21580
21614
  status: ConvoAiAgentSessionStatus;
@@ -21948,6 +21982,12 @@ export declare type CplsDeleteContributorWorkAssociationPayload = Payload & {
21948
21982
  ids?: Maybe<Array<Scalars['ID']['output']>>;
21949
21983
  success: Scalars['Boolean']['output'];
21950
21984
  };
21985
+ export declare type CplsMutationErrorExtension = MutationErrorExtension & {
21986
+ __typename?: 'CplsMutationErrorExtension';
21987
+ errorId?: Maybe<Scalars['String']['output']>;
21988
+ errorType?: Maybe<Scalars['String']['output']>;
21989
+ statusCode?: Maybe<Scalars['Int']['output']>;
21990
+ };
21951
21991
  export declare type CplsSearchCustomContributionTargetsInput = {
21952
21992
  after?: InputMaybe<Scalars['String']['input']>;
21953
21993
  before?: InputMaybe<Scalars['String']['input']>;
@@ -25978,6 +26018,46 @@ export declare type DevAiWorkspace = {
25978
26018
  status?: Maybe<Scalars['String']['output']>;
25979
26019
  workspaceAri: Scalars['ID']['output'];
25980
26020
  };
26021
+ export declare type DevConsoleAppResourceUsageDetailedViewFiltersInput = {
26022
+ contextAris?: InputMaybe<Array<Scalars['ID']['input']>>;
26023
+ environment?: InputMaybe<Scalars['ID']['input']>;
26024
+ interval: DevConsoleDateIntervalInput;
26025
+ resource: DevConsoleResource;
26026
+ };
26027
+ export declare type DevConsoleAppResourceUsageDetailedViewResponse = {
26028
+ __typename?: 'DevConsoleAppResourceUsageDetailedViewResponse';
26029
+ error?: Maybe<QueryError>;
26030
+ resourceUsage?: Maybe<Array<DevConsoleResourceUsage>>;
26031
+ };
26032
+ export declare type DevConsoleAppResourceUsageFiltersInput = {
26033
+ contextAris?: InputMaybe<Array<Scalars['ID']['input']>>;
26034
+ environment?: InputMaybe<Scalars['ID']['input']>;
26035
+ interval: DevConsoleDateIntervalInput;
26036
+ page?: InputMaybe<Scalars['Int']['input']>;
26037
+ resource: DevConsoleResource;
26038
+ };
26039
+ export declare type DevConsoleAppResourceUsageFlatResponse = {
26040
+ __typename?: 'DevConsoleAppResourceUsageFlatResponse';
26041
+ error?: Maybe<QueryError>;
26042
+ pagination: DevConsolePagination;
26043
+ resourceUsage: Array<DevConsoleResourceUsage>;
26044
+ };
26045
+ export declare type DevConsoleAppResourceUsageGroupedResponse = {
26046
+ __typename?: 'DevConsoleAppResourceUsageGroupedResponse';
26047
+ error?: Maybe<QueryError>;
26048
+ pagination: DevConsolePagination;
26049
+ resourceUsage: Array<DevConsoleResourceUsagePeriod>;
26050
+ };
26051
+ export declare type DevConsoleAppResourceUsageResponse = DevConsoleAppResourceUsageFlatResponse | DevConsoleAppResourceUsageGroupedResponse;
26052
+ export declare type DevConsoleAppUsageFiltersInput = {
26053
+ interval: DevConsoleDateIntervalInput;
26054
+ resource: Array<DevConsoleResource>;
26055
+ };
26056
+ export declare type DevConsoleAppUsageOverviewResponse = {
26057
+ __typename?: 'DevConsoleAppUsageOverviewResponse';
26058
+ error?: Maybe<QueryError>;
26059
+ resourceUsage?: Maybe<DevConsoleResourceUsageData>;
26060
+ };
25981
26061
  export declare type DevConsoleArchiveDeveloperSpaceInput = {
25982
26062
  developerSpaceId: Scalars['String']['input'];
25983
26063
  };
@@ -25998,6 +26078,10 @@ export declare type DevConsoleBulkDeveloperSpaceDetailsResponse = {
25998
26078
  export declare type DevConsoleCreateDeveloperSpaceInput = {
25999
26079
  name: Scalars['String']['input'];
26000
26080
  };
26081
+ export declare type DevConsoleDateIntervalInput = {
26082
+ end: Scalars['DateTime']['input'];
26083
+ start: Scalars['DateTime']['input'];
26084
+ };
26001
26085
  export declare type DevConsoleDeveloperSpace = {
26002
26086
  __typename?: 'DevConsoleDeveloperSpace';
26003
26087
  id: Scalars['String']['output'];
@@ -26060,6 +26144,10 @@ export declare enum DevConsoleDeveloperSpaceType {
26060
26144
  AtlassianExternal = "ATLASSIAN_EXTERNAL",
26061
26145
  AtlassianInternal = "ATLASSIAN_INTERNAL"
26062
26146
  }
26147
+ export declare enum DevConsoleGroupBy {
26148
+ ContextAri = "CONTEXT_ARI",
26149
+ EnvironmentId = "ENVIRONMENT_ID"
26150
+ }
26063
26151
  export declare type DevConsoleMutation = {
26064
26152
  __typename?: 'DevConsoleMutation';
26065
26153
  acceptAppBillingConsent: DevConsoleResponsePayload;
@@ -26096,13 +26184,34 @@ export declare type DevConsoleMutationUpdateDeveloperSpaceMemberArgs = {
26096
26184
  export declare type DevConsoleMutationUpdateDeveloperSpaceSettingsArgs = {
26097
26185
  input: DevConsoleUpdateDeveloperSpaceSettingsInput;
26098
26186
  };
26187
+ export declare type DevConsolePagination = {
26188
+ __typename?: 'DevConsolePagination';
26189
+ page: Scalars['Int']['output'];
26190
+ pageSize: Scalars['Int']['output'];
26191
+ };
26099
26192
  export declare type DevConsoleQuery = {
26100
26193
  __typename?: 'DevConsoleQuery';
26194
+ appResourceUsage: DevConsoleAppResourceUsageResponse;
26195
+ appResourceUsageDetailedView: DevConsoleAppResourceUsageDetailedViewResponse;
26196
+ appUsageOverview: DevConsoleAppUsageOverviewResponse;
26101
26197
  getDeveloperSpaceDetails?: Maybe<DevConsoleBulkDeveloperSpaceDetailsResponse>;
26102
26198
  getDeveloperSpaceMembers?: Maybe<DevConsoleDeveloperSpaceMembersResponse>;
26103
26199
  getDeveloperSpaceWithLinkingAccess?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
26104
26200
  tenantContexts: Array<Maybe<DevConsoleTenantContext>>;
26105
26201
  };
26202
+ export declare type DevConsoleQueryAppResourceUsageArgs = {
26203
+ appId: Scalars['ID']['input'];
26204
+ filters: DevConsoleAppResourceUsageFiltersInput;
26205
+ groupBy?: InputMaybe<DevConsoleGroupBy>;
26206
+ };
26207
+ export declare type DevConsoleQueryAppResourceUsageDetailedViewArgs = {
26208
+ appId: Scalars['ID']['input'];
26209
+ filters: DevConsoleAppResourceUsageDetailedViewFiltersInput;
26210
+ };
26211
+ export declare type DevConsoleQueryAppUsageOverviewArgs = {
26212
+ appId: Scalars['ID']['input'];
26213
+ filters: DevConsoleAppUsageFiltersInput;
26214
+ };
26106
26215
  export declare type DevConsoleQueryGetDeveloperSpaceDetailsArgs = {
26107
26216
  developerSpaceIds: Array<Scalars['String']['input']>;
26108
26217
  };
@@ -26116,6 +26225,45 @@ export declare type DevConsoleRemoveDeveloperSpaceMemberInput = {
26116
26225
  developerSpaceId: Scalars['String']['input'];
26117
26226
  memberId: Scalars['String']['input'];
26118
26227
  };
26228
+ export declare enum DevConsoleResource {
26229
+ FunctionCompute = "FUNCTION_COMPUTE",
26230
+ KvsRead = "KVS_READ",
26231
+ KvsWrite = "KVS_WRITE",
26232
+ LogsWrite = "LOGS_WRITE",
26233
+ SqlCompute = "SQL_COMPUTE",
26234
+ SqlRequests = "SQL_REQUESTS",
26235
+ SqlStorage = "SQL_STORAGE"
26236
+ }
26237
+ export declare type DevConsoleResourceUsage = {
26238
+ __typename?: 'DevConsoleResourceUsage';
26239
+ period: Scalars['String']['output'];
26240
+ resolution: DevConsoleUsageResolution;
26241
+ tokenUnit: Scalars['String']['output'];
26242
+ tokensConsumed: Scalars['String']['output'];
26243
+ };
26244
+ export declare type DevConsoleResourceUsageData = {
26245
+ __typename?: 'DevConsoleResourceUsageData';
26246
+ functionCompute?: Maybe<Array<DevConsoleResourceUsage>>;
26247
+ kvsRead?: Maybe<Array<DevConsoleResourceUsage>>;
26248
+ kvsWrite?: Maybe<Array<DevConsoleResourceUsage>>;
26249
+ logsWrite?: Maybe<Array<DevConsoleResourceUsage>>;
26250
+ sqlCompute?: Maybe<Array<DevConsoleResourceUsage>>;
26251
+ sqlRequests?: Maybe<Array<DevConsoleResourceUsage>>;
26252
+ sqlStorage?: Maybe<Array<DevConsoleResourceUsage>>;
26253
+ };
26254
+ export declare type DevConsoleResourceUsageGroup = {
26255
+ __typename?: 'DevConsoleResourceUsageGroup';
26256
+ groupBy: Scalars['String']['output'];
26257
+ groupValue: Scalars['String']['output'];
26258
+ tokenUnit: Scalars['String']['output'];
26259
+ tokensConsumed: Scalars['String']['output'];
26260
+ };
26261
+ export declare type DevConsoleResourceUsagePeriod = {
26262
+ __typename?: 'DevConsoleResourceUsagePeriod';
26263
+ groups: Array<DevConsoleResourceUsageGroup>;
26264
+ period: Scalars['String']['output'];
26265
+ resolution: DevConsoleUsageResolution;
26266
+ };
26119
26267
  export declare type DevConsoleResponsePayload = Payload & {
26120
26268
  __typename?: 'DevConsoleResponsePayload';
26121
26269
  errors?: Maybe<Array<MutationError>>;
@@ -26138,6 +26286,12 @@ export declare type DevConsoleUpdateDeveloperSpaceSettingsInput = {
26138
26286
  logo?: InputMaybe<Scalars['Upload']['input']>;
26139
26287
  name?: InputMaybe<Scalars['String']['input']>;
26140
26288
  };
26289
+ export declare enum DevConsoleUsageResolution {
26290
+ OneDay = "ONE_DAY",
26291
+ OneHour = "ONE_HOUR",
26292
+ OneMonth = "ONE_MONTH",
26293
+ OneWeek = "ONE_WEEK"
26294
+ }
26141
26295
  export declare type DevOps = {
26142
26296
  __typename?: 'DevOps';
26143
26297
  ariGraph?: Maybe<AriGraph>;
@@ -35820,8 +35974,6 @@ export declare type GraphStore = {
35820
35974
  userMentionedInMessageInverse?: Maybe<GraphStoreSimplifiedUserMentionedInMessageInverseConnection>;
35821
35975
  userMentionedInVideoComment?: Maybe<GraphStoreSimplifiedUserMentionedInVideoCommentConnection>;
35822
35976
  userMentionedInVideoCommentInverse?: Maybe<GraphStoreSimplifiedUserMentionedInVideoCommentInverseConnection>;
35823
- userMergedPullRequest?: Maybe<GraphStoreSimplifiedUserMergedPullRequestConnection>;
35824
- userMergedPullRequestInverse?: Maybe<GraphStoreSimplifiedUserMergedPullRequestInverseConnection>;
35825
35977
  userOwnedBranch?: Maybe<GraphStoreSimplifiedUserOwnedBranchConnection>;
35826
35978
  userOwnedBranchInverse?: Maybe<GraphStoreSimplifiedUserOwnedBranchInverseConnection>;
35827
35979
  userOwnedCalendarEvent?: Maybe<GraphStoreSimplifiedUserOwnedCalendarEventConnection>;
@@ -35866,8 +36018,6 @@ export declare type GraphStore = {
35866
36018
  userUpdatedAtlasGoalInverse?: Maybe<GraphStoreSimplifiedUserUpdatedAtlasGoalInverseConnection>;
35867
36019
  userUpdatedAtlasProject?: Maybe<GraphStoreSimplifiedUserUpdatedAtlasProjectConnection>;
35868
36020
  userUpdatedAtlasProjectInverse?: Maybe<GraphStoreSimplifiedUserUpdatedAtlasProjectInverseConnection>;
35869
- userUpdatedComment?: Maybe<GraphStoreSimplifiedUserUpdatedCommentConnection>;
35870
- userUpdatedCommentInverse?: Maybe<GraphStoreSimplifiedUserUpdatedCommentInverseConnection>;
35871
36021
  userUpdatedConfluenceBlogpost?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostConnection>;
35872
36022
  userUpdatedConfluenceBlogpostInverse?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostInverseConnection>;
35873
36023
  userUpdatedConfluencePage?: Maybe<GraphStoreSimplifiedUserUpdatedConfluencePageConnection>;
@@ -35890,6 +36040,7 @@ export declare type GraphStore = {
35890
36040
  userViewedConfluenceBlogpostInverse?: Maybe<GraphStoreSimplifiedUserViewedConfluenceBlogpostInverseConnection>;
35891
36041
  userViewedConfluencePage?: Maybe<GraphStoreSimplifiedUserViewedConfluencePageConnection>;
35892
36042
  userViewedConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserViewedConfluencePageInverseConnection>;
36043
+ userViewedDocumentInverse?: Maybe<GraphStoreSimplifiedUserViewedDocumentInverseConnection>;
35893
36044
  userViewedGoalUpdate?: Maybe<GraphStoreSimplifiedUserViewedGoalUpdateConnection>;
35894
36045
  userViewedGoalUpdateBatch?: Maybe<GraphStoreBatchUserViewedGoalUpdateConnection>;
35895
36046
  userViewedGoalUpdateInverse?: Maybe<GraphStoreSimplifiedUserViewedGoalUpdateInverseConnection>;
@@ -40475,20 +40626,6 @@ export declare type GraphStoreUserMentionedInVideoCommentInverseArgs = {
40475
40626
  id: Scalars['ID']['input'];
40476
40627
  sort?: InputMaybe<GraphStoreUserMentionedInVideoCommentSortInput>;
40477
40628
  };
40478
- export declare type GraphStoreUserMergedPullRequestArgs = {
40479
- after?: InputMaybe<Scalars['String']['input']>;
40480
- consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
40481
- first?: InputMaybe<Scalars['Int']['input']>;
40482
- id: Scalars['ID']['input'];
40483
- sort?: InputMaybe<GraphStoreUserMergedPullRequestSortInput>;
40484
- };
40485
- export declare type GraphStoreUserMergedPullRequestInverseArgs = {
40486
- after?: InputMaybe<Scalars['String']['input']>;
40487
- consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
40488
- first?: InputMaybe<Scalars['Int']['input']>;
40489
- id: Scalars['ID']['input'];
40490
- sort?: InputMaybe<GraphStoreUserMergedPullRequestSortInput>;
40491
- };
40492
40629
  export declare type GraphStoreUserOwnedBranchArgs = {
40493
40630
  after?: InputMaybe<Scalars['String']['input']>;
40494
40631
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -40799,20 +40936,6 @@ export declare type GraphStoreUserUpdatedAtlasProjectInverseArgs = {
40799
40936
  id: Scalars['ID']['input'];
40800
40937
  sort?: InputMaybe<GraphStoreUserUpdatedAtlasProjectSortInput>;
40801
40938
  };
40802
- export declare type GraphStoreUserUpdatedCommentArgs = {
40803
- after?: InputMaybe<Scalars['String']['input']>;
40804
- consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
40805
- first?: InputMaybe<Scalars['Int']['input']>;
40806
- id: Scalars['ID']['input'];
40807
- sort?: InputMaybe<GraphStoreUserUpdatedCommentSortInput>;
40808
- };
40809
- export declare type GraphStoreUserUpdatedCommentInverseArgs = {
40810
- after?: InputMaybe<Scalars['String']['input']>;
40811
- consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
40812
- first?: InputMaybe<Scalars['Int']['input']>;
40813
- id: Scalars['ID']['input'];
40814
- sort?: InputMaybe<GraphStoreUserUpdatedCommentSortInput>;
40815
- };
40816
40939
  export declare type GraphStoreUserUpdatedConfluenceBlogpostArgs = {
40817
40940
  after?: InputMaybe<Scalars['String']['input']>;
40818
40941
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -40965,6 +41088,13 @@ export declare type GraphStoreUserViewedConfluencePageInverseArgs = {
40965
41088
  id: Scalars['ID']['input'];
40966
41089
  sort?: InputMaybe<GraphStoreUserViewedConfluencePageSortInput>;
40967
41090
  };
41091
+ export declare type GraphStoreUserViewedDocumentInverseArgs = {
41092
+ after?: InputMaybe<Scalars['String']['input']>;
41093
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
41094
+ first?: InputMaybe<Scalars['Int']['input']>;
41095
+ id: Scalars['ID']['input'];
41096
+ sort?: InputMaybe<GraphStoreUserViewedDocumentSortInput>;
41097
+ };
40968
41098
  export declare type GraphStoreUserViewedGoalUpdateArgs = {
40969
41099
  after?: InputMaybe<Scalars['String']['input']>;
40970
41100
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -42936,6 +43066,20 @@ export declare type GraphStoreCreateMeetingRecordingOwnerHasMeetingNotesFolderRe
42936
43066
  to: Scalars['ID']['input'];
42937
43067
  updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
42938
43068
  };
43069
+ export declare type GraphStoreCreateMeetingRecurrenceHasMeetingRecurrenceNotesPageInput = {
43070
+ relationships: Array<GraphStoreCreateMeetingRecurrenceHasMeetingRecurrenceNotesPageRelationshipInput>;
43071
+ };
43072
+ export declare type GraphStoreCreateMeetingRecurrenceHasMeetingRecurrenceNotesPagePayload = Payload & {
43073
+ __typename?: 'GraphStoreCreateMeetingRecurrenceHasMeetingRecurrenceNotesPagePayload';
43074
+ errors?: Maybe<Array<MutationError>>;
43075
+ success: Scalars['Boolean']['output'];
43076
+ };
43077
+ export declare type GraphStoreCreateMeetingRecurrenceHasMeetingRecurrenceNotesPageRelationshipInput = {
43078
+ from: Scalars['ID']['input'];
43079
+ sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
43080
+ to: Scalars['ID']['input'];
43081
+ updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
43082
+ };
42939
43083
  export declare type GraphStoreCreateParentTeamHasChildTeamInput = {
42940
43084
  relationships: Array<GraphStoreCreateParentTeamHasChildTeamRelationshipInput>;
42941
43085
  };
@@ -43523,6 +43667,19 @@ export declare type GraphStoreDeleteMeetingRecordingOwnerHasMeetingNotesFolderRe
43523
43667
  from: Scalars['ID']['input'];
43524
43668
  to: Scalars['ID']['input'];
43525
43669
  };
43670
+ export declare type GraphStoreDeleteMeetingRecurrenceHasMeetingRecurrenceNotesPageInput = {
43671
+ relationships: Array<GraphStoreDeleteMeetingRecurrenceHasMeetingRecurrenceNotesPageRelationshipInput>;
43672
+ synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
43673
+ };
43674
+ export declare type GraphStoreDeleteMeetingRecurrenceHasMeetingRecurrenceNotesPagePayload = Payload & {
43675
+ __typename?: 'GraphStoreDeleteMeetingRecurrenceHasMeetingRecurrenceNotesPagePayload';
43676
+ errors?: Maybe<Array<MutationError>>;
43677
+ success: Scalars['Boolean']['output'];
43678
+ };
43679
+ export declare type GraphStoreDeleteMeetingRecurrenceHasMeetingRecurrenceNotesPageRelationshipInput = {
43680
+ from: Scalars['ID']['input'];
43681
+ to: Scalars['ID']['input'];
43682
+ };
43526
43683
  export declare type GraphStoreDeleteParentTeamHasChildTeamInput = {
43527
43684
  relationships: Array<GraphStoreDeleteParentTeamHasChildTeamRelationshipInput>;
43528
43685
  synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
@@ -47659,10 +47816,7 @@ export declare type GraphStoreMeetingHasMeetingNotesPageSortInput = {
47659
47816
  lastModified?: InputMaybe<GraphStoreSortInput>;
47660
47817
  };
47661
47818
  export declare type GraphStoreMeetingRecordingOwnerHasMeetingNotesFolderSortInput = {
47662
- createdAt?: InputMaybe<GraphStoreSortInput>;
47663
- fromAti?: InputMaybe<GraphStoreSortInput>;
47664
47819
  lastModified?: InputMaybe<GraphStoreSortInput>;
47665
- toAti?: InputMaybe<GraphStoreSortInput>;
47666
47820
  };
47667
47821
  export declare type GraphStoreMeetingRecurrenceHasMeetingRecurrenceNotesPageSortInput = {
47668
47822
  lastModified?: InputMaybe<GraphStoreSortInput>;
@@ -47678,6 +47832,7 @@ export declare type GraphStoreMutation = {
47678
47832
  createJswProjectAssociatedComponent?: Maybe<GraphStoreCreateJswProjectAssociatedComponentPayload>;
47679
47833
  createLoomVideoHasConfluencePage?: Maybe<GraphStoreCreateLoomVideoHasConfluencePagePayload>;
47680
47834
  createMeetingRecordingOwnerHasMeetingNotesFolder?: Maybe<GraphStoreCreateMeetingRecordingOwnerHasMeetingNotesFolderPayload>;
47835
+ createMeetingRecurrenceHasMeetingRecurrenceNotesPage?: Maybe<GraphStoreCreateMeetingRecurrenceHasMeetingRecurrenceNotesPagePayload>;
47681
47836
  createParentTeamHasChildTeam?: Maybe<GraphStoreCreateParentTeamHasChildTeamPayload>;
47682
47837
  createProjectAssociatedOpsgenieTeam?: Maybe<GraphStoreCreateProjectAssociatedOpsgenieTeamPayload>;
47683
47838
  createProjectAssociatedToSecurityContainer?: Maybe<GraphStoreCreateProjectAssociatedToSecurityContainerPayload>;
@@ -47705,6 +47860,7 @@ export declare type GraphStoreMutation = {
47705
47860
  deleteJswProjectAssociatedComponent?: Maybe<GraphStoreDeleteJswProjectAssociatedComponentPayload>;
47706
47861
  deleteLoomVideoHasConfluencePage?: Maybe<GraphStoreDeleteLoomVideoHasConfluencePagePayload>;
47707
47862
  deleteMeetingRecordingOwnerHasMeetingNotesFolder?: Maybe<GraphStoreDeleteMeetingRecordingOwnerHasMeetingNotesFolderPayload>;
47863
+ deleteMeetingRecurrenceHasMeetingRecurrenceNotesPage?: Maybe<GraphStoreDeleteMeetingRecurrenceHasMeetingRecurrenceNotesPagePayload>;
47708
47864
  deleteParentTeamHasChildTeam?: Maybe<GraphStoreDeleteParentTeamHasChildTeamPayload>;
47709
47865
  deleteProjectAssociatedOpsgenieTeam?: Maybe<GraphStoreDeleteProjectAssociatedOpsgenieTeamPayload>;
47710
47866
  deleteProjectAssociatedToSecurityContainer?: Maybe<GraphStoreDeleteProjectAssociatedToSecurityContainerPayload>;
@@ -47751,6 +47907,9 @@ export declare type GraphStoreMutationCreateLoomVideoHasConfluencePageArgs = {
47751
47907
  export declare type GraphStoreMutationCreateMeetingRecordingOwnerHasMeetingNotesFolderArgs = {
47752
47908
  input?: InputMaybe<GraphStoreCreateMeetingRecordingOwnerHasMeetingNotesFolderInput>;
47753
47909
  };
47910
+ export declare type GraphStoreMutationCreateMeetingRecurrenceHasMeetingRecurrenceNotesPageArgs = {
47911
+ input?: InputMaybe<GraphStoreCreateMeetingRecurrenceHasMeetingRecurrenceNotesPageInput>;
47912
+ };
47754
47913
  export declare type GraphStoreMutationCreateParentTeamHasChildTeamArgs = {
47755
47914
  input?: InputMaybe<GraphStoreCreateParentTeamHasChildTeamInput>;
47756
47915
  };
@@ -47832,6 +47991,9 @@ export declare type GraphStoreMutationDeleteLoomVideoHasConfluencePageArgs = {
47832
47991
  export declare type GraphStoreMutationDeleteMeetingRecordingOwnerHasMeetingNotesFolderArgs = {
47833
47992
  input?: InputMaybe<GraphStoreDeleteMeetingRecordingOwnerHasMeetingNotesFolderInput>;
47834
47993
  };
47994
+ export declare type GraphStoreMutationDeleteMeetingRecurrenceHasMeetingRecurrenceNotesPageArgs = {
47995
+ input?: InputMaybe<GraphStoreDeleteMeetingRecurrenceHasMeetingRecurrenceNotesPageInput>;
47996
+ };
47835
47997
  export declare type GraphStoreMutationDeleteParentTeamHasChildTeamArgs = {
47836
47998
  input?: InputMaybe<GraphStoreDeleteParentTeamHasChildTeamInput>;
47837
47999
  };
@@ -51696,12 +51858,10 @@ export declare type GraphStoreSimplifiedMeetingHasMeetingNotesPageInverseEdge =
51696
51858
  };
51697
51859
  export declare type GraphStoreSimplifiedMeetingHasMeetingNotesPageInverseUnion = LoomMeeting;
51698
51860
  export declare type GraphStoreSimplifiedMeetingHasMeetingNotesPageUnion = ConfluencePage;
51699
- export declare type GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderConnection = HasPageInfo & HasTotal & {
51861
+ export declare type GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderConnection = HasPageInfo & {
51700
51862
  __typename?: 'GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderConnection';
51701
51863
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderEdge>>>;
51702
- isExactCount?: Maybe<Scalars['Boolean']['output']>;
51703
51864
  pageInfo: PageInfo;
51704
- totalCount?: Maybe<Scalars['Int']['output']>;
51705
51865
  };
51706
51866
  export declare type GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderEdge = {
51707
51867
  __typename?: 'GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderEdge';
@@ -51711,12 +51871,10 @@ export declare type GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFold
51711
51871
  lastUpdated: Scalars['DateTime']['output'];
51712
51872
  node?: Maybe<GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderUnion>;
51713
51873
  };
51714
- export declare type GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderInverseConnection = HasPageInfo & HasTotal & {
51874
+ export declare type GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderInverseConnection = HasPageInfo & {
51715
51875
  __typename?: 'GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderInverseConnection';
51716
51876
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderInverseEdge>>>;
51717
- isExactCount?: Maybe<Scalars['Boolean']['output']>;
51718
51877
  pageInfo: PageInfo;
51719
- totalCount?: Maybe<Scalars['Int']['output']>;
51720
51878
  };
51721
51879
  export declare type GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderInverseEdge = {
51722
51880
  __typename?: 'GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderInverseEdge';
@@ -55542,34 +55700,6 @@ export declare type GraphStoreSimplifiedUserMentionedInVideoCommentInverseEdge =
55542
55700
  };
55543
55701
  export declare type GraphStoreSimplifiedUserMentionedInVideoCommentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
55544
55702
  export declare type GraphStoreSimplifiedUserMentionedInVideoCommentUnion = LoomComment;
55545
- export declare type GraphStoreSimplifiedUserMergedPullRequestConnection = HasPageInfo & {
55546
- __typename?: 'GraphStoreSimplifiedUserMergedPullRequestConnection';
55547
- edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserMergedPullRequestEdge>>>;
55548
- pageInfo: PageInfo;
55549
- };
55550
- export declare type GraphStoreSimplifiedUserMergedPullRequestEdge = {
55551
- __typename?: 'GraphStoreSimplifiedUserMergedPullRequestEdge';
55552
- createdAt: Scalars['DateTime']['output'];
55553
- cursor?: Maybe<Scalars['String']['output']>;
55554
- id: Scalars['ID']['output'];
55555
- lastUpdated: Scalars['DateTime']['output'];
55556
- node?: Maybe<GraphStoreSimplifiedUserMergedPullRequestUnion>;
55557
- };
55558
- export declare type GraphStoreSimplifiedUserMergedPullRequestInverseConnection = HasPageInfo & {
55559
- __typename?: 'GraphStoreSimplifiedUserMergedPullRequestInverseConnection';
55560
- edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserMergedPullRequestInverseEdge>>>;
55561
- pageInfo: PageInfo;
55562
- };
55563
- export declare type GraphStoreSimplifiedUserMergedPullRequestInverseEdge = {
55564
- __typename?: 'GraphStoreSimplifiedUserMergedPullRequestInverseEdge';
55565
- createdAt: Scalars['DateTime']['output'];
55566
- cursor?: Maybe<Scalars['String']['output']>;
55567
- id: Scalars['ID']['output'];
55568
- lastUpdated: Scalars['DateTime']['output'];
55569
- node?: Maybe<GraphStoreSimplifiedUserMergedPullRequestInverseUnion>;
55570
- };
55571
- export declare type GraphStoreSimplifiedUserMergedPullRequestInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
55572
- export declare type GraphStoreSimplifiedUserMergedPullRequestUnion = DevOpsPullRequestDetails | ExternalPullRequest;
55573
55703
  export declare type GraphStoreSimplifiedUserOwnedBranchConnection = HasPageInfo & {
55574
55704
  __typename?: 'GraphStoreSimplifiedUserOwnedBranchConnection';
55575
55705
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnedBranchEdge>>>;
@@ -56190,34 +56320,6 @@ export declare type GraphStoreSimplifiedUserUpdatedAtlasProjectInverseEdge = {
56190
56320
  };
56191
56321
  export declare type GraphStoreSimplifiedUserUpdatedAtlasProjectInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
56192
56322
  export declare type GraphStoreSimplifiedUserUpdatedAtlasProjectUnion = TownsquareProject;
56193
- export declare type GraphStoreSimplifiedUserUpdatedCommentConnection = HasPageInfo & {
56194
- __typename?: 'GraphStoreSimplifiedUserUpdatedCommentConnection';
56195
- edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedCommentEdge>>>;
56196
- pageInfo: PageInfo;
56197
- };
56198
- export declare type GraphStoreSimplifiedUserUpdatedCommentEdge = {
56199
- __typename?: 'GraphStoreSimplifiedUserUpdatedCommentEdge';
56200
- createdAt: Scalars['DateTime']['output'];
56201
- cursor?: Maybe<Scalars['String']['output']>;
56202
- id: Scalars['ID']['output'];
56203
- lastUpdated: Scalars['DateTime']['output'];
56204
- node?: Maybe<GraphStoreSimplifiedUserUpdatedCommentUnion>;
56205
- };
56206
- export declare type GraphStoreSimplifiedUserUpdatedCommentInverseConnection = HasPageInfo & {
56207
- __typename?: 'GraphStoreSimplifiedUserUpdatedCommentInverseConnection';
56208
- edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedCommentInverseEdge>>>;
56209
- pageInfo: PageInfo;
56210
- };
56211
- export declare type GraphStoreSimplifiedUserUpdatedCommentInverseEdge = {
56212
- __typename?: 'GraphStoreSimplifiedUserUpdatedCommentInverseEdge';
56213
- createdAt: Scalars['DateTime']['output'];
56214
- cursor?: Maybe<Scalars['String']['output']>;
56215
- id: Scalars['ID']['output'];
56216
- lastUpdated: Scalars['DateTime']['output'];
56217
- node?: Maybe<GraphStoreSimplifiedUserUpdatedCommentInverseUnion>;
56218
- };
56219
- export declare type GraphStoreSimplifiedUserUpdatedCommentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
56220
- export declare type GraphStoreSimplifiedUserUpdatedCommentUnion = ConfluenceFooterComment | ConfluenceInlineComment;
56221
56323
  export declare type GraphStoreSimplifiedUserUpdatedConfluenceBlogpostConnection = HasPageInfo & {
56222
56324
  __typename?: 'GraphStoreSimplifiedUserUpdatedConfluenceBlogpostConnection';
56223
56325
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostEdge>>>;
@@ -56498,6 +56600,20 @@ export declare type GraphStoreSimplifiedUserViewedConfluencePageInverseEdge = {
56498
56600
  };
56499
56601
  export declare type GraphStoreSimplifiedUserViewedConfluencePageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
56500
56602
  export declare type GraphStoreSimplifiedUserViewedConfluencePageUnion = ConfluencePage;
56603
+ export declare type GraphStoreSimplifiedUserViewedDocumentInverseConnection = HasPageInfo & {
56604
+ __typename?: 'GraphStoreSimplifiedUserViewedDocumentInverseConnection';
56605
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewedDocumentInverseEdge>>>;
56606
+ pageInfo: PageInfo;
56607
+ };
56608
+ export declare type GraphStoreSimplifiedUserViewedDocumentInverseEdge = {
56609
+ __typename?: 'GraphStoreSimplifiedUserViewedDocumentInverseEdge';
56610
+ createdAt: Scalars['DateTime']['output'];
56611
+ cursor?: Maybe<Scalars['String']['output']>;
56612
+ id: Scalars['ID']['output'];
56613
+ lastUpdated: Scalars['DateTime']['output'];
56614
+ node?: Maybe<GraphStoreSimplifiedUserViewedDocumentInverseUnion>;
56615
+ };
56616
+ export declare type GraphStoreSimplifiedUserViewedDocumentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
56501
56617
  export declare type GraphStoreSimplifiedUserViewedGoalUpdateConnection = HasPageInfo & {
56502
56618
  __typename?: 'GraphStoreSimplifiedUserViewedGoalUpdateConnection';
56503
56619
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewedGoalUpdateEdge>>>;
@@ -57695,9 +57811,6 @@ export declare type GraphStoreUserMentionedInMessageSortInput = {
57695
57811
  export declare type GraphStoreUserMentionedInVideoCommentSortInput = {
57696
57812
  lastModified?: InputMaybe<GraphStoreSortInput>;
57697
57813
  };
57698
- export declare type GraphStoreUserMergedPullRequestSortInput = {
57699
- lastModified?: InputMaybe<GraphStoreSortInput>;
57700
- };
57701
57814
  export declare type GraphStoreUserOwnedBranchSortInput = {
57702
57815
  lastModified?: InputMaybe<GraphStoreSortInput>;
57703
57816
  };
@@ -57777,9 +57890,6 @@ export declare type GraphStoreUserUpdatedAtlasGoalSortInput = {
57777
57890
  export declare type GraphStoreUserUpdatedAtlasProjectSortInput = {
57778
57891
  lastModified?: InputMaybe<GraphStoreSortInput>;
57779
57892
  };
57780
- export declare type GraphStoreUserUpdatedCommentSortInput = {
57781
- lastModified?: InputMaybe<GraphStoreSortInput>;
57782
- };
57783
57893
  export declare type GraphStoreUserUpdatedConfluenceBlogpostSortInput = {
57784
57894
  lastModified?: InputMaybe<GraphStoreSortInput>;
57785
57895
  };
@@ -57810,6 +57920,9 @@ export declare type GraphStoreUserViewedConfluenceBlogpostSortInput = {
57810
57920
  export declare type GraphStoreUserViewedConfluencePageSortInput = {
57811
57921
  lastModified?: InputMaybe<GraphStoreSortInput>;
57812
57922
  };
57923
+ export declare type GraphStoreUserViewedDocumentSortInput = {
57924
+ lastModified?: InputMaybe<GraphStoreSortInput>;
57925
+ };
57813
57926
  export declare type GraphStoreUserViewedGoalUpdateSortInput = {
57814
57927
  lastModified?: InputMaybe<GraphStoreSortInput>;
57815
57928
  };
@@ -65826,6 +65939,7 @@ export declare type JiraCustomFieldType = {
65826
65939
  __typename?: 'JiraCustomFieldType';
65827
65940
  category?: Maybe<JiraCustomFieldTypeCategory>;
65828
65941
  description?: Maybe<Scalars['String']['output']>;
65942
+ effectiveKey?: Maybe<Scalars['String']['output']>;
65829
65943
  hasCascadingOptions?: Maybe<Scalars['Boolean']['output']>;
65830
65944
  hasOptions?: Maybe<Scalars['Boolean']['output']>;
65831
65945
  installedByAppName?: Maybe<Scalars['String']['output']>;
@@ -67433,7 +67547,7 @@ export declare type JiraFieldWorkTypeDescriptionCustomization = {
67433
67547
  workTypes?: Maybe<Array<Maybe<JiraIssueType>>>;
67434
67548
  };
67435
67549
  export declare type JiraFieldWorkTypeDescriptionCustomizationInput = {
67436
- description: Scalars['String']['input'];
67550
+ description?: InputMaybe<Scalars['String']['input']>;
67437
67551
  isDefault: Scalars['Boolean']['input'];
67438
67552
  workTypeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
67439
67553
  };
@@ -69247,6 +69361,7 @@ export declare type JiraIssueFieldConfig = Node & {
69247
69361
  defaultJqlClauseName?: Maybe<Scalars['String']['output']>;
69248
69362
  description?: Maybe<Scalars['String']['output']>;
69249
69363
  descriptionCustomisations?: Maybe<Array<Maybe<JiraFieldWorkTypeDescriptionCustomization>>>;
69364
+ effectiveTypeKey?: Maybe<Scalars['String']['output']>;
69250
69365
  fieldId: Scalars['String']['output'];
69251
69366
  fieldSchemeOperations?: Maybe<JiraFieldSchemeOperations>;
69252
69367
  formatConfig?: Maybe<JiraFieldFormatConfig>;
@@ -69908,6 +70023,18 @@ export declare type JiraIssueReviewDevSummaryContainer = {
69908
70023
  overall?: Maybe<JiraIssueReviewDevSummary>;
69909
70024
  summaryByProvider?: Maybe<Array<JiraIssueDevSummaryByProvider>>;
69910
70025
  };
70026
+ export declare type JiraIssueSearchAggregationConfigInput = {
70027
+ aggregationFields?: InputMaybe<Array<JiraIssueSearchFieldAggregationInput>>;
70028
+ canEnableAggregation?: InputMaybe<Scalars['Boolean']['input']>;
70029
+ };
70030
+ export declare type JiraIssueSearchAggregationConfigSettings = {
70031
+ __typename?: 'JiraIssueSearchAggregationConfigSettings';
70032
+ aggregationFields?: Maybe<Array<JiraIssueSearchFieldAggregation>>;
70033
+ canEnableAggregation?: Maybe<Scalars['Boolean']['output']>;
70034
+ };
70035
+ export declare enum JiraIssueSearchAggregationFunction {
70036
+ Rollup = "ROLLUP"
70037
+ }
69911
70038
  export declare type JiraIssueSearchBulkViewContextMapping = {
69912
70039
  __typename?: 'JiraIssueSearchBulkViewContextMapping';
69913
70040
  afterIssueId?: Maybe<Scalars['String']['output']>;
@@ -70025,6 +70152,17 @@ export declare type JiraIssueSearchErrorExtension = QueryErrorExtension & {
70025
70152
  errorType?: Maybe<Scalars['String']['output']>;
70026
70153
  statusCode?: Maybe<Scalars['Int']['output']>;
70027
70154
  };
70155
+ export declare type JiraIssueSearchFieldAggregation = {
70156
+ __typename?: 'JiraIssueSearchFieldAggregation';
70157
+ aggregationFunction?: Maybe<JiraIssueSearchAggregationFunction>;
70158
+ fieldId?: Maybe<Scalars['String']['output']>;
70159
+ isEnabled?: Maybe<Scalars['Boolean']['output']>;
70160
+ };
70161
+ export declare type JiraIssueSearchFieldAggregationInput = {
70162
+ aggregationFunction?: InputMaybe<JiraIssueSearchAggregationFunction>;
70163
+ fieldId?: InputMaybe<Scalars['String']['input']>;
70164
+ isEnabled?: InputMaybe<Scalars['Boolean']['input']>;
70165
+ };
70028
70166
  export declare type JiraIssueSearchFieldMetadataConnection = {
70029
70167
  __typename?: 'JiraIssueSearchFieldMetadataConnection';
70030
70168
  edges?: Maybe<Array<Maybe<JiraIssueSearchFieldMetadataEdge>>>;
@@ -70153,6 +70291,7 @@ export declare type JiraIssueSearchSettings = {
70153
70291
  jql?: InputMaybe<Scalars['String']['input']>;
70154
70292
  };
70155
70293
  export declare type JiraIssueSearchStaticViewInput = {
70294
+ aggregationConfig?: InputMaybe<JiraIssueSearchAggregationConfigInput>;
70156
70295
  isGroupingEnabled?: InputMaybe<Scalars['Boolean']['input']>;
70157
70296
  isHideDoneEnabled?: InputMaybe<Scalars['Boolean']['input']>;
70158
70297
  isHierarchyEnabled?: InputMaybe<Scalars['Boolean']['input']>;
@@ -70161,6 +70300,10 @@ export declare type JiraIssueSearchStatus = {
70161
70300
  __typename?: 'JiraIssueSearchStatus';
70162
70301
  functions?: Maybe<Array<Maybe<JiraJqlFunctionProcessingStatus>>>;
70163
70302
  };
70303
+ export declare type JiraIssueSearchTimelineViewConfigSettings = {
70304
+ __typename?: 'JiraIssueSearchTimelineViewConfigSettings';
70305
+ aggregationConfig?: Maybe<JiraIssueSearchAggregationConfigSettings>;
70306
+ };
70164
70307
  export declare type JiraIssueSearchView = JiraIssueSearchViewMetadata & Node & {
70165
70308
  __typename?: 'JiraIssueSearchView';
70166
70309
  canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
@@ -71774,6 +71917,22 @@ export declare type JiraMergeVersionPayload = Payload & {
71774
71917
  success: Scalars['Boolean']['output'];
71775
71918
  targetVersion?: Maybe<JiraVersion>;
71776
71919
  };
71920
+ export declare enum JiraMoveBoardViewIssueToCellEnd {
71921
+ Bottom = "BOTTOM",
71922
+ Top = "TOP"
71923
+ }
71924
+ export declare type JiraMoveBoardViewIssueToCellEndInput = {
71925
+ cellId: Scalars['ID']['input'];
71926
+ end: JiraMoveBoardViewIssueToCellEnd;
71927
+ id: Scalars['ID']['input'];
71928
+ settings?: InputMaybe<JiraBoardViewSettings>;
71929
+ };
71930
+ export declare type JiraMoveBoardViewIssueToCellEndPayload = Payload & {
71931
+ __typename?: 'JiraMoveBoardViewIssueToCellEndPayload';
71932
+ errors?: Maybe<Array<MutationError>>;
71933
+ issue?: Maybe<JiraIssue>;
71934
+ success: Scalars['Boolean']['output'];
71935
+ };
71777
71936
  export declare type JiraMoveIssuesToFixVersionInput = {
71778
71937
  issueIds: Array<Scalars['ID']['input']>;
71779
71938
  originalVersionId: Scalars['ID']['input'];
@@ -80609,6 +80768,66 @@ export declare type JiraTimelineIssueLinkOperationPayload = {
80609
80768
  outwardItem?: Maybe<JiraIssue>;
80610
80769
  success: Scalars['Boolean']['output'];
80611
80770
  };
80771
+ export declare type JiraTimelineView = JiraFieldSetsViewMetadata & JiraIssueSearchViewMetadata & JiraSpreadsheetView & JiraView & Node & {
80772
+ __typename?: 'JiraTimelineView';
80773
+ canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
80774
+ conditionalFormattingRules?: Maybe<JiraFormattingRuleConnection>;
80775
+ error?: Maybe<QueryError>;
80776
+ fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
80777
+ filterId?: Maybe<Scalars['String']['output']>;
80778
+ hasDefaultFieldSets?: Maybe<Scalars['Boolean']['output']>;
80779
+ id: Scalars['ID']['output'];
80780
+ isHierarchyEnabled?: Maybe<Scalars['Boolean']['output']>;
80781
+ isViewConfigModified?: Maybe<Scalars['Boolean']['output']>;
80782
+ issues?: Maybe<JiraIssueConnection>;
80783
+ jql?: Maybe<Scalars['String']['output']>;
80784
+ namespace?: Maybe<Scalars['String']['output']>;
80785
+ savedViewId?: Maybe<Scalars['ID']['output']>;
80786
+ settings?: Maybe<JiraSpreadsheetViewSettings>;
80787
+ timelineSettings?: Maybe<JiraIssueSearchTimelineViewConfigSettings>;
80788
+ viewId?: Maybe<Scalars['String']['output']>;
80789
+ viewSettings?: Maybe<JiraIssueSearchViewConfigSettings>;
80790
+ };
80791
+ export declare type JiraTimelineViewConditionalFormattingRulesArgs = {
80792
+ after?: InputMaybe<Scalars['String']['input']>;
80793
+ first?: InputMaybe<Scalars['Int']['input']>;
80794
+ };
80795
+ export declare type JiraTimelineViewFieldSetsArgs = {
80796
+ after?: InputMaybe<Scalars['String']['input']>;
80797
+ before?: InputMaybe<Scalars['String']['input']>;
80798
+ filter?: InputMaybe<JiraIssueSearchFieldSetsFilter>;
80799
+ first?: InputMaybe<Scalars['Int']['input']>;
80800
+ last?: InputMaybe<Scalars['Int']['input']>;
80801
+ scope?: InputMaybe<JiraIssueSearchScope>;
80802
+ };
80803
+ export declare type JiraTimelineViewHasDefaultFieldSetsArgs = {
80804
+ scope?: InputMaybe<JiraIssueSearchScope>;
80805
+ };
80806
+ export declare type JiraTimelineViewIsViewConfigModifiedArgs = {
80807
+ settings?: InputMaybe<JiraIssueSearchSettings>;
80808
+ };
80809
+ export declare type JiraTimelineViewIssuesArgs = {
80810
+ after?: InputMaybe<Scalars['String']['input']>;
80811
+ before?: InputMaybe<Scalars['String']['input']>;
80812
+ fieldSetsInput?: InputMaybe<JiraIssueSearchFieldSetsInput>;
80813
+ first?: InputMaybe<Scalars['Int']['input']>;
80814
+ issueSearchInput: JiraIssueSearchInput;
80815
+ last?: InputMaybe<Scalars['Int']['input']>;
80816
+ options?: InputMaybe<JiraIssueSearchOptions>;
80817
+ saveJQLToUserHistory?: InputMaybe<Scalars['Boolean']['input']>;
80818
+ scope?: InputMaybe<JiraIssueSearchScope>;
80819
+ settings?: InputMaybe<JiraIssueSearchSettings>;
80820
+ viewConfigInput?: InputMaybe<JiraIssueSearchViewConfigInput>;
80821
+ };
80822
+ export declare type JiraTimelineViewTimelineSettingsArgs = {
80823
+ staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
80824
+ };
80825
+ export declare type JiraTimelineViewViewSettingsArgs = {
80826
+ groupBy?: InputMaybe<Scalars['String']['input']>;
80827
+ issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
80828
+ settings?: InputMaybe<JiraIssueSearchSettings>;
80829
+ staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
80830
+ };
80612
80831
  export declare type JiraToolchain = {
80613
80832
  __typename?: 'JiraToolchain';
80614
80833
  hasViewDevToolsPermission?: Maybe<Scalars['Boolean']['output']>;
@@ -91365,6 +91584,7 @@ export declare type Mutation = {
91365
91584
  confluence_deleteAnswer?: Maybe<ConfluenceDeleteAnswerPayload>;
91366
91585
  confluence_deleteCalendar?: Maybe<ConfluenceDeleteCalendarPayload>;
91367
91586
  confluence_deleteCalendarCustomEventType?: Maybe<ConfluenceDeleteCalendarCustomEventTypePayload>;
91587
+ confluence_deleteContentVersion?: Maybe<ConfluenceDeleteContentVersionPayload>;
91368
91588
  confluence_deleteCustomRole?: Maybe<ConfluenceDeleteCustomRolePayload>;
91369
91589
  confluence_deleteQuestion?: Maybe<ConfluenceDeleteQuestionPayload>;
91370
91590
  confluence_deleteReaction?: Maybe<ConfluenceReactionPayload>;
@@ -91647,6 +91867,7 @@ export declare type Mutation = {
91647
91867
  jira_dismissSuggestions?: Maybe<JiraDismissSuggestionActionsPayload>;
91648
91868
  jira_dragAndDropBoardViewIssue?: Maybe<JiraDragAndDropBoardViewIssuePayload>;
91649
91869
  jira_editFieldScheme?: Maybe<JiraFieldSchemePayload>;
91870
+ jira_moveBoardViewIssueToCellEnd?: Maybe<JiraMoveBoardViewIssueToCellEndPayload>;
91650
91871
  jira_orderIssueSearchFormattingRule?: Maybe<JiraOrderIssueSearchFormattingRulePayload>;
91651
91872
  jira_publishBoardViewConfig?: Maybe<JiraPublishBoardViewConfigPayload>;
91652
91873
  jira_publishIssueSearchConfig?: Maybe<JiraPublishIssueSearchConfigPayload>;
@@ -91877,6 +92098,7 @@ export declare type Mutation = {
91877
92098
  stakeholderComms_bulkCreateStakeholders?: Maybe<StakeholderCommsBulkStakeholderCreationResponse>;
91878
92099
  stakeholderComms_bulkDeleteStakeholders?: Maybe<StakeholderCommsBulkStakeholderResponse>;
91879
92100
  stakeholderComms_createDraftPage?: Maybe<StakeholderCommsPageResponse>;
92101
+ stakeholderComms_createIncident?: Maybe<StakeholderCommsIncidentResponse>;
91880
92102
  stakeholderComms_createPage?: Maybe<StakeholderCommsPageResponse>;
91881
92103
  stakeholderComms_createStakeholder?: Maybe<StakeholderCommsStakeholderAssignmentResponse>;
91882
92104
  stakeholderComms_createStakeholderGroupAndMembers?: Maybe<StakeholderCommsStakeholderGroupsAndStakeholders>;
@@ -91888,6 +92110,7 @@ export declare type Mutation = {
91888
92110
  stakeholderComms_removeStakeholderMembers?: Maybe<StakeholderCommsStakeholderGroupMutationResponse>;
91889
92111
  stakeholderComms_resendStakeholderInvite?: Maybe<StakeholderCommsResendInviteResponse>;
91890
92112
  stakeholderComms_updateDraftPage?: Maybe<StakeholderCommsPageResponse>;
92113
+ stakeholderComms_updateIncident?: Maybe<StakeholderCommsIncidentResponse>;
91891
92114
  stakeholderComms_updatePage?: Maybe<StakeholderCommsPageResponse>;
91892
92115
  stakeholderComms_updateStakeholder?: Maybe<StakeholderCommsStakeholderResponse>;
91893
92116
  stakeholderComms_updateStakeholderGroup?: Maybe<StakeholderCommsStakeholderGroupsAndStakeholders>;
@@ -92491,6 +92714,10 @@ export declare type MutationConfluence_DeleteCalendarCustomEventTypeArgs = {
92491
92714
  cloudId: Scalars['ID']['input'];
92492
92715
  input: ConfluenceDeleteCalendarCustomEventTypeInput;
92493
92716
  };
92717
+ export declare type MutationConfluence_DeleteContentVersionArgs = {
92718
+ input?: InputMaybe<ConfluenceDeleteContentVersionInput>;
92719
+ pageAri: Scalars['ID']['input'];
92720
+ };
92494
92721
  export declare type MutationConfluence_DeleteCustomRoleArgs = {
92495
92722
  cloudId: Scalars['ID']['input'];
92496
92723
  input: ConfluenceDeleteCustomRoleInput;
@@ -93465,6 +93692,9 @@ export declare type MutationJira_EditFieldSchemeArgs = {
93465
93692
  cloudId: Scalars['ID']['input'];
93466
93693
  input: JiraEditFieldSchemeInput;
93467
93694
  };
93695
+ export declare type MutationJira_MoveBoardViewIssueToCellEndArgs = {
93696
+ input: JiraMoveBoardViewIssueToCellEndInput;
93697
+ };
93468
93698
  export declare type MutationJira_OrderIssueSearchFormattingRuleArgs = {
93469
93699
  input: JiraOrderIssueSearchFormattingRuleInput;
93470
93700
  };
@@ -94167,6 +94397,9 @@ export declare type MutationStakeholderComms_BulkDeleteStakeholdersArgs = {
94167
94397
  export declare type MutationStakeholderComms_CreateDraftPageArgs = {
94168
94398
  page: StakeholderCommsCreatePageInputType;
94169
94399
  };
94400
+ export declare type MutationStakeholderComms_CreateIncidentArgs = {
94401
+ incidentCreateRequest?: InputMaybe<StakeholderCommsIncidentCreateRequest>;
94402
+ };
94170
94403
  export declare type MutationStakeholderComms_CreatePageArgs = {
94171
94404
  page: StakeholderCommsCreatePageInputType;
94172
94405
  };
@@ -94203,6 +94436,9 @@ export declare type MutationStakeholderComms_ResendStakeholderInviteArgs = {
94203
94436
  export declare type MutationStakeholderComms_UpdateDraftPageArgs = {
94204
94437
  page: StakeholderCommsUpdatePageInputType;
94205
94438
  };
94439
+ export declare type MutationStakeholderComms_UpdateIncidentArgs = {
94440
+ incidentUpdateRequest?: InputMaybe<StakeholderCommsIncidentUpdateRequest>;
94441
+ };
94206
94442
  export declare type MutationStakeholderComms_UpdatePageArgs = {
94207
94443
  page: StakeholderCommsUpdatePageInputType;
94208
94444
  };
@@ -97629,6 +97865,7 @@ export declare type Query = {
97629
97865
  contributorsLinkedToAtlasProject?: Maybe<GraphStoreCypherQueryConnection>;
97630
97866
  contributorsLinkedToConfluencePage?: Maybe<GraphStoreCypherQueryConnection>;
97631
97867
  contributorsLinkedToConfluencePageV2?: Maybe<GraphStoreCypherQueryConnection>;
97868
+ convoai_confluenceSpaceRecommendations?: Maybe<Array<ConvoAiConfluenceSpaceRecommendation>>;
97632
97869
  convoai_homeThreads?: Maybe<ConvoAiHomeThreadsResult>;
97633
97870
  convoai_jiraEchoAiFeature?: Maybe<Scalars['String']['output']>;
97634
97871
  convoai_jiraRelated3pLinksSuggestionsByIssueId?: Maybe<ConvoAiJira3pRelatedLinksResult>;
@@ -97641,7 +97878,7 @@ export declare type Query = {
97641
97878
  countUsersGroupByPage?: Maybe<CountUsersGroupByPage>;
97642
97879
  cpls_capacityPlanningPeopleView?: Maybe<CplsCapacityPlanningPeopleView>;
97643
97880
  cpls_customContributionTargets: CplsCustomContributionTargetConnection;
97644
- cpls_customContributionTargetsByIds: Array<CplsCustomContributionTarget>;
97881
+ cpls_customContributionTargetsByIds?: Maybe<Array<Maybe<CplsCustomContributionTarget>>>;
97645
97882
  cqlMetaData?: Maybe<Confluence_CqlMetaData>;
97646
97883
  crossProjectIssueMentionsInComments?: Maybe<GraphStoreCypherQueryV2Connection>;
97647
97884
  crossProjectIssueMentionsInCommentsV2?: Maybe<GraphStoreCypherQueryV2Connection>;
@@ -98088,6 +98325,7 @@ export declare type Query = {
98088
98325
  stakeholderComms_getDraftComponentsByPageId?: Maybe<StakeholderCommsPageDraftComponentResponse>;
98089
98326
  stakeholderComms_getDraftPageById?: Maybe<StakeholderCommsPageResponse>;
98090
98327
  stakeholderComms_getDraftPageByName?: Maybe<StakeholderCommsPageResponse>;
98328
+ stakeholderComms_getIncident?: Maybe<StakeholderCommsIncidentResponse>;
98091
98329
  stakeholderComms_getMemberships?: Maybe<Array<Maybe<StakeholderCommsStakeholderGroupMembership>>>;
98092
98330
  stakeholderComms_getPageById?: Maybe<StakeholderCommsPageResponse>;
98093
98331
  stakeholderComms_getPageByName?: Maybe<StakeholderCommsPageResponse>;
@@ -98108,6 +98346,7 @@ export declare type Query = {
98108
98346
  stakeholderComms_getWorkspaceAriMappingByStatuspageDomain?: Maybe<StakeholderCommsWorkspaceAriMappingResponse>;
98109
98347
  stakeholderComms_isPageNameUnique?: Maybe<Scalars['Boolean']['output']>;
98110
98348
  stakeholderComms_isStakeholderGroupNameUnique?: Maybe<Scalars['Boolean']['output']>;
98349
+ stakeholderComms_listIncidents?: Maybe<StakeholderCommsListIncidentResponse>;
98111
98350
  stakeholderComms_listStakeholders?: Maybe<StakeholderCommsStakeholderConnection>;
98112
98351
  stakeholderComms_unifiedSearch?: Maybe<StakeholderCommsUnifiedSearchResults>;
98113
98352
  stalePages?: Maybe<PaginatedStalePagePayloadList>;
@@ -99434,6 +99673,7 @@ export declare type QueryContentByStateArgs = {
99434
99673
  };
99435
99674
  export declare type QueryContentContributorsArgs = {
99436
99675
  after?: InputMaybe<Scalars['String']['input']>;
99676
+ cloudId?: InputMaybe<Scalars['ID']['input']>;
99437
99677
  first?: InputMaybe<Scalars['Int']['input']>;
99438
99678
  id: Scalars['ID']['input'];
99439
99679
  limit?: InputMaybe<Scalars['Int']['input']>;
@@ -99531,6 +99771,11 @@ export declare type QueryContributorsLinkedToConfluencePageV2Args = {
99531
99771
  first?: InputMaybe<Scalars['Int']['input']>;
99532
99772
  pageId: Scalars['ID']['input'];
99533
99773
  };
99774
+ export declare type QueryConvoai_ConfluenceSpaceRecommendationsArgs = {
99775
+ cloudId: Scalars['ID']['input'];
99776
+ pageTitle: Scalars['String']['input'];
99777
+ userPrompt: Scalars['String']['input'];
99778
+ };
99534
99779
  export declare type QueryConvoai_HomeThreadsArgs = {
99535
99780
  after?: InputMaybe<Scalars['String']['input']>;
99536
99781
  before?: InputMaybe<Scalars['String']['input']>;
@@ -100368,6 +100613,7 @@ export declare type QueryJiraProjectRelationshipsForServiceArgs = {
100368
100613
  id: Scalars['ID']['input'];
100369
100614
  };
100370
100615
  export declare type QueryJira_BacklogArgs = {
100616
+ activeQuickFilters?: InputMaybe<Array<Scalars['ID']['input']>>;
100371
100617
  boardId: Scalars['ID']['input'];
100372
100618
  };
100373
100619
  export declare type QueryJira_BacklogViewArgs = {
@@ -101262,6 +101508,9 @@ export declare type QueryStakeholderComms_GetDraftPageByIdArgs = {
101262
101508
  export declare type QueryStakeholderComms_GetDraftPageByNameArgs = {
101263
101509
  name: Scalars['String']['input'];
101264
101510
  };
101511
+ export declare type QueryStakeholderComms_GetIncidentArgs = {
101512
+ getIncidentInput?: InputMaybe<StakeholderCommsGetIncidentInput>;
101513
+ };
101265
101514
  export declare type QueryStakeholderComms_GetMembershipsArgs = {
101266
101515
  groupId: Scalars['String']['input'];
101267
101516
  };
@@ -101328,6 +101577,9 @@ export declare type QueryStakeholderComms_IsPageNameUniqueArgs = {
101328
101577
  export declare type QueryStakeholderComms_IsStakeholderGroupNameUniqueArgs = {
101329
101578
  name: Scalars['String']['input'];
101330
101579
  };
101580
+ export declare type QueryStakeholderComms_ListIncidentsArgs = {
101581
+ listIncidentInput?: InputMaybe<StakeholderCommsListIncidentInput>;
101582
+ };
101331
101583
  export declare type QueryStakeholderComms_ListStakeholdersArgs = {
101332
101584
  after?: InputMaybe<Scalars['String']['input']>;
101333
101585
  before?: InputMaybe<Scalars['String']['input']>;
@@ -124645,6 +124897,8 @@ export declare type SpacePermissionInfo = {
124645
124897
  description?: Maybe<Scalars['String']['output']>;
124646
124898
  displayName: Scalars['String']['output'];
124647
124899
  group: SpacePermissionGroup;
124900
+ hubDescription?: Maybe<Scalars['String']['output']>;
124901
+ hubDisplayName?: Maybe<Scalars['String']['output']>;
124648
124902
  id: Scalars['String']['output'];
124649
124903
  priority: Scalars['Int']['output'];
124650
124904
  requiredSpacePermissions?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
@@ -125694,12 +125948,17 @@ export declare type StakeholderCommsCreateStakeholderInput = {
125694
125948
  export declare type StakeholderCommsDailyComponentUptime = {
125695
125949
  __typename?: 'StakeholderCommsDailyComponentUptime';
125696
125950
  componentDailyAggregate?: Maybe<StakeholderCommsComponentUptimeDailyAggregate>;
125951
+ componentDailyUptimePercentage?: Maybe<Scalars['Float']['output']>;
125697
125952
  date: Scalars['String']['output'];
125698
125953
  };
125699
125954
  export declare enum StakeholderCommsErrorType {
125700
125955
  SystemError = "SYSTEM_ERROR",
125701
125956
  ValidationError = "VALIDATION_ERROR"
125702
125957
  }
125958
+ export declare enum StakeholderCommsExternalIncidentSource {
125959
+ Jsm = "JSM",
125960
+ Statuspage = "STATUSPAGE"
125961
+ }
125703
125962
  export declare type StakeholderCommsFooterDataInput = {
125704
125963
  copyrightText?: InputMaybe<Scalars['String']['input']>;
125705
125964
  footerLogoId?: InputMaybe<Scalars['String']['input']>;
@@ -125713,6 +125972,11 @@ export declare type StakeholderCommsFooterDataType = {
125713
125972
  footerText?: Maybe<Scalars['String']['output']>;
125714
125973
  links?: Maybe<Array<Maybe<StakeholderCommsLinkType>>>;
125715
125974
  };
125975
+ export declare type StakeholderCommsGetIncidentInput = {
125976
+ externalIncidentId?: InputMaybe<Scalars['String']['input']>;
125977
+ incidentCode?: InputMaybe<Scalars['String']['input']>;
125978
+ incidentId?: InputMaybe<Scalars['String']['input']>;
125979
+ };
125716
125980
  export declare type StakeholderCommsGroups = {
125717
125981
  __typename?: 'StakeholderCommsGroups';
125718
125982
  avatar?: Maybe<Scalars['String']['output']>;
@@ -125736,6 +126000,91 @@ export declare type StakeholderCommsHeaderDataType = {
125736
126000
  headerText?: Maybe<Scalars['String']['output']>;
125737
126001
  links?: Maybe<Array<Maybe<StakeholderCommsLinkType>>>;
125738
126002
  };
126003
+ export declare type StakeholderCommsIncident = {
126004
+ __typename?: 'StakeholderCommsIncident';
126005
+ autoCompleted?: Maybe<Scalars['Boolean']['output']>;
126006
+ autoInProgress?: Maybe<Scalars['Boolean']['output']>;
126007
+ components?: Maybe<Array<Maybe<StakeholderCommsIncidentComponentStatus>>>;
126008
+ createdAt?: Maybe<Scalars['String']['output']>;
126009
+ externalIncidentId?: Maybe<Scalars['String']['output']>;
126010
+ externalIncidentSource?: Maybe<StakeholderCommsExternalIncidentSource>;
126011
+ id: Scalars['String']['output'];
126012
+ impact?: Maybe<StakeholderCommsIncidentImpact>;
126013
+ lastRemindedAt?: Maybe<Scalars['String']['output']>;
126014
+ monitoringAt?: Maybe<Scalars['String']['output']>;
126015
+ name: Scalars['String']['output'];
126016
+ pageId: Scalars['String']['output'];
126017
+ reminderIntervals?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
126018
+ scheduledFor?: Maybe<Scalars['String']['output']>;
126019
+ scheduledUntil?: Maybe<Scalars['String']['output']>;
126020
+ shortlink?: Maybe<Scalars['String']['output']>;
126021
+ startedAt?: Maybe<Scalars['String']['output']>;
126022
+ status?: Maybe<StakeholderCommsIncidentStatus>;
126023
+ templateId?: Maybe<Scalars['String']['output']>;
126024
+ updateNeededAt?: Maybe<Scalars['String']['output']>;
126025
+ updatedAt?: Maybe<Scalars['String']['output']>;
126026
+ };
126027
+ export declare type StakeholderCommsIncidentComponentStatus = {
126028
+ __typename?: 'StakeholderCommsIncidentComponentStatus';
126029
+ componentId: Scalars['String']['output'];
126030
+ status?: Maybe<StakeholderCommsComponentStatus>;
126031
+ };
126032
+ export declare type StakeholderCommsIncidentComponentStatusInput = {
126033
+ componentId: Scalars['String']['input'];
126034
+ status?: InputMaybe<StakeholderCommsComponentStatus>;
126035
+ };
126036
+ export declare type StakeholderCommsIncidentCreateRequest = {
126037
+ affectedComponents?: InputMaybe<Array<InputMaybe<StakeholderCommsIncidentComponentStatusInput>>>;
126038
+ impact?: InputMaybe<StakeholderCommsIncidentImpact>;
126039
+ jiraIncidentId?: InputMaybe<Scalars['String']['input']>;
126040
+ message?: InputMaybe<Scalars['String']['input']>;
126041
+ name: Scalars['String']['input'];
126042
+ pageId: Scalars['String']['input'];
126043
+ status?: InputMaybe<StakeholderCommsIncidentStatus>;
126044
+ };
126045
+ export declare enum StakeholderCommsIncidentImpact {
126046
+ Critical = "CRITICAL",
126047
+ Major = "MAJOR",
126048
+ Minor = "MINOR",
126049
+ None = "NONE"
126050
+ }
126051
+ export declare type StakeholderCommsIncidentResponse = {
126052
+ __typename?: 'StakeholderCommsIncidentResponse';
126053
+ error?: Maybe<Scalars['String']['output']>;
126054
+ incidentWithUpdates?: Maybe<StakeholderCommsIncidentWithUpdates>;
126055
+ };
126056
+ export declare enum StakeholderCommsIncidentStatus {
126057
+ Identified = "IDENTIFIED",
126058
+ Investigating = "INVESTIGATING",
126059
+ Monitoring = "MONITORING",
126060
+ Resolved = "RESOLVED"
126061
+ }
126062
+ export declare type StakeholderCommsIncidentUpdate = {
126063
+ __typename?: 'StakeholderCommsIncidentUpdate';
126064
+ affectedComponents?: Maybe<Array<Maybe<StakeholderCommsIncidentComponentStatus>>>;
126065
+ body?: Maybe<Scalars['String']['output']>;
126066
+ createdAt?: Maybe<Scalars['String']['output']>;
126067
+ hidden?: Maybe<Scalars['Boolean']['output']>;
126068
+ incidentId?: Maybe<Scalars['String']['output']>;
126069
+ oldStatus?: Maybe<StakeholderCommsIncidentStatus>;
126070
+ scheduledAt?: Maybe<Scalars['String']['output']>;
126071
+ status?: Maybe<StakeholderCommsIncidentStatus>;
126072
+ updatedAt?: Maybe<Scalars['String']['output']>;
126073
+ };
126074
+ export declare type StakeholderCommsIncidentUpdateRequest = {
126075
+ affectedComponents?: InputMaybe<Array<InputMaybe<StakeholderCommsIncidentComponentStatusInput>>>;
126076
+ impact?: InputMaybe<StakeholderCommsIncidentImpact>;
126077
+ jiraIncidentId?: InputMaybe<Scalars['String']['input']>;
126078
+ message?: InputMaybe<Scalars['String']['input']>;
126079
+ name?: InputMaybe<Scalars['String']['input']>;
126080
+ pageId: Scalars['String']['input'];
126081
+ status?: InputMaybe<StakeholderCommsIncidentStatus>;
126082
+ };
126083
+ export declare type StakeholderCommsIncidentWithUpdates = {
126084
+ __typename?: 'StakeholderCommsIncidentWithUpdates';
126085
+ incident?: Maybe<StakeholderCommsIncident>;
126086
+ incidentUpdates?: Maybe<Array<Maybe<StakeholderCommsIncidentUpdate>>>;
126087
+ };
125739
126088
  export declare type StakeholderCommsLinkInput = {
125740
126089
  label?: InputMaybe<Scalars['String']['input']>;
125741
126090
  position?: InputMaybe<Scalars['Int']['input']>;
@@ -125747,6 +126096,15 @@ export declare type StakeholderCommsLinkType = {
125747
126096
  position?: Maybe<Scalars['Int']['output']>;
125748
126097
  url?: Maybe<Scalars['String']['output']>;
125749
126098
  };
126099
+ export declare type StakeholderCommsListIncidentInput = {
126100
+ pageId?: InputMaybe<Scalars['String']['input']>;
126101
+ showActive?: InputMaybe<Scalars['Boolean']['input']>;
126102
+ };
126103
+ export declare type StakeholderCommsListIncidentResponse = {
126104
+ __typename?: 'StakeholderCommsListIncidentResponse';
126105
+ error?: Maybe<Scalars['String']['output']>;
126106
+ incidentNodes?: Maybe<Array<Maybe<StakeholderCommsIncidentWithUpdates>>>;
126107
+ };
125750
126108
  export declare type StakeholderCommsModePreference = {
125751
126109
  __typename?: 'StakeholderCommsModePreference';
125752
126110
  enabled?: Maybe<Scalars['Boolean']['output']>;
@@ -125853,6 +126211,7 @@ export declare type StakeholderCommsPageComponentsWithUptimeResponse = {
125853
126211
  __typename?: 'StakeholderCommsPageComponentsWithUptimeResponse';
125854
126212
  error?: Maybe<Scalars['String']['output']>;
125855
126213
  pageComponentsUptime?: Maybe<Array<Maybe<StakeholderCommsNestedComponentWithUptime>>>;
126214
+ pageUptime?: Maybe<StakeholderCommsPageUptime>;
125856
126215
  };
125857
126216
  export declare type StakeholderCommsPageDraftComponentResponse = {
125858
126217
  __typename?: 'StakeholderCommsPageDraftComponentResponse';
@@ -125891,6 +126250,19 @@ export declare enum StakeholderCommsPageThemeMode {
125891
126250
  Dark = "DARK",
125892
126251
  Light = "LIGHT"
125893
126252
  }
126253
+ export declare type StakeholderCommsPageUptime = {
126254
+ __typename?: 'StakeholderCommsPageUptime';
126255
+ pageUptimeDailyAggregates?: Maybe<Array<Maybe<StakeholderCommsPageUptimeDailyAggregate>>>;
126256
+ pageUptimePercentage?: Maybe<Scalars['Float']['output']>;
126257
+ };
126258
+ export declare type StakeholderCommsPageUptimeDailyAggregate = {
126259
+ __typename?: 'StakeholderCommsPageUptimeDailyAggregate';
126260
+ date?: Maybe<Scalars['String']['output']>;
126261
+ degradedPerformanceTime?: Maybe<Scalars['Int']['output']>;
126262
+ maintenanceTime?: Maybe<Scalars['Int']['output']>;
126263
+ majorOutageTime?: Maybe<Scalars['Int']['output']>;
126264
+ partialOutageTime?: Maybe<Scalars['Int']['output']>;
126265
+ };
125894
126266
  export declare type StakeholderCommsPageUptimePercentageResponse = {
125895
126267
  __typename?: 'StakeholderCommsPageUptimePercentageResponse';
125896
126268
  error?: Maybe<Scalars['String']['output']>;
@@ -128608,6 +128980,7 @@ export declare type TownsquareMetric = Node & {
128608
128980
  externalEntityId?: Maybe<Scalars['String']['output']>;
128609
128981
  id: Scalars['ID']['output'];
128610
128982
  name?: Maybe<Scalars['String']['output']>;
128983
+ source?: Maybe<Scalars['String']['output']>;
128611
128984
  subType?: Maybe<Scalars['String']['output']>;
128612
128985
  type?: Maybe<TownsquareMetricType>;
128613
128986
  values?: Maybe<TownsquareMetricValueConnection>;
@@ -129075,6 +129448,12 @@ export declare type TownsquareProjectsCanCreateProjectFusionPayload = {
129075
129448
  canCreateFusionResult?: Maybe<TownsquareCanCreateFusionResult>;
129076
129449
  issue?: Maybe<JiraIssue>;
129077
129450
  };
129451
+ export declare type TownsquareProjectsChildWorkItemsAlreadyLinkedMutationErrorExtension = MutationErrorExtension & {
129452
+ __typename?: 'TownsquareProjectsChildWorkItemsAlreadyLinkedMutationErrorExtension';
129453
+ canReplace?: Maybe<Scalars['Boolean']['output']>;
129454
+ errorType?: Maybe<Scalars['String']['output']>;
129455
+ statusCode?: Maybe<Scalars['Int']['output']>;
129456
+ };
129078
129457
  export declare type TownsquareProjectsCloneInput = {
129079
129458
  addLinks?: InputMaybe<Scalars['Boolean']['input']>;
129080
129459
  addWatchers?: InputMaybe<Scalars['Boolean']['input']>;
@@ -131739,6 +132118,16 @@ export declare type TrelloListViewer = {
131739
132118
  __typename?: 'TrelloListViewer';
131740
132119
  subscribed?: Maybe<Scalars['Boolean']['output']>;
131741
132120
  };
132121
+ export declare type TrelloMarkInboxNotificationsReadInput = {
132122
+ ids?: InputMaybe<Array<Scalars['ID']['input']>>;
132123
+ read?: InputMaybe<Scalars['Boolean']['input']>;
132124
+ };
132125
+ export declare type TrelloMarkInboxNotificationsReadPayload = {
132126
+ __typename?: 'TrelloMarkInboxNotificationsReadPayload';
132127
+ success: Scalars['Boolean']['output'];
132128
+ updatedCount: Scalars['Int']['output'];
132129
+ updatedNotificationsIds?: Maybe<Array<Scalars['ID']['output']>>;
132130
+ };
131742
132131
  export declare type TrelloMember = Node & {
131743
132132
  __typename?: 'TrelloMember';
131744
132133
  activityBlocked?: Maybe<Scalars['Boolean']['output']>;
@@ -131951,6 +132340,26 @@ export declare type TrelloMoveInboxCardToBoardEntities = {
131951
132340
  card?: Maybe<TrelloActionCardEntity>;
131952
132341
  memberCreator?: Maybe<TrelloActionMemberEntity>;
131953
132342
  };
132343
+ export declare type TrelloMovePlannerCalendarEventInput = {
132344
+ sourceEvent: TrelloMovePlannerCalendarEventSourceOptions;
132345
+ targetPlannerCalendar: TrelloMovePlannerCalendarEventTargetOptions;
132346
+ };
132347
+ export declare type TrelloMovePlannerCalendarEventPayload = Payload & {
132348
+ __typename?: 'TrelloMovePlannerCalendarEventPayload';
132349
+ errors?: Maybe<Array<MutationError>>;
132350
+ movedEvent?: Maybe<TrelloPlannerCalendarEventDeleted>;
132351
+ plannerCalendarUpdated?: Maybe<TrelloPlannerCalendar>;
132352
+ success: Scalars['Boolean']['output'];
132353
+ };
132354
+ export declare type TrelloMovePlannerCalendarEventSourceOptions = {
132355
+ plannerCalendarEventId: Scalars['ID']['input'];
132356
+ plannerCalendarId: Scalars['ID']['input'];
132357
+ providerAccountId: Scalars['ID']['input'];
132358
+ };
132359
+ export declare type TrelloMovePlannerCalendarEventTargetOptions = {
132360
+ plannerCalendarId: Scalars['ID']['input'];
132361
+ providerAccountId: Scalars['ID']['input'];
132362
+ };
131954
132363
  export declare type TrelloMutationApi = {
131955
132364
  __typename?: 'TrelloMutationApi';
131956
132365
  addBoardStar?: Maybe<TrelloAddBoardStarPayload>;
@@ -131969,7 +132378,9 @@ export declare type TrelloMutationApi = {
131969
132378
  deleteWorkspaceTag?: Maybe<TrelloDeleteWorkspaceTagPayload>;
131970
132379
  editPlannerCalendarEvent?: Maybe<TrelloEditPlannerCalendarEventPayload>;
131971
132380
  generateChecklistsForCard?: Maybe<TrelloGenerateChecklistsForCardPayload>;
132381
+ markInboxNotificationsRead?: Maybe<TrelloMarkInboxNotificationsReadPayload>;
131972
132382
  mergeCards?: Maybe<TrelloMergeCardsPayload>;
132383
+ movePlannerCalendarEvent?: Maybe<TrelloMovePlannerCalendarEventPayload>;
131973
132384
  pinCard?: Maybe<TrelloPinCardPayload>;
131974
132385
  removeBoardStar?: Maybe<TrelloRemoveBoardStarPayload>;
131975
132386
  removeCardFromPlannerCalendarEvent?: Maybe<TrelloRemoveCardFromPlannerCalendarEventPayload>;
@@ -132045,9 +132456,15 @@ export declare type TrelloMutationApiEditPlannerCalendarEventArgs = {
132045
132456
  export declare type TrelloMutationApiGenerateChecklistsForCardArgs = {
132046
132457
  input: TrelloGenerateChecklistsForCardInput;
132047
132458
  };
132459
+ export declare type TrelloMutationApiMarkInboxNotificationsReadArgs = {
132460
+ input?: InputMaybe<TrelloMarkInboxNotificationsReadInput>;
132461
+ };
132048
132462
  export declare type TrelloMutationApiMergeCardsArgs = {
132049
132463
  input: TrelloMergeCardsInput;
132050
132464
  };
132465
+ export declare type TrelloMutationApiMovePlannerCalendarEventArgs = {
132466
+ input: TrelloMovePlannerCalendarEventInput;
132467
+ };
132051
132468
  export declare type TrelloMutationApiPinCardArgs = {
132052
132469
  input: TrelloPinCardInput;
132053
132470
  };
@@ -132168,6 +132585,7 @@ export declare type TrelloPlannerCalendar = Node & TrelloProviderCalendarInterfa
132168
132585
  events?: Maybe<TrelloPlannerCalendarEventConnection>;
132169
132586
  forceUpdateTimestamp?: Maybe<Scalars['DateTime']['output']>;
132170
132587
  id: Scalars['ID']['output'];
132588
+ idProviderAccount?: Maybe<Scalars['ID']['output']>;
132171
132589
  isPrimary?: Maybe<Scalars['Boolean']['output']>;
132172
132590
  objectId?: Maybe<Scalars['ID']['output']>;
132173
132591
  providerCalendarId?: Maybe<Scalars['ID']['output']>;
@@ -132432,6 +132850,7 @@ export declare type TrelloPlannerCalendarUpdated = {
132432
132850
  events?: Maybe<TrelloPlannerCalendarEventConnectionUpdated>;
132433
132851
  forceUpdateTimestamp?: Maybe<Scalars['DateTime']['output']>;
132434
132852
  id: Scalars['ID']['output'];
132853
+ idProviderAccount?: Maybe<Scalars['ID']['output']>;
132435
132854
  isPrimary?: Maybe<Scalars['Boolean']['output']>;
132436
132855
  objectId?: Maybe<Scalars['ID']['output']>;
132437
132856
  onPlannerCalendarEventDeleted?: Maybe<Array<TrelloPlannerCalendarEventDeleted>>;