@forge/cli-shared 5.0.1-next.3 → 5.0.1

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.
@@ -557,6 +557,7 @@ export declare enum ApiGroup {
557
557
  CommerceSharedApi = "COMMERCE_SHARED_API",
558
558
  Compass = "COMPASS",
559
559
  Confluence = "CONFLUENCE",
560
+ ConfluenceV2 = "CONFLUENCE_V2",
560
561
  ContentPlatformApi = "CONTENT_PLATFORM_API",
561
562
  CustomerService = "CUSTOMER_SERVICE",
562
563
  DevopsAriGraph = "DEVOPS_ARI_GRAPH",
@@ -1702,6 +1703,32 @@ export declare type AttachEventSourcePayload = Payload & {
1702
1703
  errors?: Maybe<Array<MutationError>>;
1703
1704
  success: Scalars['Boolean']['output'];
1704
1705
  };
1706
+ export declare enum AttachmentStatusV2 {
1707
+ Any = "any",
1708
+ Archived = "archived",
1709
+ Current = "current",
1710
+ Deleted = "deleted",
1711
+ Draft = "draft",
1712
+ Historical = "historical",
1713
+ Trashed = "trashed"
1714
+ }
1715
+ export declare type AttachmentV2 = Node & {
1716
+ __typename?: 'AttachmentV2';
1717
+ blogPostId?: Maybe<Scalars['ID']['output']>;
1718
+ comment?: Maybe<Scalars['String']['output']>;
1719
+ customContentId?: Maybe<Scalars['ID']['output']>;
1720
+ downloadLink?: Maybe<Scalars['String']['output']>;
1721
+ fileId?: Maybe<Scalars['String']['output']>;
1722
+ fileSize?: Maybe<Scalars['Int']['output']>;
1723
+ id: Scalars['ID']['output'];
1724
+ mediaType?: Maybe<Scalars['String']['output']>;
1725
+ mediaTypeDescription?: Maybe<Scalars['String']['output']>;
1726
+ pageId?: Maybe<Scalars['ID']['output']>;
1727
+ status: AttachmentStatusV2;
1728
+ title: Scalars['String']['output'];
1729
+ version?: Maybe<VersionV2>;
1730
+ webuiLink?: Maybe<Scalars['String']['output']>;
1731
+ };
1705
1732
  export declare type AuditEvent = {
1706
1733
  __typename?: 'AuditEvent';
1707
1734
  attributes: AuditEventAttributes;
@@ -1918,6 +1945,41 @@ export declare type BitbucketWorkspaceRepositoriesArgs = {
1918
1945
  first?: InputMaybe<Scalars['Int']['input']>;
1919
1946
  permissionFilter?: InputMaybe<BitbucketPermission>;
1920
1947
  };
1948
+ export declare type BlogPostV2 = Node & {
1949
+ __typename?: 'BlogPostV2';
1950
+ authorId?: Maybe<Scalars['String']['output']>;
1951
+ body?: Maybe<BodyV2>;
1952
+ createdAt?: Maybe<Scalars['String']['output']>;
1953
+ id: Scalars['ID']['output'];
1954
+ internalProperties?: Maybe<InternalProperties>;
1955
+ operations?: Maybe<OperationsV2>;
1956
+ space?: Maybe<SpaceV2>;
1957
+ spaceId?: Maybe<Scalars['ID']['output']>;
1958
+ spaceLookAndFeel?: Maybe<LookAndFeelV2>;
1959
+ spaceSettings?: Maybe<SpaceSettingsV2>;
1960
+ spaceTheme?: Maybe<ThemeV2>;
1961
+ status: BlogStatusV2;
1962
+ title: Scalars['String']['output'];
1963
+ version?: Maybe<VersionV2>;
1964
+ };
1965
+ export declare type BlogPostV2Connection = {
1966
+ __typename?: 'BlogPostV2Connection';
1967
+ edges?: Maybe<Array<Maybe<BlogPostV2Edge>>>;
1968
+ nodes?: Maybe<Array<Maybe<BlogPostV2>>>;
1969
+ pageInfo: PageInfoV2;
1970
+ };
1971
+ export declare type BlogPostV2Edge = {
1972
+ __typename?: 'BlogPostV2Edge';
1973
+ cursor?: Maybe<Scalars['String']['output']>;
1974
+ node: BlogPostV2;
1975
+ };
1976
+ export declare enum BlogStatusV2 {
1977
+ Current = "current",
1978
+ Deleted = "deleted",
1979
+ Draft = "draft",
1980
+ Historical = "historical",
1981
+ Trashed = "trashed"
1982
+ }
1921
1983
  export declare type BoardCardMoveInput = {
1922
1984
  boardId?: InputMaybe<Scalars['ID']['input']>;
1923
1985
  cardIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
@@ -2006,6 +2068,7 @@ export declare type BoardScope = Node & {
2006
2068
  oldDoneIssuesCutOffConfig?: Maybe<JswOldDoneIssuesCutOffConfig>;
2007
2069
  projectLocation: SoftwareProject;
2008
2070
  reports?: Maybe<SoftwareReports>;
2071
+ roadmapConfig?: Maybe<JswBoardScopeRoadmapConfig>;
2009
2072
  savedFilterConfig?: Maybe<JswSavedFilterConfig>;
2010
2073
  showEpicAsPanel?: Maybe<Scalars['Boolean']['output']>;
2011
2074
  sprint?: Maybe<Sprint>;
@@ -2063,12 +2126,25 @@ export declare enum BoardSwimlaneStrategy {
2063
2126
  Project = "PROJECT",
2064
2127
  RequestType = "REQUEST_TYPE"
2065
2128
  }
2129
+ export declare enum BodyFormatV2 {
2130
+ AtlasDocFormat = "atlas_doc_format",
2131
+ Storage = "storage"
2132
+ }
2133
+ export declare type BodyV2 = {
2134
+ __typename?: 'BodyV2';
2135
+ atlasDocFormat?: Maybe<FormattedBodyV2>;
2136
+ storage?: Maybe<FormattedBodyV2>;
2137
+ };
2066
2138
  export declare type Book = {
2067
2139
  __typename?: 'Book';
2068
2140
  author?: Maybe<Array<Maybe<Author>>>;
2069
2141
  id?: Maybe<Scalars['String']['output']>;
2070
2142
  title?: Maybe<Scalars['String']['output']>;
2071
2143
  };
2144
+ export declare type BordersAndDividersLookAndFeel = {
2145
+ __typename?: 'BordersAndDividersLookAndFeel';
2146
+ color?: Maybe<Scalars['String']['output']>;
2147
+ };
2072
2148
  export declare enum BuiltinPolarisIdeaField {
2073
2149
  Archived = "ARCHIVED",
2074
2150
  ArchivedBy = "ARCHIVED_BY",
@@ -2096,6 +2172,17 @@ export declare enum BuiltinPolarisIdeaField {
2096
2172
  Updated = "UPDATED",
2097
2173
  Votes = "VOTES"
2098
2174
  }
2175
+ export declare enum BulkBlogPostStatusV2 {
2176
+ Current = "current",
2177
+ Deleted = "deleted",
2178
+ Trashed = "trashed"
2179
+ }
2180
+ export declare enum BulkPageStatusV2 {
2181
+ Archived = "archived",
2182
+ Current = "current",
2183
+ Deleted = "deleted",
2184
+ Trashed = "trashed"
2185
+ }
2099
2186
  export declare type BurndownChart = {
2100
2187
  __typename?: 'BurndownChart';
2101
2188
  chart: BurndownChartData;
@@ -2145,6 +2232,11 @@ export declare type Business = {
2145
2232
  endUserDataTypes?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
2146
2233
  isAppBusiness: AcceptableResponse;
2147
2234
  };
2235
+ export declare type ButtonLookAndFeel = {
2236
+ __typename?: 'ButtonLookAndFeel';
2237
+ backgroundColor?: Maybe<Scalars['String']['output']>;
2238
+ color?: Maybe<Scalars['String']['output']>;
2239
+ };
2148
2240
  export declare type Caiq = {
2149
2241
  __typename?: 'CAIQ';
2150
2242
  CAIQLiteLink?: Maybe<Scalars['String']['output']>;
@@ -2818,6 +2910,16 @@ export declare type ColumnsConfig = {
2818
2910
  unmappedStatuses?: Maybe<Array<Maybe<RawStatus>>>;
2819
2911
  workflow?: Maybe<ColumnWorkflowConfig>;
2820
2912
  };
2913
+ export declare type CommentInternalProperties = {
2914
+ __typename?: 'CommentInternalProperties';
2915
+ commentSource?: Maybe<Scalars['String']['output']>;
2916
+ };
2917
+ export declare type CommentLinksV2 = {
2918
+ __typename?: 'CommentLinksV2';
2919
+ editui?: Maybe<Scalars['String']['output']>;
2920
+ tinyui?: Maybe<Scalars['String']['output']>;
2921
+ webui?: Maybe<Scalars['String']['output']>;
2922
+ };
2821
2923
  export declare type CommerceAccountDetails = {
2822
2924
  invoiceGroup?: Maybe<CommerceInvoiceGroup>;
2823
2925
  };
@@ -7179,6 +7281,28 @@ export declare type ContainerEventObject = {
7179
7281
  id: Scalars['ID']['output'];
7180
7282
  type: Scalars['String']['output'];
7181
7283
  };
7284
+ export declare type ContainerLookAndFeel = {
7285
+ __typename?: 'ContainerLookAndFeel';
7286
+ background?: Maybe<Scalars['String']['output']>;
7287
+ backgroundAttachment?: Maybe<Scalars['String']['output']>;
7288
+ backgroundBlendMode?: Maybe<Scalars['String']['output']>;
7289
+ backgroundClip?: Maybe<Scalars['String']['output']>;
7290
+ backgroundColor?: Maybe<Scalars['String']['output']>;
7291
+ backgroundImage?: Maybe<Scalars['String']['output']>;
7292
+ backgroundOrigin?: Maybe<Scalars['String']['output']>;
7293
+ backgroundPosition?: Maybe<Scalars['String']['output']>;
7294
+ backgroundRepeat?: Maybe<Scalars['String']['output']>;
7295
+ backgroundSize?: Maybe<Scalars['String']['output']>;
7296
+ borderRadius?: Maybe<Scalars['String']['output']>;
7297
+ padding?: Maybe<Scalars['String']['output']>;
7298
+ };
7299
+ export declare type ContentLookAndFeel = {
7300
+ __typename?: 'ContentLookAndFeel';
7301
+ body?: Maybe<ContainerLookAndFeel>;
7302
+ container?: Maybe<ContainerLookAndFeel>;
7303
+ header?: Maybe<ContainerLookAndFeel>;
7304
+ screen?: Maybe<ScreenLookAndFeel>;
7305
+ };
7182
7306
  export declare type ContentPlatformAdvocateQuote = {
7183
7307
  __typename?: 'ContentPlatformAdvocateQuote';
7184
7308
  advocateHeadshot?: Maybe<ContentPlatformTemplateImageAsset>;
@@ -8206,6 +8330,12 @@ export declare type ContentPlatformTypeOfChange = {
8206
8330
  icon: ContentPlatformImageAsset;
8207
8331
  label: Scalars['String']['output'];
8208
8332
  };
8333
+ export declare type ContentPropertyV2 = {
8334
+ __typename?: 'ContentPropertyV2';
8335
+ key: Scalars['String']['output'];
8336
+ value: Scalars['JSON']['output'];
8337
+ version: VersionV2;
8338
+ };
8209
8339
  export declare type ContextEventObject = {
8210
8340
  __typename?: 'ContextEventObject';
8211
8341
  attributes: Scalars['JSON']['output'];
@@ -8587,6 +8717,17 @@ export declare type CreateJiraProjectAndRepositoryRelationshipPayload = Payload
8587
8717
  jiraProjectAndRepositoryRelationship?: Maybe<JiraProjectAndRepositoryRelationship>;
8588
8718
  success: Scalars['Boolean']['output'];
8589
8719
  };
8720
+ export declare type CreatePageV2Input = {
8721
+ body?: InputMaybe<FormattedBodyV2Input>;
8722
+ parentId?: InputMaybe<Scalars['ID']['input']>;
8723
+ spaceId: Scalars['ID']['input'];
8724
+ status?: InputMaybe<PageCreateStatusV2>;
8725
+ title?: InputMaybe<Scalars['String']['input']>;
8726
+ };
8727
+ export declare type CreatePageV2Payload = {
8728
+ __typename?: 'CreatePageV2Payload';
8729
+ pageV2?: Maybe<PageV2>;
8730
+ };
8590
8731
  export declare type CreatePolarisCommentInput = {
8591
8732
  content?: InputMaybe<Scalars['JSON']['input']>;
8592
8733
  kind?: InputMaybe<PolarisCommentKind>;
@@ -12327,6 +12468,38 @@ export declare type FilterQuery = {
12327
12468
  errors?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
12328
12469
  sanitisedJql: Scalars['String']['output'];
12329
12470
  };
12471
+ export declare enum FooterCommentStatusV2 {
12472
+ Archived = "archived",
12473
+ Current = "current",
12474
+ Deleted = "deleted",
12475
+ Draft = "draft",
12476
+ Historical = "historical",
12477
+ Trashed = "trashed"
12478
+ }
12479
+ export declare type FooterCommentV2 = Node & {
12480
+ __typename?: 'FooterCommentV2';
12481
+ blogPostId?: Maybe<Scalars['ID']['output']>;
12482
+ body: BodyV2;
12483
+ id: Scalars['ID']['output'];
12484
+ internalProperties?: Maybe<CommentInternalProperties>;
12485
+ links?: Maybe<CommentLinksV2>;
12486
+ pageId?: Maybe<Scalars['ID']['output']>;
12487
+ parentCommentId?: Maybe<Scalars['ID']['output']>;
12488
+ status: FooterCommentStatusV2;
12489
+ title: Scalars['String']['output'];
12490
+ version: VersionV2;
12491
+ };
12492
+ export declare type FooterCommentV2Connection = {
12493
+ __typename?: 'FooterCommentV2Connection';
12494
+ edges?: Maybe<Array<Maybe<FooterCommentV2Edge>>>;
12495
+ nodes?: Maybe<Array<Maybe<FooterCommentV2>>>;
12496
+ pageInfo: PageInfoV2;
12497
+ };
12498
+ export declare type FooterCommentV2Edge = {
12499
+ __typename?: 'FooterCommentV2Edge';
12500
+ cursor?: Maybe<Scalars['String']['output']>;
12501
+ node: FooterCommentV2;
12502
+ };
12330
12503
  export declare type ForgeAiDemo = {
12331
12504
  __typename?: 'ForgeAiDemo';
12332
12505
  emoji?: Maybe<Scalars['String']['output']>;
@@ -13001,6 +13174,20 @@ export declare enum FormStatus {
13001
13174
  Saved = "SAVED",
13002
13175
  Submitted = "SUBMITTED"
13003
13176
  }
13177
+ export declare type FormattedBodyV2 = {
13178
+ __typename?: 'FormattedBodyV2';
13179
+ representation: BodyFormatV2;
13180
+ value: Scalars['String']['output'];
13181
+ };
13182
+ export declare type FormattedBodyV2Input = {
13183
+ representation: BodyFormatV2;
13184
+ value: Scalars['String']['input'];
13185
+ };
13186
+ export declare type FormattedPageV2 = {
13187
+ __typename?: 'FormattedPageV2';
13188
+ representation: SpaceDescriptionEnum;
13189
+ value: Scalars['String']['output'];
13190
+ };
13004
13191
  export declare type FortifiedMetricsIntervalInput = {
13005
13192
  end: Scalars['DateTime']['input'];
13006
13193
  start: Scalars['DateTime']['input'];
@@ -26719,6 +26906,14 @@ export declare type HasPageInfo = {
26719
26906
  export declare type HasTotal = {
26720
26907
  totalCount?: Maybe<Scalars['Int']['output']>;
26721
26908
  };
26909
+ export declare type HeaderLookAndFeelV2 = {
26910
+ __typename?: 'HeaderLookAndFeelV2';
26911
+ backgroundColor?: Maybe<Scalars['String']['output']>;
26912
+ button?: Maybe<ButtonLookAndFeel>;
26913
+ primaryNavigation?: Maybe<NavigationLookAndFeelV2>;
26914
+ search?: Maybe<SearchFieldLookAndFeel>;
26915
+ secondaryNavigation?: Maybe<NavigationLookAndFeelV2>;
26916
+ };
26722
26917
  export declare type HelpCenter = Node & {
26723
26918
  __typename?: 'HelpCenter';
26724
26919
  announcements?: Maybe<HelpCenterAnnouncements>;
@@ -28379,6 +28574,51 @@ export declare type InlineColumnEditConfig = {
28379
28574
  __typename?: 'InlineColumnEditConfig';
28380
28575
  enabled: Scalars['Boolean']['output'];
28381
28576
  };
28577
+ export declare type InlineCommentPropertiesV2 = {
28578
+ __typename?: 'InlineCommentPropertiesV2';
28579
+ inlineMarkerRef: Scalars['String']['output'];
28580
+ inlineOriginalSelection: Scalars['String']['output'];
28581
+ };
28582
+ export declare enum InlineCommentResolutionStatusV2 {
28583
+ Dangling = "dangling",
28584
+ Open = "open",
28585
+ Reopened = "reopened",
28586
+ Resolved = "resolved"
28587
+ }
28588
+ export declare enum InlineCommentStatusV2 {
28589
+ Archived = "archived",
28590
+ Current = "current",
28591
+ Deleted = "deleted",
28592
+ Draft = "draft",
28593
+ Historical = "historical",
28594
+ Trashed = "trashed"
28595
+ }
28596
+ export declare type InlineCommentV2 = Node & {
28597
+ __typename?: 'InlineCommentV2';
28598
+ body: BodyV2;
28599
+ id: Scalars['ID']['output'];
28600
+ internalProperties?: Maybe<CommentInternalProperties>;
28601
+ links?: Maybe<CommentLinksV2>;
28602
+ parentCommentId?: Maybe<Scalars['ID']['output']>;
28603
+ properties?: Maybe<InlineCommentPropertiesV2>;
28604
+ resolutionLastModifiedAt?: Maybe<Scalars['String']['output']>;
28605
+ resolutionLastModifierId?: Maybe<Scalars['String']['output']>;
28606
+ resolutionStatus?: Maybe<InlineCommentResolutionStatusV2>;
28607
+ status: InlineCommentStatusV2;
28608
+ title: Scalars['String']['output'];
28609
+ version: VersionV2;
28610
+ };
28611
+ export declare type InlineCommentV2Connection = {
28612
+ __typename?: 'InlineCommentV2Connection';
28613
+ edges?: Maybe<Array<Maybe<InlineCommentV2Edge>>>;
28614
+ nodes?: Maybe<Array<Maybe<InlineCommentV2>>>;
28615
+ pageInfo: PageInfoV2;
28616
+ };
28617
+ export declare type InlineCommentV2Edge = {
28618
+ __typename?: 'InlineCommentV2Edge';
28619
+ cursor?: Maybe<Scalars['String']['output']>;
28620
+ node: InlineCommentV2;
28621
+ };
28382
28622
  export declare type Insights = {
28383
28623
  __typename?: 'Insights';
28384
28624
  githubOnboardingDetails: InsightsGithubOnboardingDetails;
@@ -28730,6 +28970,11 @@ export declare type InstallationsListFilterByAppInstallationsWithCompulsoryConte
28730
28970
  export declare type InstallationsListFilterByApps = {
28731
28971
  ids: Array<Scalars['ID']['input']>;
28732
28972
  };
28973
+ export declare type InternalProperties = {
28974
+ __typename?: 'InternalProperties';
28975
+ confRev?: Maybe<Scalars['String']['output']>;
28976
+ subType?: Maybe<Scalars['String']['output']>;
28977
+ };
28733
28978
  export declare type IntervalFilter = {
28734
28979
  end: Scalars['String']['input'];
28735
28980
  start: Scalars['String']['input'];
@@ -39358,6 +39603,24 @@ export declare type JiraServiceManagementSelectPreviewField = JiraServiceManagem
39358
39603
  required?: Maybe<Scalars['Boolean']['output']>;
39359
39604
  type?: Maybe<Scalars['String']['output']>;
39360
39605
  };
39606
+ export declare type JiraServiceManagementSentiment = {
39607
+ __typename?: 'JiraServiceManagementSentiment';
39608
+ name?: Maybe<Scalars['String']['output']>;
39609
+ sentimentId?: Maybe<Scalars['String']['output']>;
39610
+ };
39611
+ export declare type JiraServiceManagementSentimentField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
39612
+ __typename?: 'JiraServiceManagementSentimentField';
39613
+ aliasFieldId?: Maybe<Scalars['ID']['output']>;
39614
+ description?: Maybe<Scalars['String']['output']>;
39615
+ fieldConfig?: Maybe<JiraFieldConfig>;
39616
+ fieldId: Scalars['String']['output'];
39617
+ id: Scalars['ID']['output'];
39618
+ isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
39619
+ name: Scalars['String']['output'];
39620
+ sentiment?: Maybe<JiraServiceManagementSentiment>;
39621
+ type: Scalars['String']['output'];
39622
+ userFieldConfig?: Maybe<JiraUserFieldConfig>;
39623
+ };
39361
39624
  export declare type JiraServiceManagementTeamResponder = {
39362
39625
  __typename?: 'JiraServiceManagementTeamResponder';
39363
39626
  teamId?: Maybe<Scalars['String']['output']>;
@@ -42473,6 +42736,12 @@ export declare type JswBoardLocationModel = {
42473
42736
  projectTypeKey?: Maybe<Scalars['String']['output']>;
42474
42737
  userLocationId?: Maybe<Scalars['ID']['output']>;
42475
42738
  };
42739
+ export declare type JswBoardScopeRoadmapConfig = {
42740
+ __typename?: 'JswBoardScopeRoadmapConfig';
42741
+ isChildIssuePlanningEnabled?: Maybe<Scalars['Boolean']['output']>;
42742
+ isRoadmapEnabled?: Maybe<Scalars['Boolean']['output']>;
42743
+ prefersChildIssueDatePlanning?: Maybe<Scalars['Boolean']['output']>;
42744
+ };
42476
42745
  export declare type JswCardColor = Node & {
42477
42746
  __typename?: 'JswCardColor';
42478
42747
  canEdit: Scalars['Boolean']['output'];
@@ -42994,6 +43263,21 @@ export declare type LabelUsage = {
42994
43263
  count: Scalars['Int']['output'];
42995
43264
  label: Scalars['String']['output'];
42996
43265
  };
43266
+ export declare type LayerScreenLookAndFeel = {
43267
+ __typename?: 'LayerScreenLookAndFeel';
43268
+ background?: Maybe<Scalars['String']['output']>;
43269
+ backgroundAttachment?: Maybe<Scalars['String']['output']>;
43270
+ backgroundBlendMode?: Maybe<Scalars['String']['output']>;
43271
+ backgroundClip?: Maybe<Scalars['String']['output']>;
43272
+ backgroundColor?: Maybe<Scalars['String']['output']>;
43273
+ backgroundImage?: Maybe<Scalars['String']['output']>;
43274
+ backgroundOrigin?: Maybe<Scalars['String']['output']>;
43275
+ backgroundPosition?: Maybe<Scalars['String']['output']>;
43276
+ backgroundRepeat?: Maybe<Scalars['String']['output']>;
43277
+ backgroundSize?: Maybe<Scalars['String']['output']>;
43278
+ height?: Maybe<Scalars['String']['output']>;
43279
+ width?: Maybe<Scalars['String']['output']>;
43280
+ };
42997
43281
  export declare enum LicenseOverrideState {
42998
43282
  Active = "ACTIVE",
42999
43283
  Inactive = "INACTIVE",
@@ -43036,6 +43320,31 @@ export declare type LogQueryInput = {
43036
43320
  lvl?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
43037
43321
  msg?: InputMaybe<Scalars['String']['input']>;
43038
43322
  };
43323
+ export declare type LookAndFeelV2 = {
43324
+ __typename?: 'LookAndFeelV2';
43325
+ bordersAndDividers?: Maybe<BordersAndDividersLookAndFeel>;
43326
+ content?: Maybe<ContentLookAndFeel>;
43327
+ header?: Maybe<HeaderLookAndFeelV2>;
43328
+ horizontalHeader?: Maybe<HeaderLookAndFeelV2>;
43329
+ menus?: Maybe<MenusLookAndFeelV2>;
43330
+ };
43331
+ export declare type Macro = {
43332
+ __typename?: 'Macro';
43333
+ adf: Scalars['String']['output'];
43334
+ contentId: Scalars['ID']['output'];
43335
+ macroId: Scalars['ID']['output'];
43336
+ };
43337
+ export declare type MacroConnection = {
43338
+ __typename?: 'MacroConnection';
43339
+ edges?: Maybe<Array<Maybe<MacroEdge>>>;
43340
+ nodes?: Maybe<Array<Maybe<Macro>>>;
43341
+ pageInfo: PageInfoV2;
43342
+ };
43343
+ export declare type MacroEdge = {
43344
+ __typename?: 'MacroEdge';
43345
+ cursor?: Maybe<Scalars['String']['output']>;
43346
+ node: Macro;
43347
+ };
43039
43348
  export declare type MarketplaceApp = {
43040
43349
  __typename?: 'MarketplaceApp';
43041
43350
  appId: Scalars['ID']['output'];
@@ -43887,6 +44196,15 @@ export declare enum MembershipState {
43887
44196
  Invited = "INVITED",
43888
44197
  RequestingToJoin = "REQUESTING_TO_JOIN"
43889
44198
  }
44199
+ export declare type MenuHoverOrFocus = {
44200
+ __typename?: 'MenuHoverOrFocus';
44201
+ backgroundColor?: Maybe<Scalars['String']['output']>;
44202
+ };
44203
+ export declare type MenusLookAndFeelV2 = {
44204
+ __typename?: 'MenusLookAndFeelV2';
44205
+ color?: Maybe<Scalars['String']['output']>;
44206
+ hoverOrFocus?: Maybe<MenuHoverOrFocus>;
44207
+ };
43890
44208
  export declare type MercuryAddWatcherToFocusAreaInput = {
43891
44209
  cloudId: Scalars['ID']['input'];
43892
44210
  focusAreaId: Scalars['ID']['input'];
@@ -44828,6 +45146,7 @@ export declare type Mutation = {
44828
45146
  createJiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationshipCreatePayload>;
44829
45147
  createJiraProjectAndOpsgenieTeamRelationship?: Maybe<CreateJiraProjectAndOpsgenieTeamRelationshipPayload>;
44830
45148
  createJiraProjectAndRepositoryRelationship?: Maybe<CreateJiraProjectAndRepositoryRelationshipPayload>;
45149
+ createPageV2?: Maybe<CreatePageV2Payload>;
44831
45150
  createPolarisComment?: Maybe<CreatePolarisCommentPayload>;
44832
45151
  createPolarisIdeaTemplate?: Maybe<CreatePolarisIdeaTemplatePayload>;
44833
45152
  createPolarisInsight?: Maybe<CreatePolarisInsightPayload>;
@@ -44857,6 +45176,7 @@ export declare type Mutation = {
44857
45176
  deleteJiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationshipDeletePayload>;
44858
45177
  deleteJiraProjectAndOpsgenieTeamRelationship?: Maybe<DeleteJiraProjectAndOpsgenieTeamRelationshipPayload>;
44859
45178
  deleteJiraProjectAndRepositoryRelationship?: Maybe<DeleteJiraProjectAndRepositoryRelationshipPayload>;
45179
+ deletePageV2?: Maybe<Scalars['Boolean']['output']>;
44860
45180
  deletePolarisIdeaTemplate?: Maybe<DeletePolarisIdeaTemplatePayload>;
44861
45181
  deletePolarisInsight?: Maybe<DeletePolarisInsightPayload>;
44862
45182
  deletePolarisPlayContribution?: Maybe<DeletePolarisPlayContributionPayload>;
@@ -44944,6 +45264,7 @@ export declare type Mutation = {
44944
45264
  updateDeveloperLogAccess?: Maybe<UpdateDeveloperLogAccessPayload>;
44945
45265
  updateJiraProjectAndOpsgenieTeamRelationship?: Maybe<UpdateJiraProjectAndOpsgenieTeamRelationshipPayload>;
44946
45266
  updateJiraProjectAndRepositoryRelationship?: Maybe<UpdateJiraProjectAndRepositoryRelationshipPayload>;
45267
+ updatePageV2?: Maybe<UpdatePageV2Payload>;
44947
45268
  updatePolarisComment?: Maybe<UpdatePolarisCommentPayload>;
44948
45269
  updatePolarisIdea?: Maybe<UpdatePolarisIdeaPayload>;
44949
45270
  updatePolarisIdeaTemplate?: Maybe<UpdatePolarisIdeaTemplatePayload>;
@@ -45036,6 +45357,9 @@ export declare type MutationCreateJiraProjectAndOpsgenieTeamRelationshipArgs = {
45036
45357
  export declare type MutationCreateJiraProjectAndRepositoryRelationshipArgs = {
45037
45358
  input: CreateJiraProjectAndRepositoryRelationshipInput;
45038
45359
  };
45360
+ export declare type MutationCreatePageV2Args = {
45361
+ input: CreatePageV2Input;
45362
+ };
45039
45363
  export declare type MutationCreatePolarisCommentArgs = {
45040
45364
  input: CreatePolarisCommentInput;
45041
45365
  };
@@ -45139,6 +45463,9 @@ export declare type MutationDeleteJiraProjectAndOpsgenieTeamRelationshipArgs = {
45139
45463
  export declare type MutationDeleteJiraProjectAndRepositoryRelationshipArgs = {
45140
45464
  input: DeleteJiraProjectAndRepositoryRelationshipInput;
45141
45465
  };
45466
+ export declare type MutationDeletePageV2Args = {
45467
+ id: Scalars['ID']['input'];
45468
+ };
45142
45469
  export declare type MutationDeletePolarisIdeaTemplateArgs = {
45143
45470
  input: DeletePolarisIdeaTemplateInput;
45144
45471
  };
@@ -45332,6 +45659,9 @@ export declare type MutationUpdateJiraProjectAndOpsgenieTeamRelationshipArgs = {
45332
45659
  export declare type MutationUpdateJiraProjectAndRepositoryRelationshipArgs = {
45333
45660
  input: UpdateJiraProjectAndRepositoryRelationshipInput;
45334
45661
  };
45662
+ export declare type MutationUpdatePageV2Args = {
45663
+ input: UpdatePageV2Input;
45664
+ };
45335
45665
  export declare type MutationUpdatePolarisCommentArgs = {
45336
45666
  input: UpdatePolarisCommentInput;
45337
45667
  };
@@ -45496,6 +45826,17 @@ export declare type NadelHydrationResultFieldPredicate = {
45496
45826
  export declare enum NadelHydrationTemplate {
45497
45827
  NadelPlaceholder = "NADEL_PLACEHOLDER"
45498
45828
  }
45829
+ export declare type NavigationHoverOrFocus = {
45830
+ __typename?: 'NavigationHoverOrFocus';
45831
+ backgroundColor?: Maybe<Scalars['String']['output']>;
45832
+ color?: Maybe<Scalars['String']['output']>;
45833
+ };
45834
+ export declare type NavigationLookAndFeelV2 = {
45835
+ __typename?: 'NavigationLookAndFeelV2';
45836
+ color?: Maybe<Scalars['String']['output']>;
45837
+ highlightColor?: Maybe<Scalars['String']['output']>;
45838
+ hoverOrFocus?: Maybe<NavigationHoverOrFocus>;
45839
+ };
45499
45840
  export declare type NewCard = {
45500
45841
  assigneeId?: InputMaybe<Scalars['ID']['input']>;
45501
45842
  fixVersions?: InputMaybe<Array<Scalars['ID']['input']>>;
@@ -45631,6 +45972,15 @@ export declare type OAuthClientsScopeDetails = {
45631
45972
  description?: Maybe<Scalars['String']['output']>;
45632
45973
  key: Scalars['String']['output'];
45633
45974
  };
45975
+ export declare type OperationV2 = {
45976
+ __typename?: 'OperationV2';
45977
+ operation: Scalars['String']['output'];
45978
+ targetType: Scalars['String']['output'];
45979
+ };
45980
+ export declare type OperationsV2 = {
45981
+ __typename?: 'OperationsV2';
45982
+ results?: Maybe<Array<Maybe<OperationV2>>>;
45983
+ };
45634
45984
  export declare type OpsgenieAlertCountByPriority = {
45635
45985
  __typename?: 'OpsgenieAlertCountByPriority';
45636
45986
  countPerDay?: Maybe<Array<Maybe<OpsgenieAlertCountPerDay>>>;
@@ -45782,6 +46132,10 @@ export declare type OpsgenieTeamMemberEdge = {
45782
46132
  cursor: Scalars['String']['output'];
45783
46133
  node?: Maybe<OpsgenieTeamMember>;
45784
46134
  };
46135
+ export declare type Organization = {
46136
+ __typename?: 'Organization';
46137
+ orgId?: Maybe<Scalars['String']['output']>;
46138
+ };
45785
46139
  export declare type OriginalEstimate = {
45786
46140
  __typename?: 'OriginalEstimate';
45787
46141
  value?: Maybe<Scalars['Float']['output']>;
@@ -45952,6 +46306,10 @@ export declare type PeapUpdateProgramInput = {
45952
46306
  serviceId?: InputMaybe<Scalars['String']['input']>;
45953
46307
  teamChannel?: InputMaybe<Scalars['String']['input']>;
45954
46308
  };
46309
+ export declare enum PageCreateStatusV2 {
46310
+ Current = "current",
46311
+ Draft = "draft"
46312
+ }
45955
46313
  export declare type PageInfo = {
45956
46314
  __typename?: 'PageInfo';
45957
46315
  endCursor?: Maybe<Scalars['String']['output']>;
@@ -45959,6 +46317,68 @@ export declare type PageInfo = {
45959
46317
  hasPreviousPage: Scalars['Boolean']['output'];
45960
46318
  startCursor?: Maybe<Scalars['String']['output']>;
45961
46319
  };
46320
+ export declare type PageInfoV2 = {
46321
+ __typename?: 'PageInfoV2';
46322
+ endCursor?: Maybe<Scalars['String']['output']>;
46323
+ hasNextPage: Scalars['Boolean']['output'];
46324
+ hasPreviousPage: Scalars['Boolean']['output'];
46325
+ startCursor?: Maybe<Scalars['String']['output']>;
46326
+ };
46327
+ export declare enum PageStatusV2 {
46328
+ Archived = "archived",
46329
+ Current = "current",
46330
+ Deleted = "deleted",
46331
+ Draft = "draft",
46332
+ Historical = "historical",
46333
+ Trashed = "trashed"
46334
+ }
46335
+ export declare enum PageUpdateStatusV2 {
46336
+ Archived = "archived",
46337
+ Current = "current",
46338
+ Deleted = "deleted",
46339
+ Draft = "draft"
46340
+ }
46341
+ export declare type PageV2 = Node & {
46342
+ __typename?: 'PageV2';
46343
+ authorId?: Maybe<Scalars['String']['output']>;
46344
+ body?: Maybe<BodyV2>;
46345
+ createdAt?: Maybe<Scalars['String']['output']>;
46346
+ id: Scalars['ID']['output'];
46347
+ internalProperties?: Maybe<InternalProperties>;
46348
+ isFavoritedByCurrentUser?: Maybe<Scalars['Boolean']['output']>;
46349
+ lastOwnerId?: Maybe<Scalars['String']['output']>;
46350
+ operations?: Maybe<OperationsV2>;
46351
+ ownerId?: Maybe<Scalars['String']['output']>;
46352
+ parentId?: Maybe<Scalars['ID']['output']>;
46353
+ parentPage?: Maybe<PageV2>;
46354
+ parentType?: Maybe<ParentContent>;
46355
+ position?: Maybe<Scalars['Int']['output']>;
46356
+ space?: Maybe<SpaceV2>;
46357
+ spaceId?: Maybe<Scalars['ID']['output']>;
46358
+ spaceLookAndFeel?: Maybe<LookAndFeelV2>;
46359
+ spaceSettings?: Maybe<SpaceSettingsV2>;
46360
+ spaceTheme?: Maybe<ThemeV2>;
46361
+ status: PageStatusV2;
46362
+ title: Scalars['String']['output'];
46363
+ version?: Maybe<VersionV2>;
46364
+ };
46365
+ export declare type PageV2BodyArgs = {
46366
+ format?: InputMaybe<BodyFormatV2>;
46367
+ };
46368
+ export declare type PageV2Connection = {
46369
+ __typename?: 'PageV2Connection';
46370
+ edges?: Maybe<Array<Maybe<PageV2Edge>>>;
46371
+ nodes?: Maybe<Array<Maybe<PageV2>>>;
46372
+ pageInfo: PageInfoV2;
46373
+ };
46374
+ export declare type PageV2Edge = {
46375
+ __typename?: 'PageV2Edge';
46376
+ cursor?: Maybe<Scalars['String']['output']>;
46377
+ node: PageV2;
46378
+ };
46379
+ export declare enum ParentContent {
46380
+ Page = "page"
46381
+ }
45962
46382
  export declare type Partner = {
45963
46383
  __typename?: 'Partner';
45964
46384
  invoiceJson?: Maybe<PartnerInvoiceJson>;
@@ -47565,8 +47985,12 @@ export declare type Query = {
47565
47985
  appStoredEntity?: Maybe<AppStoredEntity>;
47566
47986
  apps?: Maybe<AppConnection>;
47567
47987
  aquaOutgoingEmailLogs?: Maybe<AquaOutgoingEmailLogsQueryApi>;
47988
+ attachmentV2?: Maybe<AttachmentV2>;
47568
47989
  bitbucket?: Maybe<BitbucketQuery>;
47569
47990
  bitbucketRepositoriesAvailableToLinkWithNewDevOpsService?: Maybe<BitbucketRepositoryIdConnection>;
47991
+ blogPostV2?: Maybe<BlogPostV2>;
47992
+ blogPostsV2?: Maybe<Array<Maybe<BlogPostV2>>>;
47993
+ blogPostsV2ForSpace?: Maybe<BlogPostV2Connection>;
47570
47994
  boardScope?: Maybe<BoardScope>;
47571
47995
  canSplitIssue?: Maybe<Scalars['Boolean']['output']>;
47572
47996
  ccp?: Maybe<CcpQueryApi>;
@@ -47575,6 +47999,10 @@ export declare type Query = {
47575
47999
  confluence?: Maybe<ConfluenceQueryApi>;
47576
48000
  connectedData?: Maybe<ConnectedDataQuery>;
47577
48001
  contentFacet: ContentPlatformContentFacetConnection;
48002
+ contentPropertiesV2ForAttachment?: Maybe<Array<Maybe<ContentPropertyV2>>>;
48003
+ contentPropertiesV2ForBlogPost?: Maybe<Array<Maybe<ContentPropertyV2>>>;
48004
+ contentPropertiesV2ForComment?: Maybe<Array<Maybe<ContentPropertyV2>>>;
48005
+ contentPropertiesV2ForPage?: Maybe<Array<Maybe<ContentPropertyV2>>>;
47578
48006
  customerService?: Maybe<CustomerServiceQueryApi>;
47579
48007
  customerStories: ContentPlatformCustomerStorySearchConnection;
47580
48008
  customerStory?: Maybe<ContentPlatformCustomerStory>;
@@ -47608,6 +48036,10 @@ export declare type Query = {
47608
48036
  extensionContexts?: Maybe<Array<ExtensionContext>>;
47609
48037
  extensionsEcho?: Maybe<Scalars['String']['output']>;
47610
48038
  featureRelease?: Maybe<FeatureRelease>;
48039
+ footerCommentV2?: Maybe<FooterCommentV2>;
48040
+ footerCommentsV2ForBlogPost?: Maybe<FooterCommentV2Connection>;
48041
+ footerCommentsV2ForPage?: Maybe<FooterCommentV2Connection>;
48042
+ footerCommentsV2ForParentFooterComment?: Maybe<FooterCommentV2Connection>;
47611
48043
  fullHubArticle?: Maybe<ContentPlatformFullHubArticle>;
47612
48044
  fullHubArticles: ContentPlatformHubArticleSearchConnection;
47613
48045
  fullTutorial?: Maybe<ContentPlatformFullTutorial>;
@@ -47619,6 +48051,10 @@ export declare type Query = {
47619
48051
  helpExternalResource?: Maybe<HelpExternalResourceQueryApi>;
47620
48052
  helpLayout?: Maybe<HelpLayoutQueryApi>;
47621
48053
  helpObjectStore?: Maybe<HelpObjectStoreQueryApi>;
48054
+ inlineCommentV2?: Maybe<InlineCommentV2>;
48055
+ inlineCommentsV2ForBlogPost?: Maybe<InlineCommentV2Connection>;
48056
+ inlineCommentsV2ForPage?: Maybe<InlineCommentV2Connection>;
48057
+ inlineCommentsV2ForParentInlineComment?: Maybe<InlineCommentV2Connection>;
47622
48058
  insights?: Maybe<Insights>;
47623
48059
  installationContextsWithLogAccess?: Maybe<Array<InstallationContextWithLogAccess>>;
47624
48060
  ipmImageModal?: Maybe<ContentPlatformIpmImageModal>;
@@ -47639,6 +48075,7 @@ export declare type Query = {
47639
48075
  jsw?: Maybe<JswQuery>;
47640
48076
  knowledgeBase?: Maybe<KnowledgeBaseQueryApi>;
47641
48077
  knowledgeDiscovery?: Maybe<KnowledgeDiscoveryQueryApi>;
48078
+ macros?: Maybe<MacroConnection>;
47642
48079
  marketplaceApp?: Maybe<MarketplaceApp>;
47643
48080
  marketplaceAppByCloudAppId?: Maybe<MarketplaceApp>;
47644
48081
  marketplaceAppByKey?: Maybe<MarketplaceApp>;
@@ -47659,6 +48096,10 @@ export declare type Query = {
47659
48096
  opsgenie?: Maybe<OpsgenieQuery>;
47660
48097
  opsgenieTeamRelationshipForDevOpsService?: Maybe<DevOpsServiceAndOpsgenieTeamRelationship>;
47661
48098
  opsgenieTeamRelationshipsForJiraProject?: Maybe<JiraProjectAndOpsgenieTeamRelationshipConnection>;
48099
+ organization?: Maybe<Organization>;
48100
+ pageV2?: Maybe<PageV2>;
48101
+ pagesV2?: Maybe<Array<Maybe<PageV2>>>;
48102
+ pagesV2ForSpace?: Maybe<PageV2Connection>;
47662
48103
  partner?: Maybe<Partner>;
47663
48104
  partnerEarlyAccess?: Maybe<PeapQueryApi>;
47664
48105
  polaris?: Maybe<PolarisQueryNamespace>;
@@ -47681,6 +48122,7 @@ export declare type Query = {
47681
48122
  productListings: Array<ProductListingResult>;
47682
48123
  releaseNote?: Maybe<ContentPlatformReleaseNote>;
47683
48124
  releaseNotes: ContentPlatformReleaseNotesConnection;
48125
+ renderedMacro?: Maybe<RenderedMacro>;
47684
48126
  repositoryRelationshipsForDevOpsService?: Maybe<DevOpsServiceAndRepositoryRelationshipConnection>;
47685
48127
  repositoryRelationshipsForJiraProject?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
47686
48128
  roadmaps?: Maybe<RoadmapsQuery>;
@@ -47690,6 +48132,13 @@ export declare type Query = {
47690
48132
  signup?: Maybe<SignupQueryApi>;
47691
48133
  smarts?: Maybe<SmartsQueryApi>;
47692
48134
  softwareBoards?: Maybe<BoardScopeConnection>;
48135
+ spaceLookAndFeelV2?: Maybe<LookAndFeelV2>;
48136
+ spacePropertiesV2?: Maybe<SpacePropertyV2Connection>;
48137
+ spaceSettingsV2?: Maybe<SpaceSettingsV2>;
48138
+ spaceThemeV2?: Maybe<ThemeV2>;
48139
+ spaceV2?: Maybe<SpaceV2>;
48140
+ spaceV2ForPage?: Maybe<SpacePageV2>;
48141
+ spacesV2?: Maybe<Array<Maybe<SpaceV2>>>;
47693
48142
  suggest?: Maybe<QuerySuggestionApi>;
47694
48143
  suggestions?: Maybe<AutoSuggestionApi>;
47695
48144
  surfacePlatform: SurfacePlatformQueryApi;
@@ -47812,12 +48261,28 @@ export declare type QueryAppsArgs = {
47812
48261
  export declare type QueryAquaOutgoingEmailLogsArgs = {
47813
48262
  cloudId: Scalars['ID']['input'];
47814
48263
  };
48264
+ export declare type QueryAttachmentV2Args = {
48265
+ id: Scalars['ID']['input'];
48266
+ };
47815
48267
  export declare type QueryBitbucketRepositoriesAvailableToLinkWithNewDevOpsServiceArgs = {
47816
48268
  after?: InputMaybe<Scalars['String']['input']>;
47817
48269
  cloudId: Scalars['ID']['input'];
47818
48270
  first?: InputMaybe<Scalars['Int']['input']>;
47819
48271
  nameFilter?: InputMaybe<Scalars['String']['input']>;
47820
48272
  };
48273
+ export declare type QueryBlogPostV2Args = {
48274
+ id: Scalars['ID']['input'];
48275
+ status?: InputMaybe<Array<BlogStatusV2>>;
48276
+ };
48277
+ export declare type QueryBlogPostsV2Args = {
48278
+ ids: Array<Scalars['ID']['input']>;
48279
+ status?: InputMaybe<Array<BulkBlogPostStatusV2>>;
48280
+ };
48281
+ export declare type QueryBlogPostsV2ForSpaceArgs = {
48282
+ after?: InputMaybe<Scalars['String']['input']>;
48283
+ first?: InputMaybe<Scalars['Int']['input']>;
48284
+ id: Scalars['ID']['input'];
48285
+ };
47821
48286
  export declare type QueryBoardScopeArgs = {
47822
48287
  boardId: Scalars['ID']['input'];
47823
48288
  isCMP?: InputMaybe<Scalars['Boolean']['input']>;
@@ -47836,6 +48301,22 @@ export declare type QueryContentFacetArgs = {
47836
48301
  forFields: Array<Scalars['String']['input']>;
47837
48302
  withLocales?: Array<Scalars['String']['input']>;
47838
48303
  };
48304
+ export declare type QueryContentPropertiesV2ForAttachmentArgs = {
48305
+ attachmentId: Scalars['ID']['input'];
48306
+ keys: Array<Scalars['String']['input']>;
48307
+ };
48308
+ export declare type QueryContentPropertiesV2ForBlogPostArgs = {
48309
+ blogPostId: Scalars['ID']['input'];
48310
+ keys: Array<Scalars['String']['input']>;
48311
+ };
48312
+ export declare type QueryContentPropertiesV2ForCommentArgs = {
48313
+ commentId: Scalars['ID']['input'];
48314
+ keys: Array<Scalars['String']['input']>;
48315
+ };
48316
+ export declare type QueryContentPropertiesV2ForPageArgs = {
48317
+ keys: Array<Scalars['String']['input']>;
48318
+ pageId: Scalars['ID']['input'];
48319
+ };
47839
48320
  export declare type QueryCustomerServiceArgs = {
47840
48321
  cloudId: Scalars['ID']['input'];
47841
48322
  };
@@ -47922,6 +48403,26 @@ export declare type QueryExtensionContextsArgs = {
47922
48403
  export declare type QueryExtensionsEchoArgs = {
47923
48404
  text: Scalars['String']['input'];
47924
48405
  };
48406
+ export declare type QueryFooterCommentV2Args = {
48407
+ id: Scalars['ID']['input'];
48408
+ };
48409
+ export declare type QueryFooterCommentsV2ForBlogPostArgs = {
48410
+ after?: InputMaybe<Scalars['String']['input']>;
48411
+ first?: InputMaybe<Scalars['Int']['input']>;
48412
+ id: Scalars['ID']['input'];
48413
+ status?: InputMaybe<Array<FooterCommentStatusV2>>;
48414
+ };
48415
+ export declare type QueryFooterCommentsV2ForPageArgs = {
48416
+ after?: InputMaybe<Scalars['String']['input']>;
48417
+ first?: InputMaybe<Scalars['Int']['input']>;
48418
+ id: Scalars['ID']['input'];
48419
+ status?: InputMaybe<Array<FooterCommentStatusV2>>;
48420
+ };
48421
+ export declare type QueryFooterCommentsV2ForParentFooterCommentArgs = {
48422
+ after?: InputMaybe<Scalars['String']['input']>;
48423
+ first?: InputMaybe<Scalars['Int']['input']>;
48424
+ id: Scalars['ID']['input'];
48425
+ };
47925
48426
  export declare type QueryFullHubArticleArgs = {
47926
48427
  id: Scalars['String']['input'];
47927
48428
  publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
@@ -47952,6 +48453,28 @@ export declare type QueryHelpLayoutArgs = {
47952
48453
  export declare type QueryHelpObjectStoreArgs = {
47953
48454
  cloudId?: InputMaybe<Scalars['ID']['input']>;
47954
48455
  };
48456
+ export declare type QueryInlineCommentV2Args = {
48457
+ id: Scalars['ID']['input'];
48458
+ };
48459
+ export declare type QueryInlineCommentsV2ForBlogPostArgs = {
48460
+ after?: InputMaybe<Scalars['String']['input']>;
48461
+ first?: InputMaybe<Scalars['Int']['input']>;
48462
+ id: Scalars['ID']['input'];
48463
+ resolutionStatus?: InputMaybe<Array<InlineCommentResolutionStatusV2>>;
48464
+ status?: InputMaybe<Array<InlineCommentStatusV2>>;
48465
+ };
48466
+ export declare type QueryInlineCommentsV2ForPageArgs = {
48467
+ after?: InputMaybe<Scalars['String']['input']>;
48468
+ first?: InputMaybe<Scalars['Int']['input']>;
48469
+ id: Scalars['ID']['input'];
48470
+ resolutionStatus?: InputMaybe<Array<InlineCommentResolutionStatusV2>>;
48471
+ status?: InputMaybe<Array<InlineCommentStatusV2>>;
48472
+ };
48473
+ export declare type QueryInlineCommentsV2ForParentInlineCommentArgs = {
48474
+ after?: InputMaybe<Scalars['String']['input']>;
48475
+ first?: InputMaybe<Scalars['Int']['input']>;
48476
+ id: Scalars['ID']['input'];
48477
+ };
47955
48478
  export declare type QueryInstallationContextsWithLogAccessArgs = {
47956
48479
  appId: Scalars['ID']['input'];
47957
48480
  };
@@ -48003,6 +48526,12 @@ export declare type QueryJiraProjectRelationshipsForServiceArgs = {
48003
48526
  export declare type QueryKnowledgeBaseArgs = {
48004
48527
  cloudId: Scalars['ID']['input'];
48005
48528
  };
48529
+ export declare type QueryMacrosArgs = {
48530
+ after?: InputMaybe<Scalars['String']['input']>;
48531
+ blocklist?: InputMaybe<Array<Scalars['String']['input']>>;
48532
+ contentId: Scalars['ID']['input'];
48533
+ first?: InputMaybe<Scalars['Int']['input']>;
48534
+ };
48006
48535
  export declare type QueryMarketplaceAppArgs = {
48007
48536
  appId: Scalars['ID']['input'];
48008
48537
  };
@@ -48048,6 +48577,19 @@ export declare type QueryOpsgenieTeamRelationshipsForJiraProjectArgs = {
48048
48577
  first?: InputMaybe<Scalars['Int']['input']>;
48049
48578
  id: Scalars['ID']['input'];
48050
48579
  };
48580
+ export declare type QueryPageV2Args = {
48581
+ id: Scalars['ID']['input'];
48582
+ status?: InputMaybe<Array<PageStatusV2>>;
48583
+ };
48584
+ export declare type QueryPagesV2Args = {
48585
+ ids: Array<Scalars['ID']['input']>;
48586
+ status?: InputMaybe<Array<BulkPageStatusV2>>;
48587
+ };
48588
+ export declare type QueryPagesV2ForSpaceArgs = {
48589
+ after?: InputMaybe<Scalars['String']['input']>;
48590
+ first?: InputMaybe<Scalars['Int']['input']>;
48591
+ id: Scalars['ID']['input'];
48592
+ };
48051
48593
  export declare type QueryPolarisCollabTokenArgs = {
48052
48594
  viewID: Scalars['ID']['input'];
48053
48595
  };
@@ -48122,6 +48664,10 @@ export declare type QueryReleaseNotesArgs = {
48122
48664
  search?: InputMaybe<ContentPlatformSearchOptions>;
48123
48665
  visibleInFedRAMP?: InputMaybe<Scalars['Boolean']['input']>;
48124
48666
  };
48667
+ export declare type QueryRenderedMacroArgs = {
48668
+ adf: Scalars['String']['input'];
48669
+ contentId: Scalars['ID']['input'];
48670
+ };
48125
48671
  export declare type QueryRepositoryRelationshipsForDevOpsServiceArgs = {
48126
48672
  after?: InputMaybe<Scalars['String']['input']>;
48127
48673
  filter?: InputMaybe<DevOpsServiceAndRepositoryRelationshipFilter>;
@@ -48139,6 +48685,27 @@ export declare type QueryRepositoryRelationshipsForJiraProjectArgs = {
48139
48685
  export declare type QuerySoftwareBoardsArgs = {
48140
48686
  projectAri: Scalars['ID']['input'];
48141
48687
  };
48688
+ export declare type QuerySpaceLookAndFeelV2Args = {
48689
+ id: Scalars['ID']['input'];
48690
+ };
48691
+ export declare type QuerySpacePropertiesV2Args = {
48692
+ spaceId: Scalars['ID']['input'];
48693
+ };
48694
+ export declare type QuerySpaceSettingsV2Args = {
48695
+ id: Scalars['ID']['input'];
48696
+ };
48697
+ export declare type QuerySpaceThemeV2Args = {
48698
+ id: Scalars['ID']['input'];
48699
+ };
48700
+ export declare type QuerySpaceV2Args = {
48701
+ id: Scalars['ID']['input'];
48702
+ };
48703
+ export declare type QuerySpaceV2ForPageArgs = {
48704
+ id: Scalars['ID']['input'];
48705
+ };
48706
+ export declare type QuerySpacesV2Args = {
48707
+ ids: Array<Scalars['ID']['input']>;
48708
+ };
48142
48709
  export declare type QueryTemplateArgs = {
48143
48710
  id: Scalars['String']['input'];
48144
48711
  publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
@@ -48389,6 +48956,10 @@ export declare type RemoveCompassScorecardFromComponentPayload = Payload & {
48389
48956
  export declare type RemovePolarisColumnInput = {
48390
48957
  column: Scalars['ID']['input'];
48391
48958
  };
48959
+ export declare type RenderedMacro = {
48960
+ __typename?: 'RenderedMacro';
48961
+ value?: Maybe<Scalars['String']['output']>;
48962
+ };
48392
48963
  export declare type ReportsOverview = {
48393
48964
  __typename?: 'ReportsOverview';
48394
48965
  metadata: Array<Maybe<SoftwareReport>>;
@@ -49520,6 +50091,24 @@ export declare type ScopeSprintIssue = {
49520
50091
  issueKey: Scalars['String']['output'];
49521
50092
  issueSummary: Scalars['String']['output'];
49522
50093
  };
50094
+ export declare type ScreenLookAndFeel = {
50095
+ __typename?: 'ScreenLookAndFeel';
50096
+ background?: Maybe<Scalars['String']['output']>;
50097
+ backgroundAttachment?: Maybe<Scalars['String']['output']>;
50098
+ backgroundBlendMode?: Maybe<Scalars['String']['output']>;
50099
+ backgroundClip?: Maybe<Scalars['String']['output']>;
50100
+ backgroundColor?: Maybe<Scalars['String']['output']>;
50101
+ backgroundImage?: Maybe<Scalars['String']['output']>;
50102
+ backgroundOrigin?: Maybe<Scalars['String']['output']>;
50103
+ backgroundPosition?: Maybe<Scalars['String']['output']>;
50104
+ backgroundRepeat?: Maybe<Scalars['String']['output']>;
50105
+ backgroundSize?: Maybe<Scalars['String']['output']>;
50106
+ gutterBottom?: Maybe<Scalars['String']['output']>;
50107
+ gutterLeft?: Maybe<Scalars['String']['output']>;
50108
+ gutterRight?: Maybe<Scalars['String']['output']>;
50109
+ gutterTop?: Maybe<Scalars['String']['output']>;
50110
+ layer?: Maybe<LayerScreenLookAndFeel>;
50111
+ };
49523
50112
  export declare type SearchAbTest = {
49524
50113
  __typename?: 'SearchAbTest';
49525
50114
  abTestId?: Maybe<Scalars['String']['output']>;
@@ -49663,6 +50252,11 @@ export declare type SearchExternalFilter = {
49663
50252
  contentFormats?: InputMaybe<Array<InputMaybe<SearchExternalContentFormatFilter>>>;
49664
50253
  depth?: InputMaybe<Array<InputMaybe<SearchExternalDepthFilter>>>;
49665
50254
  };
50255
+ export declare type SearchFieldLookAndFeel = {
50256
+ __typename?: 'SearchFieldLookAndFeel';
50257
+ backgroundColor?: Maybe<Scalars['String']['output']>;
50258
+ color?: Maybe<Scalars['String']['output']>;
50259
+ };
49666
50260
  export declare type SearchFilterInput = {
49667
50261
  commonFilters?: InputMaybe<SearchCommonFilter>;
49668
50262
  confluenceFilters?: InputMaybe<SearchConfluenceFilter>;
@@ -51653,6 +52247,112 @@ export declare enum SortOrder {
51653
52247
  Asc = "ASC",
51654
52248
  Desc = "DESC"
51655
52249
  }
52250
+ export declare enum SpaceDescriptionEnum {
52251
+ Plain = "plain",
52252
+ View = "view"
52253
+ }
52254
+ export declare type SpaceDescriptionV2 = {
52255
+ __typename?: 'SpaceDescriptionV2';
52256
+ plain?: Maybe<FormattedPageV2>;
52257
+ view?: Maybe<FormattedPageV2>;
52258
+ };
52259
+ export declare type SpaceIconV2 = {
52260
+ __typename?: 'SpaceIconV2';
52261
+ apiDownloadLink?: Maybe<Scalars['String']['output']>;
52262
+ path?: Maybe<Scalars['String']['output']>;
52263
+ };
52264
+ export declare type SpacePageEditorSettingsV2 = {
52265
+ __typename?: 'SpacePageEditorSettingsV2';
52266
+ blogPost?: Maybe<Scalars['String']['output']>;
52267
+ default?: Maybe<Scalars['String']['output']>;
52268
+ page?: Maybe<Scalars['String']['output']>;
52269
+ };
52270
+ export declare type SpacePageLinksV2 = {
52271
+ __typename?: 'SpacePageLinksV2';
52272
+ base?: Maybe<Scalars['String']['output']>;
52273
+ webui?: Maybe<Scalars['String']['output']>;
52274
+ };
52275
+ export declare type SpacePageSettingsV2 = {
52276
+ __typename?: 'SpacePageSettingsV2';
52277
+ editor?: Maybe<SpacePageEditorSettingsV2>;
52278
+ routeOverrideEnabled?: Maybe<Scalars['Boolean']['output']>;
52279
+ };
52280
+ export declare type SpacePageV2 = Node & {
52281
+ __typename?: 'SpacePageV2';
52282
+ authorId?: Maybe<Scalars['String']['output']>;
52283
+ createdAt?: Maybe<Scalars['String']['output']>;
52284
+ description?: Maybe<SpaceDescriptionV2>;
52285
+ homepageId: Scalars['ID']['output'];
52286
+ icon?: Maybe<SpaceIconV2>;
52287
+ id: Scalars['ID']['output'];
52288
+ key: Scalars['String']['output'];
52289
+ links?: Maybe<SpacePageLinksV2>;
52290
+ lookAndFeel?: Maybe<LookAndFeelV2>;
52291
+ name: Scalars['String']['output'];
52292
+ settings?: Maybe<SpacePageSettingsV2>;
52293
+ status: SpaceStatusV2;
52294
+ theme?: Maybe<ThemeV2>;
52295
+ type: SpaceTypeV2;
52296
+ };
52297
+ export declare type SpacePageV2DescriptionArgs = {
52298
+ format?: InputMaybe<SpaceDescriptionEnum>;
52299
+ };
52300
+ export declare type SpacePropertyV2 = {
52301
+ __typename?: 'SpacePropertyV2';
52302
+ authorId: Scalars['String']['output'];
52303
+ createdAt: Scalars['String']['output'];
52304
+ createdBy?: Maybe<Scalars['String']['output']>;
52305
+ key: Scalars['String']['output'];
52306
+ value: Scalars['JSON']['output'];
52307
+ version: SpaceVersionV2;
52308
+ };
52309
+ export declare type SpacePropertyV2Connection = {
52310
+ __typename?: 'SpacePropertyV2Connection';
52311
+ edges?: Maybe<Array<Maybe<SpacePropertyV2Edge>>>;
52312
+ nodes?: Maybe<Array<Maybe<SpacePropertyV2>>>;
52313
+ pageInfo: PageInfoV2;
52314
+ };
52315
+ export declare type SpacePropertyV2Edge = {
52316
+ __typename?: 'SpacePropertyV2Edge';
52317
+ cursor?: Maybe<Scalars['String']['output']>;
52318
+ node: SpacePropertyV2;
52319
+ };
52320
+ export declare type SpaceSettingsV2 = {
52321
+ __typename?: 'SpaceSettingsV2';
52322
+ routeOverrideEnabled?: Maybe<Scalars['Boolean']['output']>;
52323
+ };
52324
+ export declare enum SpaceStatusV2 {
52325
+ Archived = "archived",
52326
+ Current = "current"
52327
+ }
52328
+ export declare enum SpaceTypeV2 {
52329
+ Global = "global",
52330
+ Personal = "personal"
52331
+ }
52332
+ export declare type SpaceV2 = Node & {
52333
+ __typename?: 'SpaceV2';
52334
+ createdAt?: Maybe<Scalars['String']['output']>;
52335
+ description?: Maybe<SpaceDescriptionV2>;
52336
+ homepage?: Maybe<PageV2>;
52337
+ homepageId: Scalars['ID']['output'];
52338
+ icon?: Maybe<SpaceIconV2>;
52339
+ id: Scalars['ID']['output'];
52340
+ key: Scalars['String']['output'];
52341
+ name: Scalars['String']['output'];
52342
+ status: SpaceStatusV2;
52343
+ type: SpaceTypeV2;
52344
+ };
52345
+ export declare type SpaceV2DescriptionArgs = {
52346
+ format?: InputMaybe<SpaceDescriptionEnum>;
52347
+ };
52348
+ export declare type SpaceVersionV2 = {
52349
+ __typename?: 'SpaceVersionV2';
52350
+ authorId: Scalars['String']['output'];
52351
+ createdAt: Scalars['String']['output'];
52352
+ createdBy?: Maybe<Scalars['String']['output']>;
52353
+ message?: Maybe<Scalars['String']['output']>;
52354
+ number: Scalars['Int']['output'];
52355
+ };
51656
52356
  export declare type SplitIssueInput = {
51657
52357
  newIssues: Array<InputMaybe<NewSplitIssueRequest>>;
51658
52358
  originalIssue: OriginalSplitIssue;
@@ -52511,6 +53211,11 @@ export declare type TestingSubscriptionOnTestingActivityItemUpdateArgs = {
52511
53211
  export declare type TestingSubscriptionOnTestingActivityItemUpdateEnrichJiraArgs = {
52512
53212
  issueId: Scalars['ID']['input'];
52513
53213
  };
53214
+ export declare type ThemeV2 = {
53215
+ __typename?: 'ThemeV2';
53216
+ name?: Maybe<Scalars['String']['output']>;
53217
+ themeKey?: Maybe<Scalars['String']['output']>;
53218
+ };
52514
53219
  export declare type ThirdPartyDetails = {
52515
53220
  __typename?: 'ThirdPartyDetails';
52516
53221
  link: Scalars['String']['output'];
@@ -55092,6 +55797,19 @@ export declare type UpdateJiraProjectAndRepositoryRelationshipPayload = Payload
55092
55797
  jiraProjectAndRepositoryRelationship?: Maybe<JiraProjectAndRepositoryRelationship>;
55093
55798
  success: Scalars['Boolean']['output'];
55094
55799
  };
55800
+ export declare type UpdatePageV2Input = {
55801
+ body: FormattedBodyV2Input;
55802
+ id: Scalars['ID']['input'];
55803
+ parentId?: InputMaybe<Scalars['ID']['input']>;
55804
+ spaceId?: InputMaybe<Scalars['ID']['input']>;
55805
+ status: PageUpdateStatusV2;
55806
+ title: Scalars['String']['input'];
55807
+ version: VersionV2Input;
55808
+ };
55809
+ export declare type UpdatePageV2Payload = {
55810
+ __typename?: 'UpdatePageV2Payload';
55811
+ pageV2?: Maybe<PageV2>;
55812
+ };
55095
55813
  export declare type UpdatePolarisCommentInput = {
55096
55814
  content?: InputMaybe<Scalars['JSON']['input']>;
55097
55815
  delete?: InputMaybe<Scalars['Boolean']['input']>;
@@ -55357,6 +56075,18 @@ export declare type UserInstallationRulesPayload = Payload & {
55357
56075
  rule?: Maybe<UserInstallationRuleValue>;
55358
56076
  success: Scalars['Boolean']['output'];
55359
56077
  };
56078
+ export declare type VersionV2 = {
56079
+ __typename?: 'VersionV2';
56080
+ authorId?: Maybe<Scalars['String']['output']>;
56081
+ createdAt?: Maybe<Scalars['String']['output']>;
56082
+ message?: Maybe<Scalars['String']['output']>;
56083
+ minorEdit?: Maybe<Scalars['Boolean']['output']>;
56084
+ number: Scalars['Int']['output'];
56085
+ };
56086
+ export declare type VersionV2Input = {
56087
+ message?: InputMaybe<Scalars['String']['input']>;
56088
+ number: Scalars['Int']['input'];
56089
+ };
55360
56090
  export declare type VirtualAgentAiAnswerStatusForChannel = {
55361
56091
  __typename?: 'VirtualAgentAiAnswerStatusForChannel';
55362
56092
  isAiResponsesChannel?: Maybe<Scalars['Boolean']['output']>;