@forge/cli-shared 6.9.0 → 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
  };
@@ -62072,6 +62240,10 @@ export declare type JiraJqlPlainTextFieldValue = JiraJqlFieldValue & {
62072
62240
  isSelected?: Maybe<Scalars['Boolean']['output']>;
62073
62241
  jqlTerm: Scalars['String']['output'];
62074
62242
  };
62243
+ export declare type JiraJqlPlanInput = {
62244
+ planId: Scalars['Long']['input'];
62245
+ scenarioId?: InputMaybe<Scalars['Long']['input']>;
62246
+ };
62075
62247
  export declare type JiraJqlPriorityFieldValue = JiraJqlFieldValue & {
62076
62248
  __typename?: 'JiraJqlPriorityFieldValue';
62077
62249
  displayName: Scalars['String']['output'];
@@ -62129,6 +62301,7 @@ export declare type JiraJqlResolutionFieldValue = JiraJqlFieldValue & {
62129
62301
  };
62130
62302
  export declare type JiraJqlScopeInput = {
62131
62303
  board?: InputMaybe<JiraJqlBoardInput>;
62304
+ plan?: InputMaybe<JiraJqlPlanInput>;
62132
62305
  };
62133
62306
  export declare type JiraJqlSearchTemplate = {
62134
62307
  __typename?: 'JiraJqlSearchTemplate';
@@ -62286,6 +62459,10 @@ export declare type JiraLabelEdge = {
62286
62459
  cursor: Scalars['String']['output'];
62287
62460
  node?: Maybe<JiraLabel>;
62288
62461
  };
62462
+ export declare type JiraLabelProperties = {
62463
+ color?: InputMaybe<JiraOptionColorInput>;
62464
+ name: Scalars['String']['input'];
62465
+ };
62289
62466
  export declare type JiraLabelsField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
62290
62467
  __typename?: 'JiraLabelsField';
62291
62468
  aliasFieldId?: Maybe<Scalars['ID']['output']>;
@@ -62327,6 +62504,7 @@ export declare type JiraLabelsFieldInput = {
62327
62504
  labels?: InputMaybe<Array<JiraLabelsInput>>;
62328
62505
  };
62329
62506
  export declare type JiraLabelsFieldOperationInput = {
62507
+ labelProperties?: InputMaybe<Array<JiraLabelProperties>>;
62330
62508
  labels: Array<Scalars['String']['input']>;
62331
62509
  operation: JiraMultiValueFieldOperations;
62332
62510
  };
@@ -64112,6 +64290,58 @@ export declare type JiraOption = JiraSelectableValue & Node & {
64112
64290
  selectableUrl?: Maybe<Scalars['URL']['output']>;
64113
64291
  value?: Maybe<Scalars['String']['output']>;
64114
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
+ }
64115
64345
  export declare type JiraOptionConnection = {
64116
64346
  __typename?: 'JiraOptionConnection';
64117
64347
  edges?: Maybe<Array<Maybe<JiraOptionEdge>>>;
@@ -64526,6 +64756,7 @@ export declare type JiraPlanMultiScenarioFeatureMutationInput = {
64526
64756
  };
64527
64757
  export declare type JiraPlanReleaseFeatureMutationInput = {
64528
64758
  enabled: Scalars['Boolean']['input'];
64759
+ hasConsentToDeleteUnsavedChanges?: InputMaybe<Scalars['Boolean']['input']>;
64529
64760
  planId: Scalars['ID']['input'];
64530
64761
  };
64531
64762
  export declare enum JiraPlanStatus {
@@ -64696,6 +64927,7 @@ export declare type JiraPlaybookStepRun = Node & {
64696
64927
  __typename?: 'JiraPlaybookStepRun';
64697
64928
  completedAt?: Maybe<Scalars['DateTime']['output']>;
64698
64929
  id: Scalars['ID']['output'];
64930
+ issue?: Maybe<JiraIssue>;
64699
64931
  playbookId?: Maybe<Scalars['ID']['output']>;
64700
64932
  playbookName?: Maybe<Scalars['String']['output']>;
64701
64933
  ruleId?: Maybe<Scalars['String']['output']>;
@@ -73808,6 +74040,17 @@ export declare type KnowledgeDiscoveryUsers = {
73808
74040
  __typename?: 'KnowledgeDiscoveryUsers';
73809
74041
  users?: Maybe<Array<Maybe<KnowledgeDiscoverySearchUser>>>;
73810
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
+ }
73811
74054
  export declare type KnownUser = Person & {
73812
74055
  __typename?: 'KnownUser';
73813
74056
  accountId?: Maybe<Scalars['String']['output']>;
@@ -74434,6 +74677,16 @@ export declare enum LpSortOrder {
74434
74677
  Asc = "ASC",
74435
74678
  Desc = "DESC"
74436
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
+ };
74437
74690
  export declare type MacroBody = {
74438
74691
  __typename?: 'MacroBody';
74439
74692
  mediaToken?: Maybe<EmbeddedMediaToken>;
@@ -74441,6 +74694,22 @@ export declare type MacroBody = {
74441
74694
  value?: Maybe<Scalars['String']['output']>;
74442
74695
  webResourceDependencies?: Maybe<WebResourceDependencies>;
74443
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
+ }
74444
74713
  export declare type MapOfStringToBoolean = {
74445
74714
  __typename?: 'MapOfStringToBoolean';
74446
74715
  key?: Maybe<Scalars['String']['output']>;
@@ -75073,7 +75342,8 @@ export declare type MarketplaceConsoleEditionsActivationResponse = MarketplaceCo
75073
75342
  export declare enum MarketplaceConsoleEditionsActivationStatus {
75074
75343
  Approved = "APPROVED",
75075
75344
  Pending = "PENDING",
75076
- Rejected = "REJECTED"
75345
+ Rejected = "REJECTED",
75346
+ Uninitiated = "UNINITIATED"
75077
75347
  }
75078
75348
  export declare type MarketplaceConsoleEditionsInput = {
75079
75349
  appKey?: InputMaybe<Scalars['String']['input']>;
@@ -75272,6 +75542,7 @@ export declare type MarketplaceConsoleMakeAppVersionPublicRequest = {
75272
75542
  appKey: Scalars['ID']['input'];
75273
75543
  appStatusPageUrl?: InputMaybe<Scalars['String']['input']>;
75274
75544
  binaryUrl?: InputMaybe<Scalars['String']['input']>;
75545
+ bonTermsSupported?: InputMaybe<Scalars['Boolean']['input']>;
75275
75546
  buildNumber: Scalars['ID']['input'];
75276
75547
  categories?: InputMaybe<Array<Scalars['String']['input']>>;
75277
75548
  communityEnabled?: InputMaybe<Scalars['Boolean']['input']>;
@@ -75295,6 +75566,7 @@ export declare type MarketplaceConsoleMakeAppVersionPublicRequest = {
75295
75566
  marketingLabels?: InputMaybe<Array<Scalars['String']['input']>>;
75296
75567
  moreDetails?: InputMaybe<Scalars['String']['input']>;
75297
75568
  name?: InputMaybe<Scalars['String']['input']>;
75569
+ partnerSpecificTerms?: InputMaybe<Scalars['String']['input']>;
75298
75570
  paymentModel?: InputMaybe<MarketplaceConsolePaymentModel>;
75299
75571
  privacyUrl?: InputMaybe<Scalars['String']['input']>;
75300
75572
  productId: Scalars['ID']['input'];
@@ -79554,7 +79826,6 @@ export declare type Mutation = {
79554
79826
  notifyUsersOnFirstView?: Maybe<NotificationResponsePayload>;
79555
79827
  openUpSpacePermissions?: Maybe<Scalars['Boolean']['output']>;
79556
79828
  partnerEarlyAccess?: Maybe<PeapMutationApi>;
79557
- patchCommentsSummary?: Maybe<PatchCommentsSummaryPayload>;
79558
79829
  planModeCardCreate?: Maybe<CreateCardsOutput>;
79559
79830
  planModeCardMove?: Maybe<MoveCardOutput>;
79560
79831
  playbook_createJiraPlaybook?: Maybe<CreateJiraPlaybookPayload>;
@@ -79570,10 +79841,12 @@ export declare type Mutation = {
79570
79841
  publishReleaseNote: ContentPlatformReleaseNote;
79571
79842
  radar_createCustomField?: Maybe<RadarMutationResponse>;
79572
79843
  radar_createRoleAssignment?: Maybe<RadarMutationResponse>;
79844
+ radar_deleteFocusAreaProposalChanges?: Maybe<RadarMutationResponse>;
79573
79845
  radar_deleteRoleAssignment?: Maybe<RadarMutationResponse>;
79574
79846
  radar_updateConnector?: Maybe<RadarConnector>;
79575
79847
  radar_updateFieldSettings?: Maybe<RadarMutationResponse>;
79576
79848
  radar_updateFocusAreaMappings?: Maybe<RadarMutationResponse>;
79849
+ radar_updateFocusAreaProposalChanges?: Maybe<RadarMutationResponse>;
79577
79850
  radar_updateWorkspaceSettings?: Maybe<RadarMutationResponse>;
79578
79851
  rankCardParent?: Maybe<GenericMutationResponse>;
79579
79852
  rankColumn?: Maybe<RankColumnOutput>;
@@ -80956,9 +81229,6 @@ export declare type MutationNotifyUsersOnFirstViewArgs = {
80956
81229
  export declare type MutationOpenUpSpacePermissionsArgs = {
80957
81230
  spaceKey: Scalars['String']['input'];
80958
81231
  };
80959
- export declare type MutationPatchCommentsSummaryArgs = {
80960
- input: PatchCommentsSummaryInput;
80961
- };
80962
81232
  export declare type MutationPlanModeCardCreateArgs = {
80963
81233
  input?: InputMaybe<PlanModeCardCreateInput>;
80964
81234
  };
@@ -81005,6 +81275,10 @@ export declare type MutationRadar_CreateRoleAssignmentArgs = {
81005
81275
  cloudId: Scalars['ID']['input'];
81006
81276
  input: RadarRoleAssignmentRequest;
81007
81277
  };
81278
+ export declare type MutationRadar_DeleteFocusAreaProposalChangesArgs = {
81279
+ cloudId: Scalars['ID']['input'];
81280
+ input: Array<RadarDeleteFocusAreaProposalChangesInput>;
81281
+ };
81008
81282
  export declare type MutationRadar_DeleteRoleAssignmentArgs = {
81009
81283
  cloudId: Scalars['ID']['input'];
81010
81284
  input: RadarRoleAssignmentRequest;
@@ -81021,6 +81295,10 @@ export declare type MutationRadar_UpdateFocusAreaMappingsArgs = {
81021
81295
  cloudId: Scalars['ID']['input'];
81022
81296
  input: Array<RadarFocusAreaMappingsInput>;
81023
81297
  };
81298
+ export declare type MutationRadar_UpdateFocusAreaProposalChangesArgs = {
81299
+ cloudId: Scalars['ID']['input'];
81300
+ input: Array<RadarPositionProposalChangeInput>;
81301
+ };
81024
81302
  export declare type MutationRadar_UpdateWorkspaceSettingsArgs = {
81025
81303
  cloudId: Scalars['ID']['input'];
81026
81304
  input: RadarWorkspaceSettingsInput;
@@ -81161,6 +81439,7 @@ export declare type MutationSetExternalAuthCredentialsArgs = {
81161
81439
  input: SetExternalAuthCredentialsInput;
81162
81440
  };
81163
81441
  export declare type MutationSetFeedUserConfigArgs = {
81442
+ cloudId?: InputMaybe<Scalars['String']['input']>;
81164
81443
  input: SetFeedUserConfigInput;
81165
81444
  };
81166
81445
  export declare type MutationSetIssueMediaVisibilityArgs = {
@@ -81182,9 +81461,11 @@ export declare type MutationSetPublicLinkDefaultSpaceStatusArgs = {
81182
81461
  status: PublicLinkDefaultSpaceStatus;
81183
81462
  };
81184
81463
  export declare type MutationSetRecommendedPagesSpaceStatusArgs = {
81464
+ cloudId?: InputMaybe<Scalars['String']['input']>;
81185
81465
  input: SetRecommendedPagesSpaceStatusInput;
81186
81466
  };
81187
81467
  export declare type MutationSetRecommendedPagesStatusArgs = {
81468
+ cloudId?: InputMaybe<Scalars['String']['input']>;
81188
81469
  input: SetRecommendedPagesStatusInput;
81189
81470
  };
81190
81471
  export declare type MutationSetRelevantFeedFiltersArgs = {
@@ -81455,6 +81736,7 @@ export declare type MutationUpdateTemplatePropertySetArgs = {
81455
81736
  };
81456
81737
  export declare type MutationUpdateTitleArgs = {
81457
81738
  contentId: Scalars['ID']['input'];
81739
+ draft?: InputMaybe<Scalars['Boolean']['input']>;
81458
81740
  title?: InputMaybe<Scalars['String']['input']>;
81459
81741
  };
81460
81742
  export declare type MutationUpdateUserPreferencesArgs = {
@@ -82400,6 +82682,13 @@ export declare type PageInfo = {
82400
82682
  hasPreviousPage: Scalars['Boolean']['output'];
82401
82683
  startCursor?: Maybe<Scalars['String']['output']>;
82402
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
+ };
82403
82692
  export declare type PageInput = {
82404
82693
  body?: InputMaybe<PageBodyInput>;
82405
82694
  parentId?: InputMaybe<Scalars['ID']['input']>;
@@ -83003,20 +83292,6 @@ export declare type PartnerUncollectibleDestination = {
83003
83292
  __typename?: 'PartnerUncollectibleDestination';
83004
83293
  offeringKey: Scalars['ID']['output'];
83005
83294
  };
83006
- export declare type PatchCommentsSummaryInput = {
83007
- commentsType: CommentsType;
83008
- contentId: Scalars['ID']['input'];
83009
- contentType: SummaryType;
83010
- language?: InputMaybe<Scalars['String']['input']>;
83011
- };
83012
- export declare type PatchCommentsSummaryPayload = {
83013
- __typename?: 'PatchCommentsSummaryPayload';
83014
- contentId: Scalars['ID']['output'];
83015
- errors?: Maybe<Array<MutationError>>;
83016
- language: Scalars['String']['output'];
83017
- summary: Scalars['String']['output'];
83018
- summaryId: Scalars['ID']['output'];
83019
- };
83020
83295
  export declare enum PathType {
83021
83296
  Absolute = "ABSOLUTE",
83022
83297
  Relative = "RELATIVE",
@@ -83779,14 +84054,6 @@ export declare enum PrincipalType {
83779
84054
  Customer = "CUSTOMER",
83780
84055
  Unlicensed = "UNLICENSED"
83781
84056
  }
83782
- export declare type PrioritizedOpenComments = {
83783
- __typename?: 'PrioritizedOpenComments';
83784
- actionNeeded: Scalars['String']['output'];
83785
- recap: Scalars['String']['output'];
83786
- referenceCommentIds: Array<Scalars['ID']['output']>;
83787
- title: Scalars['String']['output'];
83788
- why: Scalars['String']['output'];
83789
- };
83790
84057
  export declare type Privacy = {
83791
84058
  __typename?: 'Privacy';
83792
84059
  ccpa?: Maybe<CcpaDetails>;
@@ -84141,7 +84408,6 @@ export declare type Query = {
84141
84408
  collabDraft?: Maybe<CollabDraft>;
84142
84409
  collabToken?: Maybe<CollabTokenResponse>;
84143
84410
  comments?: Maybe<PaginatedCommentList>;
84144
- commentsDigest?: Maybe<CommentsDigestResponse>;
84145
84411
  compass?: Maybe<CompassCatalogQueryApi>;
84146
84412
  confluence?: Maybe<ConfluenceQueryApi>;
84147
84413
  confluenceLegacy_abTestCohorts?: Maybe<Scalars['String']['output']>;
@@ -84367,12 +84633,14 @@ export declare type Query = {
84367
84633
  confluence_calendarPreference?: Maybe<ConfluenceCalendarPreference>;
84368
84634
  confluence_calendarTimezones?: Maybe<ConfluenceCalendarTimezones>;
84369
84635
  confluence_contentWatchersUnfiltered?: Maybe<PaginatedPersonList>;
84636
+ confluence_contents?: Maybe<Array<Maybe<Content>>>;
84370
84637
  confluence_contentsForSimpleIds?: Maybe<Array<Maybe<Content>>>;
84371
84638
  confluence_deletedUserAccountIds?: Maybe<ConfluenceDeletedUser>;
84372
84639
  confluence_empty?: Maybe<Scalars['String']['output']>;
84373
84640
  confluence_externalCollaboratorsByCriteria?: Maybe<ConfluencePersonConnection>;
84374
84641
  confluence_hasClearPermissionForSpace?: Maybe<Scalars['Boolean']['output']>;
84375
84642
  confluence_hasDivergedFromDefaultSpacePermissions?: Maybe<Scalars['Boolean']['output']>;
84643
+ confluence_macrosByIds?: Maybe<Array<Maybe<Macro>>>;
84376
84644
  confluence_mutationsPlaceholderQuery?: Maybe<Scalars['Boolean']['output']>;
84377
84645
  confluence_pdfExportDownloadLink?: Maybe<ConfluencePdfExportDownloadLink>;
84378
84646
  confluence_pdfExportTask?: Maybe<ConfluencePdfExportTask>;
@@ -84478,7 +84746,6 @@ export declare type Query = {
84478
84746
  developerLogAccess?: Maybe<Array<Maybe<DeveloperLogAccessResult>>>;
84479
84747
  developmentInformation?: Maybe<IssueDevOpsDevelopmentInformation>;
84480
84748
  diagnostics?: Maybe<Scalars['JSON']['output']>;
84481
- discoverFeed?: Maybe<PaginatedFeed>;
84482
84749
  dvcs?: Maybe<DvcsQuery>;
84483
84750
  echo?: Maybe<Scalars['String']['output']>;
84484
84751
  ecosystem?: Maybe<EcosystemQuery>;
@@ -84590,6 +84857,7 @@ export declare type Query = {
84590
84857
  knowledgeBase_searchArticles?: Maybe<KnowledgeBaseArticleSearchResponse>;
84591
84858
  knowledgeDiscovery?: Maybe<KnowledgeDiscoveryQueryApi>;
84592
84859
  labelSearch?: Maybe<LabelSearchResults>;
84860
+ latestKnowledgeGraphObject?: Maybe<KnowledgeGraphObjectResponse>;
84593
84861
  license?: Maybe<License>;
84594
84862
  localStorage?: Maybe<LocalStorage>;
84595
84863
  lookAndFeel?: Maybe<LookAndFeelSettings>;
@@ -84611,6 +84879,7 @@ export declare type Query = {
84611
84879
  loom_videos?: Maybe<Array<Maybe<LoomVideo>>>;
84612
84880
  lpLearnerData?: Maybe<LpLearnerData>;
84613
84881
  macroBodyRenderer?: Maybe<MacroBody>;
84882
+ macros?: Maybe<MacroConnection>;
84614
84883
  marketplaceApp?: Maybe<MarketplaceApp>;
84615
84884
  marketplaceAppByCloudAppId?: Maybe<MarketplaceApp>;
84616
84885
  marketplaceAppByKey?: Maybe<MarketplaceApp>;
@@ -84705,6 +84974,7 @@ export declare type Query = {
84705
84974
  releaseNote?: Maybe<ContentPlatformReleaseNote>;
84706
84975
  releaseNotes: ContentPlatformReleaseNotesConnection;
84707
84976
  renderedContentDump?: Maybe<HtmlDocument>;
84977
+ renderedMacro?: Maybe<RenderedMacro>;
84708
84978
  repositoryRelationshipsForDevOpsService?: Maybe<DevOpsServiceAndRepositoryRelationshipConnection>;
84709
84979
  roadmaps?: Maybe<RoadmapsQuery>;
84710
84980
  sandbox: SandboxQuery;
@@ -84997,16 +85267,19 @@ export declare type QueryCanvasTokenArgs = {
84997
85267
  contentId: Scalars['ID']['input'];
84998
85268
  };
84999
85269
  export declare type QueryCatchupEditMetadataForContentArgs = {
85270
+ cloudId?: InputMaybe<Scalars['String']['input']>;
85000
85271
  contentId: Scalars['ID']['input'];
85001
85272
  contentType: CatchupContentType;
85002
85273
  endTimeMs: Scalars['Long']['input'];
85003
85274
  updateType?: InputMaybe<CatchupOverviewUpdateType>;
85004
85275
  };
85005
85276
  export declare type QueryCatchupGetLastViewedTimeArgs = {
85277
+ cloudId?: InputMaybe<Scalars['String']['input']>;
85006
85278
  contentId: Scalars['ID']['input'];
85007
85279
  contentType: CatchupContentType;
85008
85280
  };
85009
85281
  export declare type QueryCatchupVersionDiffMetadataForContentArgs = {
85282
+ cloudId?: InputMaybe<Scalars['String']['input']>;
85010
85283
  contentId: Scalars['ID']['input'];
85011
85284
  contentType: CatchupContentType;
85012
85285
  originalContentVersion: Scalars['Int']['input'];
@@ -85055,12 +85328,6 @@ export declare type QueryCommentsArgs = {
85055
85328
  singleThreaded?: InputMaybe<Scalars['Boolean']['input']>;
85056
85329
  type?: InputMaybe<Array<InputMaybe<CommentType>>>;
85057
85330
  };
85058
- export declare type QueryCommentsDigestArgs = {
85059
- contentId: Scalars['ID']['input'];
85060
- contentType: SummaryType;
85061
- language?: InputMaybe<Scalars['String']['input']>;
85062
- responseType?: InputMaybe<CommentsDigestResponseType>;
85063
- };
85064
85331
  export declare type QueryConfluenceLegacy_AdminAnnouncementBannerSettingArgs = {
85065
85332
  id: Scalars['String']['input'];
85066
85333
  };
@@ -86013,6 +86280,9 @@ export declare type QueryConfluence_ContentWatchersUnfilteredArgs = {
86013
86280
  first?: InputMaybe<Scalars['Int']['input']>;
86014
86281
  offset?: InputMaybe<Scalars['Int']['input']>;
86015
86282
  };
86283
+ export declare type QueryConfluence_ContentsArgs = {
86284
+ ids: Array<InputMaybe<Scalars['ID']['input']>>;
86285
+ };
86016
86286
  export declare type QueryConfluence_ContentsForSimpleIdsArgs = {
86017
86287
  cloudId: Scalars['ID']['input'];
86018
86288
  ids: Array<InputMaybe<Scalars['ID']['input']>>;
@@ -86044,6 +86314,11 @@ export declare type QueryConfluence_HasDivergedFromDefaultSpacePermissionsArgs =
86044
86314
  cloudId: Scalars['ID']['input'];
86045
86315
  spaceKey: Scalars['String']['input'];
86046
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
+ };
86047
86322
  export declare type QueryConfluence_PdfExportDownloadLinkArgs = {
86048
86323
  cloudId: Scalars['ID']['input'];
86049
86324
  id: Scalars['ID']['input'];
@@ -86538,10 +86813,6 @@ export declare type QueryDeveloperLogAccessArgs = {
86538
86813
  export declare type QueryDevelopmentInformationArgs = {
86539
86814
  issueId: Scalars['ID']['input'];
86540
86815
  };
86541
- export declare type QueryDiscoverFeedArgs = {
86542
- after?: InputMaybe<Scalars['String']['input']>;
86543
- first?: InputMaybe<Scalars['Int']['input']>;
86544
- };
86545
86816
  export declare type QueryEditorConversionSettingsArgs = {
86546
86817
  spaceKey: Scalars['String']['input'];
86547
86818
  };
@@ -86610,11 +86881,13 @@ export declare type QueryFavoriteContentArgs = {
86610
86881
  };
86611
86882
  export declare type QueryFeedArgs = {
86612
86883
  after?: InputMaybe<Scalars['String']['input']>;
86884
+ cloudId?: InputMaybe<Scalars['String']['input']>;
86613
86885
  first?: InputMaybe<Scalars['Int']['input']>;
86614
86886
  sortBy?: InputMaybe<Scalars['String']['input']>;
86615
86887
  };
86616
86888
  export declare type QueryForYouFeedArgs = {
86617
86889
  after?: InputMaybe<Scalars['String']['input']>;
86890
+ cloudId?: InputMaybe<Scalars['String']['input']>;
86618
86891
  first?: InputMaybe<Scalars['Int']['input']>;
86619
86892
  };
86620
86893
  export declare type QueryFullHubArticleArgs = {
@@ -86639,44 +86912,59 @@ export declare type QueryFutureContentTypeMobileSupportArgs = {
86639
86912
  mobilePlatform: MobilePlatform;
86640
86913
  };
86641
86914
  export declare type QueryGetAiConfigArgs = {
86915
+ cloudId?: InputMaybe<Scalars['String']['input']>;
86642
86916
  product: Product;
86643
86917
  };
86644
86918
  export declare type QueryGetCommentReplySuggestionsArgs = {
86919
+ cloudId?: InputMaybe<Scalars['String']['input']>;
86645
86920
  commentId: Scalars['ID']['input'];
86646
86921
  language?: InputMaybe<Scalars['String']['input']>;
86647
86922
  };
86648
86923
  export declare type QueryGetCommentsSummaryArgs = {
86924
+ cloudId?: InputMaybe<Scalars['String']['input']>;
86649
86925
  commentsType: CommentsType;
86650
86926
  contentId: Scalars['ID']['input'];
86651
86927
  contentType: SummaryType;
86652
86928
  language?: InputMaybe<Scalars['String']['input']>;
86653
86929
  };
86930
+ export declare type QueryGetFeedUserConfigArgs = {
86931
+ cloudId?: InputMaybe<Scalars['String']['input']>;
86932
+ };
86654
86933
  export declare type QueryGetKeywordsArgs = {
86655
86934
  entityAri?: InputMaybe<Scalars['String']['input']>;
86656
86935
  textInput?: InputMaybe<NlpGetKeywordsTextInput>;
86657
86936
  };
86937
+ export declare type QueryGetRecommendedFeedUserConfigArgs = {
86938
+ cloudId?: InputMaybe<Scalars['String']['input']>;
86939
+ };
86658
86940
  export declare type QueryGetRecommendedLabelsArgs = {
86941
+ cloudId?: InputMaybe<Scalars['String']['input']>;
86659
86942
  entityId: Scalars['ID']['input'];
86660
86943
  entityType: Scalars['String']['input'];
86661
86944
  first?: InputMaybe<Scalars['Int']['input']>;
86662
86945
  spaceId: Scalars['ID']['input'];
86663
86946
  };
86664
86947
  export declare type QueryGetRecommendedPagesArgs = {
86948
+ cloudId?: InputMaybe<Scalars['String']['input']>;
86665
86949
  entityId: Scalars['ID']['input'];
86666
86950
  entityType: Scalars['String']['input'];
86667
86951
  experience: Scalars['String']['input'];
86668
86952
  };
86669
86953
  export declare type QueryGetRecommendedPagesSpaceStatusArgs = {
86954
+ cloudId?: InputMaybe<Scalars['String']['input']>;
86670
86955
  entityId: Scalars['ID']['input'];
86671
86956
  };
86672
86957
  export declare type QueryGetSmartContentFeatureArgs = {
86958
+ cloudId?: InputMaybe<Scalars['String']['input']>;
86673
86959
  contentId: Scalars['ID']['input'];
86674
86960
  };
86675
86961
  export declare type QueryGetSmartFeaturesArgs = {
86962
+ cloudId?: InputMaybe<Scalars['String']['input']>;
86676
86963
  input: Array<SmartFeaturesInput>;
86677
86964
  };
86678
86965
  export declare type QueryGetSummaryArgs = {
86679
86966
  backendExperiment?: InputMaybe<BackendExperiment>;
86967
+ cloudId?: InputMaybe<Scalars['String']['input']>;
86680
86968
  contentId: Scalars['ID']['input'];
86681
86969
  contentType: SummaryType;
86682
86970
  language?: InputMaybe<Scalars['String']['input']>;
@@ -86872,6 +87160,13 @@ export declare type QueryLabelSearchArgs = {
86872
87160
  searchText: Scalars['String']['input'];
86873
87161
  spaceKey?: InputMaybe<Scalars['String']['input']>;
86874
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
+ };
86875
87170
  export declare type QueryLookAndFeelArgs = {
86876
87171
  spaceKey?: InputMaybe<Scalars['String']['input']>;
86877
87172
  };
@@ -86928,6 +87223,13 @@ export declare type QueryMacroBodyRendererArgs = {
86928
87223
  mode?: InputMaybe<ContentRendererMode>;
86929
87224
  outputDeviceType?: InputMaybe<OutputDeviceType>;
86930
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
+ };
86931
87233
  export declare type QueryMarketplaceAppArgs = {
86932
87234
  appId: Scalars['ID']['input'];
86933
87235
  };
@@ -87209,7 +87511,6 @@ export declare type QueryRadar_PositionsSearchArgs = {
87209
87511
  after?: InputMaybe<Scalars['String']['input']>;
87210
87512
  before?: InputMaybe<Scalars['String']['input']>;
87211
87513
  cloudId: Scalars['ID']['input'];
87212
- fieldIdIsIn?: InputMaybe<Array<Scalars['ID']['input']>>;
87213
87514
  first?: InputMaybe<Scalars['Int']['input']>;
87214
87515
  last?: InputMaybe<Scalars['Int']['input']>;
87215
87516
  rql?: InputMaybe<Scalars['String']['input']>;
@@ -87265,6 +87566,11 @@ export declare type QueryReleaseNotesArgs = {
87265
87566
  export declare type QueryRenderedContentDumpArgs = {
87266
87567
  id: Scalars['ID']['input'];
87267
87568
  };
87569
+ export declare type QueryRenderedMacroArgs = {
87570
+ adf: Scalars['String']['input'];
87571
+ contentId: Scalars['ID']['input'];
87572
+ mode?: InputMaybe<MacroRendererMode>;
87573
+ };
87268
87574
  export declare type QueryRepositoryRelationshipsForDevOpsServiceArgs = {
87269
87575
  after?: InputMaybe<Scalars['String']['input']>;
87270
87576
  filter?: InputMaybe<DevOpsServiceAndRepositoryRelationshipFilter>;
@@ -87745,6 +88051,10 @@ export declare type RadarDateFieldValue = {
87745
88051
  isHidden?: Maybe<Scalars['Boolean']['output']>;
87746
88052
  value?: Maybe<Scalars['DateTime']['output']>;
87747
88053
  };
88054
+ export declare type RadarDeleteFocusAreaProposalChangesInput = {
88055
+ changeAri: Scalars['ID']['input'];
88056
+ positionAri: Scalars['ID']['input'];
88057
+ };
87748
88058
  export declare type RadarDynamicFilterOptions = RadarFilterOptions & {
87749
88059
  __typename?: 'RadarDynamicFilterOptions';
87750
88060
  functions: Array<RadarFunctionId>;
@@ -87962,6 +88272,12 @@ export declare type RadarPositionEdge = RadarEdge & {
87962
88272
  cursor: Scalars['String']['output'];
87963
88273
  node: RadarPosition;
87964
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
+ };
87965
88281
  export declare type RadarPrincipalByResourceRole = {
87966
88282
  __typename?: 'RadarPrincipalByResourceRole';
87967
88283
  principals: Array<RadarGroupPrincipal>;
@@ -88394,6 +88710,14 @@ export declare type RemoveUserSpacePermissionsInput = {
88394
88710
  accountId: Scalars['String']['input'];
88395
88711
  spaceKey: Scalars['String']['input'];
88396
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
+ };
88397
88721
  export declare type ReopenCommentsMutationErrorExtension = MutationErrorExtension & {
88398
88722
  __typename?: 'ReopenCommentsMutationErrorExtension';
88399
88723
  commentId?: Maybe<Scalars['ID']['output']>;
@@ -93609,6 +93933,12 @@ export declare type SuperBatchWebResources = {
93609
93933
  tags?: Maybe<WebResourceTags>;
93610
93934
  uris?: Maybe<WebResourceUris>;
93611
93935
  };
93936
+ export declare type SuperBatchWebResourcesV2 = {
93937
+ __typename?: 'SuperBatchWebResourcesV2';
93938
+ metatags?: Maybe<Scalars['String']['output']>;
93939
+ tags?: Maybe<WebResourceTagsV2>;
93940
+ uris?: Maybe<WebResourceUrisV2>;
93941
+ };
93612
93942
  export declare type SupportInquiryEntitlement = {
93613
93943
  __typename?: 'SupportInquiryEntitlement';
93614
93944
  cloudURL?: Maybe<Scalars['String']['output']>;
@@ -100893,18 +101223,38 @@ export declare type WebResourceDependencies = {
100893
101223
  tags?: Maybe<WebResourceTags>;
100894
101224
  uris?: Maybe<WebResourceUris>;
100895
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
+ };
100896
101234
  export declare type WebResourceTags = {
100897
101235
  __typename?: 'WebResourceTags';
100898
101236
  css?: Maybe<Scalars['String']['output']>;
100899
101237
  data?: Maybe<Scalars['String']['output']>;
100900
101238
  js?: Maybe<Scalars['String']['output']>;
100901
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
+ };
100902
101246
  export declare type WebResourceUris = {
100903
101247
  __typename?: 'WebResourceUris';
100904
101248
  css?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
100905
101249
  data?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
100906
101250
  js?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
100907
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
+ };
100908
101258
  export declare type WebSection = {
100909
101259
  __typename?: 'WebSection';
100910
101260
  cacheKey?: Maybe<Scalars['String']['output']>;