@forge/cli-shared 8.8.0-next.3 → 8.8.0-next.5

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.
@@ -6052,6 +6052,8 @@ export declare type BitbucketPullRequest = Node & {
6052
6052
  __typename?: 'BitbucketPullRequest';
6053
6053
  author?: Maybe<User>;
6054
6054
  createdDate?: Maybe<Scalars['DateTime']['output']>;
6055
+ diff?: Maybe<Scalars['URL']['output']>;
6056
+ diffstat?: Maybe<Scalars['URL']['output']>;
6055
6057
  href?: Maybe<Scalars['URL']['output']>;
6056
6058
  id: Scalars['ID']['output'];
6057
6059
  state?: Maybe<Scalars['String']['output']>;
@@ -6059,11 +6061,15 @@ export declare type BitbucketPullRequest = Node & {
6059
6061
  };
6060
6062
  export declare type BitbucketQuery = {
6061
6063
  __typename?: 'BitbucketQuery';
6064
+ bitbucketPullRequest?: Maybe<BitbucketPullRequest>;
6062
6065
  bitbucketPullRequests?: Maybe<Array<Maybe<BitbucketPullRequest>>>;
6063
6066
  bitbucketRepositories?: Maybe<Array<Maybe<BitbucketRepository>>>;
6064
6067
  bitbucketRepository?: Maybe<BitbucketRepository>;
6065
6068
  bitbucketWorkspace?: Maybe<BitbucketWorkspace>;
6066
6069
  };
6070
+ export declare type BitbucketQueryBitbucketPullRequestArgs = {
6071
+ id: Scalars['ID']['input'];
6072
+ };
6067
6073
  export declare type BitbucketQueryBitbucketPullRequestsArgs = {
6068
6074
  ids: Array<Scalars['ID']['input']>;
6069
6075
  };
@@ -21598,6 +21604,11 @@ export declare type ConvoAiAgentTraceMessage = ConvoAiAgentMessage & {
21598
21604
  status: ConvoAiAgentSessionStatus;
21599
21605
  timeCreated: Scalars['DateTime']['output'];
21600
21606
  };
21607
+ export declare type ConvoAiConfluenceSpaceRecommendation = {
21608
+ __typename?: 'ConvoAiConfluenceSpaceRecommendation';
21609
+ id: Scalars['ID']['output'];
21610
+ name: Scalars['String']['output'];
21611
+ };
21601
21612
  export declare type ConvoAiEmptyConversation = ConvoAiAgentMessage & {
21602
21613
  __typename?: 'ConvoAiEmptyConversation';
21603
21614
  status: ConvoAiAgentSessionStatus;
@@ -21874,6 +21885,7 @@ export declare type CplsContributor = {
21874
21885
  __typename?: 'CplsContributor';
21875
21886
  contributionAggregations: Array<CplsContributionAggregation>;
21876
21887
  contributorData?: Maybe<CplsContributorData>;
21888
+ contributorDataId?: Maybe<Scalars['ID']['output']>;
21877
21889
  contributorId: Scalars['ID']['output'];
21878
21890
  contributorWork: CplsContributorWorkConnection;
21879
21891
  id: Scalars['ID']['output'];
@@ -26007,6 +26019,46 @@ export declare type DevAiWorkspace = {
26007
26019
  status?: Maybe<Scalars['String']['output']>;
26008
26020
  workspaceAri: Scalars['ID']['output'];
26009
26021
  };
26022
+ export declare type DevConsoleAppResourceUsageDetailedViewFiltersInput = {
26023
+ contextAris?: InputMaybe<Array<Scalars['ID']['input']>>;
26024
+ environment?: InputMaybe<Scalars['ID']['input']>;
26025
+ interval: DevConsoleDateIntervalInput;
26026
+ resource: DevConsoleResource;
26027
+ };
26028
+ export declare type DevConsoleAppResourceUsageDetailedViewResponse = {
26029
+ __typename?: 'DevConsoleAppResourceUsageDetailedViewResponse';
26030
+ error?: Maybe<QueryError>;
26031
+ resourceUsage?: Maybe<Array<DevConsoleResourceUsage>>;
26032
+ };
26033
+ export declare type DevConsoleAppResourceUsageFiltersInput = {
26034
+ contextAris?: InputMaybe<Array<Scalars['ID']['input']>>;
26035
+ environment?: InputMaybe<Scalars['ID']['input']>;
26036
+ interval: DevConsoleDateIntervalInput;
26037
+ page?: InputMaybe<Scalars['Int']['input']>;
26038
+ resource: DevConsoleResource;
26039
+ };
26040
+ export declare type DevConsoleAppResourceUsageFlatResponse = {
26041
+ __typename?: 'DevConsoleAppResourceUsageFlatResponse';
26042
+ error?: Maybe<QueryError>;
26043
+ pagination: DevConsolePagination;
26044
+ resourceUsage: Array<DevConsoleResourceUsage>;
26045
+ };
26046
+ export declare type DevConsoleAppResourceUsageGroupedResponse = {
26047
+ __typename?: 'DevConsoleAppResourceUsageGroupedResponse';
26048
+ error?: Maybe<QueryError>;
26049
+ pagination: DevConsolePagination;
26050
+ resourceUsage: Array<DevConsoleResourceUsagePeriod>;
26051
+ };
26052
+ export declare type DevConsoleAppResourceUsageResponse = DevConsoleAppResourceUsageFlatResponse | DevConsoleAppResourceUsageGroupedResponse;
26053
+ export declare type DevConsoleAppUsageFiltersInput = {
26054
+ interval: DevConsoleDateIntervalInput;
26055
+ resource: Array<DevConsoleResource>;
26056
+ };
26057
+ export declare type DevConsoleAppUsageOverviewResponse = {
26058
+ __typename?: 'DevConsoleAppUsageOverviewResponse';
26059
+ error?: Maybe<QueryError>;
26060
+ resourceUsage?: Maybe<DevConsoleResourceUsageData>;
26061
+ };
26010
26062
  export declare type DevConsoleArchiveDeveloperSpaceInput = {
26011
26063
  developerSpaceId: Scalars['String']['input'];
26012
26064
  };
@@ -26027,6 +26079,10 @@ export declare type DevConsoleBulkDeveloperSpaceDetailsResponse = {
26027
26079
  export declare type DevConsoleCreateDeveloperSpaceInput = {
26028
26080
  name: Scalars['String']['input'];
26029
26081
  };
26082
+ export declare type DevConsoleDateIntervalInput = {
26083
+ end: Scalars['DateTime']['input'];
26084
+ start: Scalars['DateTime']['input'];
26085
+ };
26030
26086
  export declare type DevConsoleDeveloperSpace = {
26031
26087
  __typename?: 'DevConsoleDeveloperSpace';
26032
26088
  id: Scalars['String']['output'];
@@ -26089,6 +26145,10 @@ export declare enum DevConsoleDeveloperSpaceType {
26089
26145
  AtlassianExternal = "ATLASSIAN_EXTERNAL",
26090
26146
  AtlassianInternal = "ATLASSIAN_INTERNAL"
26091
26147
  }
26148
+ export declare enum DevConsoleGroupBy {
26149
+ ContextAri = "CONTEXT_ARI",
26150
+ EnvironmentId = "ENVIRONMENT_ID"
26151
+ }
26092
26152
  export declare type DevConsoleMutation = {
26093
26153
  __typename?: 'DevConsoleMutation';
26094
26154
  acceptAppBillingConsent: DevConsoleResponsePayload;
@@ -26125,13 +26185,34 @@ export declare type DevConsoleMutationUpdateDeveloperSpaceMemberArgs = {
26125
26185
  export declare type DevConsoleMutationUpdateDeveloperSpaceSettingsArgs = {
26126
26186
  input: DevConsoleUpdateDeveloperSpaceSettingsInput;
26127
26187
  };
26188
+ export declare type DevConsolePagination = {
26189
+ __typename?: 'DevConsolePagination';
26190
+ page: Scalars['Int']['output'];
26191
+ pageSize: Scalars['Int']['output'];
26192
+ };
26128
26193
  export declare type DevConsoleQuery = {
26129
26194
  __typename?: 'DevConsoleQuery';
26195
+ appResourceUsage: DevConsoleAppResourceUsageResponse;
26196
+ appResourceUsageDetailedView: DevConsoleAppResourceUsageDetailedViewResponse;
26197
+ appUsageOverview: DevConsoleAppUsageOverviewResponse;
26130
26198
  getDeveloperSpaceDetails?: Maybe<DevConsoleBulkDeveloperSpaceDetailsResponse>;
26131
26199
  getDeveloperSpaceMembers?: Maybe<DevConsoleDeveloperSpaceMembersResponse>;
26132
26200
  getDeveloperSpaceWithLinkingAccess?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
26133
26201
  tenantContexts: Array<Maybe<DevConsoleTenantContext>>;
26134
26202
  };
26203
+ export declare type DevConsoleQueryAppResourceUsageArgs = {
26204
+ appId: Scalars['ID']['input'];
26205
+ filters: DevConsoleAppResourceUsageFiltersInput;
26206
+ groupBy?: InputMaybe<DevConsoleGroupBy>;
26207
+ };
26208
+ export declare type DevConsoleQueryAppResourceUsageDetailedViewArgs = {
26209
+ appId: Scalars['ID']['input'];
26210
+ filters: DevConsoleAppResourceUsageDetailedViewFiltersInput;
26211
+ };
26212
+ export declare type DevConsoleQueryAppUsageOverviewArgs = {
26213
+ appId: Scalars['ID']['input'];
26214
+ filters: DevConsoleAppUsageFiltersInput;
26215
+ };
26135
26216
  export declare type DevConsoleQueryGetDeveloperSpaceDetailsArgs = {
26136
26217
  developerSpaceIds: Array<Scalars['String']['input']>;
26137
26218
  };
@@ -26145,6 +26226,45 @@ export declare type DevConsoleRemoveDeveloperSpaceMemberInput = {
26145
26226
  developerSpaceId: Scalars['String']['input'];
26146
26227
  memberId: Scalars['String']['input'];
26147
26228
  };
26229
+ export declare enum DevConsoleResource {
26230
+ FunctionCompute = "FUNCTION_COMPUTE",
26231
+ KvsRead = "KVS_READ",
26232
+ KvsWrite = "KVS_WRITE",
26233
+ LogsWrite = "LOGS_WRITE",
26234
+ SqlCompute = "SQL_COMPUTE",
26235
+ SqlRequests = "SQL_REQUESTS",
26236
+ SqlStorage = "SQL_STORAGE"
26237
+ }
26238
+ export declare type DevConsoleResourceUsage = {
26239
+ __typename?: 'DevConsoleResourceUsage';
26240
+ period: Scalars['String']['output'];
26241
+ resolution: DevConsoleUsageResolution;
26242
+ tokenUnit: Scalars['String']['output'];
26243
+ tokensConsumed: Scalars['String']['output'];
26244
+ };
26245
+ export declare type DevConsoleResourceUsageData = {
26246
+ __typename?: 'DevConsoleResourceUsageData';
26247
+ functionCompute?: Maybe<Array<DevConsoleResourceUsage>>;
26248
+ kvsRead?: Maybe<Array<DevConsoleResourceUsage>>;
26249
+ kvsWrite?: Maybe<Array<DevConsoleResourceUsage>>;
26250
+ logsWrite?: Maybe<Array<DevConsoleResourceUsage>>;
26251
+ sqlCompute?: Maybe<Array<DevConsoleResourceUsage>>;
26252
+ sqlRequests?: Maybe<Array<DevConsoleResourceUsage>>;
26253
+ sqlStorage?: Maybe<Array<DevConsoleResourceUsage>>;
26254
+ };
26255
+ export declare type DevConsoleResourceUsageGroup = {
26256
+ __typename?: 'DevConsoleResourceUsageGroup';
26257
+ groupBy: Scalars['String']['output'];
26258
+ groupValue: Scalars['String']['output'];
26259
+ tokenUnit: Scalars['String']['output'];
26260
+ tokensConsumed: Scalars['String']['output'];
26261
+ };
26262
+ export declare type DevConsoleResourceUsagePeriod = {
26263
+ __typename?: 'DevConsoleResourceUsagePeriod';
26264
+ groups: Array<DevConsoleResourceUsageGroup>;
26265
+ period: Scalars['String']['output'];
26266
+ resolution: DevConsoleUsageResolution;
26267
+ };
26148
26268
  export declare type DevConsoleResponsePayload = Payload & {
26149
26269
  __typename?: 'DevConsoleResponsePayload';
26150
26270
  errors?: Maybe<Array<MutationError>>;
@@ -26167,6 +26287,12 @@ export declare type DevConsoleUpdateDeveloperSpaceSettingsInput = {
26167
26287
  logo?: InputMaybe<Scalars['Upload']['input']>;
26168
26288
  name?: InputMaybe<Scalars['String']['input']>;
26169
26289
  };
26290
+ export declare enum DevConsoleUsageResolution {
26291
+ OneDay = "ONE_DAY",
26292
+ OneHour = "ONE_HOUR",
26293
+ OneMonth = "ONE_MONTH",
26294
+ OneWeek = "ONE_WEEK"
26295
+ }
26170
26296
  export declare type DevOps = {
26171
26297
  __typename?: 'DevOps';
26172
26298
  ariGraph?: Maybe<AriGraph>;
@@ -29534,6 +29660,8 @@ export declare type ExternalTest = Node & {
29534
29660
  export declare type ExternalTestExecution = Node & {
29535
29661
  __typename?: 'ExternalTestExecution';
29536
29662
  associatedWith?: Maybe<ExternalAssociationConnection>;
29663
+ container?: Maybe<ExternalEntity>;
29664
+ containerId?: Maybe<Scalars['ID']['output']>;
29537
29665
  createdAt?: Maybe<Scalars['String']['output']>;
29538
29666
  createdBy?: Maybe<ExternalUser>;
29539
29667
  displayName?: Maybe<Scalars['String']['output']>;
@@ -29563,6 +29691,8 @@ export declare type ExternalTestInfo = {
29563
29691
  export declare type ExternalTestPlan = Node & {
29564
29692
  __typename?: 'ExternalTestPlan';
29565
29693
  associatedWith?: Maybe<ExternalAssociationConnection>;
29694
+ container?: Maybe<ExternalEntity>;
29695
+ containerId?: Maybe<Scalars['ID']['output']>;
29566
29696
  createdAt?: Maybe<Scalars['String']['output']>;
29567
29697
  createdBy?: Maybe<ExternalUser>;
29568
29698
  displayName?: Maybe<Scalars['String']['output']>;
@@ -29583,6 +29713,8 @@ export declare type ExternalTestRun = Node & {
29583
29713
  __typename?: 'ExternalTestRun';
29584
29714
  assignee?: Maybe<ExternalUser>;
29585
29715
  associatedWith?: Maybe<ExternalAssociationConnection>;
29716
+ container?: Maybe<ExternalEntity>;
29717
+ containerId?: Maybe<Scalars['ID']['output']>;
29586
29718
  createdAt?: Maybe<Scalars['String']['output']>;
29587
29719
  createdBy?: Maybe<ExternalUser>;
29588
29720
  displayName?: Maybe<Scalars['String']['output']>;
@@ -35849,8 +35981,6 @@ export declare type GraphStore = {
35849
35981
  userMentionedInMessageInverse?: Maybe<GraphStoreSimplifiedUserMentionedInMessageInverseConnection>;
35850
35982
  userMentionedInVideoComment?: Maybe<GraphStoreSimplifiedUserMentionedInVideoCommentConnection>;
35851
35983
  userMentionedInVideoCommentInverse?: Maybe<GraphStoreSimplifiedUserMentionedInVideoCommentInverseConnection>;
35852
- userMergedPullRequest?: Maybe<GraphStoreSimplifiedUserMergedPullRequestConnection>;
35853
- userMergedPullRequestInverse?: Maybe<GraphStoreSimplifiedUserMergedPullRequestInverseConnection>;
35854
35984
  userOwnedBranch?: Maybe<GraphStoreSimplifiedUserOwnedBranchConnection>;
35855
35985
  userOwnedBranchInverse?: Maybe<GraphStoreSimplifiedUserOwnedBranchInverseConnection>;
35856
35986
  userOwnedCalendarEvent?: Maybe<GraphStoreSimplifiedUserOwnedCalendarEventConnection>;
@@ -35895,8 +36025,6 @@ export declare type GraphStore = {
35895
36025
  userUpdatedAtlasGoalInverse?: Maybe<GraphStoreSimplifiedUserUpdatedAtlasGoalInverseConnection>;
35896
36026
  userUpdatedAtlasProject?: Maybe<GraphStoreSimplifiedUserUpdatedAtlasProjectConnection>;
35897
36027
  userUpdatedAtlasProjectInverse?: Maybe<GraphStoreSimplifiedUserUpdatedAtlasProjectInverseConnection>;
35898
- userUpdatedComment?: Maybe<GraphStoreSimplifiedUserUpdatedCommentConnection>;
35899
- userUpdatedCommentInverse?: Maybe<GraphStoreSimplifiedUserUpdatedCommentInverseConnection>;
35900
36028
  userUpdatedConfluenceBlogpost?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostConnection>;
35901
36029
  userUpdatedConfluenceBlogpostInverse?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostInverseConnection>;
35902
36030
  userUpdatedConfluencePage?: Maybe<GraphStoreSimplifiedUserUpdatedConfluencePageConnection>;
@@ -40505,20 +40633,6 @@ export declare type GraphStoreUserMentionedInVideoCommentInverseArgs = {
40505
40633
  id: Scalars['ID']['input'];
40506
40634
  sort?: InputMaybe<GraphStoreUserMentionedInVideoCommentSortInput>;
40507
40635
  };
40508
- export declare type GraphStoreUserMergedPullRequestArgs = {
40509
- after?: InputMaybe<Scalars['String']['input']>;
40510
- consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
40511
- first?: InputMaybe<Scalars['Int']['input']>;
40512
- id: Scalars['ID']['input'];
40513
- sort?: InputMaybe<GraphStoreUserMergedPullRequestSortInput>;
40514
- };
40515
- export declare type GraphStoreUserMergedPullRequestInverseArgs = {
40516
- after?: InputMaybe<Scalars['String']['input']>;
40517
- consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
40518
- first?: InputMaybe<Scalars['Int']['input']>;
40519
- id: Scalars['ID']['input'];
40520
- sort?: InputMaybe<GraphStoreUserMergedPullRequestSortInput>;
40521
- };
40522
40636
  export declare type GraphStoreUserOwnedBranchArgs = {
40523
40637
  after?: InputMaybe<Scalars['String']['input']>;
40524
40638
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -40829,20 +40943,6 @@ export declare type GraphStoreUserUpdatedAtlasProjectInverseArgs = {
40829
40943
  id: Scalars['ID']['input'];
40830
40944
  sort?: InputMaybe<GraphStoreUserUpdatedAtlasProjectSortInput>;
40831
40945
  };
40832
- export declare type GraphStoreUserUpdatedCommentArgs = {
40833
- after?: InputMaybe<Scalars['String']['input']>;
40834
- consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
40835
- first?: InputMaybe<Scalars['Int']['input']>;
40836
- id: Scalars['ID']['input'];
40837
- sort?: InputMaybe<GraphStoreUserUpdatedCommentSortInput>;
40838
- };
40839
- export declare type GraphStoreUserUpdatedCommentInverseArgs = {
40840
- after?: InputMaybe<Scalars['String']['input']>;
40841
- consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
40842
- first?: InputMaybe<Scalars['Int']['input']>;
40843
- id: Scalars['ID']['input'];
40844
- sort?: InputMaybe<GraphStoreUserUpdatedCommentSortInput>;
40845
- };
40846
40946
  export declare type GraphStoreUserUpdatedConfluenceBlogpostArgs = {
40847
40947
  after?: InputMaybe<Scalars['String']['input']>;
40848
40948
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -42973,6 +43073,20 @@ export declare type GraphStoreCreateMeetingRecordingOwnerHasMeetingNotesFolderRe
42973
43073
  to: Scalars['ID']['input'];
42974
43074
  updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
42975
43075
  };
43076
+ export declare type GraphStoreCreateMeetingRecurrenceHasMeetingRecurrenceNotesPageInput = {
43077
+ relationships: Array<GraphStoreCreateMeetingRecurrenceHasMeetingRecurrenceNotesPageRelationshipInput>;
43078
+ };
43079
+ export declare type GraphStoreCreateMeetingRecurrenceHasMeetingRecurrenceNotesPagePayload = Payload & {
43080
+ __typename?: 'GraphStoreCreateMeetingRecurrenceHasMeetingRecurrenceNotesPagePayload';
43081
+ errors?: Maybe<Array<MutationError>>;
43082
+ success: Scalars['Boolean']['output'];
43083
+ };
43084
+ export declare type GraphStoreCreateMeetingRecurrenceHasMeetingRecurrenceNotesPageRelationshipInput = {
43085
+ from: Scalars['ID']['input'];
43086
+ sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
43087
+ to: Scalars['ID']['input'];
43088
+ updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
43089
+ };
42976
43090
  export declare type GraphStoreCreateParentTeamHasChildTeamInput = {
42977
43091
  relationships: Array<GraphStoreCreateParentTeamHasChildTeamRelationshipInput>;
42978
43092
  };
@@ -43560,6 +43674,19 @@ export declare type GraphStoreDeleteMeetingRecordingOwnerHasMeetingNotesFolderRe
43560
43674
  from: Scalars['ID']['input'];
43561
43675
  to: Scalars['ID']['input'];
43562
43676
  };
43677
+ export declare type GraphStoreDeleteMeetingRecurrenceHasMeetingRecurrenceNotesPageInput = {
43678
+ relationships: Array<GraphStoreDeleteMeetingRecurrenceHasMeetingRecurrenceNotesPageRelationshipInput>;
43679
+ synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
43680
+ };
43681
+ export declare type GraphStoreDeleteMeetingRecurrenceHasMeetingRecurrenceNotesPagePayload = Payload & {
43682
+ __typename?: 'GraphStoreDeleteMeetingRecurrenceHasMeetingRecurrenceNotesPagePayload';
43683
+ errors?: Maybe<Array<MutationError>>;
43684
+ success: Scalars['Boolean']['output'];
43685
+ };
43686
+ export declare type GraphStoreDeleteMeetingRecurrenceHasMeetingRecurrenceNotesPageRelationshipInput = {
43687
+ from: Scalars['ID']['input'];
43688
+ to: Scalars['ID']['input'];
43689
+ };
43563
43690
  export declare type GraphStoreDeleteParentTeamHasChildTeamInput = {
43564
43691
  relationships: Array<GraphStoreDeleteParentTeamHasChildTeamRelationshipInput>;
43565
43692
  synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
@@ -47696,10 +47823,7 @@ export declare type GraphStoreMeetingHasMeetingNotesPageSortInput = {
47696
47823
  lastModified?: InputMaybe<GraphStoreSortInput>;
47697
47824
  };
47698
47825
  export declare type GraphStoreMeetingRecordingOwnerHasMeetingNotesFolderSortInput = {
47699
- createdAt?: InputMaybe<GraphStoreSortInput>;
47700
- fromAti?: InputMaybe<GraphStoreSortInput>;
47701
47826
  lastModified?: InputMaybe<GraphStoreSortInput>;
47702
- toAti?: InputMaybe<GraphStoreSortInput>;
47703
47827
  };
47704
47828
  export declare type GraphStoreMeetingRecurrenceHasMeetingRecurrenceNotesPageSortInput = {
47705
47829
  lastModified?: InputMaybe<GraphStoreSortInput>;
@@ -47715,6 +47839,7 @@ export declare type GraphStoreMutation = {
47715
47839
  createJswProjectAssociatedComponent?: Maybe<GraphStoreCreateJswProjectAssociatedComponentPayload>;
47716
47840
  createLoomVideoHasConfluencePage?: Maybe<GraphStoreCreateLoomVideoHasConfluencePagePayload>;
47717
47841
  createMeetingRecordingOwnerHasMeetingNotesFolder?: Maybe<GraphStoreCreateMeetingRecordingOwnerHasMeetingNotesFolderPayload>;
47842
+ createMeetingRecurrenceHasMeetingRecurrenceNotesPage?: Maybe<GraphStoreCreateMeetingRecurrenceHasMeetingRecurrenceNotesPagePayload>;
47718
47843
  createParentTeamHasChildTeam?: Maybe<GraphStoreCreateParentTeamHasChildTeamPayload>;
47719
47844
  createProjectAssociatedOpsgenieTeam?: Maybe<GraphStoreCreateProjectAssociatedOpsgenieTeamPayload>;
47720
47845
  createProjectAssociatedToSecurityContainer?: Maybe<GraphStoreCreateProjectAssociatedToSecurityContainerPayload>;
@@ -47742,6 +47867,7 @@ export declare type GraphStoreMutation = {
47742
47867
  deleteJswProjectAssociatedComponent?: Maybe<GraphStoreDeleteJswProjectAssociatedComponentPayload>;
47743
47868
  deleteLoomVideoHasConfluencePage?: Maybe<GraphStoreDeleteLoomVideoHasConfluencePagePayload>;
47744
47869
  deleteMeetingRecordingOwnerHasMeetingNotesFolder?: Maybe<GraphStoreDeleteMeetingRecordingOwnerHasMeetingNotesFolderPayload>;
47870
+ deleteMeetingRecurrenceHasMeetingRecurrenceNotesPage?: Maybe<GraphStoreDeleteMeetingRecurrenceHasMeetingRecurrenceNotesPagePayload>;
47745
47871
  deleteParentTeamHasChildTeam?: Maybe<GraphStoreDeleteParentTeamHasChildTeamPayload>;
47746
47872
  deleteProjectAssociatedOpsgenieTeam?: Maybe<GraphStoreDeleteProjectAssociatedOpsgenieTeamPayload>;
47747
47873
  deleteProjectAssociatedToSecurityContainer?: Maybe<GraphStoreDeleteProjectAssociatedToSecurityContainerPayload>;
@@ -47788,6 +47914,9 @@ export declare type GraphStoreMutationCreateLoomVideoHasConfluencePageArgs = {
47788
47914
  export declare type GraphStoreMutationCreateMeetingRecordingOwnerHasMeetingNotesFolderArgs = {
47789
47915
  input?: InputMaybe<GraphStoreCreateMeetingRecordingOwnerHasMeetingNotesFolderInput>;
47790
47916
  };
47917
+ export declare type GraphStoreMutationCreateMeetingRecurrenceHasMeetingRecurrenceNotesPageArgs = {
47918
+ input?: InputMaybe<GraphStoreCreateMeetingRecurrenceHasMeetingRecurrenceNotesPageInput>;
47919
+ };
47791
47920
  export declare type GraphStoreMutationCreateParentTeamHasChildTeamArgs = {
47792
47921
  input?: InputMaybe<GraphStoreCreateParentTeamHasChildTeamInput>;
47793
47922
  };
@@ -47869,6 +47998,9 @@ export declare type GraphStoreMutationDeleteLoomVideoHasConfluencePageArgs = {
47869
47998
  export declare type GraphStoreMutationDeleteMeetingRecordingOwnerHasMeetingNotesFolderArgs = {
47870
47999
  input?: InputMaybe<GraphStoreDeleteMeetingRecordingOwnerHasMeetingNotesFolderInput>;
47871
48000
  };
48001
+ export declare type GraphStoreMutationDeleteMeetingRecurrenceHasMeetingRecurrenceNotesPageArgs = {
48002
+ input?: InputMaybe<GraphStoreDeleteMeetingRecurrenceHasMeetingRecurrenceNotesPageInput>;
48003
+ };
47872
48004
  export declare type GraphStoreMutationDeleteParentTeamHasChildTeamArgs = {
47873
48005
  input?: InputMaybe<GraphStoreDeleteParentTeamHasChildTeamInput>;
47874
48006
  };
@@ -51733,12 +51865,10 @@ export declare type GraphStoreSimplifiedMeetingHasMeetingNotesPageInverseEdge =
51733
51865
  };
51734
51866
  export declare type GraphStoreSimplifiedMeetingHasMeetingNotesPageInverseUnion = LoomMeeting;
51735
51867
  export declare type GraphStoreSimplifiedMeetingHasMeetingNotesPageUnion = ConfluencePage;
51736
- export declare type GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderConnection = HasPageInfo & HasTotal & {
51868
+ export declare type GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderConnection = HasPageInfo & {
51737
51869
  __typename?: 'GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderConnection';
51738
51870
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderEdge>>>;
51739
- isExactCount?: Maybe<Scalars['Boolean']['output']>;
51740
51871
  pageInfo: PageInfo;
51741
- totalCount?: Maybe<Scalars['Int']['output']>;
51742
51872
  };
51743
51873
  export declare type GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderEdge = {
51744
51874
  __typename?: 'GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderEdge';
@@ -51748,12 +51878,10 @@ export declare type GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFold
51748
51878
  lastUpdated: Scalars['DateTime']['output'];
51749
51879
  node?: Maybe<GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderUnion>;
51750
51880
  };
51751
- export declare type GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderInverseConnection = HasPageInfo & HasTotal & {
51881
+ export declare type GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderInverseConnection = HasPageInfo & {
51752
51882
  __typename?: 'GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderInverseConnection';
51753
51883
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderInverseEdge>>>;
51754
- isExactCount?: Maybe<Scalars['Boolean']['output']>;
51755
51884
  pageInfo: PageInfo;
51756
- totalCount?: Maybe<Scalars['Int']['output']>;
51757
51885
  };
51758
51886
  export declare type GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderInverseEdge = {
51759
51887
  __typename?: 'GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderInverseEdge';
@@ -55579,34 +55707,6 @@ export declare type GraphStoreSimplifiedUserMentionedInVideoCommentInverseEdge =
55579
55707
  };
55580
55708
  export declare type GraphStoreSimplifiedUserMentionedInVideoCommentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
55581
55709
  export declare type GraphStoreSimplifiedUserMentionedInVideoCommentUnion = LoomComment;
55582
- export declare type GraphStoreSimplifiedUserMergedPullRequestConnection = HasPageInfo & {
55583
- __typename?: 'GraphStoreSimplifiedUserMergedPullRequestConnection';
55584
- edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserMergedPullRequestEdge>>>;
55585
- pageInfo: PageInfo;
55586
- };
55587
- export declare type GraphStoreSimplifiedUserMergedPullRequestEdge = {
55588
- __typename?: 'GraphStoreSimplifiedUserMergedPullRequestEdge';
55589
- createdAt: Scalars['DateTime']['output'];
55590
- cursor?: Maybe<Scalars['String']['output']>;
55591
- id: Scalars['ID']['output'];
55592
- lastUpdated: Scalars['DateTime']['output'];
55593
- node?: Maybe<GraphStoreSimplifiedUserMergedPullRequestUnion>;
55594
- };
55595
- export declare type GraphStoreSimplifiedUserMergedPullRequestInverseConnection = HasPageInfo & {
55596
- __typename?: 'GraphStoreSimplifiedUserMergedPullRequestInverseConnection';
55597
- edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserMergedPullRequestInverseEdge>>>;
55598
- pageInfo: PageInfo;
55599
- };
55600
- export declare type GraphStoreSimplifiedUserMergedPullRequestInverseEdge = {
55601
- __typename?: 'GraphStoreSimplifiedUserMergedPullRequestInverseEdge';
55602
- createdAt: Scalars['DateTime']['output'];
55603
- cursor?: Maybe<Scalars['String']['output']>;
55604
- id: Scalars['ID']['output'];
55605
- lastUpdated: Scalars['DateTime']['output'];
55606
- node?: Maybe<GraphStoreSimplifiedUserMergedPullRequestInverseUnion>;
55607
- };
55608
- export declare type GraphStoreSimplifiedUserMergedPullRequestInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
55609
- export declare type GraphStoreSimplifiedUserMergedPullRequestUnion = DevOpsPullRequestDetails | ExternalPullRequest;
55610
55710
  export declare type GraphStoreSimplifiedUserOwnedBranchConnection = HasPageInfo & {
55611
55711
  __typename?: 'GraphStoreSimplifiedUserOwnedBranchConnection';
55612
55712
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnedBranchEdge>>>;
@@ -56227,34 +56327,6 @@ export declare type GraphStoreSimplifiedUserUpdatedAtlasProjectInverseEdge = {
56227
56327
  };
56228
56328
  export declare type GraphStoreSimplifiedUserUpdatedAtlasProjectInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
56229
56329
  export declare type GraphStoreSimplifiedUserUpdatedAtlasProjectUnion = TownsquareProject;
56230
- export declare type GraphStoreSimplifiedUserUpdatedCommentConnection = HasPageInfo & {
56231
- __typename?: 'GraphStoreSimplifiedUserUpdatedCommentConnection';
56232
- edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedCommentEdge>>>;
56233
- pageInfo: PageInfo;
56234
- };
56235
- export declare type GraphStoreSimplifiedUserUpdatedCommentEdge = {
56236
- __typename?: 'GraphStoreSimplifiedUserUpdatedCommentEdge';
56237
- createdAt: Scalars['DateTime']['output'];
56238
- cursor?: Maybe<Scalars['String']['output']>;
56239
- id: Scalars['ID']['output'];
56240
- lastUpdated: Scalars['DateTime']['output'];
56241
- node?: Maybe<GraphStoreSimplifiedUserUpdatedCommentUnion>;
56242
- };
56243
- export declare type GraphStoreSimplifiedUserUpdatedCommentInverseConnection = HasPageInfo & {
56244
- __typename?: 'GraphStoreSimplifiedUserUpdatedCommentInverseConnection';
56245
- edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedCommentInverseEdge>>>;
56246
- pageInfo: PageInfo;
56247
- };
56248
- export declare type GraphStoreSimplifiedUserUpdatedCommentInverseEdge = {
56249
- __typename?: 'GraphStoreSimplifiedUserUpdatedCommentInverseEdge';
56250
- createdAt: Scalars['DateTime']['output'];
56251
- cursor?: Maybe<Scalars['String']['output']>;
56252
- id: Scalars['ID']['output'];
56253
- lastUpdated: Scalars['DateTime']['output'];
56254
- node?: Maybe<GraphStoreSimplifiedUserUpdatedCommentInverseUnion>;
56255
- };
56256
- export declare type GraphStoreSimplifiedUserUpdatedCommentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
56257
- export declare type GraphStoreSimplifiedUserUpdatedCommentUnion = ConfluenceFooterComment | ConfluenceInlineComment;
56258
56330
  export declare type GraphStoreSimplifiedUserUpdatedConfluenceBlogpostConnection = HasPageInfo & {
56259
56331
  __typename?: 'GraphStoreSimplifiedUserUpdatedConfluenceBlogpostConnection';
56260
56332
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostEdge>>>;
@@ -57746,9 +57818,6 @@ export declare type GraphStoreUserMentionedInMessageSortInput = {
57746
57818
  export declare type GraphStoreUserMentionedInVideoCommentSortInput = {
57747
57819
  lastModified?: InputMaybe<GraphStoreSortInput>;
57748
57820
  };
57749
- export declare type GraphStoreUserMergedPullRequestSortInput = {
57750
- lastModified?: InputMaybe<GraphStoreSortInput>;
57751
- };
57752
57821
  export declare type GraphStoreUserOwnedBranchSortInput = {
57753
57822
  lastModified?: InputMaybe<GraphStoreSortInput>;
57754
57823
  };
@@ -57828,9 +57897,6 @@ export declare type GraphStoreUserUpdatedAtlasGoalSortInput = {
57828
57897
  export declare type GraphStoreUserUpdatedAtlasProjectSortInput = {
57829
57898
  lastModified?: InputMaybe<GraphStoreSortInput>;
57830
57899
  };
57831
- export declare type GraphStoreUserUpdatedCommentSortInput = {
57832
- lastModified?: InputMaybe<GraphStoreSortInput>;
57833
- };
57834
57900
  export declare type GraphStoreUserUpdatedConfluenceBlogpostSortInput = {
57835
57901
  lastModified?: InputMaybe<GraphStoreSortInput>;
57836
57902
  };
@@ -62392,6 +62458,7 @@ export declare type JiraApplySuggestionActionsPayload = Payload & {
62392
62458
  errors?: Maybe<Array<MutationError>>;
62393
62459
  ids?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
62394
62460
  success: Scalars['Boolean']['output'];
62461
+ suggestions?: Maybe<Array<Maybe<JiraSuggestion>>>;
62395
62462
  };
62396
62463
  export declare enum JiraApprovalDecision {
62397
62464
  Approved = "APPROVED",
@@ -65880,6 +65947,7 @@ export declare type JiraCustomFieldType = {
65880
65947
  __typename?: 'JiraCustomFieldType';
65881
65948
  category?: Maybe<JiraCustomFieldTypeCategory>;
65882
65949
  description?: Maybe<Scalars['String']['output']>;
65950
+ effectiveKey?: Maybe<Scalars['String']['output']>;
65883
65951
  hasCascadingOptions?: Maybe<Scalars['Boolean']['output']>;
65884
65952
  hasOptions?: Maybe<Scalars['Boolean']['output']>;
65885
65953
  installedByAppName?: Maybe<Scalars['String']['output']>;
@@ -66806,6 +66874,7 @@ export declare type JiraDuplicateJourneyConfigurationInput = {
66806
66874
  export declare type JiraDuplicateWorkItemsSuggestion = JiraSuggestion & {
66807
66875
  __typename?: 'JiraDuplicateWorkItemsSuggestion';
66808
66876
  actions?: Maybe<Array<Maybe<JiraSuggestionAction>>>;
66877
+ appliedAction?: Maybe<JiraSuggestionAction>;
66809
66878
  entityId?: Maybe<Scalars['String']['output']>;
66810
66879
  id?: Maybe<Scalars['ID']['output']>;
66811
66880
  relatedEntityId?: Maybe<Scalars['String']['output']>;
@@ -67487,7 +67556,7 @@ export declare type JiraFieldWorkTypeDescriptionCustomization = {
67487
67556
  workTypes?: Maybe<Array<Maybe<JiraIssueType>>>;
67488
67557
  };
67489
67558
  export declare type JiraFieldWorkTypeDescriptionCustomizationInput = {
67490
- description: Scalars['String']['input'];
67559
+ description?: InputMaybe<Scalars['String']['input']>;
67491
67560
  isDefault: Scalars['Boolean']['input'];
67492
67561
  workTypeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
67493
67562
  };
@@ -69301,6 +69370,7 @@ export declare type JiraIssueFieldConfig = Node & {
69301
69370
  defaultJqlClauseName?: Maybe<Scalars['String']['output']>;
69302
69371
  description?: Maybe<Scalars['String']['output']>;
69303
69372
  descriptionCustomisations?: Maybe<Array<Maybe<JiraFieldWorkTypeDescriptionCustomization>>>;
69373
+ effectiveTypeKey?: Maybe<Scalars['String']['output']>;
69304
69374
  fieldId: Scalars['String']['output'];
69305
69375
  fieldSchemeOperations?: Maybe<JiraFieldSchemeOperations>;
69306
69376
  formatConfig?: Maybe<JiraFieldFormatConfig>;
@@ -69962,6 +70032,18 @@ export declare type JiraIssueReviewDevSummaryContainer = {
69962
70032
  overall?: Maybe<JiraIssueReviewDevSummary>;
69963
70033
  summaryByProvider?: Maybe<Array<JiraIssueDevSummaryByProvider>>;
69964
70034
  };
70035
+ export declare type JiraIssueSearchAggregationConfigInput = {
70036
+ aggregationFields?: InputMaybe<Array<JiraIssueSearchFieldAggregationInput>>;
70037
+ canEnableAggregation?: InputMaybe<Scalars['Boolean']['input']>;
70038
+ };
70039
+ export declare type JiraIssueSearchAggregationConfigSettings = {
70040
+ __typename?: 'JiraIssueSearchAggregationConfigSettings';
70041
+ aggregationFields?: Maybe<Array<JiraIssueSearchFieldAggregation>>;
70042
+ canEnableAggregation?: Maybe<Scalars['Boolean']['output']>;
70043
+ };
70044
+ export declare enum JiraIssueSearchAggregationFunction {
70045
+ Rollup = "ROLLUP"
70046
+ }
69965
70047
  export declare type JiraIssueSearchBulkViewContextMapping = {
69966
70048
  __typename?: 'JiraIssueSearchBulkViewContextMapping';
69967
70049
  afterIssueId?: Maybe<Scalars['String']['output']>;
@@ -70079,6 +70161,17 @@ export declare type JiraIssueSearchErrorExtension = QueryErrorExtension & {
70079
70161
  errorType?: Maybe<Scalars['String']['output']>;
70080
70162
  statusCode?: Maybe<Scalars['Int']['output']>;
70081
70163
  };
70164
+ export declare type JiraIssueSearchFieldAggregation = {
70165
+ __typename?: 'JiraIssueSearchFieldAggregation';
70166
+ aggregationFunction?: Maybe<JiraIssueSearchAggregationFunction>;
70167
+ fieldId?: Maybe<Scalars['String']['output']>;
70168
+ isEnabled?: Maybe<Scalars['Boolean']['output']>;
70169
+ };
70170
+ export declare type JiraIssueSearchFieldAggregationInput = {
70171
+ aggregationFunction?: InputMaybe<JiraIssueSearchAggregationFunction>;
70172
+ fieldId?: InputMaybe<Scalars['String']['input']>;
70173
+ isEnabled?: InputMaybe<Scalars['Boolean']['input']>;
70174
+ };
70082
70175
  export declare type JiraIssueSearchFieldMetadataConnection = {
70083
70176
  __typename?: 'JiraIssueSearchFieldMetadataConnection';
70084
70177
  edges?: Maybe<Array<Maybe<JiraIssueSearchFieldMetadataEdge>>>;
@@ -70207,6 +70300,7 @@ export declare type JiraIssueSearchSettings = {
70207
70300
  jql?: InputMaybe<Scalars['String']['input']>;
70208
70301
  };
70209
70302
  export declare type JiraIssueSearchStaticViewInput = {
70303
+ aggregationConfig?: InputMaybe<JiraIssueSearchAggregationConfigInput>;
70210
70304
  isGroupingEnabled?: InputMaybe<Scalars['Boolean']['input']>;
70211
70305
  isHideDoneEnabled?: InputMaybe<Scalars['Boolean']['input']>;
70212
70306
  isHierarchyEnabled?: InputMaybe<Scalars['Boolean']['input']>;
@@ -70215,6 +70309,10 @@ export declare type JiraIssueSearchStatus = {
70215
70309
  __typename?: 'JiraIssueSearchStatus';
70216
70310
  functions?: Maybe<Array<Maybe<JiraJqlFunctionProcessingStatus>>>;
70217
70311
  };
70312
+ export declare type JiraIssueSearchTimelineViewConfigSettings = {
70313
+ __typename?: 'JiraIssueSearchTimelineViewConfigSettings';
70314
+ aggregationConfig?: Maybe<JiraIssueSearchAggregationConfigSettings>;
70315
+ };
70218
70316
  export declare type JiraIssueSearchView = JiraIssueSearchViewMetadata & Node & {
70219
70317
  __typename?: 'JiraIssueSearchView';
70220
70318
  canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
@@ -71453,6 +71551,14 @@ export declare enum JiraJqlSyntaxError {
71453
71551
  UnfinishedString = "UNFINISHED_STRING",
71454
71552
  Unknown = "UNKNOWN"
71455
71553
  }
71554
+ export declare type JiraJqlTownsquareProjectFieldValue = JiraJqlFieldValue & {
71555
+ __typename?: 'JiraJqlTownsquareProjectFieldValue';
71556
+ displayName: Scalars['String']['output'];
71557
+ encodedJqlTerm?: Maybe<Scalars['String']['output']>;
71558
+ isSelected?: Maybe<Scalars['Boolean']['output']>;
71559
+ jqlTerm: Scalars['String']['output'];
71560
+ project?: Maybe<JiraTownsquareProject>;
71561
+ };
71456
71562
  export declare type JiraJqlUserFieldValue = JiraJqlFieldValue & {
71457
71563
  __typename?: 'JiraJqlUserFieldValue';
71458
71564
  displayName: Scalars['String']['output'];
@@ -80012,6 +80118,7 @@ export declare type JiraSprintUpdateInput = {
80012
80118
  export declare type JiraStaleWorkItemsSuggestion = JiraSuggestion & {
80013
80119
  __typename?: 'JiraStaleWorkItemsSuggestion';
80014
80120
  actions?: Maybe<Array<Maybe<JiraSuggestionAction>>>;
80121
+ appliedAction?: Maybe<JiraSuggestionAction>;
80015
80122
  entityId?: Maybe<Scalars['String']['output']>;
80016
80123
  id?: Maybe<Scalars['ID']['output']>;
80017
80124
  status?: Maybe<JiraSuggestionStatus>;
@@ -80390,6 +80497,7 @@ export declare type JiraSuggestedIssueInput = {
80390
80497
  };
80391
80498
  export declare type JiraSuggestion = {
80392
80499
  actions?: Maybe<Array<Maybe<JiraSuggestionAction>>>;
80500
+ appliedAction?: Maybe<JiraSuggestionAction>;
80393
80501
  entityId?: Maybe<Scalars['String']['output']>;
80394
80502
  id?: Maybe<Scalars['ID']['output']>;
80395
80503
  status?: Maybe<JiraSuggestionStatus>;
@@ -80679,6 +80787,66 @@ export declare type JiraTimelineIssueLinkOperationPayload = {
80679
80787
  outwardItem?: Maybe<JiraIssue>;
80680
80788
  success: Scalars['Boolean']['output'];
80681
80789
  };
80790
+ export declare type JiraTimelineView = JiraFieldSetsViewMetadata & JiraIssueSearchViewMetadata & JiraSpreadsheetView & JiraView & Node & {
80791
+ __typename?: 'JiraTimelineView';
80792
+ canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
80793
+ conditionalFormattingRules?: Maybe<JiraFormattingRuleConnection>;
80794
+ error?: Maybe<QueryError>;
80795
+ fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
80796
+ filterId?: Maybe<Scalars['String']['output']>;
80797
+ hasDefaultFieldSets?: Maybe<Scalars['Boolean']['output']>;
80798
+ id: Scalars['ID']['output'];
80799
+ isHierarchyEnabled?: Maybe<Scalars['Boolean']['output']>;
80800
+ isViewConfigModified?: Maybe<Scalars['Boolean']['output']>;
80801
+ issues?: Maybe<JiraIssueConnection>;
80802
+ jql?: Maybe<Scalars['String']['output']>;
80803
+ namespace?: Maybe<Scalars['String']['output']>;
80804
+ savedViewId?: Maybe<Scalars['ID']['output']>;
80805
+ settings?: Maybe<JiraSpreadsheetViewSettings>;
80806
+ timelineSettings?: Maybe<JiraIssueSearchTimelineViewConfigSettings>;
80807
+ viewId?: Maybe<Scalars['String']['output']>;
80808
+ viewSettings?: Maybe<JiraIssueSearchViewConfigSettings>;
80809
+ };
80810
+ export declare type JiraTimelineViewConditionalFormattingRulesArgs = {
80811
+ after?: InputMaybe<Scalars['String']['input']>;
80812
+ first?: InputMaybe<Scalars['Int']['input']>;
80813
+ };
80814
+ export declare type JiraTimelineViewFieldSetsArgs = {
80815
+ after?: InputMaybe<Scalars['String']['input']>;
80816
+ before?: InputMaybe<Scalars['String']['input']>;
80817
+ filter?: InputMaybe<JiraIssueSearchFieldSetsFilter>;
80818
+ first?: InputMaybe<Scalars['Int']['input']>;
80819
+ last?: InputMaybe<Scalars['Int']['input']>;
80820
+ scope?: InputMaybe<JiraIssueSearchScope>;
80821
+ };
80822
+ export declare type JiraTimelineViewHasDefaultFieldSetsArgs = {
80823
+ scope?: InputMaybe<JiraIssueSearchScope>;
80824
+ };
80825
+ export declare type JiraTimelineViewIsViewConfigModifiedArgs = {
80826
+ settings?: InputMaybe<JiraIssueSearchSettings>;
80827
+ };
80828
+ export declare type JiraTimelineViewIssuesArgs = {
80829
+ after?: InputMaybe<Scalars['String']['input']>;
80830
+ before?: InputMaybe<Scalars['String']['input']>;
80831
+ fieldSetsInput?: InputMaybe<JiraIssueSearchFieldSetsInput>;
80832
+ first?: InputMaybe<Scalars['Int']['input']>;
80833
+ issueSearchInput: JiraIssueSearchInput;
80834
+ last?: InputMaybe<Scalars['Int']['input']>;
80835
+ options?: InputMaybe<JiraIssueSearchOptions>;
80836
+ saveJQLToUserHistory?: InputMaybe<Scalars['Boolean']['input']>;
80837
+ scope?: InputMaybe<JiraIssueSearchScope>;
80838
+ settings?: InputMaybe<JiraIssueSearchSettings>;
80839
+ viewConfigInput?: InputMaybe<JiraIssueSearchViewConfigInput>;
80840
+ };
80841
+ export declare type JiraTimelineViewTimelineSettingsArgs = {
80842
+ staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
80843
+ };
80844
+ export declare type JiraTimelineViewViewSettingsArgs = {
80845
+ groupBy?: InputMaybe<Scalars['String']['input']>;
80846
+ issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
80847
+ settings?: InputMaybe<JiraIssueSearchSettings>;
80848
+ staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
80849
+ };
80682
80850
  export declare type JiraToolchain = {
80683
80851
  __typename?: 'JiraToolchain';
80684
80852
  hasViewDevToolsPermission?: Maybe<Scalars['Boolean']['output']>;
@@ -91949,6 +92117,7 @@ export declare type Mutation = {
91949
92117
  stakeholderComms_bulkCreateStakeholders?: Maybe<StakeholderCommsBulkStakeholderCreationResponse>;
91950
92118
  stakeholderComms_bulkDeleteStakeholders?: Maybe<StakeholderCommsBulkStakeholderResponse>;
91951
92119
  stakeholderComms_createDraftPage?: Maybe<StakeholderCommsPageResponse>;
92120
+ stakeholderComms_createIncident?: Maybe<StakeholderCommsIncidentResponse>;
91952
92121
  stakeholderComms_createPage?: Maybe<StakeholderCommsPageResponse>;
91953
92122
  stakeholderComms_createStakeholder?: Maybe<StakeholderCommsStakeholderAssignmentResponse>;
91954
92123
  stakeholderComms_createStakeholderGroupAndMembers?: Maybe<StakeholderCommsStakeholderGroupsAndStakeholders>;
@@ -91960,6 +92129,7 @@ export declare type Mutation = {
91960
92129
  stakeholderComms_removeStakeholderMembers?: Maybe<StakeholderCommsStakeholderGroupMutationResponse>;
91961
92130
  stakeholderComms_resendStakeholderInvite?: Maybe<StakeholderCommsResendInviteResponse>;
91962
92131
  stakeholderComms_updateDraftPage?: Maybe<StakeholderCommsPageResponse>;
92132
+ stakeholderComms_updateIncident?: Maybe<StakeholderCommsIncidentResponse>;
91963
92133
  stakeholderComms_updatePage?: Maybe<StakeholderCommsPageResponse>;
91964
92134
  stakeholderComms_updateStakeholder?: Maybe<StakeholderCommsStakeholderResponse>;
91965
92135
  stakeholderComms_updateStakeholderGroup?: Maybe<StakeholderCommsStakeholderGroupsAndStakeholders>;
@@ -94246,6 +94416,9 @@ export declare type MutationStakeholderComms_BulkDeleteStakeholdersArgs = {
94246
94416
  export declare type MutationStakeholderComms_CreateDraftPageArgs = {
94247
94417
  page: StakeholderCommsCreatePageInputType;
94248
94418
  };
94419
+ export declare type MutationStakeholderComms_CreateIncidentArgs = {
94420
+ incidentCreateRequest?: InputMaybe<StakeholderCommsIncidentCreateRequest>;
94421
+ };
94249
94422
  export declare type MutationStakeholderComms_CreatePageArgs = {
94250
94423
  page: StakeholderCommsCreatePageInputType;
94251
94424
  };
@@ -94282,6 +94455,9 @@ export declare type MutationStakeholderComms_ResendStakeholderInviteArgs = {
94282
94455
  export declare type MutationStakeholderComms_UpdateDraftPageArgs = {
94283
94456
  page: StakeholderCommsUpdatePageInputType;
94284
94457
  };
94458
+ export declare type MutationStakeholderComms_UpdateIncidentArgs = {
94459
+ incidentUpdateRequest?: InputMaybe<StakeholderCommsIncidentUpdateRequest>;
94460
+ };
94285
94461
  export declare type MutationStakeholderComms_UpdatePageArgs = {
94286
94462
  page: StakeholderCommsUpdatePageInputType;
94287
94463
  };
@@ -97708,6 +97884,7 @@ export declare type Query = {
97708
97884
  contributorsLinkedToAtlasProject?: Maybe<GraphStoreCypherQueryConnection>;
97709
97885
  contributorsLinkedToConfluencePage?: Maybe<GraphStoreCypherQueryConnection>;
97710
97886
  contributorsLinkedToConfluencePageV2?: Maybe<GraphStoreCypherQueryConnection>;
97887
+ convoai_confluenceSpaceRecommendations?: Maybe<Array<ConvoAiConfluenceSpaceRecommendation>>;
97711
97888
  convoai_homeThreads?: Maybe<ConvoAiHomeThreadsResult>;
97712
97889
  convoai_jiraEchoAiFeature?: Maybe<Scalars['String']['output']>;
97713
97890
  convoai_jiraRelated3pLinksSuggestionsByIssueId?: Maybe<ConvoAiJira3pRelatedLinksResult>;
@@ -97720,7 +97897,7 @@ export declare type Query = {
97720
97897
  countUsersGroupByPage?: Maybe<CountUsersGroupByPage>;
97721
97898
  cpls_capacityPlanningPeopleView?: Maybe<CplsCapacityPlanningPeopleView>;
97722
97899
  cpls_customContributionTargets: CplsCustomContributionTargetConnection;
97723
- cpls_customContributionTargetsByIds: Array<CplsCustomContributionTarget>;
97900
+ cpls_customContributionTargetsByIds?: Maybe<Array<Maybe<CplsCustomContributionTarget>>>;
97724
97901
  cqlMetaData?: Maybe<Confluence_CqlMetaData>;
97725
97902
  crossProjectIssueMentionsInComments?: Maybe<GraphStoreCypherQueryV2Connection>;
97726
97903
  crossProjectIssueMentionsInCommentsV2?: Maybe<GraphStoreCypherQueryV2Connection>;
@@ -98167,6 +98344,7 @@ export declare type Query = {
98167
98344
  stakeholderComms_getDraftComponentsByPageId?: Maybe<StakeholderCommsPageDraftComponentResponse>;
98168
98345
  stakeholderComms_getDraftPageById?: Maybe<StakeholderCommsPageResponse>;
98169
98346
  stakeholderComms_getDraftPageByName?: Maybe<StakeholderCommsPageResponse>;
98347
+ stakeholderComms_getIncident?: Maybe<StakeholderCommsIncidentResponse>;
98170
98348
  stakeholderComms_getMemberships?: Maybe<Array<Maybe<StakeholderCommsStakeholderGroupMembership>>>;
98171
98349
  stakeholderComms_getPageById?: Maybe<StakeholderCommsPageResponse>;
98172
98350
  stakeholderComms_getPageByName?: Maybe<StakeholderCommsPageResponse>;
@@ -98187,6 +98365,7 @@ export declare type Query = {
98187
98365
  stakeholderComms_getWorkspaceAriMappingByStatuspageDomain?: Maybe<StakeholderCommsWorkspaceAriMappingResponse>;
98188
98366
  stakeholderComms_isPageNameUnique?: Maybe<Scalars['Boolean']['output']>;
98189
98367
  stakeholderComms_isStakeholderGroupNameUnique?: Maybe<Scalars['Boolean']['output']>;
98368
+ stakeholderComms_listIncidents?: Maybe<StakeholderCommsListIncidentResponse>;
98190
98369
  stakeholderComms_listStakeholders?: Maybe<StakeholderCommsStakeholderConnection>;
98191
98370
  stakeholderComms_unifiedSearch?: Maybe<StakeholderCommsUnifiedSearchResults>;
98192
98371
  stalePages?: Maybe<PaginatedStalePagePayloadList>;
@@ -99513,6 +99692,7 @@ export declare type QueryContentByStateArgs = {
99513
99692
  };
99514
99693
  export declare type QueryContentContributorsArgs = {
99515
99694
  after?: InputMaybe<Scalars['String']['input']>;
99695
+ cloudId?: InputMaybe<Scalars['ID']['input']>;
99516
99696
  first?: InputMaybe<Scalars['Int']['input']>;
99517
99697
  id: Scalars['ID']['input'];
99518
99698
  limit?: InputMaybe<Scalars['Int']['input']>;
@@ -99610,6 +99790,11 @@ export declare type QueryContributorsLinkedToConfluencePageV2Args = {
99610
99790
  first?: InputMaybe<Scalars['Int']['input']>;
99611
99791
  pageId: Scalars['ID']['input'];
99612
99792
  };
99793
+ export declare type QueryConvoai_ConfluenceSpaceRecommendationsArgs = {
99794
+ cloudId: Scalars['ID']['input'];
99795
+ pageTitle: Scalars['String']['input'];
99796
+ userPrompt: Scalars['String']['input'];
99797
+ };
99613
99798
  export declare type QueryConvoai_HomeThreadsArgs = {
99614
99799
  after?: InputMaybe<Scalars['String']['input']>;
99615
99800
  before?: InputMaybe<Scalars['String']['input']>;
@@ -101342,6 +101527,9 @@ export declare type QueryStakeholderComms_GetDraftPageByIdArgs = {
101342
101527
  export declare type QueryStakeholderComms_GetDraftPageByNameArgs = {
101343
101528
  name: Scalars['String']['input'];
101344
101529
  };
101530
+ export declare type QueryStakeholderComms_GetIncidentArgs = {
101531
+ getIncidentInput?: InputMaybe<StakeholderCommsGetIncidentInput>;
101532
+ };
101345
101533
  export declare type QueryStakeholderComms_GetMembershipsArgs = {
101346
101534
  groupId: Scalars['String']['input'];
101347
101535
  };
@@ -101408,6 +101596,9 @@ export declare type QueryStakeholderComms_IsPageNameUniqueArgs = {
101408
101596
  export declare type QueryStakeholderComms_IsStakeholderGroupNameUniqueArgs = {
101409
101597
  name: Scalars['String']['input'];
101410
101598
  };
101599
+ export declare type QueryStakeholderComms_ListIncidentsArgs = {
101600
+ listIncidentInput?: InputMaybe<StakeholderCommsListIncidentInput>;
101601
+ };
101411
101602
  export declare type QueryStakeholderComms_ListStakeholdersArgs = {
101412
101603
  after?: InputMaybe<Scalars['String']['input']>;
101413
101604
  before?: InputMaybe<Scalars['String']['input']>;
@@ -101776,6 +101967,7 @@ export declare enum RadarCustomFieldSyncStatus {
101776
101967
  }
101777
101968
  export declare type RadarDateFieldValue = {
101778
101969
  __typename?: 'RadarDateFieldValue';
101970
+ dateValue?: Maybe<Scalars['Date']['output']>;
101779
101971
  isRestricted?: Maybe<Scalars['Boolean']['output']>;
101780
101972
  value?: Maybe<Scalars['DateTime']['output']>;
101781
101973
  };
@@ -125776,12 +125968,17 @@ export declare type StakeholderCommsCreateStakeholderInput = {
125776
125968
  export declare type StakeholderCommsDailyComponentUptime = {
125777
125969
  __typename?: 'StakeholderCommsDailyComponentUptime';
125778
125970
  componentDailyAggregate?: Maybe<StakeholderCommsComponentUptimeDailyAggregate>;
125971
+ componentDailyUptimePercentage?: Maybe<Scalars['Float']['output']>;
125779
125972
  date: Scalars['String']['output'];
125780
125973
  };
125781
125974
  export declare enum StakeholderCommsErrorType {
125782
125975
  SystemError = "SYSTEM_ERROR",
125783
125976
  ValidationError = "VALIDATION_ERROR"
125784
125977
  }
125978
+ export declare enum StakeholderCommsExternalIncidentSource {
125979
+ Jsm = "JSM",
125980
+ Statuspage = "STATUSPAGE"
125981
+ }
125785
125982
  export declare type StakeholderCommsFooterDataInput = {
125786
125983
  copyrightText?: InputMaybe<Scalars['String']['input']>;
125787
125984
  footerLogoId?: InputMaybe<Scalars['String']['input']>;
@@ -125795,6 +125992,11 @@ export declare type StakeholderCommsFooterDataType = {
125795
125992
  footerText?: Maybe<Scalars['String']['output']>;
125796
125993
  links?: Maybe<Array<Maybe<StakeholderCommsLinkType>>>;
125797
125994
  };
125995
+ export declare type StakeholderCommsGetIncidentInput = {
125996
+ externalIncidentId?: InputMaybe<Scalars['String']['input']>;
125997
+ incidentCode?: InputMaybe<Scalars['String']['input']>;
125998
+ incidentId?: InputMaybe<Scalars['String']['input']>;
125999
+ };
125798
126000
  export declare type StakeholderCommsGroups = {
125799
126001
  __typename?: 'StakeholderCommsGroups';
125800
126002
  avatar?: Maybe<Scalars['String']['output']>;
@@ -125818,6 +126020,91 @@ export declare type StakeholderCommsHeaderDataType = {
125818
126020
  headerText?: Maybe<Scalars['String']['output']>;
125819
126021
  links?: Maybe<Array<Maybe<StakeholderCommsLinkType>>>;
125820
126022
  };
126023
+ export declare type StakeholderCommsIncident = {
126024
+ __typename?: 'StakeholderCommsIncident';
126025
+ autoCompleted?: Maybe<Scalars['Boolean']['output']>;
126026
+ autoInProgress?: Maybe<Scalars['Boolean']['output']>;
126027
+ components?: Maybe<Array<Maybe<StakeholderCommsIncidentComponentStatus>>>;
126028
+ createdAt?: Maybe<Scalars['String']['output']>;
126029
+ externalIncidentId?: Maybe<Scalars['String']['output']>;
126030
+ externalIncidentSource?: Maybe<StakeholderCommsExternalIncidentSource>;
126031
+ id: Scalars['String']['output'];
126032
+ impact?: Maybe<StakeholderCommsIncidentImpact>;
126033
+ lastRemindedAt?: Maybe<Scalars['String']['output']>;
126034
+ monitoringAt?: Maybe<Scalars['String']['output']>;
126035
+ name: Scalars['String']['output'];
126036
+ pageId: Scalars['String']['output'];
126037
+ reminderIntervals?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
126038
+ scheduledFor?: Maybe<Scalars['String']['output']>;
126039
+ scheduledUntil?: Maybe<Scalars['String']['output']>;
126040
+ shortlink?: Maybe<Scalars['String']['output']>;
126041
+ startedAt?: Maybe<Scalars['String']['output']>;
126042
+ status?: Maybe<StakeholderCommsIncidentStatus>;
126043
+ templateId?: Maybe<Scalars['String']['output']>;
126044
+ updateNeededAt?: Maybe<Scalars['String']['output']>;
126045
+ updatedAt?: Maybe<Scalars['String']['output']>;
126046
+ };
126047
+ export declare type StakeholderCommsIncidentComponentStatus = {
126048
+ __typename?: 'StakeholderCommsIncidentComponentStatus';
126049
+ componentId: Scalars['String']['output'];
126050
+ status?: Maybe<StakeholderCommsComponentStatus>;
126051
+ };
126052
+ export declare type StakeholderCommsIncidentComponentStatusInput = {
126053
+ componentId: Scalars['String']['input'];
126054
+ status?: InputMaybe<StakeholderCommsComponentStatus>;
126055
+ };
126056
+ export declare type StakeholderCommsIncidentCreateRequest = {
126057
+ affectedComponents?: InputMaybe<Array<InputMaybe<StakeholderCommsIncidentComponentStatusInput>>>;
126058
+ impact?: InputMaybe<StakeholderCommsIncidentImpact>;
126059
+ jiraIncidentId?: InputMaybe<Scalars['String']['input']>;
126060
+ message?: InputMaybe<Scalars['String']['input']>;
126061
+ name: Scalars['String']['input'];
126062
+ pageId: Scalars['String']['input'];
126063
+ status?: InputMaybe<StakeholderCommsIncidentStatus>;
126064
+ };
126065
+ export declare enum StakeholderCommsIncidentImpact {
126066
+ Critical = "CRITICAL",
126067
+ Major = "MAJOR",
126068
+ Minor = "MINOR",
126069
+ None = "NONE"
126070
+ }
126071
+ export declare type StakeholderCommsIncidentResponse = {
126072
+ __typename?: 'StakeholderCommsIncidentResponse';
126073
+ error?: Maybe<Scalars['String']['output']>;
126074
+ incidentWithUpdates?: Maybe<StakeholderCommsIncidentWithUpdates>;
126075
+ };
126076
+ export declare enum StakeholderCommsIncidentStatus {
126077
+ Identified = "IDENTIFIED",
126078
+ Investigating = "INVESTIGATING",
126079
+ Monitoring = "MONITORING",
126080
+ Resolved = "RESOLVED"
126081
+ }
126082
+ export declare type StakeholderCommsIncidentUpdate = {
126083
+ __typename?: 'StakeholderCommsIncidentUpdate';
126084
+ affectedComponents?: Maybe<Array<Maybe<StakeholderCommsIncidentComponentStatus>>>;
126085
+ body?: Maybe<Scalars['String']['output']>;
126086
+ createdAt?: Maybe<Scalars['String']['output']>;
126087
+ hidden?: Maybe<Scalars['Boolean']['output']>;
126088
+ incidentId?: Maybe<Scalars['String']['output']>;
126089
+ oldStatus?: Maybe<StakeholderCommsIncidentStatus>;
126090
+ scheduledAt?: Maybe<Scalars['String']['output']>;
126091
+ status?: Maybe<StakeholderCommsIncidentStatus>;
126092
+ updatedAt?: Maybe<Scalars['String']['output']>;
126093
+ };
126094
+ export declare type StakeholderCommsIncidentUpdateRequest = {
126095
+ affectedComponents?: InputMaybe<Array<InputMaybe<StakeholderCommsIncidentComponentStatusInput>>>;
126096
+ impact?: InputMaybe<StakeholderCommsIncidentImpact>;
126097
+ jiraIncidentId?: InputMaybe<Scalars['String']['input']>;
126098
+ message?: InputMaybe<Scalars['String']['input']>;
126099
+ name?: InputMaybe<Scalars['String']['input']>;
126100
+ pageId: Scalars['String']['input'];
126101
+ status?: InputMaybe<StakeholderCommsIncidentStatus>;
126102
+ };
126103
+ export declare type StakeholderCommsIncidentWithUpdates = {
126104
+ __typename?: 'StakeholderCommsIncidentWithUpdates';
126105
+ incident?: Maybe<StakeholderCommsIncident>;
126106
+ incidentUpdates?: Maybe<Array<Maybe<StakeholderCommsIncidentUpdate>>>;
126107
+ };
125821
126108
  export declare type StakeholderCommsLinkInput = {
125822
126109
  label?: InputMaybe<Scalars['String']['input']>;
125823
126110
  position?: InputMaybe<Scalars['Int']['input']>;
@@ -125829,6 +126116,15 @@ export declare type StakeholderCommsLinkType = {
125829
126116
  position?: Maybe<Scalars['Int']['output']>;
125830
126117
  url?: Maybe<Scalars['String']['output']>;
125831
126118
  };
126119
+ export declare type StakeholderCommsListIncidentInput = {
126120
+ pageId?: InputMaybe<Scalars['String']['input']>;
126121
+ showActive?: InputMaybe<Scalars['Boolean']['input']>;
126122
+ };
126123
+ export declare type StakeholderCommsListIncidentResponse = {
126124
+ __typename?: 'StakeholderCommsListIncidentResponse';
126125
+ error?: Maybe<Scalars['String']['output']>;
126126
+ incidentNodes?: Maybe<Array<Maybe<StakeholderCommsIncidentWithUpdates>>>;
126127
+ };
125832
126128
  export declare type StakeholderCommsModePreference = {
125833
126129
  __typename?: 'StakeholderCommsModePreference';
125834
126130
  enabled?: Maybe<Scalars['Boolean']['output']>;
@@ -125935,6 +126231,7 @@ export declare type StakeholderCommsPageComponentsWithUptimeResponse = {
125935
126231
  __typename?: 'StakeholderCommsPageComponentsWithUptimeResponse';
125936
126232
  error?: Maybe<Scalars['String']['output']>;
125937
126233
  pageComponentsUptime?: Maybe<Array<Maybe<StakeholderCommsNestedComponentWithUptime>>>;
126234
+ pageUptime?: Maybe<StakeholderCommsPageUptime>;
125938
126235
  };
125939
126236
  export declare type StakeholderCommsPageDraftComponentResponse = {
125940
126237
  __typename?: 'StakeholderCommsPageDraftComponentResponse';
@@ -125973,6 +126270,19 @@ export declare enum StakeholderCommsPageThemeMode {
125973
126270
  Dark = "DARK",
125974
126271
  Light = "LIGHT"
125975
126272
  }
126273
+ export declare type StakeholderCommsPageUptime = {
126274
+ __typename?: 'StakeholderCommsPageUptime';
126275
+ pageUptimeDailyAggregates?: Maybe<Array<Maybe<StakeholderCommsPageUptimeDailyAggregate>>>;
126276
+ pageUptimePercentage?: Maybe<Scalars['Float']['output']>;
126277
+ };
126278
+ export declare type StakeholderCommsPageUptimeDailyAggregate = {
126279
+ __typename?: 'StakeholderCommsPageUptimeDailyAggregate';
126280
+ date?: Maybe<Scalars['String']['output']>;
126281
+ degradedPerformanceTime?: Maybe<Scalars['Int']['output']>;
126282
+ maintenanceTime?: Maybe<Scalars['Int']['output']>;
126283
+ majorOutageTime?: Maybe<Scalars['Int']['output']>;
126284
+ partialOutageTime?: Maybe<Scalars['Int']['output']>;
126285
+ };
125976
126286
  export declare type StakeholderCommsPageUptimePercentageResponse = {
125977
126287
  __typename?: 'StakeholderCommsPageUptimePercentageResponse';
125978
126288
  error?: Maybe<Scalars['String']['output']>;
@@ -126227,6 +126537,10 @@ export declare type StakeholderCommsStakeholderResponse = {
126227
126537
  export declare enum StakeholderCommsStakeholderStatus {
126228
126538
  Active = "ACTIVE",
126229
126539
  Deleted = "DELETED",
126540
+ Invited = "INVITED",
126541
+ InvitedPendingApproval = "INVITED_PENDING_APPROVAL",
126542
+ NotInvited = "NOT_INVITED",
126543
+ PendingIdentitySetup = "PENDING_IDENTITY_SETUP",
126230
126544
  Quarantined = "QUARANTINED"
126231
126545
  }
126232
126546
  export declare enum StakeholderCommsStakeholderType {
@@ -132295,6 +132609,7 @@ export declare type TrelloPlannerCalendar = Node & TrelloProviderCalendarInterfa
132295
132609
  events?: Maybe<TrelloPlannerCalendarEventConnection>;
132296
132610
  forceUpdateTimestamp?: Maybe<Scalars['DateTime']['output']>;
132297
132611
  id: Scalars['ID']['output'];
132612
+ idProviderAccount?: Maybe<Scalars['ID']['output']>;
132298
132613
  isPrimary?: Maybe<Scalars['Boolean']['output']>;
132299
132614
  objectId?: Maybe<Scalars['ID']['output']>;
132300
132615
  providerCalendarId?: Maybe<Scalars['ID']['output']>;
@@ -132559,6 +132874,7 @@ export declare type TrelloPlannerCalendarUpdated = {
132559
132874
  events?: Maybe<TrelloPlannerCalendarEventConnectionUpdated>;
132560
132875
  forceUpdateTimestamp?: Maybe<Scalars['DateTime']['output']>;
132561
132876
  id: Scalars['ID']['output'];
132877
+ idProviderAccount?: Maybe<Scalars['ID']['output']>;
132562
132878
  isPrimary?: Maybe<Scalars['Boolean']['output']>;
132563
132879
  objectId?: Maybe<Scalars['ID']['output']>;
132564
132880
  onPlannerCalendarEventDeleted?: Maybe<Array<TrelloPlannerCalendarEventDeleted>>;