@forge/cli-shared 6.9.0-next.6-experimental-98585b7 → 6.10.0-next.0

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.
@@ -482,7 +482,6 @@ export declare type ActivitiesObject = Node & {
482
482
  __typename?: 'ActivitiesObject';
483
483
  cloudId?: Maybe<Scalars['String']['output']>;
484
484
  containers?: Maybe<Array<ActivitiesContainer>>;
485
- content?: Maybe<ConfluenceLegacyContent>;
486
485
  contributors?: Maybe<Array<ActivitiesContributor>>;
487
486
  events?: Maybe<Array<ActivitiesEvent>>;
488
487
  extension?: Maybe<ActivitiesObjectExtension>;
@@ -1390,6 +1389,7 @@ export declare type AppEnvironment = {
1390
1389
  __typename?: 'AppEnvironment';
1391
1390
  app?: Maybe<App>;
1392
1391
  appId: Scalars['ID']['output'];
1392
+ appVersionRollouts?: Maybe<AppEnvironmentAppVersionRolloutConnection>;
1393
1393
  createdAt: Scalars['String']['output'];
1394
1394
  createdBy?: Maybe<User>;
1395
1395
  deployments?: Maybe<Array<AppDeployment>>;
@@ -1402,6 +1402,12 @@ export declare type AppEnvironment = {
1402
1402
  variables?: Maybe<Array<AppEnvironmentVariable>>;
1403
1403
  versions?: Maybe<AppEnvironmentVersionConnection>;
1404
1404
  };
1405
+ export declare type AppEnvironmentAppVersionRolloutsArgs = {
1406
+ after?: InputMaybe<Scalars['String']['input']>;
1407
+ before?: InputMaybe<Scalars['String']['input']>;
1408
+ first?: InputMaybe<Scalars['Int']['input']>;
1409
+ last?: InputMaybe<Scalars['Int']['input']>;
1410
+ };
1405
1411
  export declare type AppEnvironmentVersionsArgs = {
1406
1412
  after?: InputMaybe<Scalars['String']['input']>;
1407
1413
  before?: InputMaybe<Scalars['String']['input']>;
@@ -1411,6 +1417,18 @@ export declare type AppEnvironmentVersionsArgs = {
1411
1417
  majorVersion?: InputMaybe<Scalars['Int']['input']>;
1412
1418
  versionIds?: InputMaybe<Array<Scalars['ID']['input']>>;
1413
1419
  };
1420
+ export declare type AppEnvironmentAppVersionRolloutConnection = {
1421
+ __typename?: 'AppEnvironmentAppVersionRolloutConnection';
1422
+ edges?: Maybe<Array<Maybe<AppEnvironmentAppVersionRolloutEdge>>>;
1423
+ nodes?: Maybe<Array<Maybe<AppVersionRollout>>>;
1424
+ pageInfo?: Maybe<AppVersionRolloutPageInfo>;
1425
+ totalCount?: Maybe<Scalars['Int']['output']>;
1426
+ };
1427
+ export declare type AppEnvironmentAppVersionRolloutEdge = {
1428
+ __typename?: 'AppEnvironmentAppVersionRolloutEdge';
1429
+ cursor: Scalars['String']['output'];
1430
+ node?: Maybe<AppVersionRollout>;
1431
+ };
1414
1432
  export declare type AppEnvironmentInput = {
1415
1433
  appId: Scalars['ID']['input'];
1416
1434
  key: Scalars['String']['input'];
@@ -2167,6 +2185,13 @@ export declare type AppVersionRollout = {
2167
2185
  status: AppVersionRolloutStatus;
2168
2186
  targetVersionId: Scalars['ID']['output'];
2169
2187
  };
2188
+ export declare type AppVersionRolloutPageInfo = {
2189
+ __typename?: 'AppVersionRolloutPageInfo';
2190
+ endCursor?: Maybe<Scalars['String']['output']>;
2191
+ hasNextPage: Scalars['Boolean']['output'];
2192
+ hasPreviousPage: Scalars['Boolean']['output'];
2193
+ startCursor?: Maybe<Scalars['String']['output']>;
2194
+ };
2170
2195
  export declare type AppVersionRolloutProgress = {
2171
2196
  __typename?: 'AppVersionRolloutProgress';
2172
2197
  completedUpgradeCount: Scalars['Int']['output'];
@@ -4421,22 +4446,6 @@ export declare type CommentUserAction = {
4421
4446
  tooltip?: Maybe<Scalars['String']['output']>;
4422
4447
  url?: Maybe<Scalars['String']['output']>;
4423
4448
  };
4424
- export declare type CommentsDigestResponse = {
4425
- __typename?: 'CommentsDigestResponse';
4426
- contentId: Scalars['ID']['output'];
4427
- language: Scalars['String']['output'];
4428
- summary: CommentsDigestSummaryResponse;
4429
- summaryId: Scalars['ID']['output'];
4430
- };
4431
- export declare enum CommentsDigestResponseType {
4432
- Json = "JSON",
4433
- PlainText = "PLAIN_TEXT"
4434
- }
4435
- export declare type CommentsDigestSummaryResponse = {
4436
- __typename?: 'CommentsDigestSummaryResponse';
4437
- introduction: Scalars['String']['output'];
4438
- prioritizedOpenComments: Array<PrioritizedOpenComments>;
4439
- };
4440
4449
  export declare enum CommentsType {
4441
4450
  Footer = "FOOTER",
4442
4451
  Inline = "INLINE"
@@ -4777,6 +4786,7 @@ export declare type CompassCampaign = Node & {
4777
4786
  createdByUser?: Maybe<User>;
4778
4787
  description?: Maybe<Scalars['String']['output']>;
4779
4788
  dueDate?: Maybe<Scalars['DateTime']['output']>;
4789
+ goal?: Maybe<TownsquareGoal>;
4780
4790
  goalId?: Maybe<Scalars['ID']['output']>;
4781
4791
  id: Scalars['ID']['output'];
4782
4792
  name?: Maybe<Scalars['String']['output']>;
@@ -19407,6 +19417,18 @@ export declare enum ContentRepresentation {
19407
19417
  View = "VIEW",
19408
19418
  Wiki = "WIKI"
19409
19419
  }
19420
+ export declare enum ContentRepresentationV2 {
19421
+ AtlasDocFormat = "atlas_doc_format",
19422
+ Editor = "editor",
19423
+ Editor2 = "editor2",
19424
+ ExportView = "export_view",
19425
+ Plain = "plain",
19426
+ Raw = "raw",
19427
+ Storage = "storage",
19428
+ StyledView = "styled_view",
19429
+ View = "view",
19430
+ Wiki = "wiki"
19431
+ }
19410
19432
  export declare type ContentRestriction = {
19411
19433
  __typename?: 'ContentRestriction';
19412
19434
  content?: Maybe<Content>;
@@ -24949,6 +24971,15 @@ export declare type EmbeddedMediaToken = {
24949
24971
  links?: Maybe<LinksContextBase>;
24950
24972
  token?: Maybe<Scalars['String']['output']>;
24951
24973
  };
24974
+ export declare type EmbeddedMediaTokenV2 = {
24975
+ __typename?: 'EmbeddedMediaTokenV2';
24976
+ collectionIds?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
24977
+ contentId?: Maybe<Scalars['ID']['output']>;
24978
+ expiryDateTime?: Maybe<Scalars['String']['output']>;
24979
+ fileIds?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
24980
+ mediaUrl?: Maybe<Scalars['String']['output']>;
24981
+ token?: Maybe<Scalars['String']['output']>;
24982
+ };
24952
24983
  export declare type EmbeddedSmartLink = SmartLink & {
24953
24984
  __typename?: 'EmbeddedSmartLink';
24954
24985
  layout: Scalars['String']['output'];
@@ -26415,7 +26446,6 @@ export declare type FeedItem = {
26415
26446
  __typename?: 'FeedItem';
26416
26447
  content?: Maybe<Content>;
26417
26448
  id: Scalars['String']['output'];
26418
- mostRelevantUpdate: Scalars['Int']['output'];
26419
26449
  recentActionsCount: Scalars['Int']['output'];
26420
26450
  source: Array<FeedItemSourceType>;
26421
26451
  summaryLineUpdate: FeedEvent;
@@ -31390,6 +31420,8 @@ export declare type GraphStore = {
31390
31420
  atlasGoalHasFollowerInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasFollowerInverseConnection>;
31391
31421
  atlasGoalHasGoalUpdate?: Maybe<GraphStoreSimplifiedAtlasGoalHasGoalUpdateConnection>;
31392
31422
  atlasGoalHasGoalUpdateInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasGoalUpdateInverseConnection>;
31423
+ atlasGoalHasJiraAlignProject?: Maybe<GraphStoreSimplifiedAtlasGoalHasJiraAlignProjectConnection>;
31424
+ atlasGoalHasJiraAlignProjectInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasJiraAlignProjectInverseConnection>;
31393
31425
  atlasGoalHasOwner?: Maybe<GraphStoreSimplifiedAtlasGoalHasOwnerConnection>;
31394
31426
  atlasGoalHasOwnerInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasOwnerInverseConnection>;
31395
31427
  atlasGoalHasSubAtlasGoal?: Maybe<GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalConnection>;
@@ -32001,7 +32033,6 @@ export declare type GraphStore = {
32001
32033
  userUpdatedGraphDocumentInverse?: Maybe<GraphStoreSimplifiedUserUpdatedGraphDocumentInverseConnection>;
32002
32034
  userUpdatedIssue?: Maybe<GraphStoreSimplifiedUserUpdatedIssueConnection>;
32003
32035
  userUpdatedIssueInverse?: Maybe<GraphStoreSimplifiedUserUpdatedIssueInverseConnection>;
32004
- userUpdatedIssueStatusInverse?: Maybe<GraphStoreSimplifiedUserUpdatedIssueStatusInverseConnection>;
32005
32036
  userViewedAtlasGoal?: Maybe<GraphStoreSimplifiedUserViewedAtlasGoalConnection>;
32006
32037
  userViewedAtlasGoalInverse?: Maybe<GraphStoreSimplifiedUserViewedAtlasGoalInverseConnection>;
32007
32038
  userViewedAtlasProject?: Maybe<GraphStoreSimplifiedUserViewedAtlasProjectConnection>;
@@ -32011,11 +32042,15 @@ export declare type GraphStore = {
32011
32042
  userViewedConfluencePage?: Maybe<GraphStoreSimplifiedUserViewedConfluencePageConnection>;
32012
32043
  userViewedConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserViewedConfluencePageInverseConnection>;
32013
32044
  userViewedGoalUpdate?: Maybe<GraphStoreSimplifiedUserViewedGoalUpdateConnection>;
32045
+ userViewedGoalUpdateBatch?: Maybe<GraphStoreBatchUserViewedGoalUpdateConnection>;
32014
32046
  userViewedGoalUpdateInverse?: Maybe<GraphStoreSimplifiedUserViewedGoalUpdateInverseConnection>;
32047
+ userViewedGoalUpdateInverseBatch?: Maybe<GraphStoreBatchUserViewedGoalUpdateConnection>;
32015
32048
  userViewedJiraIssue?: Maybe<GraphStoreSimplifiedUserViewedJiraIssueConnection>;
32016
32049
  userViewedJiraIssueInverse?: Maybe<GraphStoreSimplifiedUserViewedJiraIssueInverseConnection>;
32017
32050
  userViewedProjectUpdate?: Maybe<GraphStoreSimplifiedUserViewedProjectUpdateConnection>;
32051
+ userViewedProjectUpdateBatch?: Maybe<GraphStoreBatchUserViewedProjectUpdateConnection>;
32018
32052
  userViewedProjectUpdateInverse?: Maybe<GraphStoreSimplifiedUserViewedProjectUpdateInverseConnection>;
32053
+ userViewedProjectUpdateInverseBatch?: Maybe<GraphStoreBatchUserViewedProjectUpdateConnection>;
32019
32054
  userViewedVideo?: Maybe<GraphStoreSimplifiedUserViewedVideoConnection>;
32020
32055
  userViewedVideoInverse?: Maybe<GraphStoreSimplifiedUserViewedVideoInverseConnection>;
32021
32056
  userWatchesConfluenceBlogpost?: Maybe<GraphStoreSimplifiedUserWatchesConfluenceBlogpostConnection>;
@@ -32135,6 +32170,20 @@ export declare type GraphStoreAtlasGoalHasGoalUpdateInverseArgs = {
32135
32170
  id: Scalars['ID']['input'];
32136
32171
  sort?: InputMaybe<GraphStoreAtlasGoalHasGoalUpdateSortInput>;
32137
32172
  };
32173
+ export declare type GraphStoreAtlasGoalHasJiraAlignProjectArgs = {
32174
+ after?: InputMaybe<Scalars['String']['input']>;
32175
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
32176
+ first?: InputMaybe<Scalars['Int']['input']>;
32177
+ id: Scalars['ID']['input'];
32178
+ sort?: InputMaybe<GraphStoreAtlasGoalHasJiraAlignProjectSortInput>;
32179
+ };
32180
+ export declare type GraphStoreAtlasGoalHasJiraAlignProjectInverseArgs = {
32181
+ after?: InputMaybe<Scalars['String']['input']>;
32182
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
32183
+ first?: InputMaybe<Scalars['Int']['input']>;
32184
+ id: Scalars['ID']['input'];
32185
+ sort?: InputMaybe<GraphStoreAtlasGoalHasJiraAlignProjectSortInput>;
32186
+ };
32138
32187
  export declare type GraphStoreAtlasGoalHasOwnerArgs = {
32139
32188
  after?: InputMaybe<Scalars['String']['input']>;
32140
32189
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -32703,6 +32752,7 @@ export declare type GraphStoreCypherQueryV2Args = {
32703
32752
  first?: InputMaybe<Scalars['Int']['input']>;
32704
32753
  params?: InputMaybe<Scalars['JSON']['input']>;
32705
32754
  query: Scalars['String']['input'];
32755
+ version?: InputMaybe<GraphStoreCypherQueryV2VersionEnum>;
32706
32756
  };
32707
32757
  export declare type GraphStoreDeploymentAssociatedRepoArgs = {
32708
32758
  after?: InputMaybe<Scalars['String']['input']>;
@@ -36207,13 +36257,6 @@ export declare type GraphStoreUserUpdatedIssueInverseArgs = {
36207
36257
  id: Scalars['ID']['input'];
36208
36258
  sort?: InputMaybe<GraphStoreUserUpdatedIssueSortInput>;
36209
36259
  };
36210
- export declare type GraphStoreUserUpdatedIssueStatusInverseArgs = {
36211
- after?: InputMaybe<Scalars['String']['input']>;
36212
- consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
36213
- first?: InputMaybe<Scalars['Int']['input']>;
36214
- id: Scalars['ID']['input'];
36215
- sort?: InputMaybe<GraphStoreUserUpdatedIssueStatusSortInput>;
36216
- };
36217
36260
  export declare type GraphStoreUserViewedAtlasGoalArgs = {
36218
36261
  after?: InputMaybe<Scalars['String']['input']>;
36219
36262
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -36277,6 +36320,12 @@ export declare type GraphStoreUserViewedGoalUpdateArgs = {
36277
36320
  id: Scalars['ID']['input'];
36278
36321
  sort?: InputMaybe<GraphStoreUserViewedGoalUpdateSortInput>;
36279
36322
  };
36323
+ export declare type GraphStoreUserViewedGoalUpdateBatchArgs = {
36324
+ after?: InputMaybe<Scalars['String']['input']>;
36325
+ first?: InputMaybe<Scalars['Int']['input']>;
36326
+ ids: Array<Scalars['ID']['input']>;
36327
+ sort?: InputMaybe<GraphStoreUserViewedGoalUpdateSortInput>;
36328
+ };
36280
36329
  export declare type GraphStoreUserViewedGoalUpdateInverseArgs = {
36281
36330
  after?: InputMaybe<Scalars['String']['input']>;
36282
36331
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -36284,6 +36333,12 @@ export declare type GraphStoreUserViewedGoalUpdateInverseArgs = {
36284
36333
  id: Scalars['ID']['input'];
36285
36334
  sort?: InputMaybe<GraphStoreUserViewedGoalUpdateSortInput>;
36286
36335
  };
36336
+ export declare type GraphStoreUserViewedGoalUpdateInverseBatchArgs = {
36337
+ after?: InputMaybe<Scalars['String']['input']>;
36338
+ first?: InputMaybe<Scalars['Int']['input']>;
36339
+ ids: Array<Scalars['ID']['input']>;
36340
+ sort?: InputMaybe<GraphStoreUserViewedGoalUpdateSortInput>;
36341
+ };
36287
36342
  export declare type GraphStoreUserViewedJiraIssueArgs = {
36288
36343
  after?: InputMaybe<Scalars['String']['input']>;
36289
36344
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -36305,6 +36360,12 @@ export declare type GraphStoreUserViewedProjectUpdateArgs = {
36305
36360
  id: Scalars['ID']['input'];
36306
36361
  sort?: InputMaybe<GraphStoreUserViewedProjectUpdateSortInput>;
36307
36362
  };
36363
+ export declare type GraphStoreUserViewedProjectUpdateBatchArgs = {
36364
+ after?: InputMaybe<Scalars['String']['input']>;
36365
+ first?: InputMaybe<Scalars['Int']['input']>;
36366
+ ids: Array<Scalars['ID']['input']>;
36367
+ sort?: InputMaybe<GraphStoreUserViewedProjectUpdateSortInput>;
36368
+ };
36308
36369
  export declare type GraphStoreUserViewedProjectUpdateInverseArgs = {
36309
36370
  after?: InputMaybe<Scalars['String']['input']>;
36310
36371
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -36312,6 +36373,12 @@ export declare type GraphStoreUserViewedProjectUpdateInverseArgs = {
36312
36373
  id: Scalars['ID']['input'];
36313
36374
  sort?: InputMaybe<GraphStoreUserViewedProjectUpdateSortInput>;
36314
36375
  };
36376
+ export declare type GraphStoreUserViewedProjectUpdateInverseBatchArgs = {
36377
+ after?: InputMaybe<Scalars['String']['input']>;
36378
+ first?: InputMaybe<Scalars['Int']['input']>;
36379
+ ids: Array<Scalars['ID']['input']>;
36380
+ sort?: InputMaybe<GraphStoreUserViewedProjectUpdateSortInput>;
36381
+ };
36315
36382
  export declare type GraphStoreUserViewedVideoArgs = {
36316
36383
  after?: InputMaybe<Scalars['String']['input']>;
36317
36384
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -36705,6 +36772,9 @@ export declare type GraphStoreAtlasGoalHasFollowerSortInput = {
36705
36772
  export declare type GraphStoreAtlasGoalHasGoalUpdateSortInput = {
36706
36773
  lastModified?: InputMaybe<GraphStoreSortInput>;
36707
36774
  };
36775
+ export declare type GraphStoreAtlasGoalHasJiraAlignProjectSortInput = {
36776
+ lastModified?: InputMaybe<GraphStoreSortInput>;
36777
+ };
36708
36778
  export declare type GraphStoreAtlasGoalHasOwnerSortInput = {
36709
36779
  lastModified?: InputMaybe<GraphStoreSortInput>;
36710
36780
  };
@@ -37636,6 +37706,88 @@ export declare type GraphStoreBatchTestPerfhammerRelationshipStartNode = {
37636
37706
  id: Scalars['ID']['output'];
37637
37707
  };
37638
37708
  export declare type GraphStoreBatchTestPerfhammerRelationshipStartUnion = JiraIssue;
37709
+ export declare type GraphStoreBatchUserViewedGoalUpdateConnection = HasPageInfo & {
37710
+ __typename?: 'GraphStoreBatchUserViewedGoalUpdateConnection';
37711
+ edges: Array<Maybe<GraphStoreBatchUserViewedGoalUpdateEdge>>;
37712
+ nodes: Array<Maybe<GraphStoreBatchUserViewedGoalUpdateNode>>;
37713
+ pageInfo: PageInfo;
37714
+ };
37715
+ export declare type GraphStoreBatchUserViewedGoalUpdateEdge = {
37716
+ __typename?: 'GraphStoreBatchUserViewedGoalUpdateEdge';
37717
+ node: GraphStoreBatchUserViewedGoalUpdateInnerConnection;
37718
+ };
37719
+ export declare type GraphStoreBatchUserViewedGoalUpdateEndNode = {
37720
+ __typename?: 'GraphStoreBatchUserViewedGoalUpdateEndNode';
37721
+ data?: Maybe<GraphStoreBatchUserViewedGoalUpdateEndUnion>;
37722
+ id: Scalars['ID']['output'];
37723
+ };
37724
+ export declare type GraphStoreBatchUserViewedGoalUpdateEndUnion = TownsquareGoalUpdate;
37725
+ export declare type GraphStoreBatchUserViewedGoalUpdateInnerConnection = {
37726
+ __typename?: 'GraphStoreBatchUserViewedGoalUpdateInnerConnection';
37727
+ edges: Array<Maybe<GraphStoreBatchUserViewedGoalUpdateInnerEdge>>;
37728
+ nodes: Array<Maybe<GraphStoreBatchUserViewedGoalUpdateNode>>;
37729
+ requestedId: Scalars['ID']['output'];
37730
+ };
37731
+ export declare type GraphStoreBatchUserViewedGoalUpdateInnerEdge = {
37732
+ __typename?: 'GraphStoreBatchUserViewedGoalUpdateInnerEdge';
37733
+ cursor?: Maybe<Scalars['String']['output']>;
37734
+ node: GraphStoreBatchUserViewedGoalUpdateNode;
37735
+ };
37736
+ export declare type GraphStoreBatchUserViewedGoalUpdateNode = Node & {
37737
+ __typename?: 'GraphStoreBatchUserViewedGoalUpdateNode';
37738
+ createdAt: Scalars['DateTime']['output'];
37739
+ from: GraphStoreBatchUserViewedGoalUpdateStartNode;
37740
+ id: Scalars['ID']['output'];
37741
+ lastUpdated: Scalars['DateTime']['output'];
37742
+ to: GraphStoreBatchUserViewedGoalUpdateEndNode;
37743
+ };
37744
+ export declare type GraphStoreBatchUserViewedGoalUpdateStartNode = {
37745
+ __typename?: 'GraphStoreBatchUserViewedGoalUpdateStartNode';
37746
+ data?: Maybe<GraphStoreBatchUserViewedGoalUpdateStartUnion>;
37747
+ id: Scalars['ID']['output'];
37748
+ };
37749
+ export declare type GraphStoreBatchUserViewedGoalUpdateStartUnion = AppUser | AtlassianAccountUser | CustomerUser;
37750
+ export declare type GraphStoreBatchUserViewedProjectUpdateConnection = HasPageInfo & {
37751
+ __typename?: 'GraphStoreBatchUserViewedProjectUpdateConnection';
37752
+ edges: Array<Maybe<GraphStoreBatchUserViewedProjectUpdateEdge>>;
37753
+ nodes: Array<Maybe<GraphStoreBatchUserViewedProjectUpdateNode>>;
37754
+ pageInfo: PageInfo;
37755
+ };
37756
+ export declare type GraphStoreBatchUserViewedProjectUpdateEdge = {
37757
+ __typename?: 'GraphStoreBatchUserViewedProjectUpdateEdge';
37758
+ node: GraphStoreBatchUserViewedProjectUpdateInnerConnection;
37759
+ };
37760
+ export declare type GraphStoreBatchUserViewedProjectUpdateEndNode = {
37761
+ __typename?: 'GraphStoreBatchUserViewedProjectUpdateEndNode';
37762
+ data?: Maybe<GraphStoreBatchUserViewedProjectUpdateEndUnion>;
37763
+ id: Scalars['ID']['output'];
37764
+ };
37765
+ export declare type GraphStoreBatchUserViewedProjectUpdateEndUnion = TownsquareProjectUpdate;
37766
+ export declare type GraphStoreBatchUserViewedProjectUpdateInnerConnection = {
37767
+ __typename?: 'GraphStoreBatchUserViewedProjectUpdateInnerConnection';
37768
+ edges: Array<Maybe<GraphStoreBatchUserViewedProjectUpdateInnerEdge>>;
37769
+ nodes: Array<Maybe<GraphStoreBatchUserViewedProjectUpdateNode>>;
37770
+ requestedId: Scalars['ID']['output'];
37771
+ };
37772
+ export declare type GraphStoreBatchUserViewedProjectUpdateInnerEdge = {
37773
+ __typename?: 'GraphStoreBatchUserViewedProjectUpdateInnerEdge';
37774
+ cursor?: Maybe<Scalars['String']['output']>;
37775
+ node: GraphStoreBatchUserViewedProjectUpdateNode;
37776
+ };
37777
+ export declare type GraphStoreBatchUserViewedProjectUpdateNode = Node & {
37778
+ __typename?: 'GraphStoreBatchUserViewedProjectUpdateNode';
37779
+ createdAt: Scalars['DateTime']['output'];
37780
+ from: GraphStoreBatchUserViewedProjectUpdateStartNode;
37781
+ id: Scalars['ID']['output'];
37782
+ lastUpdated: Scalars['DateTime']['output'];
37783
+ to: GraphStoreBatchUserViewedProjectUpdateEndNode;
37784
+ };
37785
+ export declare type GraphStoreBatchUserViewedProjectUpdateStartNode = {
37786
+ __typename?: 'GraphStoreBatchUserViewedProjectUpdateStartNode';
37787
+ data?: Maybe<GraphStoreBatchUserViewedProjectUpdateStartUnion>;
37788
+ id: Scalars['ID']['output'];
37789
+ };
37790
+ export declare type GraphStoreBatchUserViewedProjectUpdateStartUnion = AppUser | AtlassianAccountUser | CustomerUser;
37639
37791
  export declare type GraphStoreBoardBelongsToProjectSortInput = {
37640
37792
  lastModified?: InputMaybe<GraphStoreSortInput>;
37641
37793
  };
@@ -38231,6 +38383,7 @@ export declare type GraphStoreCypherQueryV2Connection = {
38231
38383
  __typename?: 'GraphStoreCypherQueryV2Connection';
38232
38384
  edges: Array<GraphStoreCypherQueryV2Edge>;
38233
38385
  pageInfo: PageInfo;
38386
+ version: Scalars['String']['output'];
38234
38387
  };
38235
38388
  export declare type GraphStoreCypherQueryV2Edge = {
38236
38389
  __typename?: 'GraphStoreCypherQueryV2Edge';
@@ -38257,6 +38410,10 @@ export declare type GraphStoreCypherQueryV2StringObject = {
38257
38410
  __typename?: 'GraphStoreCypherQueryV2StringObject';
38258
38411
  value: Scalars['String']['output'];
38259
38412
  };
38413
+ export declare enum GraphStoreCypherQueryV2VersionEnum {
38414
+ V2 = "V2",
38415
+ V3 = "V3"
38416
+ }
38260
38417
  export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
38261
38418
  export declare type GraphStoreCypherQueryValueNode = {
38262
38419
  __typename?: 'GraphStoreCypherQueryValueNode';
@@ -43416,6 +43573,34 @@ export declare type GraphStoreSimplifiedAtlasGoalHasGoalUpdateInverseEdge = {
43416
43573
  };
43417
43574
  export declare type GraphStoreSimplifiedAtlasGoalHasGoalUpdateInverseUnion = TownsquareGoal;
43418
43575
  export declare type GraphStoreSimplifiedAtlasGoalHasGoalUpdateUnion = TownsquareGoalUpdate;
43576
+ export declare type GraphStoreSimplifiedAtlasGoalHasJiraAlignProjectConnection = HasPageInfo & {
43577
+ __typename?: 'GraphStoreSimplifiedAtlasGoalHasJiraAlignProjectConnection';
43578
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasGoalHasJiraAlignProjectEdge>>>;
43579
+ pageInfo: PageInfo;
43580
+ };
43581
+ export declare type GraphStoreSimplifiedAtlasGoalHasJiraAlignProjectEdge = {
43582
+ __typename?: 'GraphStoreSimplifiedAtlasGoalHasJiraAlignProjectEdge';
43583
+ createdAt: Scalars['DateTime']['output'];
43584
+ cursor?: Maybe<Scalars['String']['output']>;
43585
+ id: Scalars['ID']['output'];
43586
+ lastUpdated: Scalars['DateTime']['output'];
43587
+ node?: Maybe<GraphStoreSimplifiedAtlasGoalHasJiraAlignProjectUnion>;
43588
+ };
43589
+ export declare type GraphStoreSimplifiedAtlasGoalHasJiraAlignProjectInverseConnection = HasPageInfo & {
43590
+ __typename?: 'GraphStoreSimplifiedAtlasGoalHasJiraAlignProjectInverseConnection';
43591
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasGoalHasJiraAlignProjectInverseEdge>>>;
43592
+ pageInfo: PageInfo;
43593
+ };
43594
+ export declare type GraphStoreSimplifiedAtlasGoalHasJiraAlignProjectInverseEdge = {
43595
+ __typename?: 'GraphStoreSimplifiedAtlasGoalHasJiraAlignProjectInverseEdge';
43596
+ createdAt: Scalars['DateTime']['output'];
43597
+ cursor?: Maybe<Scalars['String']['output']>;
43598
+ id: Scalars['ID']['output'];
43599
+ lastUpdated: Scalars['DateTime']['output'];
43600
+ node?: Maybe<GraphStoreSimplifiedAtlasGoalHasJiraAlignProjectInverseUnion>;
43601
+ };
43602
+ export declare type GraphStoreSimplifiedAtlasGoalHasJiraAlignProjectInverseUnion = TownsquareGoal;
43603
+ export declare type GraphStoreSimplifiedAtlasGoalHasJiraAlignProjectUnion = JiraAlignAggProject;
43419
43604
  export declare type GraphStoreSimplifiedAtlasGoalHasOwnerConnection = HasPageInfo & {
43420
43605
  __typename?: 'GraphStoreSimplifiedAtlasGoalHasOwnerConnection';
43421
43606
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasGoalHasOwnerEdge>>>;
@@ -49757,20 +49942,6 @@ export declare type GraphStoreSimplifiedUserUpdatedIssueInverseEdge = {
49757
49942
  node?: Maybe<GraphStoreSimplifiedUserUpdatedIssueInverseUnion>;
49758
49943
  };
49759
49944
  export declare type GraphStoreSimplifiedUserUpdatedIssueInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
49760
- export declare type GraphStoreSimplifiedUserUpdatedIssueStatusInverseConnection = HasPageInfo & {
49761
- __typename?: 'GraphStoreSimplifiedUserUpdatedIssueStatusInverseConnection';
49762
- edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedIssueStatusInverseEdge>>>;
49763
- pageInfo: PageInfo;
49764
- };
49765
- export declare type GraphStoreSimplifiedUserUpdatedIssueStatusInverseEdge = {
49766
- __typename?: 'GraphStoreSimplifiedUserUpdatedIssueStatusInverseEdge';
49767
- createdAt: Scalars['DateTime']['output'];
49768
- cursor?: Maybe<Scalars['String']['output']>;
49769
- id: Scalars['ID']['output'];
49770
- lastUpdated: Scalars['DateTime']['output'];
49771
- node?: Maybe<GraphStoreSimplifiedUserUpdatedIssueStatusInverseUnion>;
49772
- };
49773
- export declare type GraphStoreSimplifiedUserUpdatedIssueStatusInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
49774
49945
  export declare type GraphStoreSimplifiedUserUpdatedIssueUnion = JiraIssue;
49775
49946
  export declare type GraphStoreSimplifiedUserViewedAtlasGoalConnection = HasPageInfo & {
49776
49947
  __typename?: 'GraphStoreSimplifiedUserViewedAtlasGoalConnection';
@@ -51144,9 +51315,6 @@ export declare type GraphStoreUserUpdatedGraphDocumentSortInput = {
51144
51315
  export declare type GraphStoreUserUpdatedIssueSortInput = {
51145
51316
  lastModified?: InputMaybe<GraphStoreSortInput>;
51146
51317
  };
51147
- export declare type GraphStoreUserUpdatedIssueStatusSortInput = {
51148
- lastModified?: InputMaybe<GraphStoreSortInput>;
51149
- };
51150
51318
  export declare type GraphStoreUserViewedAtlasGoalSortInput = {
51151
51319
  lastModified?: InputMaybe<GraphStoreSortInput>;
51152
51320
  };
@@ -54262,7 +54430,9 @@ export declare type InvokeExtensionInput = {
54262
54430
  entryPoint?: InputMaybe<Scalars['String']['input']>;
54263
54431
  extensionDetails?: InputMaybe<ExtensionDetailsInput>;
54264
54432
  extensionId?: InputMaybe<Scalars['ID']['input']>;
54433
+ oAuthScopes?: InputMaybe<Array<Scalars['String']['input']>>;
54265
54434
  payload: Scalars['JSON']['input'];
54435
+ productEventScopes?: InputMaybe<Array<Scalars['String']['input']>>;
54266
54436
  };
54267
54437
  export declare type InvokeExtensionPayloadErrorExtension = MutationErrorExtension & {
54268
54438
  __typename?: 'InvokeExtensionPayloadErrorExtension';
@@ -62070,6 +62240,10 @@ export declare type JiraJqlPlainTextFieldValue = JiraJqlFieldValue & {
62070
62240
  isSelected?: Maybe<Scalars['Boolean']['output']>;
62071
62241
  jqlTerm: Scalars['String']['output'];
62072
62242
  };
62243
+ export declare type JiraJqlPlanInput = {
62244
+ planId: Scalars['Long']['input'];
62245
+ scenarioId?: InputMaybe<Scalars['Long']['input']>;
62246
+ };
62073
62247
  export declare type JiraJqlPriorityFieldValue = JiraJqlFieldValue & {
62074
62248
  __typename?: 'JiraJqlPriorityFieldValue';
62075
62249
  displayName: Scalars['String']['output'];
@@ -62127,6 +62301,7 @@ export declare type JiraJqlResolutionFieldValue = JiraJqlFieldValue & {
62127
62301
  };
62128
62302
  export declare type JiraJqlScopeInput = {
62129
62303
  board?: InputMaybe<JiraJqlBoardInput>;
62304
+ plan?: InputMaybe<JiraJqlPlanInput>;
62130
62305
  };
62131
62306
  export declare type JiraJqlSearchTemplate = {
62132
62307
  __typename?: 'JiraJqlSearchTemplate';
@@ -62284,6 +62459,10 @@ export declare type JiraLabelEdge = {
62284
62459
  cursor: Scalars['String']['output'];
62285
62460
  node?: Maybe<JiraLabel>;
62286
62461
  };
62462
+ export declare type JiraLabelProperties = {
62463
+ color?: InputMaybe<JiraOptionColorInput>;
62464
+ name: Scalars['String']['input'];
62465
+ };
62287
62466
  export declare type JiraLabelsField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
62288
62467
  __typename?: 'JiraLabelsField';
62289
62468
  aliasFieldId?: Maybe<Scalars['ID']['output']>;
@@ -62325,6 +62504,7 @@ export declare type JiraLabelsFieldInput = {
62325
62504
  labels?: InputMaybe<Array<JiraLabelsInput>>;
62326
62505
  };
62327
62506
  export declare type JiraLabelsFieldOperationInput = {
62507
+ labelProperties?: InputMaybe<Array<JiraLabelProperties>>;
62328
62508
  labels: Array<Scalars['String']['input']>;
62329
62509
  operation: JiraMultiValueFieldOperations;
62330
62510
  };
@@ -64110,6 +64290,58 @@ export declare type JiraOption = JiraSelectableValue & Node & {
64110
64290
  selectableUrl?: Maybe<Scalars['URL']['output']>;
64111
64291
  value?: Maybe<Scalars['String']['output']>;
64112
64292
  };
64293
+ export declare enum JiraOptionColorInput {
64294
+ Blue = "BLUE",
64295
+ BlueDarker = "BLUE_DARKER",
64296
+ BlueDarkest = "BLUE_DARKEST",
64297
+ BlueLighter = "BLUE_LIGHTER",
64298
+ BlueLightest = "BLUE_LIGHTEST",
64299
+ Green = "GREEN",
64300
+ GreenDarker = "GREEN_DARKER",
64301
+ GreenDarkest = "GREEN_DARKEST",
64302
+ GreenLighter = "GREEN_LIGHTER",
64303
+ GreenLightest = "GREEN_LIGHTEST",
64304
+ Grey = "GREY",
64305
+ GreyDarker = "GREY_DARKER",
64306
+ GreyDarkest = "GREY_DARKEST",
64307
+ GreyLighter = "GREY_LIGHTER",
64308
+ GreyLightest = "GREY_LIGHTEST",
64309
+ Lime = "LIME",
64310
+ LimeDarker = "LIME_DARKER",
64311
+ LimeDarkest = "LIME_DARKEST",
64312
+ LimeLighter = "LIME_LIGHTER",
64313
+ LimeLightest = "LIME_LIGHTEST",
64314
+ Magenta = "MAGENTA",
64315
+ MagentaDarker = "MAGENTA_DARKER",
64316
+ MagentaDarkest = "MAGENTA_DARKEST",
64317
+ MagentaLighter = "MAGENTA_LIGHTER",
64318
+ MagentaLightest = "MAGENTA_LIGHTEST",
64319
+ Orange = "ORANGE",
64320
+ OrangeDarker = "ORANGE_DARKER",
64321
+ OrangeDarkest = "ORANGE_DARKEST",
64322
+ OrangeLighter = "ORANGE_LIGHTER",
64323
+ OrangeLightest = "ORANGE_LIGHTEST",
64324
+ Purple = "PURPLE",
64325
+ PurpleDarker = "PURPLE_DARKER",
64326
+ PurpleDarkest = "PURPLE_DARKEST",
64327
+ PurpleLighter = "PURPLE_LIGHTER",
64328
+ PurpleLightest = "PURPLE_LIGHTEST",
64329
+ Red = "RED",
64330
+ RedDarker = "RED_DARKER",
64331
+ RedDarkest = "RED_DARKEST",
64332
+ RedLighter = "RED_LIGHTER",
64333
+ RedLightest = "RED_LIGHTEST",
64334
+ Teal = "TEAL",
64335
+ TealDarker = "TEAL_DARKER",
64336
+ TealDarkest = "TEAL_DARKEST",
64337
+ TealLighter = "TEAL_LIGHTER",
64338
+ TealLightest = "TEAL_LIGHTEST",
64339
+ Yellow = "YELLOW",
64340
+ YellowDarker = "YELLOW_DARKER",
64341
+ YellowDarkest = "YELLOW_DARKEST",
64342
+ YellowLighter = "YELLOW_LIGHTER",
64343
+ YellowLightest = "YELLOW_LIGHTEST"
64344
+ }
64113
64345
  export declare type JiraOptionConnection = {
64114
64346
  __typename?: 'JiraOptionConnection';
64115
64347
  edges?: Maybe<Array<Maybe<JiraOptionEdge>>>;
@@ -64524,6 +64756,7 @@ export declare type JiraPlanMultiScenarioFeatureMutationInput = {
64524
64756
  };
64525
64757
  export declare type JiraPlanReleaseFeatureMutationInput = {
64526
64758
  enabled: Scalars['Boolean']['input'];
64759
+ hasConsentToDeleteUnsavedChanges?: InputMaybe<Scalars['Boolean']['input']>;
64527
64760
  planId: Scalars['ID']['input'];
64528
64761
  };
64529
64762
  export declare enum JiraPlanStatus {
@@ -64694,6 +64927,7 @@ export declare type JiraPlaybookStepRun = Node & {
64694
64927
  __typename?: 'JiraPlaybookStepRun';
64695
64928
  completedAt?: Maybe<Scalars['DateTime']['output']>;
64696
64929
  id: Scalars['ID']['output'];
64930
+ issue?: Maybe<JiraIssue>;
64697
64931
  playbookId?: Maybe<Scalars['ID']['output']>;
64698
64932
  playbookName?: Maybe<Scalars['String']['output']>;
64699
64933
  ruleId?: Maybe<Scalars['String']['output']>;
@@ -73806,6 +74040,17 @@ export declare type KnowledgeDiscoveryUsers = {
73806
74040
  __typename?: 'KnowledgeDiscoveryUsers';
73807
74041
  users?: Maybe<Array<Maybe<KnowledgeDiscoverySearchUser>>>;
73808
74042
  };
74043
+ export declare type KnowledgeGraphObjectResponse = {
74044
+ __typename?: 'KnowledgeGraphObjectResponse';
74045
+ contentId: Scalars['ID']['output'];
74046
+ contentType: ConfluenceContentType;
74047
+ createdAt: Scalars['String']['output'];
74048
+ objectData: Scalars['String']['output'];
74049
+ };
74050
+ export declare enum KnowledgeGraphObjectType {
74051
+ SnippetV1 = "snippet_v1",
74052
+ SnippetV2 = "snippet_v2"
74053
+ }
73809
74054
  export declare type KnownUser = Person & {
73810
74055
  __typename?: 'KnownUser';
73811
74056
  accountId?: Maybe<Scalars['String']['output']>;
@@ -74432,6 +74677,16 @@ export declare enum LpSortOrder {
74432
74677
  Asc = "ASC",
74433
74678
  Desc = "DESC"
74434
74679
  }
74680
+ export declare type Macro = {
74681
+ __typename?: 'Macro';
74682
+ adf: Scalars['String']['output'];
74683
+ contentId: Scalars['ID']['output'];
74684
+ macroId: Scalars['ID']['output'];
74685
+ renderedMacro?: Maybe<RenderedMacro>;
74686
+ };
74687
+ export declare type MacroRenderedMacroArgs = {
74688
+ mode?: InputMaybe<MacroRendererMode>;
74689
+ };
74435
74690
  export declare type MacroBody = {
74436
74691
  __typename?: 'MacroBody';
74437
74692
  mediaToken?: Maybe<EmbeddedMediaToken>;
@@ -74439,6 +74694,22 @@ export declare type MacroBody = {
74439
74694
  value?: Maybe<Scalars['String']['output']>;
74440
74695
  webResourceDependencies?: Maybe<WebResourceDependencies>;
74441
74696
  };
74697
+ export declare type MacroConnection = {
74698
+ __typename?: 'MacroConnection';
74699
+ edges?: Maybe<Array<Maybe<MacroEdge>>>;
74700
+ nodes?: Maybe<Array<Maybe<Macro>>>;
74701
+ pageInfo: PageInfoV2;
74702
+ };
74703
+ export declare type MacroEdge = {
74704
+ __typename?: 'MacroEdge';
74705
+ cursor?: Maybe<Scalars['String']['output']>;
74706
+ node: Macro;
74707
+ };
74708
+ export declare enum MacroRendererMode {
74709
+ Editor = "EDITOR",
74710
+ Pdf = "PDF",
74711
+ Renderer = "RENDERER"
74712
+ }
74442
74713
  export declare type MapOfStringToBoolean = {
74443
74714
  __typename?: 'MapOfStringToBoolean';
74444
74715
  key?: Maybe<Scalars['String']['output']>;
@@ -75071,7 +75342,8 @@ export declare type MarketplaceConsoleEditionsActivationResponse = MarketplaceCo
75071
75342
  export declare enum MarketplaceConsoleEditionsActivationStatus {
75072
75343
  Approved = "APPROVED",
75073
75344
  Pending = "PENDING",
75074
- Rejected = "REJECTED"
75345
+ Rejected = "REJECTED",
75346
+ Uninitiated = "UNINITIATED"
75075
75347
  }
75076
75348
  export declare type MarketplaceConsoleEditionsInput = {
75077
75349
  appKey?: InputMaybe<Scalars['String']['input']>;
@@ -75270,6 +75542,7 @@ export declare type MarketplaceConsoleMakeAppVersionPublicRequest = {
75270
75542
  appKey: Scalars['ID']['input'];
75271
75543
  appStatusPageUrl?: InputMaybe<Scalars['String']['input']>;
75272
75544
  binaryUrl?: InputMaybe<Scalars['String']['input']>;
75545
+ bonTermsSupported?: InputMaybe<Scalars['Boolean']['input']>;
75273
75546
  buildNumber: Scalars['ID']['input'];
75274
75547
  categories?: InputMaybe<Array<Scalars['String']['input']>>;
75275
75548
  communityEnabled?: InputMaybe<Scalars['Boolean']['input']>;
@@ -75293,6 +75566,7 @@ export declare type MarketplaceConsoleMakeAppVersionPublicRequest = {
75293
75566
  marketingLabels?: InputMaybe<Array<Scalars['String']['input']>>;
75294
75567
  moreDetails?: InputMaybe<Scalars['String']['input']>;
75295
75568
  name?: InputMaybe<Scalars['String']['input']>;
75569
+ partnerSpecificTerms?: InputMaybe<Scalars['String']['input']>;
75296
75570
  paymentModel?: InputMaybe<MarketplaceConsolePaymentModel>;
75297
75571
  privacyUrl?: InputMaybe<Scalars['String']['input']>;
75298
75572
  productId: Scalars['ID']['input'];
@@ -79552,7 +79826,6 @@ export declare type Mutation = {
79552
79826
  notifyUsersOnFirstView?: Maybe<NotificationResponsePayload>;
79553
79827
  openUpSpacePermissions?: Maybe<Scalars['Boolean']['output']>;
79554
79828
  partnerEarlyAccess?: Maybe<PeapMutationApi>;
79555
- patchCommentsSummary?: Maybe<PatchCommentsSummaryPayload>;
79556
79829
  planModeCardCreate?: Maybe<CreateCardsOutput>;
79557
79830
  planModeCardMove?: Maybe<MoveCardOutput>;
79558
79831
  playbook_createJiraPlaybook?: Maybe<CreateJiraPlaybookPayload>;
@@ -79568,10 +79841,12 @@ export declare type Mutation = {
79568
79841
  publishReleaseNote: ContentPlatformReleaseNote;
79569
79842
  radar_createCustomField?: Maybe<RadarMutationResponse>;
79570
79843
  radar_createRoleAssignment?: Maybe<RadarMutationResponse>;
79844
+ radar_deleteFocusAreaProposalChanges?: Maybe<RadarMutationResponse>;
79571
79845
  radar_deleteRoleAssignment?: Maybe<RadarMutationResponse>;
79572
79846
  radar_updateConnector?: Maybe<RadarConnector>;
79573
79847
  radar_updateFieldSettings?: Maybe<RadarMutationResponse>;
79574
79848
  radar_updateFocusAreaMappings?: Maybe<RadarMutationResponse>;
79849
+ radar_updateFocusAreaProposalChanges?: Maybe<RadarMutationResponse>;
79575
79850
  radar_updateWorkspaceSettings?: Maybe<RadarMutationResponse>;
79576
79851
  rankCardParent?: Maybe<GenericMutationResponse>;
79577
79852
  rankColumn?: Maybe<RankColumnOutput>;
@@ -80954,9 +81229,6 @@ export declare type MutationNotifyUsersOnFirstViewArgs = {
80954
81229
  export declare type MutationOpenUpSpacePermissionsArgs = {
80955
81230
  spaceKey: Scalars['String']['input'];
80956
81231
  };
80957
- export declare type MutationPatchCommentsSummaryArgs = {
80958
- input: PatchCommentsSummaryInput;
80959
- };
80960
81232
  export declare type MutationPlanModeCardCreateArgs = {
80961
81233
  input?: InputMaybe<PlanModeCardCreateInput>;
80962
81234
  };
@@ -81003,6 +81275,10 @@ export declare type MutationRadar_CreateRoleAssignmentArgs = {
81003
81275
  cloudId: Scalars['ID']['input'];
81004
81276
  input: RadarRoleAssignmentRequest;
81005
81277
  };
81278
+ export declare type MutationRadar_DeleteFocusAreaProposalChangesArgs = {
81279
+ cloudId: Scalars['ID']['input'];
81280
+ input: Array<RadarDeleteFocusAreaProposalChangesInput>;
81281
+ };
81006
81282
  export declare type MutationRadar_DeleteRoleAssignmentArgs = {
81007
81283
  cloudId: Scalars['ID']['input'];
81008
81284
  input: RadarRoleAssignmentRequest;
@@ -81019,6 +81295,10 @@ export declare type MutationRadar_UpdateFocusAreaMappingsArgs = {
81019
81295
  cloudId: Scalars['ID']['input'];
81020
81296
  input: Array<RadarFocusAreaMappingsInput>;
81021
81297
  };
81298
+ export declare type MutationRadar_UpdateFocusAreaProposalChangesArgs = {
81299
+ cloudId: Scalars['ID']['input'];
81300
+ input: Array<RadarPositionProposalChangeInput>;
81301
+ };
81022
81302
  export declare type MutationRadar_UpdateWorkspaceSettingsArgs = {
81023
81303
  cloudId: Scalars['ID']['input'];
81024
81304
  input: RadarWorkspaceSettingsInput;
@@ -81159,6 +81439,7 @@ export declare type MutationSetExternalAuthCredentialsArgs = {
81159
81439
  input: SetExternalAuthCredentialsInput;
81160
81440
  };
81161
81441
  export declare type MutationSetFeedUserConfigArgs = {
81442
+ cloudId?: InputMaybe<Scalars['String']['input']>;
81162
81443
  input: SetFeedUserConfigInput;
81163
81444
  };
81164
81445
  export declare type MutationSetIssueMediaVisibilityArgs = {
@@ -81180,9 +81461,11 @@ export declare type MutationSetPublicLinkDefaultSpaceStatusArgs = {
81180
81461
  status: PublicLinkDefaultSpaceStatus;
81181
81462
  };
81182
81463
  export declare type MutationSetRecommendedPagesSpaceStatusArgs = {
81464
+ cloudId?: InputMaybe<Scalars['String']['input']>;
81183
81465
  input: SetRecommendedPagesSpaceStatusInput;
81184
81466
  };
81185
81467
  export declare type MutationSetRecommendedPagesStatusArgs = {
81468
+ cloudId?: InputMaybe<Scalars['String']['input']>;
81186
81469
  input: SetRecommendedPagesStatusInput;
81187
81470
  };
81188
81471
  export declare type MutationSetRelevantFeedFiltersArgs = {
@@ -81453,6 +81736,7 @@ export declare type MutationUpdateTemplatePropertySetArgs = {
81453
81736
  };
81454
81737
  export declare type MutationUpdateTitleArgs = {
81455
81738
  contentId: Scalars['ID']['input'];
81739
+ draft?: InputMaybe<Scalars['Boolean']['input']>;
81456
81740
  title?: InputMaybe<Scalars['String']['input']>;
81457
81741
  };
81458
81742
  export declare type MutationUpdateUserPreferencesArgs = {
@@ -82398,6 +82682,13 @@ export declare type PageInfo = {
82398
82682
  hasPreviousPage: Scalars['Boolean']['output'];
82399
82683
  startCursor?: Maybe<Scalars['String']['output']>;
82400
82684
  };
82685
+ export declare type PageInfoV2 = {
82686
+ __typename?: 'PageInfoV2';
82687
+ endCursor?: Maybe<Scalars['String']['output']>;
82688
+ hasNextPage: Scalars['Boolean']['output'];
82689
+ hasPreviousPage: Scalars['Boolean']['output'];
82690
+ startCursor?: Maybe<Scalars['String']['output']>;
82691
+ };
82401
82692
  export declare type PageInput = {
82402
82693
  body?: InputMaybe<PageBodyInput>;
82403
82694
  parentId?: InputMaybe<Scalars['ID']['input']>;
@@ -83001,20 +83292,6 @@ export declare type PartnerUncollectibleDestination = {
83001
83292
  __typename?: 'PartnerUncollectibleDestination';
83002
83293
  offeringKey: Scalars['ID']['output'];
83003
83294
  };
83004
- export declare type PatchCommentsSummaryInput = {
83005
- commentsType: CommentsType;
83006
- contentId: Scalars['ID']['input'];
83007
- contentType: SummaryType;
83008
- language?: InputMaybe<Scalars['String']['input']>;
83009
- };
83010
- export declare type PatchCommentsSummaryPayload = {
83011
- __typename?: 'PatchCommentsSummaryPayload';
83012
- contentId: Scalars['ID']['output'];
83013
- errors?: Maybe<Array<MutationError>>;
83014
- language: Scalars['String']['output'];
83015
- summary: Scalars['String']['output'];
83016
- summaryId: Scalars['ID']['output'];
83017
- };
83018
83295
  export declare enum PathType {
83019
83296
  Absolute = "ABSOLUTE",
83020
83297
  Relative = "RELATIVE",
@@ -83777,14 +84054,6 @@ export declare enum PrincipalType {
83777
84054
  Customer = "CUSTOMER",
83778
84055
  Unlicensed = "UNLICENSED"
83779
84056
  }
83780
- export declare type PrioritizedOpenComments = {
83781
- __typename?: 'PrioritizedOpenComments';
83782
- actionNeeded: Scalars['String']['output'];
83783
- recap: Scalars['String']['output'];
83784
- referenceCommentIds: Array<Scalars['ID']['output']>;
83785
- title: Scalars['String']['output'];
83786
- why: Scalars['String']['output'];
83787
- };
83788
84057
  export declare type Privacy = {
83789
84058
  __typename?: 'Privacy';
83790
84059
  ccpa?: Maybe<CcpaDetails>;
@@ -84139,7 +84408,6 @@ export declare type Query = {
84139
84408
  collabDraft?: Maybe<CollabDraft>;
84140
84409
  collabToken?: Maybe<CollabTokenResponse>;
84141
84410
  comments?: Maybe<PaginatedCommentList>;
84142
- commentsDigest?: Maybe<CommentsDigestResponse>;
84143
84411
  compass?: Maybe<CompassCatalogQueryApi>;
84144
84412
  confluence?: Maybe<ConfluenceQueryApi>;
84145
84413
  confluenceLegacy_abTestCohorts?: Maybe<Scalars['String']['output']>;
@@ -84365,12 +84633,14 @@ export declare type Query = {
84365
84633
  confluence_calendarPreference?: Maybe<ConfluenceCalendarPreference>;
84366
84634
  confluence_calendarTimezones?: Maybe<ConfluenceCalendarTimezones>;
84367
84635
  confluence_contentWatchersUnfiltered?: Maybe<PaginatedPersonList>;
84636
+ confluence_contents?: Maybe<Array<Maybe<Content>>>;
84368
84637
  confluence_contentsForSimpleIds?: Maybe<Array<Maybe<Content>>>;
84369
84638
  confluence_deletedUserAccountIds?: Maybe<ConfluenceDeletedUser>;
84370
84639
  confluence_empty?: Maybe<Scalars['String']['output']>;
84371
84640
  confluence_externalCollaboratorsByCriteria?: Maybe<ConfluencePersonConnection>;
84372
84641
  confluence_hasClearPermissionForSpace?: Maybe<Scalars['Boolean']['output']>;
84373
84642
  confluence_hasDivergedFromDefaultSpacePermissions?: Maybe<Scalars['Boolean']['output']>;
84643
+ confluence_macrosByIds?: Maybe<Array<Maybe<Macro>>>;
84374
84644
  confluence_mutationsPlaceholderQuery?: Maybe<Scalars['Boolean']['output']>;
84375
84645
  confluence_pdfExportDownloadLink?: Maybe<ConfluencePdfExportDownloadLink>;
84376
84646
  confluence_pdfExportTask?: Maybe<ConfluencePdfExportTask>;
@@ -84476,7 +84746,6 @@ export declare type Query = {
84476
84746
  developerLogAccess?: Maybe<Array<Maybe<DeveloperLogAccessResult>>>;
84477
84747
  developmentInformation?: Maybe<IssueDevOpsDevelopmentInformation>;
84478
84748
  diagnostics?: Maybe<Scalars['JSON']['output']>;
84479
- discoverFeed?: Maybe<PaginatedFeed>;
84480
84749
  dvcs?: Maybe<DvcsQuery>;
84481
84750
  echo?: Maybe<Scalars['String']['output']>;
84482
84751
  ecosystem?: Maybe<EcosystemQuery>;
@@ -84588,6 +84857,7 @@ export declare type Query = {
84588
84857
  knowledgeBase_searchArticles?: Maybe<KnowledgeBaseArticleSearchResponse>;
84589
84858
  knowledgeDiscovery?: Maybe<KnowledgeDiscoveryQueryApi>;
84590
84859
  labelSearch?: Maybe<LabelSearchResults>;
84860
+ latestKnowledgeGraphObject?: Maybe<KnowledgeGraphObjectResponse>;
84591
84861
  license?: Maybe<License>;
84592
84862
  localStorage?: Maybe<LocalStorage>;
84593
84863
  lookAndFeel?: Maybe<LookAndFeelSettings>;
@@ -84609,6 +84879,7 @@ export declare type Query = {
84609
84879
  loom_videos?: Maybe<Array<Maybe<LoomVideo>>>;
84610
84880
  lpLearnerData?: Maybe<LpLearnerData>;
84611
84881
  macroBodyRenderer?: Maybe<MacroBody>;
84882
+ macros?: Maybe<MacroConnection>;
84612
84883
  marketplaceApp?: Maybe<MarketplaceApp>;
84613
84884
  marketplaceAppByCloudAppId?: Maybe<MarketplaceApp>;
84614
84885
  marketplaceAppByKey?: Maybe<MarketplaceApp>;
@@ -84703,6 +84974,7 @@ export declare type Query = {
84703
84974
  releaseNote?: Maybe<ContentPlatformReleaseNote>;
84704
84975
  releaseNotes: ContentPlatformReleaseNotesConnection;
84705
84976
  renderedContentDump?: Maybe<HtmlDocument>;
84977
+ renderedMacro?: Maybe<RenderedMacro>;
84706
84978
  repositoryRelationshipsForDevOpsService?: Maybe<DevOpsServiceAndRepositoryRelationshipConnection>;
84707
84979
  roadmaps?: Maybe<RoadmapsQuery>;
84708
84980
  sandbox: SandboxQuery;
@@ -84995,16 +85267,19 @@ export declare type QueryCanvasTokenArgs = {
84995
85267
  contentId: Scalars['ID']['input'];
84996
85268
  };
84997
85269
  export declare type QueryCatchupEditMetadataForContentArgs = {
85270
+ cloudId?: InputMaybe<Scalars['String']['input']>;
84998
85271
  contentId: Scalars['ID']['input'];
84999
85272
  contentType: CatchupContentType;
85000
85273
  endTimeMs: Scalars['Long']['input'];
85001
85274
  updateType?: InputMaybe<CatchupOverviewUpdateType>;
85002
85275
  };
85003
85276
  export declare type QueryCatchupGetLastViewedTimeArgs = {
85277
+ cloudId?: InputMaybe<Scalars['String']['input']>;
85004
85278
  contentId: Scalars['ID']['input'];
85005
85279
  contentType: CatchupContentType;
85006
85280
  };
85007
85281
  export declare type QueryCatchupVersionDiffMetadataForContentArgs = {
85282
+ cloudId?: InputMaybe<Scalars['String']['input']>;
85008
85283
  contentId: Scalars['ID']['input'];
85009
85284
  contentType: CatchupContentType;
85010
85285
  originalContentVersion: Scalars['Int']['input'];
@@ -85053,12 +85328,6 @@ export declare type QueryCommentsArgs = {
85053
85328
  singleThreaded?: InputMaybe<Scalars['Boolean']['input']>;
85054
85329
  type?: InputMaybe<Array<InputMaybe<CommentType>>>;
85055
85330
  };
85056
- export declare type QueryCommentsDigestArgs = {
85057
- contentId: Scalars['ID']['input'];
85058
- contentType: SummaryType;
85059
- language?: InputMaybe<Scalars['String']['input']>;
85060
- responseType?: InputMaybe<CommentsDigestResponseType>;
85061
- };
85062
85331
  export declare type QueryConfluenceLegacy_AdminAnnouncementBannerSettingArgs = {
85063
85332
  id: Scalars['String']['input'];
85064
85333
  };
@@ -86011,6 +86280,9 @@ export declare type QueryConfluence_ContentWatchersUnfilteredArgs = {
86011
86280
  first?: InputMaybe<Scalars['Int']['input']>;
86012
86281
  offset?: InputMaybe<Scalars['Int']['input']>;
86013
86282
  };
86283
+ export declare type QueryConfluence_ContentsArgs = {
86284
+ ids: Array<InputMaybe<Scalars['ID']['input']>>;
86285
+ };
86014
86286
  export declare type QueryConfluence_ContentsForSimpleIdsArgs = {
86015
86287
  cloudId: Scalars['ID']['input'];
86016
86288
  ids: Array<InputMaybe<Scalars['ID']['input']>>;
@@ -86042,6 +86314,11 @@ export declare type QueryConfluence_HasDivergedFromDefaultSpacePermissionsArgs =
86042
86314
  cloudId: Scalars['ID']['input'];
86043
86315
  spaceKey: Scalars['String']['input'];
86044
86316
  };
86317
+ export declare type QueryConfluence_MacrosByIdsArgs = {
86318
+ cloudId: Scalars['ID']['input'];
86319
+ contentId: Scalars['ID']['input'];
86320
+ macroIds: Array<InputMaybe<Scalars['ID']['input']>>;
86321
+ };
86045
86322
  export declare type QueryConfluence_PdfExportDownloadLinkArgs = {
86046
86323
  cloudId: Scalars['ID']['input'];
86047
86324
  id: Scalars['ID']['input'];
@@ -86536,10 +86813,6 @@ export declare type QueryDeveloperLogAccessArgs = {
86536
86813
  export declare type QueryDevelopmentInformationArgs = {
86537
86814
  issueId: Scalars['ID']['input'];
86538
86815
  };
86539
- export declare type QueryDiscoverFeedArgs = {
86540
- after?: InputMaybe<Scalars['String']['input']>;
86541
- first?: InputMaybe<Scalars['Int']['input']>;
86542
- };
86543
86816
  export declare type QueryEditorConversionSettingsArgs = {
86544
86817
  spaceKey: Scalars['String']['input'];
86545
86818
  };
@@ -86608,11 +86881,13 @@ export declare type QueryFavoriteContentArgs = {
86608
86881
  };
86609
86882
  export declare type QueryFeedArgs = {
86610
86883
  after?: InputMaybe<Scalars['String']['input']>;
86884
+ cloudId?: InputMaybe<Scalars['String']['input']>;
86611
86885
  first?: InputMaybe<Scalars['Int']['input']>;
86612
86886
  sortBy?: InputMaybe<Scalars['String']['input']>;
86613
86887
  };
86614
86888
  export declare type QueryForYouFeedArgs = {
86615
86889
  after?: InputMaybe<Scalars['String']['input']>;
86890
+ cloudId?: InputMaybe<Scalars['String']['input']>;
86616
86891
  first?: InputMaybe<Scalars['Int']['input']>;
86617
86892
  };
86618
86893
  export declare type QueryFullHubArticleArgs = {
@@ -86637,44 +86912,59 @@ export declare type QueryFutureContentTypeMobileSupportArgs = {
86637
86912
  mobilePlatform: MobilePlatform;
86638
86913
  };
86639
86914
  export declare type QueryGetAiConfigArgs = {
86915
+ cloudId?: InputMaybe<Scalars['String']['input']>;
86640
86916
  product: Product;
86641
86917
  };
86642
86918
  export declare type QueryGetCommentReplySuggestionsArgs = {
86919
+ cloudId?: InputMaybe<Scalars['String']['input']>;
86643
86920
  commentId: Scalars['ID']['input'];
86644
86921
  language?: InputMaybe<Scalars['String']['input']>;
86645
86922
  };
86646
86923
  export declare type QueryGetCommentsSummaryArgs = {
86924
+ cloudId?: InputMaybe<Scalars['String']['input']>;
86647
86925
  commentsType: CommentsType;
86648
86926
  contentId: Scalars['ID']['input'];
86649
86927
  contentType: SummaryType;
86650
86928
  language?: InputMaybe<Scalars['String']['input']>;
86651
86929
  };
86930
+ export declare type QueryGetFeedUserConfigArgs = {
86931
+ cloudId?: InputMaybe<Scalars['String']['input']>;
86932
+ };
86652
86933
  export declare type QueryGetKeywordsArgs = {
86653
86934
  entityAri?: InputMaybe<Scalars['String']['input']>;
86654
86935
  textInput?: InputMaybe<NlpGetKeywordsTextInput>;
86655
86936
  };
86937
+ export declare type QueryGetRecommendedFeedUserConfigArgs = {
86938
+ cloudId?: InputMaybe<Scalars['String']['input']>;
86939
+ };
86656
86940
  export declare type QueryGetRecommendedLabelsArgs = {
86941
+ cloudId?: InputMaybe<Scalars['String']['input']>;
86657
86942
  entityId: Scalars['ID']['input'];
86658
86943
  entityType: Scalars['String']['input'];
86659
86944
  first?: InputMaybe<Scalars['Int']['input']>;
86660
86945
  spaceId: Scalars['ID']['input'];
86661
86946
  };
86662
86947
  export declare type QueryGetRecommendedPagesArgs = {
86948
+ cloudId?: InputMaybe<Scalars['String']['input']>;
86663
86949
  entityId: Scalars['ID']['input'];
86664
86950
  entityType: Scalars['String']['input'];
86665
86951
  experience: Scalars['String']['input'];
86666
86952
  };
86667
86953
  export declare type QueryGetRecommendedPagesSpaceStatusArgs = {
86954
+ cloudId?: InputMaybe<Scalars['String']['input']>;
86668
86955
  entityId: Scalars['ID']['input'];
86669
86956
  };
86670
86957
  export declare type QueryGetSmartContentFeatureArgs = {
86958
+ cloudId?: InputMaybe<Scalars['String']['input']>;
86671
86959
  contentId: Scalars['ID']['input'];
86672
86960
  };
86673
86961
  export declare type QueryGetSmartFeaturesArgs = {
86962
+ cloudId?: InputMaybe<Scalars['String']['input']>;
86674
86963
  input: Array<SmartFeaturesInput>;
86675
86964
  };
86676
86965
  export declare type QueryGetSummaryArgs = {
86677
86966
  backendExperiment?: InputMaybe<BackendExperiment>;
86967
+ cloudId?: InputMaybe<Scalars['String']['input']>;
86678
86968
  contentId: Scalars['ID']['input'];
86679
86969
  contentType: SummaryType;
86680
86970
  language?: InputMaybe<Scalars['String']['input']>;
@@ -86870,6 +87160,13 @@ export declare type QueryLabelSearchArgs = {
86870
87160
  searchText: Scalars['String']['input'];
86871
87161
  spaceKey?: InputMaybe<Scalars['String']['input']>;
86872
87162
  };
87163
+ export declare type QueryLatestKnowledgeGraphObjectArgs = {
87164
+ contentId: Scalars['ID']['input'];
87165
+ contentType: ConfluenceContentType;
87166
+ language?: InputMaybe<Scalars['String']['input']>;
87167
+ objectType: KnowledgeGraphObjectType;
87168
+ objectVersion?: Scalars['String']['input'];
87169
+ };
86873
87170
  export declare type QueryLookAndFeelArgs = {
86874
87171
  spaceKey?: InputMaybe<Scalars['String']['input']>;
86875
87172
  };
@@ -86926,6 +87223,13 @@ export declare type QueryMacroBodyRendererArgs = {
86926
87223
  mode?: InputMaybe<ContentRendererMode>;
86927
87224
  outputDeviceType?: InputMaybe<OutputDeviceType>;
86928
87225
  };
87226
+ export declare type QueryMacrosArgs = {
87227
+ after?: InputMaybe<Scalars['String']['input']>;
87228
+ blocklist?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
87229
+ contentId: Scalars['ID']['input'];
87230
+ first?: InputMaybe<Scalars['Int']['input']>;
87231
+ refetchToken?: InputMaybe<Scalars['String']['input']>;
87232
+ };
86929
87233
  export declare type QueryMarketplaceAppArgs = {
86930
87234
  appId: Scalars['ID']['input'];
86931
87235
  };
@@ -87207,7 +87511,6 @@ export declare type QueryRadar_PositionsSearchArgs = {
87207
87511
  after?: InputMaybe<Scalars['String']['input']>;
87208
87512
  before?: InputMaybe<Scalars['String']['input']>;
87209
87513
  cloudId: Scalars['ID']['input'];
87210
- fieldIdIsIn?: InputMaybe<Array<Scalars['ID']['input']>>;
87211
87514
  first?: InputMaybe<Scalars['Int']['input']>;
87212
87515
  last?: InputMaybe<Scalars['Int']['input']>;
87213
87516
  rql?: InputMaybe<Scalars['String']['input']>;
@@ -87263,6 +87566,11 @@ export declare type QueryReleaseNotesArgs = {
87263
87566
  export declare type QueryRenderedContentDumpArgs = {
87264
87567
  id: Scalars['ID']['input'];
87265
87568
  };
87569
+ export declare type QueryRenderedMacroArgs = {
87570
+ adf: Scalars['String']['input'];
87571
+ contentId: Scalars['ID']['input'];
87572
+ mode?: InputMaybe<MacroRendererMode>;
87573
+ };
87266
87574
  export declare type QueryRepositoryRelationshipsForDevOpsServiceArgs = {
87267
87575
  after?: InputMaybe<Scalars['String']['input']>;
87268
87576
  filter?: InputMaybe<DevOpsServiceAndRepositoryRelationshipFilter>;
@@ -87743,6 +88051,10 @@ export declare type RadarDateFieldValue = {
87743
88051
  isHidden?: Maybe<Scalars['Boolean']['output']>;
87744
88052
  value?: Maybe<Scalars['DateTime']['output']>;
87745
88053
  };
88054
+ export declare type RadarDeleteFocusAreaProposalChangesInput = {
88055
+ changeAri: Scalars['ID']['input'];
88056
+ positionAri: Scalars['ID']['input'];
88057
+ };
87746
88058
  export declare type RadarDynamicFilterOptions = RadarFilterOptions & {
87747
88059
  __typename?: 'RadarDynamicFilterOptions';
87748
88060
  functions: Array<RadarFunctionId>;
@@ -87960,6 +88272,12 @@ export declare type RadarPositionEdge = RadarEdge & {
87960
88272
  cursor: Scalars['String']['output'];
87961
88273
  node: RadarPosition;
87962
88274
  };
88275
+ export declare type RadarPositionProposalChangeInput = {
88276
+ changeProposalAri?: InputMaybe<Scalars['ID']['input']>;
88277
+ positionAri: Scalars['ID']['input'];
88278
+ sourceFocusAreaAri?: InputMaybe<Scalars['ID']['input']>;
88279
+ targetFocusAreaAri: Scalars['ID']['input'];
88280
+ };
87963
88281
  export declare type RadarPrincipalByResourceRole = {
87964
88282
  __typename?: 'RadarPrincipalByResourceRole';
87965
88283
  principals: Array<RadarGroupPrincipal>;
@@ -88392,6 +88710,14 @@ export declare type RemoveUserSpacePermissionsInput = {
88392
88710
  accountId: Scalars['String']['input'];
88393
88711
  spaceKey: Scalars['String']['input'];
88394
88712
  };
88713
+ export declare type RenderedMacro = {
88714
+ __typename?: 'RenderedMacro';
88715
+ macroBodyStorage?: Maybe<Scalars['String']['output']>;
88716
+ macroRenderedRepresentation?: Maybe<ContentRepresentationV2>;
88717
+ mediaToken?: Maybe<EmbeddedMediaTokenV2>;
88718
+ value?: Maybe<Scalars['String']['output']>;
88719
+ webResource?: Maybe<WebResourceDependenciesV2>;
88720
+ };
88395
88721
  export declare type ReopenCommentsMutationErrorExtension = MutationErrorExtension & {
88396
88722
  __typename?: 'ReopenCommentsMutationErrorExtension';
88397
88723
  commentId?: Maybe<Scalars['ID']['output']>;
@@ -93607,6 +93933,12 @@ export declare type SuperBatchWebResources = {
93607
93933
  tags?: Maybe<WebResourceTags>;
93608
93934
  uris?: Maybe<WebResourceUris>;
93609
93935
  };
93936
+ export declare type SuperBatchWebResourcesV2 = {
93937
+ __typename?: 'SuperBatchWebResourcesV2';
93938
+ metatags?: Maybe<Scalars['String']['output']>;
93939
+ tags?: Maybe<WebResourceTagsV2>;
93940
+ uris?: Maybe<WebResourceUrisV2>;
93941
+ };
93610
93942
  export declare type SupportInquiryEntitlement = {
93611
93943
  __typename?: 'SupportInquiryEntitlement';
93612
93944
  cloudURL?: Maybe<Scalars['String']['output']>;
@@ -100891,18 +101223,38 @@ export declare type WebResourceDependencies = {
100891
101223
  tags?: Maybe<WebResourceTags>;
100892
101224
  uris?: Maybe<WebResourceUris>;
100893
101225
  };
101226
+ export declare type WebResourceDependenciesV2 = {
101227
+ __typename?: 'WebResourceDependenciesV2';
101228
+ contexts: Array<Maybe<Scalars['String']['output']>>;
101229
+ keys: Array<Maybe<Scalars['String']['output']>>;
101230
+ superbatch?: Maybe<SuperBatchWebResourcesV2>;
101231
+ tags?: Maybe<WebResourceTagsV2>;
101232
+ uris?: Maybe<WebResourceUrisV2>;
101233
+ };
100894
101234
  export declare type WebResourceTags = {
100895
101235
  __typename?: 'WebResourceTags';
100896
101236
  css?: Maybe<Scalars['String']['output']>;
100897
101237
  data?: Maybe<Scalars['String']['output']>;
100898
101238
  js?: Maybe<Scalars['String']['output']>;
100899
101239
  };
101240
+ export declare type WebResourceTagsV2 = {
101241
+ __typename?: 'WebResourceTagsV2';
101242
+ css?: Maybe<Scalars['String']['output']>;
101243
+ data?: Maybe<Scalars['String']['output']>;
101244
+ js?: Maybe<Scalars['String']['output']>;
101245
+ };
100900
101246
  export declare type WebResourceUris = {
100901
101247
  __typename?: 'WebResourceUris';
100902
101248
  css?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
100903
101249
  data?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
100904
101250
  js?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
100905
101251
  };
101252
+ export declare type WebResourceUrisV2 = {
101253
+ __typename?: 'WebResourceUrisV2';
101254
+ css?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
101255
+ data?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
101256
+ js?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
101257
+ };
100906
101258
  export declare type WebSection = {
100907
101259
  __typename?: 'WebSection';
100908
101260
  cacheKey?: Maybe<Scalars['String']['output']>;