@forge/cli-shared 6.5.3 → 6.5.4-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.
@@ -368,6 +368,15 @@ export declare type ActionsTargetInputs = {
368
368
  ari?: Maybe<Array<Maybe<ActionsTargetAriInput>>>;
369
369
  id?: Maybe<Array<Maybe<ActionsTargetIdInput>>>;
370
370
  };
371
+ export declare type ActivatePaywallContentInput = {
372
+ contentIdToActivate: Scalars['ID']['input'];
373
+ deactivationIdentifier?: InputMaybe<Scalars['String']['input']>;
374
+ };
375
+ export declare type ActivatePaywallContentPayload = Payload & {
376
+ __typename?: 'ActivatePaywallContentPayload';
377
+ errors: Array<MutationError>;
378
+ success: Scalars['Boolean']['output'];
379
+ };
371
380
  export declare type Activities = {
372
381
  __typename?: 'Activities';
373
382
  all: ActivitiesConnection;
@@ -653,6 +662,17 @@ export declare type AddCompassComponentLabelsPayload = Payload & {
653
662
  errors?: Maybe<Array<MutationError>>;
654
663
  success: Scalars['Boolean']['output'];
655
664
  };
665
+ export declare type AddDefaultExCoSpacePermissionsInput = {
666
+ accountIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
667
+ groupIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
668
+ groupNames?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
669
+ spaceKeys: Array<InputMaybe<Scalars['String']['input']>>;
670
+ };
671
+ export declare type AddDefaultExCoSpacePermissionsPayload = {
672
+ __typename?: 'AddDefaultExCoSpacePermissionsPayload';
673
+ errors?: Maybe<Array<MutationError>>;
674
+ status: Scalars['Boolean']['output'];
675
+ };
656
676
  export declare type AddLabelsInput = {
657
677
  contentId: Scalars['ID']['input'];
658
678
  labels: Array<LabelInput>;
@@ -679,6 +699,17 @@ export declare type AddPolarisColumnInput = {
679
699
  heading?: InputMaybe<Scalars['String']['input']>;
680
700
  width?: InputMaybe<Scalars['Int']['input']>;
681
701
  };
702
+ export declare type AddPublicLinkPermissionsInput = {
703
+ objectId: Scalars['ID']['input'];
704
+ objectType: PublicLinkPermissionsObjectType;
705
+ permissions: Array<PublicLinkPermissionsType>;
706
+ };
707
+ export declare type AddPublicLinkPermissionsPayload = Payload & {
708
+ __typename?: 'AddPublicLinkPermissionsPayload';
709
+ data?: Maybe<PublicLinkPermissions>;
710
+ errors?: Maybe<Array<MutationError>>;
711
+ success: Scalars['Boolean']['output'];
712
+ };
682
713
  export declare type Admin = JiraUser | JiraUserGroup;
683
714
  export declare type AdminAnnouncementBannerFeature = {
684
715
  __typename?: 'AdminAnnouncementBannerFeature';
@@ -1893,6 +1924,14 @@ export declare type ArchivePolarisInsightsPayload = Payload & {
1893
1924
  errors?: Maybe<Array<MutationError>>;
1894
1925
  success: Scalars['Boolean']['output'];
1895
1926
  };
1927
+ export declare type ArchiveSpaceInput = {
1928
+ alias: Scalars['String']['input'];
1929
+ };
1930
+ export declare type ArchiveSpacePayload = Payload & {
1931
+ __typename?: 'ArchiveSpacePayload';
1932
+ errors?: Maybe<Array<MutationError>>;
1933
+ success: Scalars['Boolean']['output'];
1934
+ };
1896
1935
  export declare type ArchivedContentMetadata = {
1897
1936
  __typename?: 'ArchivedContentMetadata';
1898
1937
  archiveNote?: Maybe<Scalars['String']['output']>;
@@ -2648,6 +2687,15 @@ export declare type BulkDeleteCompassComponentsPayload = Payload & {
2648
2687
  errors?: Maybe<Array<MutationError>>;
2649
2688
  success: Scalars['Boolean']['output'];
2650
2689
  };
2690
+ export declare type BulkDeleteContentDataClassificationLevelInput = {
2691
+ contentStatuses: Array<InputMaybe<ContentDataClassificationMutationContentStatus>>;
2692
+ id: Scalars['Long']['input'];
2693
+ };
2694
+ export declare type BulkDeleteContentDataClassificationLevelPayload = Payload & {
2695
+ __typename?: 'BulkDeleteContentDataClassificationLevelPayload';
2696
+ errors?: Maybe<Array<MutationError>>;
2697
+ success: Scalars['Boolean']['output'];
2698
+ };
2651
2699
  export declare type BulkMutationErrorExtension = MutationErrorExtension & {
2652
2700
  __typename?: 'BulkMutationErrorExtension';
2653
2701
  errorType?: Maybe<Scalars['String']['output']>;
@@ -2661,6 +2709,60 @@ export declare type BulkPermittedResponse = {
2661
2709
  principalId?: Maybe<Scalars['String']['output']>;
2662
2710
  resourceId?: Maybe<Scalars['String']['output']>;
2663
2711
  };
2712
+ export declare type BulkRemoveRoleAssignmentFromSpacesInput = {
2713
+ principal: RoleAssignmentPrincipalInput;
2714
+ spaceTypes: Array<InputMaybe<BulkRoleAssignmentSpaceType>>;
2715
+ };
2716
+ export declare type BulkRemoveRoleAssignmentFromSpacesPayload = Payload & {
2717
+ __typename?: 'BulkRemoveRoleAssignmentFromSpacesPayload';
2718
+ errors?: Maybe<Array<MutationError>>;
2719
+ success: Scalars['Boolean']['output'];
2720
+ taskId?: Maybe<Scalars['ID']['output']>;
2721
+ };
2722
+ export declare enum BulkRoleAssignmentSpaceType {
2723
+ Collaboration = "COLLABORATION",
2724
+ Global = "GLOBAL",
2725
+ KnowledgeBase = "KNOWLEDGE_BASE",
2726
+ Personal = "PERSONAL"
2727
+ }
2728
+ export declare type BulkSetRoleAssignmentToSpacesInput = {
2729
+ roleAssignment: RoleAssignment;
2730
+ spaceTypes: Array<InputMaybe<BulkRoleAssignmentSpaceType>>;
2731
+ };
2732
+ export declare type BulkSetRoleAssignmentToSpacesPayload = Payload & {
2733
+ __typename?: 'BulkSetRoleAssignmentToSpacesPayload';
2734
+ errors?: Maybe<Array<MutationError>>;
2735
+ success: Scalars['Boolean']['output'];
2736
+ taskId?: Maybe<Scalars['ID']['output']>;
2737
+ };
2738
+ export declare type BulkSetSpacePermissionAsyncPayload = Payload & {
2739
+ __typename?: 'BulkSetSpacePermissionAsyncPayload';
2740
+ errors?: Maybe<Array<MutationError>>;
2741
+ success: Scalars['Boolean']['output'];
2742
+ taskId?: Maybe<Scalars['ID']['output']>;
2743
+ };
2744
+ export declare type BulkSetSpacePermissionInput = {
2745
+ spacePermissions: Array<InputMaybe<SpacePermissionType>>;
2746
+ spaceTypes: Array<InputMaybe<BulkSetSpacePermissionSpaceType>>;
2747
+ subjectId: Scalars['ID']['input'];
2748
+ subjectType: BulkSetSpacePermissionSubjectType;
2749
+ };
2750
+ export declare type BulkSetSpacePermissionPayload = Payload & {
2751
+ __typename?: 'BulkSetSpacePermissionPayload';
2752
+ errors?: Maybe<Array<MutationError>>;
2753
+ spacesUpdatedCount: Scalars['Int']['output'];
2754
+ success: Scalars['Boolean']['output'];
2755
+ };
2756
+ export declare enum BulkSetSpacePermissionSpaceType {
2757
+ Collaboration = "COLLABORATION",
2758
+ Global = "GLOBAL",
2759
+ KnowledgeBase = "KNOWLEDGE_BASE",
2760
+ Personal = "PERSONAL"
2761
+ }
2762
+ export declare enum BulkSetSpacePermissionSubjectType {
2763
+ Group = "GROUP",
2764
+ User = "USER"
2765
+ }
2664
2766
  export declare type BulkUpdateCompassComponentsInput = {
2665
2767
  ids: Array<Scalars['ID']['input']>;
2666
2768
  state?: InputMaybe<Scalars['String']['input']>;
@@ -2671,6 +2773,16 @@ export declare type BulkUpdateCompassComponentsPayload = Payload & {
2671
2773
  errors?: Maybe<Array<MutationError>>;
2672
2774
  success: Scalars['Boolean']['output'];
2673
2775
  };
2776
+ export declare type BulkUpdateContentDataClassificationLevelInput = {
2777
+ classificationLevelId: Scalars['ID']['input'];
2778
+ contentStatuses: Array<InputMaybe<ContentDataClassificationMutationContentStatus>>;
2779
+ id: Scalars['Long']['input'];
2780
+ };
2781
+ export declare type BulkUpdateContentDataClassificationLevelPayload = Payload & {
2782
+ __typename?: 'BulkUpdateContentDataClassificationLevelPayload';
2783
+ errors?: Maybe<Array<MutationError>>;
2784
+ success: Scalars['Boolean']['output'];
2785
+ };
2674
2786
  export declare type BulkUpdateMainSpaceSidebarLinksInput = {
2675
2787
  hidden: Scalars['Boolean']['input'];
2676
2788
  id?: InputMaybe<Scalars['ID']['input']>;
@@ -3567,6 +3679,11 @@ export declare type CcpUsageUpdateCadence = {
3567
3679
  cadenceIntervalMinutes?: Maybe<Scalars['Int']['output']>;
3568
3680
  name?: Maybe<Scalars['String']['output']>;
3569
3681
  };
3682
+ export declare type ChangeOwnerWarning = {
3683
+ __typename?: 'ChangeOwnerWarning';
3684
+ contentId?: Maybe<Scalars['Long']['output']>;
3685
+ message?: Maybe<Scalars['String']['output']>;
3686
+ };
3570
3687
  export declare type CheckConsentPermissionByOAuthClientIdInput = {
3571
3688
  cloudId: Scalars['ID']['input'];
3572
3689
  oauthClientId: Scalars['ID']['input'];
@@ -8173,6 +8290,12 @@ export declare type ConfluenceAdminAnnouncementBanner = {
8173
8290
  title?: Maybe<Scalars['String']['output']>;
8174
8291
  updatedAt: Scalars['String']['output'];
8175
8292
  };
8293
+ export declare type ConfluenceAdminAnnouncementBannerPayload = {
8294
+ __typename?: 'ConfluenceAdminAnnouncementBannerPayload';
8295
+ adminAnnouncementBannerSetting?: Maybe<ConfluenceAdminAnnouncementBannerSetting>;
8296
+ errors?: Maybe<Array<MutationError>>;
8297
+ success: Scalars['Boolean']['output'];
8298
+ };
8176
8299
  export declare type ConfluenceAdminAnnouncementBannerSetting = {
8177
8300
  __typename?: 'ConfluenceAdminAnnouncementBannerSetting';
8178
8301
  appearance: Scalars['String']['output'];
@@ -8202,6 +8325,12 @@ export declare type ConfluenceAdminReport = {
8202
8325
  reportId?: Maybe<Scalars['ID']['output']>;
8203
8326
  requesterId?: Maybe<Scalars['ID']['output']>;
8204
8327
  };
8328
+ export declare type ConfluenceAdminReportPayload = {
8329
+ __typename?: 'ConfluenceAdminReportPayload';
8330
+ errors?: Maybe<Array<MutationError>>;
8331
+ reportId: Scalars['ID']['output'];
8332
+ success: Scalars['Boolean']['output'];
8333
+ };
8205
8334
  export declare type ConfluenceAdminReportStatus = {
8206
8335
  __typename?: 'ConfluenceAdminReportStatus';
8207
8336
  reports?: Maybe<Array<Maybe<ConfluenceAdminReport>>>;
@@ -8308,6 +8437,15 @@ export declare type ConfluenceCalendarPreference = {
8308
8437
  view: Scalars['String']['output'];
8309
8438
  watchedSubCalendars?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
8310
8439
  };
8440
+ export declare type ConfluenceCalendarTimeZone = {
8441
+ __typename?: 'ConfluenceCalendarTimeZone';
8442
+ name?: Maybe<Scalars['String']['output']>;
8443
+ offset?: Maybe<Scalars['String']['output']>;
8444
+ };
8445
+ export declare type ConfluenceCalendarTimezones = {
8446
+ __typename?: 'ConfluenceCalendarTimezones';
8447
+ timezones?: Maybe<Array<Maybe<ConfluenceCalendarTimeZone>>>;
8448
+ };
8311
8449
  export declare type ConfluenceChildContent = {
8312
8450
  __typename?: 'ConfluenceChildContent';
8313
8451
  attachment: PaginatedContentList;
@@ -8369,15 +8507,6 @@ export declare enum ConfluenceCommentType {
8369
8507
  Footer = "FOOTER",
8370
8508
  Inline = "INLINE"
8371
8509
  }
8372
- export declare type ConfluenceConflictedMutationError = {
8373
- __typename?: 'ConfluenceConflictedMutationError';
8374
- extensions?: Maybe<Array<Maybe<MutationErrorExtension>>>;
8375
- message?: Maybe<Scalars['String']['output']>;
8376
- };
8377
- export declare type ConfluenceConflictedPayload = {
8378
- errors?: Maybe<Array<ConfluenceConflictedMutationError>>;
8379
- success: Scalars['Boolean']['output'];
8380
- };
8381
8510
  export declare type ConfluenceContentBody = {
8382
8511
  __typename?: 'ConfluenceContentBody';
8383
8512
  adf?: Maybe<Scalars['String']['output']>;
@@ -8447,6 +8576,17 @@ export declare type ConfluenceCopyPageTaskResult = {
8447
8576
  __typename?: 'ConfluenceCopyPageTaskResult';
8448
8577
  page?: Maybe<ConfluencePage>;
8449
8578
  };
8579
+ export declare type ConfluenceCreateAdminAnnouncementBannerInput = {
8580
+ appearance: Scalars['String']['input'];
8581
+ content: Scalars['String']['input'];
8582
+ isDismissible: Scalars['Boolean']['input'];
8583
+ scheduledEndTime?: InputMaybe<Scalars['String']['input']>;
8584
+ scheduledStartTime?: InputMaybe<Scalars['String']['input']>;
8585
+ scheduledTimeZone?: InputMaybe<Scalars['String']['input']>;
8586
+ status: ConfluenceAdminAnnouncementBannerStatusType;
8587
+ title?: InputMaybe<Scalars['String']['input']>;
8588
+ visibility: ConfluenceAdminAnnouncementBannerVisibilityType;
8589
+ };
8450
8590
  export declare type ConfluenceCreateBlogPostInput = {
8451
8591
  body?: InputMaybe<ConfluenceContentBodyInput>;
8452
8592
  spaceId: Scalars['ID']['input'];
@@ -8554,9 +8694,9 @@ export declare type ConfluenceDeleteCalendarCustomEventTypeInput = {
8554
8694
  id: Scalars['ID']['input'];
8555
8695
  subCalendarId: Scalars['ID']['input'];
8556
8696
  };
8557
- export declare type ConfluenceDeleteCalendarCustomEventTypePayload = ConfluenceConflictedPayload & {
8697
+ export declare type ConfluenceDeleteCalendarCustomEventTypePayload = Payload & {
8558
8698
  __typename?: 'ConfluenceDeleteCalendarCustomEventTypePayload';
8559
- errors?: Maybe<Array<ConfluenceConflictedMutationError>>;
8699
+ errors?: Maybe<Array<MutationError>>;
8560
8700
  success: Scalars['Boolean']['output'];
8561
8701
  };
8562
8702
  export declare type ConfluenceDeleteCommentInput = {
@@ -8597,26 +8737,26 @@ export declare type ConfluenceDeleteSubCalendarAllFutureEventsInput = {
8597
8737
  subCalendarId: Scalars['ID']['input'];
8598
8738
  uid: Scalars['ID']['input'];
8599
8739
  };
8600
- export declare type ConfluenceDeleteSubCalendarAllFutureEventsPayload = ConfluenceConflictedPayload & {
8740
+ export declare type ConfluenceDeleteSubCalendarAllFutureEventsPayload = Payload & {
8601
8741
  __typename?: 'ConfluenceDeleteSubCalendarAllFutureEventsPayload';
8602
- errors?: Maybe<Array<ConfluenceConflictedMutationError>>;
8742
+ errors?: Maybe<Array<MutationError>>;
8603
8743
  success: Scalars['Boolean']['output'];
8604
8744
  };
8605
8745
  export declare type ConfluenceDeleteSubCalendarEventInput = {
8606
8746
  subCalendarId: Scalars['ID']['input'];
8607
8747
  uid: Scalars['ID']['input'];
8608
8748
  };
8609
- export declare type ConfluenceDeleteSubCalendarEventPayload = ConfluenceConflictedPayload & {
8749
+ export declare type ConfluenceDeleteSubCalendarEventPayload = Payload & {
8610
8750
  __typename?: 'ConfluenceDeleteSubCalendarEventPayload';
8611
- errors?: Maybe<Array<ConfluenceConflictedMutationError>>;
8751
+ errors?: Maybe<Array<MutationError>>;
8612
8752
  success: Scalars['Boolean']['output'];
8613
8753
  };
8614
8754
  export declare type ConfluenceDeleteSubCalendarHiddenEventsInput = {
8615
8755
  subCalendarId: Scalars['ID']['input'];
8616
8756
  };
8617
- export declare type ConfluenceDeleteSubCalendarHiddenEventsPayload = ConfluenceConflictedPayload & {
8757
+ export declare type ConfluenceDeleteSubCalendarHiddenEventsPayload = Payload & {
8618
8758
  __typename?: 'ConfluenceDeleteSubCalendarHiddenEventsPayload';
8619
- errors?: Maybe<Array<ConfluenceConflictedMutationError>>;
8759
+ errors?: Maybe<Array<MutationError>>;
8620
8760
  subCalendarIds?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
8621
8761
  success: Scalars['Boolean']['output'];
8622
8762
  };
@@ -8626,9 +8766,9 @@ export declare type ConfluenceDeleteSubCalendarSingleEventInput = {
8626
8766
  subCalendarId: Scalars['ID']['input'];
8627
8767
  uid: Scalars['ID']['input'];
8628
8768
  };
8629
- export declare type ConfluenceDeleteSubCalendarSingleEventPayload = ConfluenceConflictedPayload & {
8769
+ export declare type ConfluenceDeleteSubCalendarSingleEventPayload = Payload & {
8630
8770
  __typename?: 'ConfluenceDeleteSubCalendarSingleEventPayload';
8631
- errors?: Maybe<Array<ConfluenceConflictedMutationError>>;
8771
+ errors?: Maybe<Array<MutationError>>;
8632
8772
  success: Scalars['Boolean']['output'];
8633
8773
  };
8634
8774
  export declare enum ConfluenceEdition {
@@ -8733,7 +8873,7 @@ export declare type ConfluenceInviteUserInput = {
8733
8873
  };
8734
8874
  export declare type ConfluenceInviteUserPayload = {
8735
8875
  __typename?: 'ConfluenceInviteUserPayload';
8736
- errors?: Maybe<Array<ConfluenceConflictedMutationError>>;
8876
+ errors?: Maybe<Array<MutationError>>;
8737
8877
  success: Scalars['Boolean']['output'];
8738
8878
  };
8739
8879
  export declare type ConfluenceLabel = {
@@ -14899,6 +15039,10 @@ export declare type ConfluenceSpaceDetailsSpaceOwner = {
14899
15039
  ownerId?: Maybe<Scalars['String']['output']>;
14900
15040
  ownerType?: Maybe<ConfluenceSpaceOwnerType>;
14901
15041
  };
15042
+ export declare type ConfluenceSpaceDetailsSpaceOwnerInput = {
15043
+ ownerId?: InputMaybe<Scalars['String']['input']>;
15044
+ ownerType?: InputMaybe<ConfluenceSpaceOwnerType>;
15045
+ };
14902
15046
  export declare type ConfluenceSpaceEdge = {
14903
15047
  __typename?: 'ConfluenceSpaceEdge';
14904
15048
  cursor: Scalars['String']['output'];
@@ -15000,9 +15144,21 @@ export declare type ConfluenceUnwatchSubCalendarInput = {
15000
15144
  };
15001
15145
  export declare type ConfluenceUnwatchSubCalendarPayload = {
15002
15146
  __typename?: 'ConfluenceUnwatchSubCalendarPayload';
15003
- errors?: Maybe<Array<ConfluenceConflictedMutationError>>;
15147
+ errors?: Maybe<Array<MutationError>>;
15004
15148
  success: Scalars['Boolean']['output'];
15005
15149
  };
15150
+ export declare type ConfluenceUpdateAdminAnnouncementBannerInput = {
15151
+ appearance?: InputMaybe<Scalars['String']['input']>;
15152
+ content?: InputMaybe<Scalars['String']['input']>;
15153
+ id: Scalars['ID']['input'];
15154
+ isDismissible?: InputMaybe<Scalars['Boolean']['input']>;
15155
+ scheduledEndTime?: InputMaybe<Scalars['String']['input']>;
15156
+ scheduledStartTime?: InputMaybe<Scalars['String']['input']>;
15157
+ scheduledTimeZone?: InputMaybe<Scalars['String']['input']>;
15158
+ status?: InputMaybe<ConfluenceAdminAnnouncementBannerStatusType>;
15159
+ title?: InputMaybe<Scalars['String']['input']>;
15160
+ visibility?: InputMaybe<ConfluenceAdminAnnouncementBannerVisibilityType>;
15161
+ };
15006
15162
  export declare type ConfluenceUpdateCommentInput = {
15007
15163
  body: ConfluenceContentBodyInput;
15008
15164
  id: Scalars['ID']['input'];
@@ -15080,9 +15236,9 @@ export declare type ConfluenceUpdateSpaceSettingsPayload = Payload & {
15080
15236
  export declare type ConfluenceUpdateSubCalendarHiddenEventsInput = {
15081
15237
  subCalendarId: Scalars['ID']['input'];
15082
15238
  };
15083
- export declare type ConfluenceUpdateSubCalendarHiddenEventsPayload = ConfluenceConflictedPayload & {
15239
+ export declare type ConfluenceUpdateSubCalendarHiddenEventsPayload = Payload & {
15084
15240
  __typename?: 'ConfluenceUpdateSubCalendarHiddenEventsPayload';
15085
- errors?: Maybe<Array<ConfluenceConflictedMutationError>>;
15241
+ errors?: Maybe<Array<MutationError>>;
15086
15242
  subCalendarIds?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
15087
15243
  success: Scalars['Boolean']['output'];
15088
15244
  };
@@ -15092,7 +15248,7 @@ export declare type ConfluenceUpdateTeamPresenceSpaceSettingsInput = {
15092
15248
  };
15093
15249
  export declare type ConfluenceUpdateTeamPresenceSpaceSettingsPayload = {
15094
15250
  __typename?: 'ConfluenceUpdateTeamPresenceSpaceSettingsPayload';
15095
- errors?: Maybe<Array<ConfluenceConflictedMutationError>>;
15251
+ errors?: Maybe<Array<MutationError>>;
15096
15252
  isEnabledOnContentView: Scalars['Boolean']['output'];
15097
15253
  success: Scalars['Boolean']['output'];
15098
15254
  };
@@ -15675,7 +15831,7 @@ export declare type ConfluenceWatchSubCalendarInput = {
15675
15831
  };
15676
15832
  export declare type ConfluenceWatchSubCalendarPayload = {
15677
15833
  __typename?: 'ConfluenceWatchSubCalendarPayload';
15678
- errors?: Maybe<Array<ConfluenceConflictedMutationError>>;
15834
+ errors?: Maybe<Array<MutationError>>;
15679
15835
  success: Scalars['Boolean']['output'];
15680
15836
  };
15681
15837
  export declare type ConfluenceWhiteboard = {
@@ -16212,6 +16368,10 @@ export declare type ContentDataClassificationLevel = {
16212
16368
  order?: Maybe<Scalars['Int']['output']>;
16213
16369
  status: Scalars['String']['output'];
16214
16370
  };
16371
+ export declare enum ContentDataClassificationMutationContentStatus {
16372
+ Current = "CURRENT",
16373
+ Draft = "DRAFT"
16374
+ }
16215
16375
  export declare enum ContentDataClassificationQueryContentStatus {
16216
16376
  Archived = "ARCHIVED",
16217
16377
  Current = "CURRENT",
@@ -16260,6 +16420,11 @@ export declare type ContentMediaSession = {
16260
16420
  mediaPickerUserToken?: Maybe<MediaPickerUserToken>;
16261
16421
  token: MediaToken;
16262
16422
  };
16423
+ export declare type ContentMention = {
16424
+ mentionLocalId?: InputMaybe<Scalars['ID']['input']>;
16425
+ mentionedUserAccountId: Scalars['ID']['input'];
16426
+ notificationAction: NotificationAction;
16427
+ };
16263
16428
  export declare type ContentMetadata = {
16264
16429
  __typename?: 'ContentMetadata';
16265
16430
  comments?: Maybe<ContentMetadata_CommentsMetadataProvider_Comments>;
@@ -17753,6 +17918,11 @@ export declare type ContentRestrictionsPageResponse = {
17753
17918
  links?: Maybe<LinksContextSelfBase>;
17754
17919
  restrictionsHash?: Maybe<Scalars['String']['output']>;
17755
17920
  };
17921
+ export declare enum ContentRole {
17922
+ Default = "DEFAULT",
17923
+ Editor = "EDITOR",
17924
+ Viewer = "VIEWER"
17925
+ }
17756
17926
  export declare type ContentSpecificCreateInput = {
17757
17927
  key: Scalars['String']['input'];
17758
17928
  value: Scalars['String']['input'];
@@ -17872,6 +18042,14 @@ export declare type Contributors = {
17872
18042
  links?: Maybe<LinksContextBase>;
17873
18043
  publishers?: Maybe<ContributorUsers>;
17874
18044
  };
18045
+ export declare type ConvertPageToLiveEditActionInput = {
18046
+ contentId: Scalars['ID']['input'];
18047
+ };
18048
+ export declare type ConvertPageToLiveEditActionPayload = Payload & {
18049
+ __typename?: 'ConvertPageToLiveEditActionPayload';
18050
+ errors?: Maybe<Array<MutationError>>;
18051
+ success: Scalars['Boolean']['output'];
18052
+ };
17875
18053
  export declare type ConvertPageToLiveEditValidationResult = {
17876
18054
  __typename?: 'ConvertPageToLiveEditValidationResult';
17877
18055
  hasFooterComments?: Maybe<Scalars['Boolean']['output']>;
@@ -18244,6 +18422,16 @@ export declare type CreateContentInput = {
18244
18422
  title?: InputMaybe<Scalars['String']['input']>;
18245
18423
  type: Scalars['String']['input'];
18246
18424
  };
18425
+ export declare type CreateContentMentionNotificationActionInput = {
18426
+ contentId: Scalars['ID']['input'];
18427
+ mentions: Array<InputMaybe<ContentMention>>;
18428
+ };
18429
+ export declare type CreateContentMentionNotificationActionPayload = Payload & {
18430
+ __typename?: 'CreateContentMentionNotificationActionPayload';
18431
+ contentId: Scalars['String']['output'];
18432
+ errors?: Maybe<Array<MutationError>>;
18433
+ success: Scalars['Boolean']['output'];
18434
+ };
18247
18435
  export declare type CreateContentTemplateInput = {
18248
18436
  body: ContentTemplateBodyInput;
18249
18437
  description?: InputMaybe<Scalars['String']['input']>;
@@ -18340,6 +18528,15 @@ export declare type CreateEventSourcePayload = Payload & {
18340
18528
  eventSource?: Maybe<EventSource>;
18341
18529
  success: Scalars['Boolean']['output'];
18342
18530
  };
18531
+ export declare type CreateFaviconFilesInput = {
18532
+ fileStoreId: Scalars['ID']['input'];
18533
+ };
18534
+ export declare type CreateFaviconFilesPayload = Payload & {
18535
+ __typename?: 'CreateFaviconFilesPayload';
18536
+ errors?: Maybe<Array<MutationError>>;
18537
+ faviconFiles?: Maybe<Array<FaviconFile>>;
18538
+ success: Scalars['Boolean']['output'];
18539
+ };
18343
18540
  export declare type CreateHostedResourceUploadUrlInput = {
18344
18541
  appId: Scalars['ID']['input'];
18345
18542
  environmentKey: Scalars['String']['input'];
@@ -18379,6 +18576,17 @@ export declare type CreateInlineContentInput = {
18379
18576
  title?: InputMaybe<Scalars['String']['input']>;
18380
18577
  type: Scalars['String']['input'];
18381
18578
  };
18579
+ export declare type CreateInlineTaskNotificationInput = {
18580
+ contentId: Scalars['ID']['input'];
18581
+ tasks: Array<InputMaybe<IndividualInlineTaskNotificationInput>>;
18582
+ };
18583
+ export declare type CreateInlineTaskNotificationPayload = Payload & {
18584
+ __typename?: 'CreateInlineTaskNotificationPayload';
18585
+ contentId: Scalars['ID']['output'];
18586
+ errors?: Maybe<Array<MutationError>>;
18587
+ success: Scalars['Boolean']['output'];
18588
+ tasks: Array<Maybe<IndividualInlineTaskNotification>>;
18589
+ };
18382
18590
  export declare type CreateJiraPlaybookInput = {
18383
18591
  cloudId: Scalars['ID']['input'];
18384
18592
  filters?: InputMaybe<Array<JiraPlaybookIssueFilterInput>>;
@@ -18415,6 +18623,28 @@ export declare type CreateLivePageInput = {
18415
18623
  spaceKey: Scalars['String']['input'];
18416
18624
  title?: InputMaybe<Scalars['String']['input']>;
18417
18625
  };
18626
+ export declare type CreateMentionNotificationInput = {
18627
+ contentId: Scalars['ID']['input'];
18628
+ mentionLocalId?: InputMaybe<Scalars['ID']['input']>;
18629
+ mentionedUserAccountId: Scalars['ID']['input'];
18630
+ };
18631
+ export declare type CreateMentionNotificationPayload = Payload & {
18632
+ __typename?: 'CreateMentionNotificationPayload';
18633
+ contentId: Scalars['String']['output'];
18634
+ errors?: Maybe<Array<MutationError>>;
18635
+ success: Scalars['Boolean']['output'];
18636
+ };
18637
+ export declare type CreateMentionReminderNotificationInput = {
18638
+ contentId: Scalars['ID']['input'];
18639
+ mentionData: Array<MentionData>;
18640
+ };
18641
+ export declare type CreateMentionReminderNotificationPayload = Payload & {
18642
+ __typename?: 'CreateMentionReminderNotificationPayload';
18643
+ contentId: Scalars['String']['output'];
18644
+ errors?: Maybe<Array<MutationError>>;
18645
+ failedAccountIds?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
18646
+ success: Scalars['Boolean']['output'];
18647
+ };
18418
18648
  export declare type CreatePersonalSpaceInput = {
18419
18649
  copySpacePermissionsFromSpaceKey?: InputMaybe<Scalars['String']['input']>;
18420
18650
  initialPermissionOption?: InputMaybe<InitialPermissionOptions>;
@@ -19701,6 +19931,14 @@ export declare type DateSearchInput = {
19701
19931
  earliestStart?: InputMaybe<Scalars['String']['input']>;
19702
19932
  latestStart?: InputMaybe<Scalars['String']['input']>;
19703
19933
  };
19934
+ export declare type DeactivatePaywallContentInput = {
19935
+ deactivationIdentifier: Scalars['ID']['input'];
19936
+ };
19937
+ export declare type DeactivatePaywallContentPayload = Payload & {
19938
+ __typename?: 'DeactivatePaywallContentPayload';
19939
+ errors: Array<MutationError>;
19940
+ success: Scalars['Boolean']['output'];
19941
+ };
19704
19942
  export declare enum DeactivatedPageOwnerUserType {
19705
19943
  FormerUsers = "FORMER_USERS",
19706
19944
  NonFormerUsers = "NON_FORMER_USERS"
@@ -19861,6 +20099,15 @@ export declare type DeleteCompassStarredComponentPayload = Payload & {
19861
20099
  export declare type DeleteCompassUserDefinedParameterInput = {
19862
20100
  id: Scalars['ID']['input'];
19863
20101
  };
20102
+ export declare type DeleteContentDataClassificationLevelInput = {
20103
+ contentStatus: ContentDataClassificationMutationContentStatus;
20104
+ id: Scalars['Long']['input'];
20105
+ };
20106
+ export declare type DeleteContentDataClassificationLevelPayload = Payload & {
20107
+ __typename?: 'DeleteContentDataClassificationLevelPayload';
20108
+ errors?: Maybe<Array<MutationError>>;
20109
+ success: Scalars['Boolean']['output'];
20110
+ };
19864
20111
  export declare type DeleteContentResponsePayload = {
19865
20112
  __typename?: 'DeleteContentResponsePayload';
19866
20113
  contentId: Scalars['ID']['output'];
@@ -19879,6 +20126,14 @@ export declare type DeleteCustomFilterInput = {
19879
20126
  boardId: Scalars['ID']['input'];
19880
20127
  customFilterId: Scalars['String']['input'];
19881
20128
  };
20129
+ export declare type DeleteDefaultSpaceRoleAssignmentsInput = {
20130
+ principalsList: Array<RoleAssignmentPrincipalInput>;
20131
+ };
20132
+ export declare type DeleteDefaultSpaceRoleAssignmentsPayload = Payload & {
20133
+ __typename?: 'DeleteDefaultSpaceRoleAssignmentsPayload';
20134
+ errors?: Maybe<Array<MutationError>>;
20135
+ success: Scalars['Boolean']['output'];
20136
+ };
19882
20137
  export declare type DeleteDevOpsContainerRelationshipEntityPropertiesInput = {
19883
20138
  id: Scalars['ID']['input'];
19884
20139
  keys: Array<Scalars['String']['input']>;
@@ -20022,6 +20277,23 @@ export declare type DeleteRelationPayload = {
20022
20277
  sourceKey: Scalars['String']['output'];
20023
20278
  targetKey: Scalars['String']['output'];
20024
20279
  };
20280
+ export declare type DeleteSpaceDefaultClassificationLevelInput = {
20281
+ id: Scalars['Long']['input'];
20282
+ };
20283
+ export declare type DeleteSpaceDefaultClassificationLevelPayload = Payload & {
20284
+ __typename?: 'DeleteSpaceDefaultClassificationLevelPayload';
20285
+ errors?: Maybe<Array<MutationError>>;
20286
+ success: Scalars['Boolean']['output'];
20287
+ };
20288
+ export declare type DeleteSpaceRoleAssignmentsInput = {
20289
+ principalList: Array<RoleAssignmentPrincipalInput>;
20290
+ spaceId: Scalars['Long']['input'];
20291
+ };
20292
+ export declare type DeleteSpaceRoleAssignmentsPayload = Payload & {
20293
+ __typename?: 'DeleteSpaceRoleAssignmentsPayload';
20294
+ errors?: Maybe<Array<MutationError>>;
20295
+ success: Scalars['Boolean']['output'];
20296
+ };
20025
20297
  export declare type DeleteSprintInput = {
20026
20298
  boardId: Scalars['ID']['input'];
20027
20299
  sprintId: Scalars['ID']['input'];
@@ -22568,6 +22840,17 @@ export declare enum EditorConversionSetting {
22568
22840
  None = "NONE",
22569
22841
  Supported = "SUPPORTED"
22570
22842
  }
22843
+ export declare type EditorDraftSyncInput = {
22844
+ contentId: Scalars['ID']['input'];
22845
+ doSetRelations?: InputMaybe<Scalars['Boolean']['input']>;
22846
+ latestAdf?: InputMaybe<Scalars['String']['input']>;
22847
+ ncsStepVersion?: InputMaybe<Scalars['Int']['input']>;
22848
+ };
22849
+ export declare type EditorDraftSyncPayload = Payload & {
22850
+ __typename?: 'EditorDraftSyncPayload';
22851
+ errors?: Maybe<Array<MutationError>>;
22852
+ success: Scalars['Boolean']['output'];
22853
+ };
22571
22854
  export declare type EditorVersionsMetadataDto = {
22572
22855
  __typename?: 'EditorVersionsMetadataDto';
22573
22856
  blogpost?: Maybe<Scalars['String']['output']>;
@@ -23705,6 +23988,15 @@ export declare type FailedRoles = {
23705
23988
  reason: Scalars['String']['output'];
23706
23989
  role?: Maybe<AppContributorRole>;
23707
23990
  };
23991
+ export declare type FaviconFile = {
23992
+ __typename?: 'FaviconFile';
23993
+ fileStoreId: Scalars['ID']['output'];
23994
+ filename: Scalars['String']['output'];
23995
+ };
23996
+ export declare type FaviconFileInput = {
23997
+ fileStoreId: Scalars['ID']['input'];
23998
+ filename: Scalars['String']['input'];
23999
+ };
23708
24000
  export declare type FavouritePageInput = {
23709
24001
  pageId: Scalars['ID']['input'];
23710
24002
  };
@@ -23712,6 +24004,13 @@ export declare type FavouritePagePayload = {
23712
24004
  __typename?: 'FavouritePagePayload';
23713
24005
  content: Content;
23714
24006
  };
24007
+ export declare type FavouriteSpaceBulkPayload = Payload & {
24008
+ __typename?: 'FavouriteSpaceBulkPayload';
24009
+ errors?: Maybe<Array<MutationError>>;
24010
+ failedSpaceKeys?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
24011
+ spacesFavouritedMap?: Maybe<Array<Maybe<MapOfStringToBoolean>>>;
24012
+ success: Scalars['Boolean']['output'];
24013
+ };
23715
24014
  export declare type FavouriteSpacePayload = {
23716
24015
  __typename?: 'FavouriteSpacePayload';
23717
24016
  isSpaceFavourited?: Maybe<Scalars['Boolean']['output']>;
@@ -26400,6 +26699,16 @@ export declare enum GraphQlContentTemplateType {
26400
26699
  Blueprint = "BLUEPRINT",
26401
26700
  Page = "PAGE"
26402
26701
  }
26702
+ export declare enum GraphQlCoverPictureWidth {
26703
+ Fixed = "FIXED",
26704
+ Full = "FULL"
26705
+ }
26706
+ export declare enum GraphQlFrontCoverState {
26707
+ Hidden = "HIDDEN",
26708
+ Shown = "SHOWN",
26709
+ Transition = "TRANSITION",
26710
+ Unset = "UNSET"
26711
+ }
26403
26712
  export declare type GraphQlGlobalDescription = {
26404
26713
  __typename?: 'GraphQLGlobalDescription';
26405
26714
  id: Scalars['ID']['output'];
@@ -26451,6 +26760,23 @@ export declare type GraphQlRelevantFeedFilters = {
26451
26760
  relevantFeedSpacesFilter: Array<Maybe<Scalars['Long']['output']>>;
26452
26761
  relevantFeedUsersFilter: Array<Maybe<Scalars['String']['output']>>;
26453
26762
  };
26763
+ export declare type GraphQlSmartLinkContent = {
26764
+ __typename?: 'GraphQLSmartLinkContent';
26765
+ contentId: Scalars['ID']['output'];
26766
+ contentType?: Maybe<Scalars['String']['output']>;
26767
+ embedURL: Scalars['String']['output'];
26768
+ iconURL?: Maybe<Scalars['String']['output']>;
26769
+ parentPageId: Scalars['String']['output'];
26770
+ spaceId: Scalars['String']['output'];
26771
+ title?: Maybe<Scalars['String']['output']>;
26772
+ };
26773
+ export declare type GraphQlSpaceShortcutsInput = {
26774
+ iconUrl?: InputMaybe<Scalars['String']['input']>;
26775
+ isPinnedPage: Scalars['Boolean']['input'];
26776
+ shortcutId: Scalars['ID']['input'];
26777
+ title?: InputMaybe<Scalars['String']['input']>;
26778
+ url?: InputMaybe<Scalars['String']['input']>;
26779
+ };
26454
26780
  export declare enum GraphQlTemplateContentAppearance {
26455
26781
  Default = "DEFAULT",
26456
26782
  FullWidth = "FULL_WIDTH"
@@ -45052,6 +45378,12 @@ export declare type HamsTrial = CommerceTrial & {
45052
45378
  endTimestamp?: Maybe<Scalars['Float']['output']>;
45053
45379
  startTimestamp?: Maybe<Scalars['Float']['output']>;
45054
45380
  };
45381
+ export declare type HardDeleteSpacePayload = {
45382
+ __typename?: 'HardDeleteSpacePayload';
45383
+ errors?: Maybe<Array<MutationError>>;
45384
+ success: Scalars['Boolean']['output'];
45385
+ taskId?: Maybe<Scalars['String']['output']>;
45386
+ };
45055
45387
  export declare type HasMercuryProjectFields = {
45056
45388
  mercuryProjectIcon?: Maybe<Scalars['URL']['output']>;
45057
45389
  mercuryProjectKey?: Maybe<Scalars['String']['output']>;
@@ -46825,6 +47157,21 @@ export declare type IncomingLinksCount = {
46825
47157
  __typename?: 'IncomingLinksCount';
46826
47158
  count?: Maybe<Scalars['Int']['output']>;
46827
47159
  };
47160
+ export declare type IndividualInlineTaskNotification = {
47161
+ __typename?: 'IndividualInlineTaskNotification';
47162
+ notificationAction?: Maybe<NotificationAction>;
47163
+ operation: Operation;
47164
+ recipientAccountId: Scalars['ID']['output'];
47165
+ recipientMentionLocalId?: Maybe<Scalars['ID']['output']>;
47166
+ taskId: Scalars['ID']['output'];
47167
+ };
47168
+ export declare type IndividualInlineTaskNotificationInput = {
47169
+ notificationAction?: InputMaybe<NotificationAction>;
47170
+ operation: Operation;
47171
+ recipientAccountId: Scalars['ID']['input'];
47172
+ recipientMentionLocalId?: InputMaybe<Scalars['ID']['input']>;
47173
+ taskId: Scalars['ID']['input'];
47174
+ };
46828
47175
  export declare type InfluentsNotificationAction = {
46829
47176
  __typename?: 'InfluentsNotificationAction';
46830
47177
  appearance: InfluentsNotificationAppearance;
@@ -65901,6 +66248,11 @@ export declare type MacroBody = {
65901
66248
  value?: Maybe<Scalars['String']['output']>;
65902
66249
  webResourceDependencies?: Maybe<WebResourceDependencies>;
65903
66250
  };
66251
+ export declare type MapOfStringToBoolean = {
66252
+ __typename?: 'MapOfStringToBoolean';
66253
+ key?: Maybe<Scalars['String']['output']>;
66254
+ value?: Maybe<Scalars['Boolean']['output']>;
66255
+ };
65904
66256
  export declare type MapOfStringToFormattedBody = {
65905
66257
  __typename?: 'MapOfStringToFormattedBody';
65906
66258
  key?: Maybe<Scalars['String']['output']>;
@@ -68016,6 +68368,10 @@ export declare enum MembershipState {
68016
68368
  Invited = "INVITED",
68017
68369
  RequestingToJoin = "REQUESTING_TO_JOIN"
68018
68370
  }
68371
+ export declare type MentionData = {
68372
+ mentionLocalIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
68373
+ mentionedUserAccountId: Scalars['ID']['input'];
68374
+ };
68019
68375
  export declare type MenusLookAndFeel = {
68020
68376
  __typename?: 'MenusLookAndFeel';
68021
68377
  color?: Maybe<Scalars['String']['output']>;
@@ -69334,6 +69690,13 @@ export declare type MigrateComponentTypePayload = Payload & {
69334
69690
  hasMore?: Maybe<Scalars['Boolean']['output']>;
69335
69691
  success: Scalars['Boolean']['output'];
69336
69692
  };
69693
+ export declare type MigrateSpaceShortcutsPayload = {
69694
+ __typename?: 'MigrateSpaceShortcutsPayload';
69695
+ errors?: Maybe<Array<MutationError>>;
69696
+ parentPageId?: Maybe<Scalars['String']['output']>;
69697
+ smartLinksContentList: Array<Maybe<GraphQlSmartLinkContent>>;
69698
+ success: Scalars['Boolean']['output'];
69699
+ };
69337
69700
  export declare type Migration = {
69338
69701
  __typename?: 'Migration';
69339
69702
  estimation?: Maybe<MigrationEstimation>;
@@ -69534,8 +69897,11 @@ export declare type MoveSprintUpResponse = MutationResponse & {
69534
69897
  export declare type Mutation = {
69535
69898
  __typename?: 'Mutation';
69536
69899
  actions?: Maybe<ActionsMutation>;
69900
+ activatePaywallContent?: Maybe<ActivatePaywallContentPayload>;
69537
69901
  addBetaUserAsSiteCreator?: Maybe<AddBetaUserAsSiteCreatorPayload>;
69902
+ addDefaultExCoSpacePermissions?: Maybe<AddDefaultExCoSpacePermissionsPayload>;
69538
69903
  addLabels?: Maybe<AddLabelsPayload>;
69904
+ addPublicLinkPermissions?: Maybe<AddPublicLinkPermissionsPayload>;
69539
69905
  addReaction?: Maybe<SaveReactionResponse>;
69540
69906
  appRecommendations?: Maybe<AppRecMutation>;
69541
69907
  appStorage?: Maybe<AppStorageMutation>;
@@ -69543,10 +69909,17 @@ export declare type Mutation = {
69543
69909
  applyPolarisProjectTemplate?: Maybe<ApplyPolarisProjectTemplatePayload>;
69544
69910
  archivePages?: Maybe<BulkArchivePagePayload>;
69545
69911
  archivePolarisInsights?: Maybe<ArchivePolarisInsightsPayload>;
69912
+ archiveSpace?: Maybe<ArchiveSpacePayload>;
69546
69913
  assignIssueParent?: Maybe<AssignIssueParentOutput>;
69547
69914
  attachDanglingComment?: Maybe<Comment>;
69548
69915
  boardCardMove?: Maybe<MoveCardOutput>;
69916
+ bulkDeleteContentDataClassificationLevel?: Maybe<BulkDeleteContentDataClassificationLevelPayload>;
69917
+ bulkRemoveRoleAssignmentFromSpaces?: Maybe<BulkRemoveRoleAssignmentFromSpacesPayload>;
69918
+ bulkSetRoleAssignmentToSpaces?: Maybe<BulkSetRoleAssignmentToSpacesPayload>;
69919
+ bulkSetSpacePermission?: Maybe<BulkSetSpacePermissionPayload>;
69920
+ bulkSetSpacePermissionAsync?: Maybe<BulkSetSpacePermissionAsyncPayload>;
69549
69921
  bulkUnarchivePages?: Maybe<BulkArchivePagePayload>;
69922
+ bulkUpdateContentDataClassificationLevel?: Maybe<BulkUpdateContentDataClassificationLevelPayload>;
69550
69923
  bulkUpdateMainSpaceSidebarLinks?: Maybe<Array<Maybe<SpaceSidebarLink>>>;
69551
69924
  clearRestrictionsForFree?: Maybe<ContentRestrictionsPageResponse>;
69552
69925
  compass?: Maybe<CompassCatalogMutationApi>;
@@ -69730,10 +70103,12 @@ export declare type Mutation = {
69730
70103
  connectionManager_deleteApiTokenConnectionForJiraProject?: Maybe<ConnectionManagerDeleteApiTokenConnectionForJiraProjectPayload>;
69731
70104
  connectionManager_deleteConnectionForJiraProject?: Maybe<ConnectionManagerDeleteConnectionForJiraProjectPayload>;
69732
70105
  contactAdmin?: Maybe<GraphQlContactAdminStatus>;
70106
+ convertPageToLiveEditAction?: Maybe<ConvertPageToLiveEditActionPayload>;
69733
70107
  convertToFolder?: Maybe<ConfluenceConvertContentToFolderPayload>;
69734
70108
  copyDefaultSpacePermissions?: Maybe<CopySpacePermissionsPayload>;
69735
70109
  copyPolarisInsights?: Maybe<CopyPolarisInsightsPayload>;
69736
70110
  copySpacePermissions?: Maybe<CopySpacePermissionsPayload>;
70111
+ createAdminAnnouncementBanner?: Maybe<ConfluenceAdminAnnouncementBannerPayload>;
69737
70112
  createApp?: Maybe<CreateAppResponse>;
69738
70113
  createAppDeployment?: Maybe<CreateAppDeploymentResponse>;
69739
70114
  createAppDeploymentUrl?: Maybe<CreateAppDeploymentUrlResponse>;
@@ -69743,6 +70118,7 @@ export declare type Mutation = {
69743
70118
  createContentContextual?: Maybe<Content>;
69744
70119
  createContentGlobal?: Maybe<Content>;
69745
70120
  createContentInline?: Maybe<Content>;
70121
+ createContentMentionNotificationAction?: Maybe<CreateContentMentionNotificationActionPayload>;
69746
70122
  createContentTemplateLabels?: Maybe<PaginatedLabelList>;
69747
70123
  createCustomFilter?: Maybe<CustomFilterCreateOutput>;
69748
70124
  createCustomFilterV2?: Maybe<CustomFilterCreateOutputV2>;
@@ -69751,10 +70127,14 @@ export declare type Mutation = {
69751
70127
  createDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<CreateDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
69752
70128
  createDevOpsServiceAndRepositoryRelationship?: Maybe<CreateDevOpsServiceAndRepositoryRelationshipPayload>;
69753
70129
  createDevOpsServiceRelationship?: Maybe<CreateDevOpsServiceRelationshipPayload>;
70130
+ createFaviconFiles?: Maybe<CreateFaviconFilesPayload>;
69754
70131
  createFooterComment?: Maybe<Comment>;
69755
70132
  createHostedResourceUploadUrl?: Maybe<CreateHostedResourceUploadUrlPayload>;
69756
70133
  createInlineComment?: Maybe<Comment>;
70134
+ createInlineTaskNotification?: Maybe<CreateInlineTaskNotificationPayload>;
69757
70135
  createLivePage?: Maybe<Content>;
70136
+ createMentionNotification?: Maybe<CreateMentionNotificationPayload>;
70137
+ createMentionReminderNotification?: Maybe<CreateMentionReminderNotificationPayload>;
69758
70138
  createOnboardingSpace?: Maybe<Scalars['String']['output']>;
69759
70139
  createOrUpdateArchivePageNote?: Maybe<Scalars['String']['output']>;
69760
70140
  createPersonalSpace?: Maybe<Space>;
@@ -69774,15 +70154,18 @@ export declare type Mutation = {
69774
70154
  createWebTriggerUrl?: Maybe<CreateWebTriggerUrlResponse>;
69775
70155
  customerService?: Maybe<CustomerServiceMutationApi>;
69776
70156
  customerSupport?: Maybe<SupportRequestCatalogMutationApi>;
70157
+ deactivatePaywallContent?: Maybe<DeactivatePaywallContentPayload>;
69777
70158
  deleteApp?: Maybe<DeleteAppResponse>;
69778
70159
  deleteAppEnvironmentVariable?: Maybe<DeleteAppEnvironmentVariablePayload>;
69779
70160
  deleteAppTunnels?: Maybe<GenericMutationResponse>;
69780
70161
  deleteColumn?: Maybe<DeleteColumnOutput>;
69781
70162
  deleteComment?: Maybe<Scalars['Boolean']['output']>;
69782
70163
  deleteContent?: Maybe<DeleteContentResponsePayload>;
70164
+ deleteContentDataClassificationLevel?: Maybe<DeleteContentDataClassificationLevelPayload>;
69783
70165
  deleteContentState?: Maybe<ContentState>;
69784
70166
  deleteContentTemplateLabel?: Maybe<DeleteContentTemplateLabelPayload>;
69785
70167
  deleteCustomFilter?: Maybe<GenericMutationResponse>;
70168
+ deleteDefaultSpaceRoleAssignments?: Maybe<DeleteDefaultSpaceRoleAssignmentsPayload>;
69786
70169
  deleteDevOpsContainerRelationshipEntityProperties?: Maybe<DeleteDevOpsContainerRelationshipEntityPropertiesPayload>;
69787
70170
  deleteDevOpsService?: Maybe<DeleteDevOpsServicePayload>;
69788
70171
  deleteDevOpsServiceAndJiraProjectRelationship?: Maybe<DeleteDevOpsServiceAndJiraProjectRelationshipPayload>;
@@ -69800,6 +70183,8 @@ export declare type Mutation = {
69800
70183
  deletePolarisViewSet?: Maybe<DeletePolarisViewSetPayload>;
69801
70184
  deleteReaction?: Maybe<SaveReactionResponse>;
69802
70185
  deleteRelation?: Maybe<DeleteRelationPayload>;
70186
+ deleteSpaceDefaultClassificationLevel?: Maybe<DeleteSpaceDefaultClassificationLevelPayload>;
70187
+ deleteSpaceRoleAssignments?: Maybe<DeleteSpaceRoleAssignmentsPayload>;
69803
70188
  deleteSprint?: Maybe<MutationResponse>;
69804
70189
  deleteTemplate?: Maybe<Scalars['ID']['output']>;
69805
70190
  deleteWebTriggerUrl?: Maybe<DeleteWebTriggerUrlResponse>;
@@ -69813,6 +70198,7 @@ export declare type Mutation = {
69813
70198
  disableSuperAdmin?: Maybe<SuperAdminPayload>;
69814
70199
  ecosystem?: Maybe<EcosystemMutation>;
69815
70200
  editSprint?: Maybe<SprintResponse>;
70201
+ editorDraftSyncAction?: Maybe<EditorDraftSyncPayload>;
69816
70202
  enableExperiment?: Maybe<TapExperiment>;
69817
70203
  enablePublicLinkForPage?: Maybe<EnablePublicLinkForPagePayload>;
69818
70204
  enablePublicLinkForSite?: Maybe<PublicLinkSitePayload>;
@@ -69820,10 +70206,13 @@ export declare type Mutation = {
69820
70206
  ersLifecycle?: Maybe<ErsLifecycleMutation>;
69821
70207
  favouritePage?: Maybe<FavouritePagePayload>;
69822
70208
  favouriteSpace?: Maybe<FavouriteSpacePayload>;
70209
+ favouriteSpaceBulk?: Maybe<FavouriteSpaceBulkPayload>;
69823
70210
  followUser?: Maybe<FollowUserPayload>;
70211
+ generatePermsReport?: Maybe<ConfluenceAdminReportPayload>;
69824
70212
  grantContentAccess?: Maybe<GrantContentAccessPayload>;
69825
70213
  graphStore?: Maybe<GraphStoreMutation>;
69826
70214
  growthUnifiedProfile_createUnifiedProfile?: Maybe<GrowthUnifiedProfileResult>;
70215
+ hardDeleteSpace?: Maybe<HardDeleteSpacePayload>;
69827
70216
  helpCenter?: Maybe<HelpCenterMutationApi>;
69828
70217
  helpExternalResource?: Maybe<HelpExternalResourceMutationApi>;
69829
70218
  helpLayout?: Maybe<HelpLayoutMutationApi>;
@@ -69855,6 +70244,7 @@ export declare type Mutation = {
69855
70244
  marketplaceStore?: Maybe<MarketplaceStoreMutationApi>;
69856
70245
  mercury?: Maybe<MercuryMutationApi>;
69857
70246
  mercury_providerOrchestration?: Maybe<MercuryProviderOrchestrationMutationApi>;
70247
+ migrateSpaceShortcuts?: Maybe<MigrateSpaceShortcutsPayload>;
69858
70248
  moveBlog?: Maybe<MoveBlogPayload>;
69859
70249
  movePageAfter?: Maybe<MovePagePayload>;
69860
70250
  movePageAppend?: Maybe<MovePagePayload>;
@@ -69864,6 +70254,7 @@ export declare type Mutation = {
69864
70254
  moveSprintUp?: Maybe<MoveSprintUpResponse>;
69865
70255
  newPage?: Maybe<NewPagePayload>;
69866
70256
  notifications?: Maybe<InfluentsNotificationMutation>;
70257
+ notifyUsersOnFirstView?: Maybe<NotificationResponsePayload>;
69867
70258
  openUpSpacePermissions?: Maybe<Scalars['Boolean']['output']>;
69868
70259
  partnerEarlyAccess?: Maybe<PeapMutationApi>;
69869
70260
  patchCommentsSummary?: Maybe<PatchCommentsSummaryPayload>;
@@ -69885,21 +70276,29 @@ export declare type Mutation = {
69885
70276
  rankColumn?: Maybe<RankColumnOutput>;
69886
70277
  rankCustomFilter?: Maybe<GenericMutationResponse>;
69887
70278
  rateLimitTest?: Maybe<GenericMutationResponse>;
70279
+ recoverSpaceAdminPermission?: Maybe<RecoverSpaceAdminPermissionPayload>;
70280
+ recoverSpaceWithAdminRoleAssignment?: Maybe<RecoverSpaceWithAdminRoleAssignmentPayload>;
69888
70281
  refreshPolarisSnippets?: Maybe<RefreshPolarisSnippetsPayload>;
69889
70282
  refreshTeamCalendar?: Maybe<Scalars['Boolean']['output']>;
69890
70283
  registerTunnel?: Maybe<RegisterTunnelResponse>;
69891
70284
  removeAllDirectUserSpacePermissions?: Maybe<RemoveSpacePermissionsPayload>;
69892
70285
  removeContentState?: Maybe<Scalars['Boolean']['output']>;
69893
70286
  removeGroupSpacePermissions?: Maybe<RemoveSpacePermissionsPayload>;
70287
+ removePublicLinkPermissions?: Maybe<RemovePublicLinkPermissionsPayload>;
69894
70288
  removeUserSpacePermissions?: Maybe<RemoveSpacePermissionsPayload>;
69895
70289
  replyInlineComment?: Maybe<Comment>;
69896
70290
  requestAccessExco?: Maybe<Scalars['Boolean']['output']>;
69897
70291
  requestPageAccess?: Maybe<RequestPageAccessPayload>;
69898
70292
  resetExCoSpacePermissions?: Maybe<ResetExCoSpacePermissionsPayload>;
69899
70293
  resetSpaceContentStates?: Maybe<ContentStateSettings>;
70294
+ resetSpaceRolesFromAnotherSpace?: Maybe<ResetSpaceRolesFromAnotherSpacePayload>;
69900
70295
  resetSystemSpaceHomepage?: Maybe<Space>;
70296
+ resetToDefaultSpaceRoleAssignments?: Maybe<ResetToDefaultSpaceRoleAssignmentsPayload>;
69901
70297
  resolveInlineComment?: Maybe<ResolveInlineCommentPayload>;
69902
70298
  resolvePolarisObject?: Maybe<ResolvePolarisObjectPayload>;
70299
+ resolveRestrictions?: Maybe<ResolveRestrictionsPayload>;
70300
+ resolveRestrictionsForSubjects?: Maybe<ResolveRestrictionsPayload>;
70301
+ restoreSpace?: Maybe<RestoreSpacePayload>;
69903
70302
  revertToLegacyEditor?: Maybe<RevertToLegacyEditorResult>;
69904
70303
  roadmaps?: Maybe<RoadmapsMutation>;
69905
70304
  setAppEnvironmentVariable?: Maybe<SetAppEnvironmentVariablePayload>;
@@ -69912,6 +70311,7 @@ export declare type Mutation = {
69912
70311
  setContentState?: Maybe<ContentState>;
69913
70312
  setContentStateAndPublish?: Maybe<ContentState>;
69914
70313
  setContentStateSettings?: Maybe<ContentStateSettings>;
70314
+ setDefaultSpaceRoleAssignments?: Maybe<SetDefaultSpaceRoleAssignmentsPayload>;
69915
70315
  setEditorConversionSettings?: Maybe<EditorConversionSetting>;
69916
70316
  setEstimationType?: Maybe<GenericMutationResponse>;
69917
70317
  setExternalAuthCredentials?: Maybe<SetExternalAuthCredentialsPayload>;
@@ -69925,12 +70325,14 @@ export declare type Mutation = {
69925
70325
  setRecommendedPagesSpaceStatus?: Maybe<SetRecommendedPagesSpaceStatusPayload>;
69926
70326
  setRecommendedPagesStatus?: Maybe<SetRecommendedPagesStatusPayload>;
69927
70327
  setRelevantFeedFilters?: Maybe<HomeUserSettings>;
70328
+ setSpaceRoleAssignments?: Maybe<SetSpaceRoleAssignmentsPayload>;
69928
70329
  setSwimlaneStrategy?: Maybe<SetSwimlaneStrategyResponse>;
69929
70330
  setTaskStatus?: Maybe<GraphQlMutationResponse>;
69930
70331
  setUserSwimlaneStrategy?: Maybe<SetSwimlaneStrategyResponse>;
69931
70332
  settings_updateNavigationCustomisation?: Maybe<SettingsNavigationCustomisation>;
69932
70333
  shareResource?: Maybe<ShareResourcePayload>;
69933
70334
  shepherd?: Maybe<ShepherdMutation>;
70335
+ softDeleteSpace?: Maybe<SoftDeleteSpacePayload>;
69934
70336
  splitIssue?: Maybe<SplitIssueOutput>;
69935
70337
  startSprint?: Maybe<SprintResponse>;
69936
70338
  subscribeToApp?: Maybe<AppSubscribePayload>;
@@ -69941,6 +70343,7 @@ export declare type Mutation = {
69941
70343
  townsquare?: Maybe<TownsquareMutationApi>;
69942
70344
  trello: TrelloMutationApi;
69943
70345
  unarchivePolarisInsights?: Maybe<UnarchivePolarisInsightsPayload>;
70346
+ unarchiveSpace?: Maybe<UnarchiveSpacePayload>;
69944
70347
  unassignIssueParent?: Maybe<UnassignIssueParentOutput>;
69945
70348
  unfavouritePage?: Maybe<FavouritePagePayload>;
69946
70349
  unfavouriteSpace?: Maybe<FavouriteSpacePayload>;
@@ -69953,10 +70356,14 @@ export declare type Mutation = {
69953
70356
  unwatchContent?: Maybe<WatchContentPayload>;
69954
70357
  unwatchMarketplaceApp?: Maybe<UnwatchMarketplaceAppPayload>;
69955
70358
  unwatchSpace?: Maybe<WatchSpacePayload>;
70359
+ updateAdminAnnouncementBanner?: Maybe<ConfluenceAdminAnnouncementBannerPayload>;
69956
70360
  updateAppDetails?: Maybe<UpdateAppDetailsResponse>;
69957
70361
  updateArchiveNotes?: Maybe<UpdateArchiveNotesPayload>;
69958
70362
  updateAtlassianOAuthClient?: Maybe<UpdateAtlassianOAuthClientResponse>;
69959
70363
  updateComment?: Maybe<Comment>;
70364
+ updateContentDataClassificationLevel?: Maybe<UpdateContentDataClassificationLevelPayload>;
70365
+ updateContentPermissions?: Maybe<ContentPermissionsPayload>;
70366
+ updateCoverPictureWidth?: Maybe<UpdateCoverPictureWidthPayload>;
69960
70367
  updateCustomFilter?: Maybe<CustomFilterCreateOutput>;
69961
70368
  updateCustomFilterV2?: Maybe<CustomFilterCreateOutputV2>;
69962
70369
  updateDevOpsContainerRelationshipEntityProperties?: Maybe<UpdateDevOpsContainerRelationshipEntityPropertiesPayload>;
@@ -69968,10 +70375,14 @@ export declare type Mutation = {
69968
70375
  updateDevOpsServiceRelationship?: Maybe<UpdateDevOpsServiceRelationshipPayload>;
69969
70376
  updateDeveloperLogAccess?: Maybe<UpdateDeveloperLogAccessPayload>;
69970
70377
  updateEmbed?: Maybe<Content>;
70378
+ updateExternalCollaboratorDefaultSpace?: Maybe<UpdateExternalCollaboratorDefaultSpacePayload>;
69971
70379
  updateHomeUserSettings?: Maybe<HomeUserSettings>;
69972
70380
  updateLocalStorage?: Maybe<LocalStorage>;
70381
+ updateNestedPageOwners?: Maybe<UpdateNestedPageOwnersPayload>;
69973
70382
  updateOwner?: Maybe<UpdateOwnerPayload>;
69974
70383
  updatePage?: Maybe<UpdatePagePayload>;
70384
+ updatePageOwners?: Maybe<UpdatePageOwnersPayload>;
70385
+ updatePageStatuses?: Maybe<UpdatePageStatusesPayload>;
69975
70386
  updatePolarisComment?: Maybe<UpdatePolarisCommentPayload>;
69976
70387
  updatePolarisIdea?: Maybe<UpdatePolarisIdeaPayload>;
69977
70388
  updatePolarisIdeaTemplate?: Maybe<UpdatePolarisIdeaTemplatePayload>;
@@ -69988,7 +70399,13 @@ export declare type Mutation = {
69988
70399
  updatePushNotificationGroupSetting?: Maybe<ConfluencePushNotificationSettings>;
69989
70400
  updateRelation?: Maybe<UpdateRelationPayload>;
69990
70401
  updateReleaseNote: ContentPlatformReleaseNote;
70402
+ updateSiteLookAndFeel?: Maybe<UpdateSiteLookAndFeelPayload>;
69991
70403
  updateSitePermission?: Maybe<SitePermission>;
70404
+ updateSpaceDefaultClassificationLevel?: Maybe<UpdateSpaceDefaultClassificationLevelPayload>;
70405
+ updateSpaceDetails?: Maybe<UpdateSpaceDetailsPayload>;
70406
+ updateSpacePermissionDefaults?: Maybe<UpdateDefaultSpacePermissionsPayload>;
70407
+ updateSpacePermissions?: Maybe<UpdateSpacePermissionsPayload>;
70408
+ updateSpaceTypeSettings?: Maybe<UpdateSpaceTypeSettingsPayload>;
69992
70409
  updateTemplate?: Maybe<ContentTemplate>;
69993
70410
  updateTemplatePropertySet?: Maybe<UpdateTemplatePropertySetPayload>;
69994
70411
  updateTitle?: Maybe<Content>;
@@ -70002,12 +70419,21 @@ export declare type Mutation = {
70002
70419
  watchSpace?: Maybe<WatchSpacePayload>;
70003
70420
  workSuggestions?: Maybe<WorkSuggestionsMutation>;
70004
70421
  };
70422
+ export declare type MutationActivatePaywallContentArgs = {
70423
+ input: ActivatePaywallContentInput;
70424
+ };
70005
70425
  export declare type MutationAddBetaUserAsSiteCreatorArgs = {
70006
70426
  input: AddBetaUserAsSiteCreatorInput;
70007
70427
  };
70428
+ export declare type MutationAddDefaultExCoSpacePermissionsArgs = {
70429
+ spacePermissionsInput: AddDefaultExCoSpacePermissionsInput;
70430
+ };
70008
70431
  export declare type MutationAddLabelsArgs = {
70009
70432
  input: AddLabelsInput;
70010
70433
  };
70434
+ export declare type MutationAddPublicLinkPermissionsArgs = {
70435
+ input: AddPublicLinkPermissionsInput;
70436
+ };
70011
70437
  export declare type MutationAddReactionArgs = {
70012
70438
  cloudId?: InputMaybe<Scalars['ID']['input']>;
70013
70439
  containerId: Scalars['String']['input'];
@@ -70026,6 +70452,9 @@ export declare type MutationArchivePolarisInsightsArgs = {
70026
70452
  containers?: InputMaybe<Array<Scalars['ID']['input']>>;
70027
70453
  project: Scalars['ID']['input'];
70028
70454
  };
70455
+ export declare type MutationArchiveSpaceArgs = {
70456
+ input: ArchiveSpaceInput;
70457
+ };
70029
70458
  export declare type MutationAssignIssueParentArgs = {
70030
70459
  input?: InputMaybe<AssignIssueParentInput>;
70031
70460
  };
@@ -70035,11 +70464,29 @@ export declare type MutationAttachDanglingCommentArgs = {
70035
70464
  export declare type MutationBoardCardMoveArgs = {
70036
70465
  input?: InputMaybe<BoardCardMoveInput>;
70037
70466
  };
70467
+ export declare type MutationBulkDeleteContentDataClassificationLevelArgs = {
70468
+ input: BulkDeleteContentDataClassificationLevelInput;
70469
+ };
70470
+ export declare type MutationBulkRemoveRoleAssignmentFromSpacesArgs = {
70471
+ input: BulkRemoveRoleAssignmentFromSpacesInput;
70472
+ };
70473
+ export declare type MutationBulkSetRoleAssignmentToSpacesArgs = {
70474
+ input: BulkSetRoleAssignmentToSpacesInput;
70475
+ };
70476
+ export declare type MutationBulkSetSpacePermissionArgs = {
70477
+ input: BulkSetSpacePermissionInput;
70478
+ };
70479
+ export declare type MutationBulkSetSpacePermissionAsyncArgs = {
70480
+ input: BulkSetSpacePermissionInput;
70481
+ };
70038
70482
  export declare type MutationBulkUnarchivePagesArgs = {
70039
70483
  includeChildren?: InputMaybe<Array<InputMaybe<Scalars['Boolean']['input']>>>;
70040
70484
  pageIDs?: InputMaybe<Array<InputMaybe<Scalars['Long']['input']>>>;
70041
70485
  parentPageId?: InputMaybe<Scalars['Long']['input']>;
70042
70486
  };
70487
+ export declare type MutationBulkUpdateContentDataClassificationLevelArgs = {
70488
+ input: BulkUpdateContentDataClassificationLevelInput;
70489
+ };
70043
70490
  export declare type MutationBulkUpdateMainSpaceSidebarLinksArgs = {
70044
70491
  input: Array<InputMaybe<BulkUpdateMainSpaceSidebarLinksInput>>;
70045
70492
  spaceKey: Scalars['String']['input'];
@@ -70611,6 +71058,9 @@ export declare type MutationConnectionManager_DeleteConnectionForJiraProjectArgs
70611
71058
  export declare type MutationContactAdminArgs = {
70612
71059
  input: ContactAdminMutationInput;
70613
71060
  };
71061
+ export declare type MutationConvertPageToLiveEditActionArgs = {
71062
+ input: ConvertPageToLiveEditActionInput;
71063
+ };
70614
71064
  export declare type MutationConvertToFolderArgs = {
70615
71065
  id: Scalars['ID']['input'];
70616
71066
  };
@@ -70625,6 +71075,9 @@ export declare type MutationCopySpacePermissionsArgs = {
70625
71075
  sourceSpaceKey: Scalars['String']['input'];
70626
71076
  targetSpaceKey: Scalars['String']['input'];
70627
71077
  };
71078
+ export declare type MutationCreateAdminAnnouncementBannerArgs = {
71079
+ announcementBanner: ConfluenceCreateAdminAnnouncementBannerInput;
71080
+ };
70628
71081
  export declare type MutationCreateAppArgs = {
70629
71082
  input: CreateAppInput;
70630
71083
  };
@@ -70652,6 +71105,9 @@ export declare type MutationCreateContentGlobalArgs = {
70652
71105
  export declare type MutationCreateContentInlineArgs = {
70653
71106
  input: CreateInlineContentInput;
70654
71107
  };
71108
+ export declare type MutationCreateContentMentionNotificationActionArgs = {
71109
+ input: CreateContentMentionNotificationActionInput;
71110
+ };
70655
71111
  export declare type MutationCreateContentTemplateLabelsArgs = {
70656
71112
  input: CreateContentTemplateLabelsInput;
70657
71113
  };
@@ -70678,6 +71134,9 @@ export declare type MutationCreateDevOpsServiceAndRepositoryRelationshipArgs = {
70678
71134
  export declare type MutationCreateDevOpsServiceRelationshipArgs = {
70679
71135
  input: CreateDevOpsServiceRelationshipInput;
70680
71136
  };
71137
+ export declare type MutationCreateFaviconFilesArgs = {
71138
+ input: CreateFaviconFilesInput;
71139
+ };
70681
71140
  export declare type MutationCreateFooterCommentArgs = {
70682
71141
  cloudId?: InputMaybe<Scalars['ID']['input']>;
70683
71142
  input: CreateCommentInput;
@@ -70689,9 +71148,18 @@ export declare type MutationCreateInlineCommentArgs = {
70689
71148
  cloudId?: InputMaybe<Scalars['ID']['input']>;
70690
71149
  input: CreateInlineCommentInput;
70691
71150
  };
71151
+ export declare type MutationCreateInlineTaskNotificationArgs = {
71152
+ input: CreateInlineTaskNotificationInput;
71153
+ };
70692
71154
  export declare type MutationCreateLivePageArgs = {
70693
71155
  input: CreateLivePageInput;
70694
71156
  };
71157
+ export declare type MutationCreateMentionNotificationArgs = {
71158
+ input: CreateMentionNotificationInput;
71159
+ };
71160
+ export declare type MutationCreateMentionReminderNotificationArgs = {
71161
+ input: CreateMentionReminderNotificationInput;
71162
+ };
70695
71163
  export declare type MutationCreateOnboardingSpaceArgs = {
70696
71164
  spaceType: Scalars['String']['input'];
70697
71165
  };
@@ -70766,6 +71234,9 @@ export declare type MutationCreateWebTriggerUrlArgs = {
70766
71234
  export declare type MutationCustomerServiceArgs = {
70767
71235
  cloudId: Scalars['ID']['input'];
70768
71236
  };
71237
+ export declare type MutationDeactivatePaywallContentArgs = {
71238
+ input: DeactivatePaywallContentInput;
71239
+ };
70769
71240
  export declare type MutationDeleteAppArgs = {
70770
71241
  input: DeleteAppInput;
70771
71242
  };
@@ -70786,6 +71257,9 @@ export declare type MutationDeleteContentArgs = {
70786
71257
  action: ContentDeleteActionType;
70787
71258
  contentId: Scalars['ID']['input'];
70788
71259
  };
71260
+ export declare type MutationDeleteContentDataClassificationLevelArgs = {
71261
+ input: DeleteContentDataClassificationLevelInput;
71262
+ };
70789
71263
  export declare type MutationDeleteContentStateArgs = {
70790
71264
  stateInput: ContentStateInput;
70791
71265
  };
@@ -70796,6 +71270,9 @@ export declare type MutationDeleteCustomFilterArgs = {
70796
71270
  input?: InputMaybe<DeleteCustomFilterInput>;
70797
71271
  isCMP?: InputMaybe<Scalars['Boolean']['input']>;
70798
71272
  };
71273
+ export declare type MutationDeleteDefaultSpaceRoleAssignmentsArgs = {
71274
+ input: DeleteDefaultSpaceRoleAssignmentsInput;
71275
+ };
70799
71276
  export declare type MutationDeleteDevOpsContainerRelationshipEntityPropertiesArgs = {
70800
71277
  input: DeleteDevOpsContainerRelationshipEntityPropertiesInput;
70801
71278
  };
@@ -70852,6 +71329,12 @@ export declare type MutationDeleteReactionArgs = {
70852
71329
  export declare type MutationDeleteRelationArgs = {
70853
71330
  input: DeleteRelationInput;
70854
71331
  };
71332
+ export declare type MutationDeleteSpaceDefaultClassificationLevelArgs = {
71333
+ input: DeleteSpaceDefaultClassificationLevelInput;
71334
+ };
71335
+ export declare type MutationDeleteSpaceRoleAssignmentsArgs = {
71336
+ input: DeleteSpaceRoleAssignmentsInput;
71337
+ };
70855
71338
  export declare type MutationDeleteSprintArgs = {
70856
71339
  input?: InputMaybe<DeleteSprintInput>;
70857
71340
  };
@@ -70880,6 +71363,9 @@ export declare type MutationDisablePublicLinkForPageArgs = {
70880
71363
  export declare type MutationEditSprintArgs = {
70881
71364
  input?: InputMaybe<EditSprintInput>;
70882
71365
  };
71366
+ export declare type MutationEditorDraftSyncActionArgs = {
71367
+ input: EditorDraftSyncInput;
71368
+ };
70883
71369
  export declare type MutationEnableExperimentArgs = {
70884
71370
  experimentKey: Scalars['String']['input'];
70885
71371
  };
@@ -70892,15 +71378,25 @@ export declare type MutationFavouritePageArgs = {
70892
71378
  export declare type MutationFavouriteSpaceArgs = {
70893
71379
  spaceKey: Scalars['String']['input'];
70894
71380
  };
71381
+ export declare type MutationFavouriteSpaceBulkArgs = {
71382
+ spaceKeys: Array<InputMaybe<Scalars['String']['input']>>;
71383
+ };
70895
71384
  export declare type MutationFollowUserArgs = {
70896
71385
  followUserInput: FollowUserInput;
70897
71386
  };
71387
+ export declare type MutationGeneratePermsReportArgs = {
71388
+ id: Scalars['ID']['input'];
71389
+ targetType: PermsReportTargetType;
71390
+ };
70898
71391
  export declare type MutationGrantContentAccessArgs = {
70899
71392
  grantContentAccessInput: GrantContentAccessInput;
70900
71393
  };
70901
71394
  export declare type MutationGrowthUnifiedProfile_CreateUnifiedProfileArgs = {
70902
71395
  profile: GrowthUnifiedProfileCreateProfileInput;
70903
71396
  };
71397
+ export declare type MutationHardDeleteSpaceArgs = {
71398
+ spaceKey: Scalars['String']['input'];
71399
+ };
70904
71400
  export declare type MutationHelpCenterArgs = {
70905
71401
  cloudId: Scalars['ID']['input'];
70906
71402
  };
@@ -70963,6 +71459,10 @@ export declare type MutationMarkFeatureDiscoveredArgs = {
70963
71459
  featureKey: Scalars['String']['input'];
70964
71460
  pluginKey: Scalars['String']['input'];
70965
71461
  };
71462
+ export declare type MutationMigrateSpaceShortcutsArgs = {
71463
+ shortcutsList: Array<InputMaybe<GraphQlSpaceShortcutsInput>>;
71464
+ spaceId: Scalars['ID']['input'];
71465
+ };
70966
71466
  export declare type MutationMoveBlogArgs = {
70967
71467
  input: MoveBlogInput;
70968
71468
  };
@@ -70987,6 +71487,9 @@ export declare type MutationMoveSprintUpArgs = {
70987
71487
  export declare type MutationNewPageArgs = {
70988
71488
  input: NewPageInput;
70989
71489
  };
71490
+ export declare type MutationNotifyUsersOnFirstViewArgs = {
71491
+ contentId: Scalars['ID']['input'];
71492
+ };
70990
71493
  export declare type MutationOpenUpSpacePermissionsArgs = {
70991
71494
  spaceKey: Scalars['String']['input'];
70992
71495
  };
@@ -71048,6 +71551,12 @@ export declare type MutationRankCustomFilterArgs = {
71048
71551
  export declare type MutationRateLimitTestArgs = {
71049
71552
  input: InvokeExtensionInput;
71050
71553
  };
71554
+ export declare type MutationRecoverSpaceAdminPermissionArgs = {
71555
+ input: RecoverSpaceAdminPermissionInput;
71556
+ };
71557
+ export declare type MutationRecoverSpaceWithAdminRoleAssignmentArgs = {
71558
+ input: RecoverSpaceWithAdminRoleAssignmentInput;
71559
+ };
71051
71560
  export declare type MutationRefreshPolarisSnippetsArgs = {
71052
71561
  input: RefreshPolarisSnippetsInput;
71053
71562
  };
@@ -71066,6 +71575,9 @@ export declare type MutationRemoveContentStateArgs = {
71066
71575
  export declare type MutationRemoveGroupSpacePermissionsArgs = {
71067
71576
  spacePermissionsInput: RemoveGroupSpacePermissionsInput;
71068
71577
  };
71578
+ export declare type MutationRemovePublicLinkPermissionsArgs = {
71579
+ input: RemovePublicLinkPermissionsInput;
71580
+ };
71069
71581
  export declare type MutationRemoveUserSpacePermissionsArgs = {
71070
71582
  spacePermissionsInput: RemoveUserSpacePermissionsInput;
71071
71583
  };
@@ -71082,9 +71594,15 @@ export declare type MutationResetExCoSpacePermissionsArgs = {
71082
71594
  export declare type MutationResetSpaceContentStatesArgs = {
71083
71595
  spaceKey: Scalars['String']['input'];
71084
71596
  };
71597
+ export declare type MutationResetSpaceRolesFromAnotherSpaceArgs = {
71598
+ input: ResetSpaceRolesFromAnotherSpaceInput;
71599
+ };
71085
71600
  export declare type MutationResetSystemSpaceHomepageArgs = {
71086
71601
  input: SystemSpaceHomepageInput;
71087
71602
  };
71603
+ export declare type MutationResetToDefaultSpaceRoleAssignmentsArgs = {
71604
+ input: ResetToDefaultSpaceRoleAssignmentsInput;
71605
+ };
71088
71606
  export declare type MutationResolveInlineCommentArgs = {
71089
71607
  commentId: Scalars['ID']['input'];
71090
71608
  dangling: Scalars['Boolean']['input'];
@@ -71093,6 +71611,15 @@ export declare type MutationResolveInlineCommentArgs = {
71093
71611
  export declare type MutationResolvePolarisObjectArgs = {
71094
71612
  input: ResolvePolarisObjectInput;
71095
71613
  };
71614
+ export declare type MutationResolveRestrictionsArgs = {
71615
+ input: Array<InputMaybe<ResolveRestrictionsInput>>;
71616
+ };
71617
+ export declare type MutationResolveRestrictionsForSubjectsArgs = {
71618
+ input: ResolveRestrictionsForSubjectsInput;
71619
+ };
71620
+ export declare type MutationRestoreSpaceArgs = {
71621
+ spaceKey: Scalars['String']['input'];
71622
+ };
71096
71623
  export declare type MutationRevertToLegacyEditorArgs = {
71097
71624
  contentId: Scalars['ID']['input'];
71098
71625
  };
@@ -71132,6 +71659,9 @@ export declare type MutationSetContentStateSettingsArgs = {
71132
71659
  spaceKey: Scalars['String']['input'];
71133
71660
  spaceStatesSetting: Scalars['Boolean']['input'];
71134
71661
  };
71662
+ export declare type MutationSetDefaultSpaceRoleAssignmentsArgs = {
71663
+ input: SetDefaultSpaceRoleAssignmentsInput;
71664
+ };
71135
71665
  export declare type MutationSetEditorConversionSettingsArgs = {
71136
71666
  spaceKey: Scalars['String']['input'];
71137
71667
  value: EditorConversionSetting;
@@ -71174,6 +71704,9 @@ export declare type MutationSetRelevantFeedFiltersArgs = {
71174
71704
  relevantFeedSpacesFilter: Array<InputMaybe<Scalars['Long']['input']>>;
71175
71705
  relevantFeedUsersFilter: Array<InputMaybe<Scalars['String']['input']>>;
71176
71706
  };
71707
+ export declare type MutationSetSpaceRoleAssignmentsArgs = {
71708
+ input: SetSpaceRoleAssignmentsInput;
71709
+ };
71177
71710
  export declare type MutationSetSwimlaneStrategyArgs = {
71178
71711
  input?: InputMaybe<SetSwimlaneStrategyInput>;
71179
71712
  };
@@ -71189,6 +71722,9 @@ export declare type MutationSettings_UpdateNavigationCustomisationArgs = {
71189
71722
  export declare type MutationShareResourceArgs = {
71190
71723
  shareResourceInput: ShareResourceInput;
71191
71724
  };
71725
+ export declare type MutationSoftDeleteSpaceArgs = {
71726
+ spaceKey: Scalars['String']['input'];
71727
+ };
71192
71728
  export declare type MutationSplitIssueArgs = {
71193
71729
  input?: InputMaybe<SplitIssueInput>;
71194
71730
  };
@@ -71211,6 +71747,9 @@ export declare type MutationUnarchivePolarisInsightsArgs = {
71211
71747
  containers?: InputMaybe<Array<Scalars['ID']['input']>>;
71212
71748
  project: Scalars['ID']['input'];
71213
71749
  };
71750
+ export declare type MutationUnarchiveSpaceArgs = {
71751
+ input: UnarchiveSpaceInput;
71752
+ };
71214
71753
  export declare type MutationUnassignIssueParentArgs = {
71215
71754
  input?: InputMaybe<UnassignIssueParentInput>;
71216
71755
  };
@@ -71244,6 +71783,9 @@ export declare type MutationUnwatchMarketplaceAppArgs = {
71244
71783
  export declare type MutationUnwatchSpaceArgs = {
71245
71784
  watchSpaceInput: WatchSpaceInput;
71246
71785
  };
71786
+ export declare type MutationUpdateAdminAnnouncementBannerArgs = {
71787
+ announcementBanner: ConfluenceUpdateAdminAnnouncementBannerInput;
71788
+ };
71247
71789
  export declare type MutationUpdateAppDetailsArgs = {
71248
71790
  input: UpdateAppDetailsInput;
71249
71791
  };
@@ -71256,6 +71798,16 @@ export declare type MutationUpdateAtlassianOAuthClientArgs = {
71256
71798
  export declare type MutationUpdateCommentArgs = {
71257
71799
  input: UpdateCommentInput;
71258
71800
  };
71801
+ export declare type MutationUpdateContentDataClassificationLevelArgs = {
71802
+ input: UpdateContentDataClassificationLevelInput;
71803
+ };
71804
+ export declare type MutationUpdateContentPermissionsArgs = {
71805
+ contentId: Scalars['ID']['input'];
71806
+ input: Array<InputMaybe<UpdateContentPermissionsInput>>;
71807
+ };
71808
+ export declare type MutationUpdateCoverPictureWidthArgs = {
71809
+ input: UpdateCoverPictureWidthInput;
71810
+ };
71259
71811
  export declare type MutationUpdateCustomFilterArgs = {
71260
71812
  input?: InputMaybe<UpdateCustomFilterInput>;
71261
71813
  isCMP?: InputMaybe<Scalars['Boolean']['input']>;
@@ -71291,18 +71843,30 @@ export declare type MutationUpdateDeveloperLogAccessArgs = {
71291
71843
  export declare type MutationUpdateEmbedArgs = {
71292
71844
  input: UpdateEmbedInput;
71293
71845
  };
71846
+ export declare type MutationUpdateExternalCollaboratorDefaultSpaceArgs = {
71847
+ input: UpdateExternalCollaboratorDefaultSpaceInput;
71848
+ };
71294
71849
  export declare type MutationUpdateHomeUserSettingsArgs = {
71295
71850
  homeUserSettings: HomeUserSettingsInput;
71296
71851
  };
71297
71852
  export declare type MutationUpdateLocalStorageArgs = {
71298
71853
  localStorage: LocalStorageInput;
71299
71854
  };
71855
+ export declare type MutationUpdateNestedPageOwnersArgs = {
71856
+ input: UpdatedNestedPageOwnersInput;
71857
+ };
71300
71858
  export declare type MutationUpdateOwnerArgs = {
71301
71859
  input: UpdateOwnerInput;
71302
71860
  };
71303
71861
  export declare type MutationUpdatePageArgs = {
71304
71862
  input: UpdatePageInput;
71305
71863
  };
71864
+ export declare type MutationUpdatePageOwnersArgs = {
71865
+ input: UpdatePageOwnersInput;
71866
+ };
71867
+ export declare type MutationUpdatePageStatusesArgs = {
71868
+ input: UpdatePageStatusesInput;
71869
+ };
71306
71870
  export declare type MutationUpdatePolarisCommentArgs = {
71307
71871
  input: UpdatePolarisCommentInput;
71308
71872
  };
@@ -71378,9 +71942,27 @@ export declare type MutationUpdateReleaseNoteArgs = {
71378
71942
  title?: Scalars['String']['input'];
71379
71943
  visibleInFedRAMP?: InputMaybe<Scalars['Boolean']['input']>;
71380
71944
  };
71945
+ export declare type MutationUpdateSiteLookAndFeelArgs = {
71946
+ input: UpdateSiteLookAndFeelInput;
71947
+ };
71381
71948
  export declare type MutationUpdateSitePermissionArgs = {
71382
71949
  input: SitePermissionInput;
71383
71950
  };
71951
+ export declare type MutationUpdateSpaceDefaultClassificationLevelArgs = {
71952
+ input: UpdateSpaceDefaultClassificationLevelInput;
71953
+ };
71954
+ export declare type MutationUpdateSpaceDetailsArgs = {
71955
+ input: UpdateSpaceDetailsInput;
71956
+ };
71957
+ export declare type MutationUpdateSpacePermissionDefaultsArgs = {
71958
+ input: Array<UpdateDefaultSpacePermissionsInput>;
71959
+ };
71960
+ export declare type MutationUpdateSpacePermissionsArgs = {
71961
+ input: UpdateSpacePermissionsInput;
71962
+ };
71963
+ export declare type MutationUpdateSpaceTypeSettingsArgs = {
71964
+ input: UpdateSpaceTypeSettingsInput;
71965
+ };
71384
71966
  export declare type MutationUpdateTemplateArgs = {
71385
71967
  contentTemplate: UpdateContentTemplateInput;
71386
71968
  };
@@ -71539,6 +72121,12 @@ export declare type NestedActionsFeature = {
71539
72121
  __typename?: 'NestedActionsFeature';
71540
72122
  isEntitled: Scalars['Boolean']['output'];
71541
72123
  };
72124
+ export declare type NestedPageInput = {
72125
+ areChildrenIncluded?: InputMaybe<Scalars['Boolean']['input']>;
72126
+ excludedBranchRootPageIDs?: InputMaybe<Array<InputMaybe<Scalars['Long']['input']>>>;
72127
+ isSelected?: InputMaybe<Scalars['Boolean']['input']>;
72128
+ pageID: Scalars['Long']['input'];
72129
+ };
71542
72130
  export declare type NewCard = {
71543
72131
  assigneeId?: InputMaybe<Scalars['ID']['input']>;
71544
72132
  fixVersions?: InputMaybe<Array<Scalars['ID']['input']>>;
@@ -71647,6 +72235,15 @@ export declare type NlpSource = {
71647
72235
  export declare type Node = {
71648
72236
  id: Scalars['ID']['output'];
71649
72237
  };
72238
+ export declare enum NotificationAction {
72239
+ DontNotify = "DONT_NOTIFY",
72240
+ Notify = "NOTIFY"
72241
+ }
72242
+ export declare type NotificationResponsePayload = Payload & {
72243
+ __typename?: 'NotificationResponsePayload';
72244
+ errors?: Maybe<Array<MutationError>>;
72245
+ success: Scalars['Boolean']['output'];
72246
+ };
71650
72247
  export declare type NumberUserInput = {
71651
72248
  type: NumberUserInputType;
71652
72249
  value?: InputMaybe<Scalars['Float']['input']>;
@@ -71703,6 +72300,14 @@ export declare type OnboardingStateInput = {
71703
72300
  key: Scalars['String']['input'];
71704
72301
  value: Scalars['String']['input'];
71705
72302
  };
72303
+ export declare enum Operation {
72304
+ Assigned = "ASSIGNED",
72305
+ Complete = "COMPLETE",
72306
+ Deleted = "DELETED",
72307
+ InComplete = "IN_COMPLETE",
72308
+ Reworded = "REWORDED",
72309
+ Unassigned = "UNASSIGNED"
72310
+ }
71706
72311
  export declare type OperationCheckResult = {
71707
72312
  __typename?: 'OperationCheckResult';
71708
72313
  links?: Maybe<LinksContextBase>;
@@ -72964,6 +73569,10 @@ export declare type PermsReportDownloadLink = {
72964
73569
  __typename?: 'PermsReportDownloadLink';
72965
73570
  url?: Maybe<Scalars['String']['output']>;
72966
73571
  };
73572
+ export declare enum PermsReportTargetType {
73573
+ Group = "GROUP",
73574
+ User = "USER"
73575
+ }
72967
73576
  export declare type Person = {
72968
73577
  displayName?: Maybe<Scalars['String']['output']>;
72969
73578
  operations?: Maybe<Array<Maybe<OperationCheckResult>>>;
@@ -74256,6 +74865,7 @@ export declare type Query = {
74256
74865
  confluenceV2_spaceTheme?: Maybe<ConfluenceV2Theme>;
74257
74866
  confluenceV2_spaces?: Maybe<Array<Maybe<ConfluenceV2Space>>>;
74258
74867
  confluence_calendarPreference?: Maybe<ConfluenceCalendarPreference>;
74868
+ confluence_calendarTimezones?: Maybe<ConfluenceCalendarTimezones>;
74259
74869
  confluence_mutationsPlaceholderQuery?: Maybe<Scalars['Boolean']['output']>;
74260
74870
  confluence_refreshMigrationMediaSession?: Maybe<ContentMediaSession>;
74261
74871
  confluence_search?: Maybe<ConfluenceSearchConnection>;
@@ -75819,6 +76429,9 @@ export declare type QueryConfluenceV2_SpacesArgs = {
75819
76429
  export declare type QueryConfluence_CalendarPreferenceArgs = {
75820
76430
  cloudId: Scalars['ID']['input'];
75821
76431
  };
76432
+ export declare type QueryConfluence_CalendarTimezonesArgs = {
76433
+ cloudId: Scalars['ID']['input'];
76434
+ };
75822
76435
  export declare type QueryConfluence_RefreshMigrationMediaSessionArgs = {
75823
76436
  cloudId: Scalars['ID']['input'];
75824
76437
  migrationId: Scalars['String']['input'];
@@ -77775,6 +78388,22 @@ export declare type RecommendedSpaceItem = {
77775
78388
  space?: Maybe<Space>;
77776
78389
  spaceId: Scalars['Long']['output'];
77777
78390
  };
78391
+ export declare type RecoverSpaceAdminPermissionInput = {
78392
+ spaceKey: Scalars['String']['input'];
78393
+ };
78394
+ export declare type RecoverSpaceAdminPermissionPayload = Payload & {
78395
+ __typename?: 'RecoverSpaceAdminPermissionPayload';
78396
+ errors?: Maybe<Array<MutationError>>;
78397
+ success: Scalars['Boolean']['output'];
78398
+ };
78399
+ export declare type RecoverSpaceWithAdminRoleAssignmentInput = {
78400
+ spaceId: Scalars['Long']['input'];
78401
+ };
78402
+ export declare type RecoverSpaceWithAdminRoleAssignmentPayload = Payload & {
78403
+ __typename?: 'RecoverSpaceWithAdminRoleAssignmentPayload';
78404
+ errors?: Maybe<Array<MutationError>>;
78405
+ success: Scalars['Boolean']['output'];
78406
+ };
77778
78407
  export declare type RefreshPolarisSnippetsInput = {
77779
78408
  project: Scalars['ID']['input'];
77780
78409
  subject?: InputMaybe<Scalars['ID']['input']>;
@@ -77875,6 +78504,16 @@ export declare type RemoveGroupSpacePermissionsInput = {
77875
78504
  export declare type RemovePolarisColumnInput = {
77876
78505
  column: Scalars['ID']['input'];
77877
78506
  };
78507
+ export declare type RemovePublicLinkPermissionsInput = {
78508
+ objectId: Scalars['ID']['input'];
78509
+ objectType: PublicLinkPermissionsObjectType;
78510
+ permissions: Array<PublicLinkPermissionsType>;
78511
+ };
78512
+ export declare type RemovePublicLinkPermissionsPayload = Payload & {
78513
+ __typename?: 'RemovePublicLinkPermissionsPayload';
78514
+ errors?: Maybe<Array<MutationError>>;
78515
+ success: Scalars['Boolean']['output'];
78516
+ };
77878
78517
  export declare type RemoveSpacePermissionsPayload = {
77879
78518
  __typename?: 'RemoveSpacePermissionsPayload';
77880
78519
  status: Scalars['Boolean']['output'];
@@ -77910,6 +78549,23 @@ export declare type ResetExCoSpacePermissionsPayload = {
77910
78549
  __typename?: 'ResetExCoSpacePermissionsPayload';
77911
78550
  status: Scalars['Boolean']['output'];
77912
78551
  };
78552
+ export declare type ResetSpaceRolesFromAnotherSpaceInput = {
78553
+ sourceSpaceId: Scalars['Long']['input'];
78554
+ targetSpaceId: Scalars['Long']['input'];
78555
+ };
78556
+ export declare type ResetSpaceRolesFromAnotherSpacePayload = Payload & {
78557
+ __typename?: 'ResetSpaceRolesFromAnotherSpacePayload';
78558
+ errors?: Maybe<Array<MutationError>>;
78559
+ success: Scalars['Boolean']['output'];
78560
+ };
78561
+ export declare type ResetToDefaultSpaceRoleAssignmentsInput = {
78562
+ spaceId: Scalars['Long']['input'];
78563
+ };
78564
+ export declare type ResetToDefaultSpaceRoleAssignmentsPayload = Payload & {
78565
+ __typename?: 'ResetToDefaultSpaceRoleAssignmentsPayload';
78566
+ errors?: Maybe<Array<MutationError>>;
78567
+ success: Scalars['Boolean']['output'];
78568
+ };
77913
78569
  export declare type ResolveInlineCommentPayload = {
77914
78570
  __typename?: 'ResolveInlineCommentPayload';
77915
78571
  resolveProperties?: Maybe<InlineCommentResolveProperties>;
@@ -77935,6 +78591,22 @@ export declare type ResolveRestrictionsForSubjectMutationErrorExtension = Mutati
77935
78591
  statusCode?: Maybe<Scalars['Int']['output']>;
77936
78592
  subject: BlockedAccessSubject;
77937
78593
  };
78594
+ export declare type ResolveRestrictionsForSubjectsInput = {
78595
+ accessType: ResourceAccessType;
78596
+ contentId: Scalars['Long']['input'];
78597
+ subjects: Array<InputMaybe<BlockedAccessSubjectInput>>;
78598
+ };
78599
+ export declare type ResolveRestrictionsInput = {
78600
+ accessType: ResourceAccessType;
78601
+ accountId: Scalars['ID']['input'];
78602
+ resourceId: Scalars['Long']['input'];
78603
+ resourceType: ResourceType;
78604
+ };
78605
+ export declare type ResolveRestrictionsPayload = Payload & {
78606
+ __typename?: 'ResolveRestrictionsPayload';
78607
+ errors: Array<MutationError>;
78608
+ success: Scalars['Boolean']['output'];
78609
+ };
77938
78610
  export declare type ResolvedPolarisObject = {
77939
78611
  __typename?: 'ResolvedPolarisObject';
77940
78612
  auth?: Maybe<ResolvedPolarisObjectAuth>;
@@ -77970,6 +78642,11 @@ export declare enum ResponseType {
77970
78642
  BulletListMarkdown = "BULLET_LIST_MARKDOWN",
77971
78643
  ParagraphPlaintext = "PARAGRAPH_PLAINTEXT"
77972
78644
  }
78645
+ export declare type RestoreSpacePayload = Payload & {
78646
+ __typename?: 'RestoreSpacePayload';
78647
+ errors?: Maybe<Array<MutationError>>;
78648
+ success: Scalars['Boolean']['output'];
78649
+ };
77973
78650
  export declare type RestrictedResource = {
77974
78651
  __typename?: 'RestrictedResource';
77975
78652
  requiredAccessType?: Maybe<ResourceAccessType>;
@@ -78666,6 +79343,10 @@ export declare type RoadmapsQueryRoadmapSubtasksByIdsArgs = {
78666
79343
  itemIds: Array<Scalars['ID']['input']>;
78667
79344
  sourceARI: Scalars['ID']['input'];
78668
79345
  };
79346
+ export declare type RoleAssignment = {
79347
+ principal: RoleAssignmentPrincipalInput;
79348
+ roleId: Scalars['ID']['input'];
79349
+ };
78669
79350
  export declare type RoleAssignmentPrincipalInput = {
78670
79351
  principalId: Scalars['ID']['input'];
78671
79352
  principalType: RoleAssignmentPrincipalType;
@@ -80015,6 +80696,14 @@ export declare type SetColumnNameOutput = MutationResponse & {
80015
80696
  statusCode: Scalars['Int']['output'];
80016
80697
  success: Scalars['Boolean']['output'];
80017
80698
  };
80699
+ export declare type SetDefaultSpaceRoleAssignmentsInput = {
80700
+ spaceRoleAssignmentList: Array<RoleAssignment>;
80701
+ };
80702
+ export declare type SetDefaultSpaceRoleAssignmentsPayload = Payload & {
80703
+ __typename?: 'SetDefaultSpaceRoleAssignmentsPayload';
80704
+ errors?: Maybe<Array<MutationError>>;
80705
+ success: Scalars['Boolean']['output'];
80706
+ };
80018
80707
  export declare type SetEstimationTypeInput = {
80019
80708
  boardId: Scalars['ID']['input'];
80020
80709
  estimationType: Scalars['String']['input'];
@@ -80119,6 +80808,15 @@ export declare type SetRecommendedPagesStatusPayloadErrorExtension = {
80119
80808
  __typename?: 'SetRecommendedPagesStatusPayloadErrorExtension';
80120
80809
  statusCode?: Maybe<Scalars['Int']['output']>;
80121
80810
  };
80811
+ export declare type SetSpaceRoleAssignmentsInput = {
80812
+ spaceId: Scalars['Long']['input'];
80813
+ spaceRoleAssignmentList: Array<RoleAssignment>;
80814
+ };
80815
+ export declare type SetSpaceRoleAssignmentsPayload = Payload & {
80816
+ __typename?: 'SetSpaceRoleAssignmentsPayload';
80817
+ errors?: Maybe<Array<MutationError>>;
80818
+ success: Scalars['Boolean']['output'];
80819
+ };
80122
80820
  export declare type SetSwimlaneStrategyInput = {
80123
80821
  boardId: Scalars['ID']['input'];
80124
80822
  strategy: SwimlaneStrategy;
@@ -81643,6 +82341,17 @@ export declare type SiteDescription = {
81643
82341
  __typename?: 'SiteDescription';
81644
82342
  logoUrl?: Maybe<Scalars['String']['output']>;
81645
82343
  };
82344
+ export declare type SiteLookAndFeel = {
82345
+ __typename?: 'SiteLookAndFeel';
82346
+ backgroundColor?: Maybe<Scalars['String']['output']>;
82347
+ faviconFiles: Array<FaviconFile>;
82348
+ frontCoverState?: Maybe<Scalars['String']['output']>;
82349
+ highlightColor?: Maybe<Scalars['String']['output']>;
82350
+ showFrontCover?: Maybe<Scalars['Boolean']['output']>;
82351
+ showSiteName?: Maybe<Scalars['Boolean']['output']>;
82352
+ siteLogoFileStoreId?: Maybe<Scalars['ID']['output']>;
82353
+ siteName?: Maybe<Scalars['String']['output']>;
82354
+ };
81646
82355
  export declare type SiteOperations = {
81647
82356
  __typename?: 'SiteOperations';
81648
82357
  allOperations: Array<Maybe<OperationCheckResult>>;
@@ -81922,6 +82631,11 @@ export declare type SocialSignalsApiSocialSignalsSearchArgs = {
81922
82631
  objectARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
81923
82632
  tenantId: Scalars['ID']['input'];
81924
82633
  };
82634
+ export declare type SoftDeleteSpacePayload = Payload & {
82635
+ __typename?: 'SoftDeleteSpacePayload';
82636
+ errors?: Maybe<Array<MutationError>>;
82637
+ success: Scalars['Boolean']['output'];
82638
+ };
81925
82639
  export declare type SoftwareBoard = {
81926
82640
  __typename?: 'SoftwareBoard';
81927
82641
  assignees?: Maybe<Array<Maybe<User>>>;
@@ -82809,6 +83523,11 @@ export declare type SubjectKey = {
82809
83523
  group?: Maybe<Group>;
82810
83524
  id?: Maybe<Scalars['String']['output']>;
82811
83525
  };
83526
+ export declare type SubjectPermissionDeltas = {
83527
+ permissionsToAdd: Array<InputMaybe<SpacePermissionType>>;
83528
+ permissionsToRemove: Array<InputMaybe<SpacePermissionType>>;
83529
+ subjectKeyInput: UpdatePermissionSubjectKeyInput;
83530
+ };
82812
83531
  export declare type SubjectRestrictionHierarchySummary = {
82813
83532
  __typename?: 'SubjectRestrictionHierarchySummary';
82814
83533
  restrictedResources?: Maybe<Array<Maybe<RestrictedResource>>>;
@@ -86661,6 +87380,14 @@ export declare type UnarchivePolarisInsightsPayload = Payload & {
86661
87380
  errors?: Maybe<Array<MutationError>>;
86662
87381
  success: Scalars['Boolean']['output'];
86663
87382
  };
87383
+ export declare type UnarchiveSpaceInput = {
87384
+ alias: Scalars['String']['input'];
87385
+ };
87386
+ export declare type UnarchiveSpacePayload = Payload & {
87387
+ __typename?: 'UnarchiveSpacePayload';
87388
+ errors?: Maybe<Array<MutationError>>;
87389
+ success: Scalars['Boolean']['output'];
87390
+ };
86664
87391
  export declare type UnassignIssueParentInput = {
86665
87392
  boardId: Scalars['ID']['input'];
86666
87393
  issueIds: Array<Scalars['ID']['input']>;
@@ -87603,6 +88330,21 @@ export declare type UpdateComponentApiUploadPayload = {
87603
88330
  errors?: Maybe<Array<Scalars['String']['output']>>;
87604
88331
  success: Scalars['Boolean']['output'];
87605
88332
  };
88333
+ export declare type UpdateContentDataClassificationLevelInput = {
88334
+ classificationLevelId: Scalars['ID']['input'];
88335
+ contentStatus: ContentDataClassificationMutationContentStatus;
88336
+ id: Scalars['Long']['input'];
88337
+ };
88338
+ export declare type UpdateContentDataClassificationLevelPayload = Payload & {
88339
+ __typename?: 'UpdateContentDataClassificationLevelPayload';
88340
+ errors?: Maybe<Array<MutationError>>;
88341
+ success: Scalars['Boolean']['output'];
88342
+ };
88343
+ export declare type UpdateContentPermissionsInput = {
88344
+ confluencePrincipalType?: InputMaybe<ConfluencePrincipalType>;
88345
+ contentRole: ContentRole;
88346
+ principalId: Scalars['ID']['input'];
88347
+ };
87606
88348
  export declare type UpdateContentTemplateInput = {
87607
88349
  body: ContentTemplateBodyInput;
87608
88350
  description?: InputMaybe<Scalars['String']['input']>;
@@ -87613,6 +88355,17 @@ export declare type UpdateContentTemplateInput = {
87613
88355
  templateId: Scalars['ID']['input'];
87614
88356
  templateType: GraphQlContentTemplateType;
87615
88357
  };
88358
+ export declare type UpdateCoverPictureWidthInput = {
88359
+ contentId: Scalars['ID']['input'];
88360
+ contentStatus?: InputMaybe<ConfluenceMutationContentStatus>;
88361
+ coverPictureWidth: GraphQlCoverPictureWidth;
88362
+ };
88363
+ export declare type UpdateCoverPictureWidthPayload = Payload & {
88364
+ __typename?: 'UpdateCoverPictureWidthPayload';
88365
+ content: Content;
88366
+ errors?: Maybe<Array<MutationError>>;
88367
+ success: Scalars['Boolean']['output'];
88368
+ };
87616
88369
  export declare type UpdateCustomFilterInput = {
87617
88370
  boardId: Scalars['ID']['input'];
87618
88371
  description?: InputMaybe<Scalars['String']['input']>;
@@ -87620,6 +88373,16 @@ export declare type UpdateCustomFilterInput = {
87620
88373
  jql: Scalars['String']['input'];
87621
88374
  name: Scalars['String']['input'];
87622
88375
  };
88376
+ export declare type UpdateDefaultSpacePermissionsInput = {
88377
+ permissionsToAdd: Array<InputMaybe<SpacePermissionType>>;
88378
+ permissionsToRemove: Array<InputMaybe<SpacePermissionType>>;
88379
+ subjectKeyInput: UpdatePermissionSubjectKeyInput;
88380
+ };
88381
+ export declare type UpdateDefaultSpacePermissionsPayload = {
88382
+ __typename?: 'UpdateDefaultSpacePermissionsPayload';
88383
+ errors?: Maybe<Array<MutationError>>;
88384
+ success: Scalars['Boolean']['output'];
88385
+ };
87623
88386
  export declare type UpdateDevOpsContainerRelationshipEntityPropertiesInput = {
87624
88387
  id: Scalars['ID']['input'];
87625
88388
  properties: Array<DevOpsContainerRelationshipEntityPropertyInput>;
@@ -87727,6 +88490,15 @@ export declare type UpdateEmbedInput = {
87727
88490
  resourceType?: InputMaybe<Scalars['String']['input']>;
87728
88491
  title?: InputMaybe<Scalars['String']['input']>;
87729
88492
  };
88493
+ export declare type UpdateExternalCollaboratorDefaultSpaceInput = {
88494
+ enabled: Scalars['Boolean']['input'];
88495
+ spaceId: Scalars['Long']['input'];
88496
+ };
88497
+ export declare type UpdateExternalCollaboratorDefaultSpacePayload = Payload & {
88498
+ __typename?: 'UpdateExternalCollaboratorDefaultSpacePayload';
88499
+ errors?: Maybe<Array<MutationError>>;
88500
+ success: Scalars['Boolean']['output'];
88501
+ };
87730
88502
  export declare type UpdateJiraPlaybookInput = {
87731
88503
  filters?: InputMaybe<Array<JiraPlaybookIssueFilterInput>>;
87732
88504
  id: Scalars['ID']['input'];
@@ -87758,6 +88530,13 @@ export declare type UpdateJiraPlaybookStepInput = {
87758
88530
  ruleId?: InputMaybe<Scalars['String']['input']>;
87759
88531
  type: JiraPlaybookStepType;
87760
88532
  };
88533
+ export declare type UpdateNestedPageOwnersPayload = Payload & {
88534
+ __typename?: 'UpdateNestedPageOwnersPayload';
88535
+ errors?: Maybe<Array<MutationError>>;
88536
+ success: Scalars['Boolean']['output'];
88537
+ taskId: Scalars['ID']['output'];
88538
+ warnings?: Maybe<Array<Maybe<ChangeOwnerWarning>>>;
88539
+ };
87761
88540
  export declare type UpdateOwnerInput = {
87762
88541
  contentId: Scalars['ID']['input'];
87763
88542
  ownerId: Scalars['String']['input'];
@@ -87780,6 +88559,16 @@ export declare type UpdatePageInput = {
87780
88559
  status?: InputMaybe<PageStatusInput>;
87781
88560
  title?: InputMaybe<Scalars['String']['input']>;
87782
88561
  };
88562
+ export declare type UpdatePageOwnersInput = {
88563
+ ownerId: Scalars['ID']['input'];
88564
+ pageIDs: Array<InputMaybe<Scalars['Long']['input']>>;
88565
+ };
88566
+ export declare type UpdatePageOwnersPayload = Payload & {
88567
+ __typename?: 'UpdatePageOwnersPayload';
88568
+ errors?: Maybe<Array<MutationError>>;
88569
+ success: Scalars['Boolean']['output'];
88570
+ taskId: Scalars['ID']['output'];
88571
+ };
87783
88572
  export declare type UpdatePagePayload = {
87784
88573
  __typename?: 'UpdatePagePayload';
87785
88574
  content?: Maybe<Content>;
@@ -87788,6 +88577,21 @@ export declare type UpdatePagePayload = {
87788
88577
  pageId: Scalars['ID']['output'];
87789
88578
  restrictions?: Maybe<PageRestrictions>;
87790
88579
  };
88580
+ export declare type UpdatePageStatusesInput = {
88581
+ pages: Array<InputMaybe<NestedPageInput>>;
88582
+ spaceKey: Scalars['String']['input'];
88583
+ targetContentState: ContentStateInput;
88584
+ };
88585
+ export declare type UpdatePageStatusesPayload = Payload & {
88586
+ __typename?: 'UpdatePageStatusesPayload';
88587
+ errors?: Maybe<Array<MutationError>>;
88588
+ success: Scalars['Boolean']['output'];
88589
+ taskId: Scalars['ID']['output'];
88590
+ };
88591
+ export declare type UpdatePermissionSubjectKeyInput = {
88592
+ permissionDisplayType: PermissionDisplayType;
88593
+ subjectId: Scalars['String']['input'];
88594
+ };
87791
88595
  export declare type UpdatePolarisCommentInput = {
87792
88596
  content?: InputMaybe<Scalars['JSON']['input']>;
87793
88597
  delete?: InputMaybe<Scalars['Boolean']['input']>;
@@ -87977,12 +88781,74 @@ export declare type UpdateRelationPayload = {
87977
88781
  targetKey: Scalars['String']['output'];
87978
88782
  url: Scalars['String']['output'];
87979
88783
  };
88784
+ export declare type UpdateSiteLookAndFeelInput = {
88785
+ backgroundColor?: InputMaybe<Scalars['String']['input']>;
88786
+ faviconFiles: Array<FaviconFileInput>;
88787
+ frontCoverState?: InputMaybe<GraphQlFrontCoverState>;
88788
+ highlightColor?: InputMaybe<Scalars['String']['input']>;
88789
+ resetFavicon?: InputMaybe<Scalars['Boolean']['input']>;
88790
+ resetSiteLogo?: InputMaybe<Scalars['Boolean']['input']>;
88791
+ showFrontCover?: InputMaybe<Scalars['Boolean']['input']>;
88792
+ showSiteName?: InputMaybe<Scalars['Boolean']['input']>;
88793
+ siteLogoFileStoreId?: InputMaybe<Scalars['ID']['input']>;
88794
+ siteName?: InputMaybe<Scalars['String']['input']>;
88795
+ };
88796
+ export declare type UpdateSiteLookAndFeelPayload = Payload & {
88797
+ __typename?: 'UpdateSiteLookAndFeelPayload';
88798
+ errors?: Maybe<Array<MutationError>>;
88799
+ siteLookAndFeel?: Maybe<SiteLookAndFeel>;
88800
+ success: Scalars['Boolean']['output'];
88801
+ };
87980
88802
  export declare type UpdateSitePermissionInput = {
87981
88803
  anonymous?: InputMaybe<AnonymousWithPermissionsInput>;
87982
88804
  groups?: InputMaybe<Array<InputMaybe<GroupWithPermissionsInput>>>;
87983
88805
  unlicensedUser?: InputMaybe<UnlicensedUserWithPermissionsInput>;
87984
88806
  users?: InputMaybe<Array<InputMaybe<UserWithPermissionsInput>>>;
87985
88807
  };
88808
+ export declare type UpdateSpaceDefaultClassificationLevelInput = {
88809
+ classificationLevelId: Scalars['ID']['input'];
88810
+ id: Scalars['Long']['input'];
88811
+ };
88812
+ export declare type UpdateSpaceDefaultClassificationLevelPayload = Payload & {
88813
+ __typename?: 'UpdateSpaceDefaultClassificationLevelPayload';
88814
+ errors?: Maybe<Array<MutationError>>;
88815
+ success: Scalars['Boolean']['output'];
88816
+ };
88817
+ export declare type UpdateSpaceDetailsInput = {
88818
+ alias?: InputMaybe<Scalars['String']['input']>;
88819
+ categories?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
88820
+ description?: InputMaybe<Scalars['String']['input']>;
88821
+ homepagePageId?: InputMaybe<Scalars['Long']['input']>;
88822
+ id: Scalars['Long']['input'];
88823
+ name?: InputMaybe<Scalars['String']['input']>;
88824
+ owner?: InputMaybe<ConfluenceSpaceDetailsSpaceOwnerInput>;
88825
+ status?: InputMaybe<Scalars['String']['input']>;
88826
+ };
88827
+ export declare type UpdateSpaceDetailsPayload = Payload & {
88828
+ __typename?: 'UpdateSpaceDetailsPayload';
88829
+ errors?: Maybe<Array<MutationError>>;
88830
+ success: Scalars['Boolean']['output'];
88831
+ };
88832
+ export declare type UpdateSpacePermissionsInput = {
88833
+ spaceKey: Scalars['String']['input'];
88834
+ subjectPermissionDeltasList: Array<SubjectPermissionDeltas>;
88835
+ };
88836
+ export declare type UpdateSpacePermissionsPayload = {
88837
+ __typename?: 'UpdateSpacePermissionsPayload';
88838
+ errors?: Maybe<Array<MutationError>>;
88839
+ spaceKey: Scalars['String']['output'];
88840
+ success: Scalars['Boolean']['output'];
88841
+ };
88842
+ export declare type UpdateSpaceTypeSettingsInput = {
88843
+ spaceKey?: InputMaybe<Scalars['String']['input']>;
88844
+ spaceTypeSettings?: InputMaybe<SpaceTypeSettingsInput>;
88845
+ };
88846
+ export declare type UpdateSpaceTypeSettingsPayload = Payload & {
88847
+ __typename?: 'UpdateSpaceTypeSettingsPayload';
88848
+ errors?: Maybe<Array<MutationError>>;
88849
+ spaceTypeSettings?: Maybe<SpaceTypeSettings>;
88850
+ success: Scalars['Boolean']['output'];
88851
+ };
87986
88852
  export declare type UpdateTemplatePropertySetInput = {
87987
88853
  templateId: Scalars['Long']['input'];
87988
88854
  templatePropertySet: TemplatePropertySetInput;
@@ -87996,6 +88862,10 @@ export declare type UpdateUserInstallationRulesInput = {
87996
88862
  cloudId: Scalars['ID']['input'];
87997
88863
  rule: UserInstallationRuleValue;
87998
88864
  };
88865
+ export declare type UpdatedNestedPageOwnersInput = {
88866
+ ownerId: Scalars['ID']['input'];
88867
+ pages: Array<InputMaybe<NestedPageInput>>;
88868
+ };
87999
88869
  export declare type UpgradeableByRollout = {
88000
88870
  __typename?: 'UpgradeableByRollout';
88001
88871
  sourceVersionId: Scalars['ID']['output'];
@@ -88838,6 +89708,7 @@ export declare type WatchContentInput = {
88838
89708
  contentId: Scalars['ID']['input'];
88839
89709
  currentUser?: InputMaybe<Scalars['Boolean']['input']>;
88840
89710
  includeChildren?: InputMaybe<Scalars['Boolean']['input']>;
89711
+ shouldUnwatchAncestorWatchingChildren?: InputMaybe<Scalars['Boolean']['input']>;
88841
89712
  };
88842
89713
  export declare type WatchContentPayload = {
88843
89714
  __typename?: 'WatchContentPayload';