@forge/cli-shared 6.5.3-next.2 → 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.
- package/CHANGELOG.md +17 -0
- package/out/graphql/graphql-types.d.ts +921 -32
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +84 -23
- package/package.json +2 -2
|
@@ -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';
|
|
@@ -709,12 +740,14 @@ export declare type AgentAiContextPanelResponse = {
|
|
|
709
740
|
suggestedEscalation?: Maybe<Scalars['String']['output']>;
|
|
710
741
|
summary?: Maybe<Scalars['String']['output']>;
|
|
711
742
|
};
|
|
743
|
+
export declare type AgentAiContextPanelResult = AgentAiContextPanelResponse | QueryError;
|
|
712
744
|
export declare type AgentAiIssueSummary = {
|
|
713
745
|
__typename?: 'AgentAIIssueSummary';
|
|
714
746
|
createdAt?: Maybe<Scalars['Long']['output']>;
|
|
715
747
|
id?: Maybe<Scalars['String']['output']>;
|
|
716
748
|
summary?: Maybe<AgentAiSummary>;
|
|
717
749
|
};
|
|
750
|
+
export declare type AgentAiIssueSummaryResult = AgentAiIssueSummary | QueryError;
|
|
718
751
|
export declare type AgentAiSuggestAction = {
|
|
719
752
|
__typename?: 'AgentAISuggestAction';
|
|
720
753
|
content?: Maybe<AgentAiSuggestedActionContent>;
|
|
@@ -1891,6 +1924,14 @@ export declare type ArchivePolarisInsightsPayload = Payload & {
|
|
|
1891
1924
|
errors?: Maybe<Array<MutationError>>;
|
|
1892
1925
|
success: Scalars['Boolean']['output'];
|
|
1893
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
|
+
};
|
|
1894
1935
|
export declare type ArchivedContentMetadata = {
|
|
1895
1936
|
__typename?: 'ArchivedContentMetadata';
|
|
1896
1937
|
archiveNote?: Maybe<Scalars['String']['output']>;
|
|
@@ -2646,12 +2687,82 @@ export declare type BulkDeleteCompassComponentsPayload = Payload & {
|
|
|
2646
2687
|
errors?: Maybe<Array<MutationError>>;
|
|
2647
2688
|
success: Scalars['Boolean']['output'];
|
|
2648
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
|
+
};
|
|
2649
2699
|
export declare type BulkMutationErrorExtension = MutationErrorExtension & {
|
|
2650
2700
|
__typename?: 'BulkMutationErrorExtension';
|
|
2651
2701
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
2652
2702
|
id: Scalars['ID']['output'];
|
|
2653
2703
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
2654
2704
|
};
|
|
2705
|
+
export declare type BulkPermittedResponse = {
|
|
2706
|
+
__typename?: 'BulkPermittedResponse';
|
|
2707
|
+
permissionId?: Maybe<Scalars['String']['output']>;
|
|
2708
|
+
permitted?: Maybe<Scalars['Boolean']['output']>;
|
|
2709
|
+
principalId?: Maybe<Scalars['String']['output']>;
|
|
2710
|
+
resourceId?: Maybe<Scalars['String']['output']>;
|
|
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
|
+
}
|
|
2655
2766
|
export declare type BulkUpdateCompassComponentsInput = {
|
|
2656
2767
|
ids: Array<Scalars['ID']['input']>;
|
|
2657
2768
|
state?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -2662,6 +2773,16 @@ export declare type BulkUpdateCompassComponentsPayload = Payload & {
|
|
|
2662
2773
|
errors?: Maybe<Array<MutationError>>;
|
|
2663
2774
|
success: Scalars['Boolean']['output'];
|
|
2664
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
|
+
};
|
|
2665
2786
|
export declare type BulkUpdateMainSpaceSidebarLinksInput = {
|
|
2666
2787
|
hidden: Scalars['Boolean']['input'];
|
|
2667
2788
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -3558,6 +3679,11 @@ export declare type CcpUsageUpdateCadence = {
|
|
|
3558
3679
|
cadenceIntervalMinutes?: Maybe<Scalars['Int']['output']>;
|
|
3559
3680
|
name?: Maybe<Scalars['String']['output']>;
|
|
3560
3681
|
};
|
|
3682
|
+
export declare type ChangeOwnerWarning = {
|
|
3683
|
+
__typename?: 'ChangeOwnerWarning';
|
|
3684
|
+
contentId?: Maybe<Scalars['Long']['output']>;
|
|
3685
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
3686
|
+
};
|
|
3561
3687
|
export declare type CheckConsentPermissionByOAuthClientIdInput = {
|
|
3562
3688
|
cloudId: Scalars['ID']['input'];
|
|
3563
3689
|
oauthClientId: Scalars['ID']['input'];
|
|
@@ -8164,6 +8290,12 @@ export declare type ConfluenceAdminAnnouncementBanner = {
|
|
|
8164
8290
|
title?: Maybe<Scalars['String']['output']>;
|
|
8165
8291
|
updatedAt: Scalars['String']['output'];
|
|
8166
8292
|
};
|
|
8293
|
+
export declare type ConfluenceAdminAnnouncementBannerPayload = {
|
|
8294
|
+
__typename?: 'ConfluenceAdminAnnouncementBannerPayload';
|
|
8295
|
+
adminAnnouncementBannerSetting?: Maybe<ConfluenceAdminAnnouncementBannerSetting>;
|
|
8296
|
+
errors?: Maybe<Array<MutationError>>;
|
|
8297
|
+
success: Scalars['Boolean']['output'];
|
|
8298
|
+
};
|
|
8167
8299
|
export declare type ConfluenceAdminAnnouncementBannerSetting = {
|
|
8168
8300
|
__typename?: 'ConfluenceAdminAnnouncementBannerSetting';
|
|
8169
8301
|
appearance: Scalars['String']['output'];
|
|
@@ -8193,6 +8325,12 @@ export declare type ConfluenceAdminReport = {
|
|
|
8193
8325
|
reportId?: Maybe<Scalars['ID']['output']>;
|
|
8194
8326
|
requesterId?: Maybe<Scalars['ID']['output']>;
|
|
8195
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
|
+
};
|
|
8196
8334
|
export declare type ConfluenceAdminReportStatus = {
|
|
8197
8335
|
__typename?: 'ConfluenceAdminReportStatus';
|
|
8198
8336
|
reports?: Maybe<Array<Maybe<ConfluenceAdminReport>>>;
|
|
@@ -8299,6 +8437,15 @@ export declare type ConfluenceCalendarPreference = {
|
|
|
8299
8437
|
view: Scalars['String']['output'];
|
|
8300
8438
|
watchedSubCalendars?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
8301
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
|
+
};
|
|
8302
8449
|
export declare type ConfluenceChildContent = {
|
|
8303
8450
|
__typename?: 'ConfluenceChildContent';
|
|
8304
8451
|
attachment: PaginatedContentList;
|
|
@@ -8360,15 +8507,6 @@ export declare enum ConfluenceCommentType {
|
|
|
8360
8507
|
Footer = "FOOTER",
|
|
8361
8508
|
Inline = "INLINE"
|
|
8362
8509
|
}
|
|
8363
|
-
export declare type ConfluenceConflictedMutationError = {
|
|
8364
|
-
__typename?: 'ConfluenceConflictedMutationError';
|
|
8365
|
-
extensions?: Maybe<Array<Maybe<MutationErrorExtension>>>;
|
|
8366
|
-
message?: Maybe<Scalars['String']['output']>;
|
|
8367
|
-
};
|
|
8368
|
-
export declare type ConfluenceConflictedPayload = {
|
|
8369
|
-
errors?: Maybe<Array<ConfluenceConflictedMutationError>>;
|
|
8370
|
-
success: Scalars['Boolean']['output'];
|
|
8371
|
-
};
|
|
8372
8510
|
export declare type ConfluenceContentBody = {
|
|
8373
8511
|
__typename?: 'ConfluenceContentBody';
|
|
8374
8512
|
adf?: Maybe<Scalars['String']['output']>;
|
|
@@ -8438,6 +8576,17 @@ export declare type ConfluenceCopyPageTaskResult = {
|
|
|
8438
8576
|
__typename?: 'ConfluenceCopyPageTaskResult';
|
|
8439
8577
|
page?: Maybe<ConfluencePage>;
|
|
8440
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
|
+
};
|
|
8441
8590
|
export declare type ConfluenceCreateBlogPostInput = {
|
|
8442
8591
|
body?: InputMaybe<ConfluenceContentBodyInput>;
|
|
8443
8592
|
spaceId: Scalars['ID']['input'];
|
|
@@ -8545,9 +8694,9 @@ export declare type ConfluenceDeleteCalendarCustomEventTypeInput = {
|
|
|
8545
8694
|
id: Scalars['ID']['input'];
|
|
8546
8695
|
subCalendarId: Scalars['ID']['input'];
|
|
8547
8696
|
};
|
|
8548
|
-
export declare type ConfluenceDeleteCalendarCustomEventTypePayload =
|
|
8697
|
+
export declare type ConfluenceDeleteCalendarCustomEventTypePayload = Payload & {
|
|
8549
8698
|
__typename?: 'ConfluenceDeleteCalendarCustomEventTypePayload';
|
|
8550
|
-
errors?: Maybe<Array<
|
|
8699
|
+
errors?: Maybe<Array<MutationError>>;
|
|
8551
8700
|
success: Scalars['Boolean']['output'];
|
|
8552
8701
|
};
|
|
8553
8702
|
export declare type ConfluenceDeleteCommentInput = {
|
|
@@ -8588,26 +8737,26 @@ export declare type ConfluenceDeleteSubCalendarAllFutureEventsInput = {
|
|
|
8588
8737
|
subCalendarId: Scalars['ID']['input'];
|
|
8589
8738
|
uid: Scalars['ID']['input'];
|
|
8590
8739
|
};
|
|
8591
|
-
export declare type ConfluenceDeleteSubCalendarAllFutureEventsPayload =
|
|
8740
|
+
export declare type ConfluenceDeleteSubCalendarAllFutureEventsPayload = Payload & {
|
|
8592
8741
|
__typename?: 'ConfluenceDeleteSubCalendarAllFutureEventsPayload';
|
|
8593
|
-
errors?: Maybe<Array<
|
|
8742
|
+
errors?: Maybe<Array<MutationError>>;
|
|
8594
8743
|
success: Scalars['Boolean']['output'];
|
|
8595
8744
|
};
|
|
8596
8745
|
export declare type ConfluenceDeleteSubCalendarEventInput = {
|
|
8597
8746
|
subCalendarId: Scalars['ID']['input'];
|
|
8598
8747
|
uid: Scalars['ID']['input'];
|
|
8599
8748
|
};
|
|
8600
|
-
export declare type ConfluenceDeleteSubCalendarEventPayload =
|
|
8749
|
+
export declare type ConfluenceDeleteSubCalendarEventPayload = Payload & {
|
|
8601
8750
|
__typename?: 'ConfluenceDeleteSubCalendarEventPayload';
|
|
8602
|
-
errors?: Maybe<Array<
|
|
8751
|
+
errors?: Maybe<Array<MutationError>>;
|
|
8603
8752
|
success: Scalars['Boolean']['output'];
|
|
8604
8753
|
};
|
|
8605
8754
|
export declare type ConfluenceDeleteSubCalendarHiddenEventsInput = {
|
|
8606
8755
|
subCalendarId: Scalars['ID']['input'];
|
|
8607
8756
|
};
|
|
8608
|
-
export declare type ConfluenceDeleteSubCalendarHiddenEventsPayload =
|
|
8757
|
+
export declare type ConfluenceDeleteSubCalendarHiddenEventsPayload = Payload & {
|
|
8609
8758
|
__typename?: 'ConfluenceDeleteSubCalendarHiddenEventsPayload';
|
|
8610
|
-
errors?: Maybe<Array<
|
|
8759
|
+
errors?: Maybe<Array<MutationError>>;
|
|
8611
8760
|
subCalendarIds?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
8612
8761
|
success: Scalars['Boolean']['output'];
|
|
8613
8762
|
};
|
|
@@ -8617,9 +8766,9 @@ export declare type ConfluenceDeleteSubCalendarSingleEventInput = {
|
|
|
8617
8766
|
subCalendarId: Scalars['ID']['input'];
|
|
8618
8767
|
uid: Scalars['ID']['input'];
|
|
8619
8768
|
};
|
|
8620
|
-
export declare type ConfluenceDeleteSubCalendarSingleEventPayload =
|
|
8769
|
+
export declare type ConfluenceDeleteSubCalendarSingleEventPayload = Payload & {
|
|
8621
8770
|
__typename?: 'ConfluenceDeleteSubCalendarSingleEventPayload';
|
|
8622
|
-
errors?: Maybe<Array<
|
|
8771
|
+
errors?: Maybe<Array<MutationError>>;
|
|
8623
8772
|
success: Scalars['Boolean']['output'];
|
|
8624
8773
|
};
|
|
8625
8774
|
export declare enum ConfluenceEdition {
|
|
@@ -8724,7 +8873,7 @@ export declare type ConfluenceInviteUserInput = {
|
|
|
8724
8873
|
};
|
|
8725
8874
|
export declare type ConfluenceInviteUserPayload = {
|
|
8726
8875
|
__typename?: 'ConfluenceInviteUserPayload';
|
|
8727
|
-
errors?: Maybe<Array<
|
|
8876
|
+
errors?: Maybe<Array<MutationError>>;
|
|
8728
8877
|
success: Scalars['Boolean']['output'];
|
|
8729
8878
|
};
|
|
8730
8879
|
export declare type ConfluenceLabel = {
|
|
@@ -14890,6 +15039,10 @@ export declare type ConfluenceSpaceDetailsSpaceOwner = {
|
|
|
14890
15039
|
ownerId?: Maybe<Scalars['String']['output']>;
|
|
14891
15040
|
ownerType?: Maybe<ConfluenceSpaceOwnerType>;
|
|
14892
15041
|
};
|
|
15042
|
+
export declare type ConfluenceSpaceDetailsSpaceOwnerInput = {
|
|
15043
|
+
ownerId?: InputMaybe<Scalars['String']['input']>;
|
|
15044
|
+
ownerType?: InputMaybe<ConfluenceSpaceOwnerType>;
|
|
15045
|
+
};
|
|
14893
15046
|
export declare type ConfluenceSpaceEdge = {
|
|
14894
15047
|
__typename?: 'ConfluenceSpaceEdge';
|
|
14895
15048
|
cursor: Scalars['String']['output'];
|
|
@@ -14991,9 +15144,21 @@ export declare type ConfluenceUnwatchSubCalendarInput = {
|
|
|
14991
15144
|
};
|
|
14992
15145
|
export declare type ConfluenceUnwatchSubCalendarPayload = {
|
|
14993
15146
|
__typename?: 'ConfluenceUnwatchSubCalendarPayload';
|
|
14994
|
-
errors?: Maybe<Array<
|
|
15147
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14995
15148
|
success: Scalars['Boolean']['output'];
|
|
14996
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
|
+
};
|
|
14997
15162
|
export declare type ConfluenceUpdateCommentInput = {
|
|
14998
15163
|
body: ConfluenceContentBodyInput;
|
|
14999
15164
|
id: Scalars['ID']['input'];
|
|
@@ -15071,9 +15236,9 @@ export declare type ConfluenceUpdateSpaceSettingsPayload = Payload & {
|
|
|
15071
15236
|
export declare type ConfluenceUpdateSubCalendarHiddenEventsInput = {
|
|
15072
15237
|
subCalendarId: Scalars['ID']['input'];
|
|
15073
15238
|
};
|
|
15074
|
-
export declare type ConfluenceUpdateSubCalendarHiddenEventsPayload =
|
|
15239
|
+
export declare type ConfluenceUpdateSubCalendarHiddenEventsPayload = Payload & {
|
|
15075
15240
|
__typename?: 'ConfluenceUpdateSubCalendarHiddenEventsPayload';
|
|
15076
|
-
errors?: Maybe<Array<
|
|
15241
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15077
15242
|
subCalendarIds?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
15078
15243
|
success: Scalars['Boolean']['output'];
|
|
15079
15244
|
};
|
|
@@ -15083,7 +15248,7 @@ export declare type ConfluenceUpdateTeamPresenceSpaceSettingsInput = {
|
|
|
15083
15248
|
};
|
|
15084
15249
|
export declare type ConfluenceUpdateTeamPresenceSpaceSettingsPayload = {
|
|
15085
15250
|
__typename?: 'ConfluenceUpdateTeamPresenceSpaceSettingsPayload';
|
|
15086
|
-
errors?: Maybe<Array<
|
|
15251
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15087
15252
|
isEnabledOnContentView: Scalars['Boolean']['output'];
|
|
15088
15253
|
success: Scalars['Boolean']['output'];
|
|
15089
15254
|
};
|
|
@@ -15666,7 +15831,7 @@ export declare type ConfluenceWatchSubCalendarInput = {
|
|
|
15666
15831
|
};
|
|
15667
15832
|
export declare type ConfluenceWatchSubCalendarPayload = {
|
|
15668
15833
|
__typename?: 'ConfluenceWatchSubCalendarPayload';
|
|
15669
|
-
errors?: Maybe<Array<
|
|
15834
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15670
15835
|
success: Scalars['Boolean']['output'];
|
|
15671
15836
|
};
|
|
15672
15837
|
export declare type ConfluenceWhiteboard = {
|
|
@@ -16203,6 +16368,10 @@ export declare type ContentDataClassificationLevel = {
|
|
|
16203
16368
|
order?: Maybe<Scalars['Int']['output']>;
|
|
16204
16369
|
status: Scalars['String']['output'];
|
|
16205
16370
|
};
|
|
16371
|
+
export declare enum ContentDataClassificationMutationContentStatus {
|
|
16372
|
+
Current = "CURRENT",
|
|
16373
|
+
Draft = "DRAFT"
|
|
16374
|
+
}
|
|
16206
16375
|
export declare enum ContentDataClassificationQueryContentStatus {
|
|
16207
16376
|
Archived = "ARCHIVED",
|
|
16208
16377
|
Current = "CURRENT",
|
|
@@ -16251,6 +16420,11 @@ export declare type ContentMediaSession = {
|
|
|
16251
16420
|
mediaPickerUserToken?: Maybe<MediaPickerUserToken>;
|
|
16252
16421
|
token: MediaToken;
|
|
16253
16422
|
};
|
|
16423
|
+
export declare type ContentMention = {
|
|
16424
|
+
mentionLocalId?: InputMaybe<Scalars['ID']['input']>;
|
|
16425
|
+
mentionedUserAccountId: Scalars['ID']['input'];
|
|
16426
|
+
notificationAction: NotificationAction;
|
|
16427
|
+
};
|
|
16254
16428
|
export declare type ContentMetadata = {
|
|
16255
16429
|
__typename?: 'ContentMetadata';
|
|
16256
16430
|
comments?: Maybe<ContentMetadata_CommentsMetadataProvider_Comments>;
|
|
@@ -17744,6 +17918,11 @@ export declare type ContentRestrictionsPageResponse = {
|
|
|
17744
17918
|
links?: Maybe<LinksContextSelfBase>;
|
|
17745
17919
|
restrictionsHash?: Maybe<Scalars['String']['output']>;
|
|
17746
17920
|
};
|
|
17921
|
+
export declare enum ContentRole {
|
|
17922
|
+
Default = "DEFAULT",
|
|
17923
|
+
Editor = "EDITOR",
|
|
17924
|
+
Viewer = "VIEWER"
|
|
17925
|
+
}
|
|
17747
17926
|
export declare type ContentSpecificCreateInput = {
|
|
17748
17927
|
key: Scalars['String']['input'];
|
|
17749
17928
|
value: Scalars['String']['input'];
|
|
@@ -17863,6 +18042,14 @@ export declare type Contributors = {
|
|
|
17863
18042
|
links?: Maybe<LinksContextBase>;
|
|
17864
18043
|
publishers?: Maybe<ContributorUsers>;
|
|
17865
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
|
+
};
|
|
17866
18053
|
export declare type ConvertPageToLiveEditValidationResult = {
|
|
17867
18054
|
__typename?: 'ConvertPageToLiveEditValidationResult';
|
|
17868
18055
|
hasFooterComments?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -18235,6 +18422,16 @@ export declare type CreateContentInput = {
|
|
|
18235
18422
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
18236
18423
|
type: Scalars['String']['input'];
|
|
18237
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
|
+
};
|
|
18238
18435
|
export declare type CreateContentTemplateInput = {
|
|
18239
18436
|
body: ContentTemplateBodyInput;
|
|
18240
18437
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -18331,6 +18528,15 @@ export declare type CreateEventSourcePayload = Payload & {
|
|
|
18331
18528
|
eventSource?: Maybe<EventSource>;
|
|
18332
18529
|
success: Scalars['Boolean']['output'];
|
|
18333
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
|
+
};
|
|
18334
18540
|
export declare type CreateHostedResourceUploadUrlInput = {
|
|
18335
18541
|
appId: Scalars['ID']['input'];
|
|
18336
18542
|
environmentKey: Scalars['String']['input'];
|
|
@@ -18370,6 +18576,17 @@ export declare type CreateInlineContentInput = {
|
|
|
18370
18576
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
18371
18577
|
type: Scalars['String']['input'];
|
|
18372
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
|
+
};
|
|
18373
18590
|
export declare type CreateJiraPlaybookInput = {
|
|
18374
18591
|
cloudId: Scalars['ID']['input'];
|
|
18375
18592
|
filters?: InputMaybe<Array<JiraPlaybookIssueFilterInput>>;
|
|
@@ -18406,6 +18623,28 @@ export declare type CreateLivePageInput = {
|
|
|
18406
18623
|
spaceKey: Scalars['String']['input'];
|
|
18407
18624
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
18408
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
|
+
};
|
|
18409
18648
|
export declare type CreatePersonalSpaceInput = {
|
|
18410
18649
|
copySpacePermissionsFromSpaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
18411
18650
|
initialPermissionOption?: InputMaybe<InitialPermissionOptions>;
|
|
@@ -19692,6 +19931,14 @@ export declare type DateSearchInput = {
|
|
|
19692
19931
|
earliestStart?: InputMaybe<Scalars['String']['input']>;
|
|
19693
19932
|
latestStart?: InputMaybe<Scalars['String']['input']>;
|
|
19694
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
|
+
};
|
|
19695
19942
|
export declare enum DeactivatedPageOwnerUserType {
|
|
19696
19943
|
FormerUsers = "FORMER_USERS",
|
|
19697
19944
|
NonFormerUsers = "NON_FORMER_USERS"
|
|
@@ -19852,6 +20099,15 @@ export declare type DeleteCompassStarredComponentPayload = Payload & {
|
|
|
19852
20099
|
export declare type DeleteCompassUserDefinedParameterInput = {
|
|
19853
20100
|
id: Scalars['ID']['input'];
|
|
19854
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
|
+
};
|
|
19855
20111
|
export declare type DeleteContentResponsePayload = {
|
|
19856
20112
|
__typename?: 'DeleteContentResponsePayload';
|
|
19857
20113
|
contentId: Scalars['ID']['output'];
|
|
@@ -19870,6 +20126,14 @@ export declare type DeleteCustomFilterInput = {
|
|
|
19870
20126
|
boardId: Scalars['ID']['input'];
|
|
19871
20127
|
customFilterId: Scalars['String']['input'];
|
|
19872
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
|
+
};
|
|
19873
20137
|
export declare type DeleteDevOpsContainerRelationshipEntityPropertiesInput = {
|
|
19874
20138
|
id: Scalars['ID']['input'];
|
|
19875
20139
|
keys: Array<Scalars['String']['input']>;
|
|
@@ -20013,6 +20277,23 @@ export declare type DeleteRelationPayload = {
|
|
|
20013
20277
|
sourceKey: Scalars['String']['output'];
|
|
20014
20278
|
targetKey: Scalars['String']['output'];
|
|
20015
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
|
+
};
|
|
20016
20297
|
export declare type DeleteSprintInput = {
|
|
20017
20298
|
boardId: Scalars['ID']['input'];
|
|
20018
20299
|
sprintId: Scalars['ID']['input'];
|
|
@@ -22559,6 +22840,17 @@ export declare enum EditorConversionSetting {
|
|
|
22559
22840
|
None = "NONE",
|
|
22560
22841
|
Supported = "SUPPORTED"
|
|
22561
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
|
+
};
|
|
22562
22854
|
export declare type EditorVersionsMetadataDto = {
|
|
22563
22855
|
__typename?: 'EditorVersionsMetadataDto';
|
|
22564
22856
|
blogpost?: Maybe<Scalars['String']['output']>;
|
|
@@ -23696,6 +23988,15 @@ export declare type FailedRoles = {
|
|
|
23696
23988
|
reason: Scalars['String']['output'];
|
|
23697
23989
|
role?: Maybe<AppContributorRole>;
|
|
23698
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
|
+
};
|
|
23699
24000
|
export declare type FavouritePageInput = {
|
|
23700
24001
|
pageId: Scalars['ID']['input'];
|
|
23701
24002
|
};
|
|
@@ -23703,6 +24004,13 @@ export declare type FavouritePagePayload = {
|
|
|
23703
24004
|
__typename?: 'FavouritePagePayload';
|
|
23704
24005
|
content: Content;
|
|
23705
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
|
+
};
|
|
23706
24014
|
export declare type FavouriteSpacePayload = {
|
|
23707
24015
|
__typename?: 'FavouriteSpacePayload';
|
|
23708
24016
|
isSpaceFavourited?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -26391,6 +26699,16 @@ export declare enum GraphQlContentTemplateType {
|
|
|
26391
26699
|
Blueprint = "BLUEPRINT",
|
|
26392
26700
|
Page = "PAGE"
|
|
26393
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
|
+
}
|
|
26394
26712
|
export declare type GraphQlGlobalDescription = {
|
|
26395
26713
|
__typename?: 'GraphQLGlobalDescription';
|
|
26396
26714
|
id: Scalars['ID']['output'];
|
|
@@ -26442,6 +26760,23 @@ export declare type GraphQlRelevantFeedFilters = {
|
|
|
26442
26760
|
relevantFeedSpacesFilter: Array<Maybe<Scalars['Long']['output']>>;
|
|
26443
26761
|
relevantFeedUsersFilter: Array<Maybe<Scalars['String']['output']>>;
|
|
26444
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
|
+
};
|
|
26445
26780
|
export declare enum GraphQlTemplateContentAppearance {
|
|
26446
26781
|
Default = "DEFAULT",
|
|
26447
26782
|
FullWidth = "FULL_WIDTH"
|
|
@@ -45043,6 +45378,12 @@ export declare type HamsTrial = CommerceTrial & {
|
|
|
45043
45378
|
endTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
45044
45379
|
startTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
45045
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
|
+
};
|
|
45046
45387
|
export declare type HasMercuryProjectFields = {
|
|
45047
45388
|
mercuryProjectIcon?: Maybe<Scalars['URL']['output']>;
|
|
45048
45389
|
mercuryProjectKey?: Maybe<Scalars['String']['output']>;
|
|
@@ -46816,6 +47157,21 @@ export declare type IncomingLinksCount = {
|
|
|
46816
47157
|
__typename?: 'IncomingLinksCount';
|
|
46817
47158
|
count?: Maybe<Scalars['Int']['output']>;
|
|
46818
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
|
+
};
|
|
46819
47175
|
export declare type InfluentsNotificationAction = {
|
|
46820
47176
|
__typename?: 'InfluentsNotificationAction';
|
|
46821
47177
|
appearance: InfluentsNotificationAppearance;
|
|
@@ -65892,6 +66248,11 @@ export declare type MacroBody = {
|
|
|
65892
66248
|
value?: Maybe<Scalars['String']['output']>;
|
|
65893
66249
|
webResourceDependencies?: Maybe<WebResourceDependencies>;
|
|
65894
66250
|
};
|
|
66251
|
+
export declare type MapOfStringToBoolean = {
|
|
66252
|
+
__typename?: 'MapOfStringToBoolean';
|
|
66253
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
66254
|
+
value?: Maybe<Scalars['Boolean']['output']>;
|
|
66255
|
+
};
|
|
65895
66256
|
export declare type MapOfStringToFormattedBody = {
|
|
65896
66257
|
__typename?: 'MapOfStringToFormattedBody';
|
|
65897
66258
|
key?: Maybe<Scalars['String']['output']>;
|
|
@@ -68007,6 +68368,10 @@ export declare enum MembershipState {
|
|
|
68007
68368
|
Invited = "INVITED",
|
|
68008
68369
|
RequestingToJoin = "REQUESTING_TO_JOIN"
|
|
68009
68370
|
}
|
|
68371
|
+
export declare type MentionData = {
|
|
68372
|
+
mentionLocalIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
68373
|
+
mentionedUserAccountId: Scalars['ID']['input'];
|
|
68374
|
+
};
|
|
68010
68375
|
export declare type MenusLookAndFeel = {
|
|
68011
68376
|
__typename?: 'MenusLookAndFeel';
|
|
68012
68377
|
color?: Maybe<Scalars['String']['output']>;
|
|
@@ -69325,6 +69690,13 @@ export declare type MigrateComponentTypePayload = Payload & {
|
|
|
69325
69690
|
hasMore?: Maybe<Scalars['Boolean']['output']>;
|
|
69326
69691
|
success: Scalars['Boolean']['output'];
|
|
69327
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
|
+
};
|
|
69328
69700
|
export declare type Migration = {
|
|
69329
69701
|
__typename?: 'Migration';
|
|
69330
69702
|
estimation?: Maybe<MigrationEstimation>;
|
|
@@ -69525,8 +69897,11 @@ export declare type MoveSprintUpResponse = MutationResponse & {
|
|
|
69525
69897
|
export declare type Mutation = {
|
|
69526
69898
|
__typename?: 'Mutation';
|
|
69527
69899
|
actions?: Maybe<ActionsMutation>;
|
|
69900
|
+
activatePaywallContent?: Maybe<ActivatePaywallContentPayload>;
|
|
69528
69901
|
addBetaUserAsSiteCreator?: Maybe<AddBetaUserAsSiteCreatorPayload>;
|
|
69902
|
+
addDefaultExCoSpacePermissions?: Maybe<AddDefaultExCoSpacePermissionsPayload>;
|
|
69529
69903
|
addLabels?: Maybe<AddLabelsPayload>;
|
|
69904
|
+
addPublicLinkPermissions?: Maybe<AddPublicLinkPermissionsPayload>;
|
|
69530
69905
|
addReaction?: Maybe<SaveReactionResponse>;
|
|
69531
69906
|
appRecommendations?: Maybe<AppRecMutation>;
|
|
69532
69907
|
appStorage?: Maybe<AppStorageMutation>;
|
|
@@ -69534,10 +69909,17 @@ export declare type Mutation = {
|
|
|
69534
69909
|
applyPolarisProjectTemplate?: Maybe<ApplyPolarisProjectTemplatePayload>;
|
|
69535
69910
|
archivePages?: Maybe<BulkArchivePagePayload>;
|
|
69536
69911
|
archivePolarisInsights?: Maybe<ArchivePolarisInsightsPayload>;
|
|
69912
|
+
archiveSpace?: Maybe<ArchiveSpacePayload>;
|
|
69537
69913
|
assignIssueParent?: Maybe<AssignIssueParentOutput>;
|
|
69538
69914
|
attachDanglingComment?: Maybe<Comment>;
|
|
69539
69915
|
boardCardMove?: Maybe<MoveCardOutput>;
|
|
69916
|
+
bulkDeleteContentDataClassificationLevel?: Maybe<BulkDeleteContentDataClassificationLevelPayload>;
|
|
69917
|
+
bulkRemoveRoleAssignmentFromSpaces?: Maybe<BulkRemoveRoleAssignmentFromSpacesPayload>;
|
|
69918
|
+
bulkSetRoleAssignmentToSpaces?: Maybe<BulkSetRoleAssignmentToSpacesPayload>;
|
|
69919
|
+
bulkSetSpacePermission?: Maybe<BulkSetSpacePermissionPayload>;
|
|
69920
|
+
bulkSetSpacePermissionAsync?: Maybe<BulkSetSpacePermissionAsyncPayload>;
|
|
69540
69921
|
bulkUnarchivePages?: Maybe<BulkArchivePagePayload>;
|
|
69922
|
+
bulkUpdateContentDataClassificationLevel?: Maybe<BulkUpdateContentDataClassificationLevelPayload>;
|
|
69541
69923
|
bulkUpdateMainSpaceSidebarLinks?: Maybe<Array<Maybe<SpaceSidebarLink>>>;
|
|
69542
69924
|
clearRestrictionsForFree?: Maybe<ContentRestrictionsPageResponse>;
|
|
69543
69925
|
compass?: Maybe<CompassCatalogMutationApi>;
|
|
@@ -69721,10 +70103,12 @@ export declare type Mutation = {
|
|
|
69721
70103
|
connectionManager_deleteApiTokenConnectionForJiraProject?: Maybe<ConnectionManagerDeleteApiTokenConnectionForJiraProjectPayload>;
|
|
69722
70104
|
connectionManager_deleteConnectionForJiraProject?: Maybe<ConnectionManagerDeleteConnectionForJiraProjectPayload>;
|
|
69723
70105
|
contactAdmin?: Maybe<GraphQlContactAdminStatus>;
|
|
70106
|
+
convertPageToLiveEditAction?: Maybe<ConvertPageToLiveEditActionPayload>;
|
|
69724
70107
|
convertToFolder?: Maybe<ConfluenceConvertContentToFolderPayload>;
|
|
69725
70108
|
copyDefaultSpacePermissions?: Maybe<CopySpacePermissionsPayload>;
|
|
69726
70109
|
copyPolarisInsights?: Maybe<CopyPolarisInsightsPayload>;
|
|
69727
70110
|
copySpacePermissions?: Maybe<CopySpacePermissionsPayload>;
|
|
70111
|
+
createAdminAnnouncementBanner?: Maybe<ConfluenceAdminAnnouncementBannerPayload>;
|
|
69728
70112
|
createApp?: Maybe<CreateAppResponse>;
|
|
69729
70113
|
createAppDeployment?: Maybe<CreateAppDeploymentResponse>;
|
|
69730
70114
|
createAppDeploymentUrl?: Maybe<CreateAppDeploymentUrlResponse>;
|
|
@@ -69734,6 +70118,7 @@ export declare type Mutation = {
|
|
|
69734
70118
|
createContentContextual?: Maybe<Content>;
|
|
69735
70119
|
createContentGlobal?: Maybe<Content>;
|
|
69736
70120
|
createContentInline?: Maybe<Content>;
|
|
70121
|
+
createContentMentionNotificationAction?: Maybe<CreateContentMentionNotificationActionPayload>;
|
|
69737
70122
|
createContentTemplateLabels?: Maybe<PaginatedLabelList>;
|
|
69738
70123
|
createCustomFilter?: Maybe<CustomFilterCreateOutput>;
|
|
69739
70124
|
createCustomFilterV2?: Maybe<CustomFilterCreateOutputV2>;
|
|
@@ -69742,10 +70127,14 @@ export declare type Mutation = {
|
|
|
69742
70127
|
createDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<CreateDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
|
|
69743
70128
|
createDevOpsServiceAndRepositoryRelationship?: Maybe<CreateDevOpsServiceAndRepositoryRelationshipPayload>;
|
|
69744
70129
|
createDevOpsServiceRelationship?: Maybe<CreateDevOpsServiceRelationshipPayload>;
|
|
70130
|
+
createFaviconFiles?: Maybe<CreateFaviconFilesPayload>;
|
|
69745
70131
|
createFooterComment?: Maybe<Comment>;
|
|
69746
70132
|
createHostedResourceUploadUrl?: Maybe<CreateHostedResourceUploadUrlPayload>;
|
|
69747
70133
|
createInlineComment?: Maybe<Comment>;
|
|
70134
|
+
createInlineTaskNotification?: Maybe<CreateInlineTaskNotificationPayload>;
|
|
69748
70135
|
createLivePage?: Maybe<Content>;
|
|
70136
|
+
createMentionNotification?: Maybe<CreateMentionNotificationPayload>;
|
|
70137
|
+
createMentionReminderNotification?: Maybe<CreateMentionReminderNotificationPayload>;
|
|
69749
70138
|
createOnboardingSpace?: Maybe<Scalars['String']['output']>;
|
|
69750
70139
|
createOrUpdateArchivePageNote?: Maybe<Scalars['String']['output']>;
|
|
69751
70140
|
createPersonalSpace?: Maybe<Space>;
|
|
@@ -69765,15 +70154,18 @@ export declare type Mutation = {
|
|
|
69765
70154
|
createWebTriggerUrl?: Maybe<CreateWebTriggerUrlResponse>;
|
|
69766
70155
|
customerService?: Maybe<CustomerServiceMutationApi>;
|
|
69767
70156
|
customerSupport?: Maybe<SupportRequestCatalogMutationApi>;
|
|
70157
|
+
deactivatePaywallContent?: Maybe<DeactivatePaywallContentPayload>;
|
|
69768
70158
|
deleteApp?: Maybe<DeleteAppResponse>;
|
|
69769
70159
|
deleteAppEnvironmentVariable?: Maybe<DeleteAppEnvironmentVariablePayload>;
|
|
69770
70160
|
deleteAppTunnels?: Maybe<GenericMutationResponse>;
|
|
69771
70161
|
deleteColumn?: Maybe<DeleteColumnOutput>;
|
|
69772
70162
|
deleteComment?: Maybe<Scalars['Boolean']['output']>;
|
|
69773
70163
|
deleteContent?: Maybe<DeleteContentResponsePayload>;
|
|
70164
|
+
deleteContentDataClassificationLevel?: Maybe<DeleteContentDataClassificationLevelPayload>;
|
|
69774
70165
|
deleteContentState?: Maybe<ContentState>;
|
|
69775
70166
|
deleteContentTemplateLabel?: Maybe<DeleteContentTemplateLabelPayload>;
|
|
69776
70167
|
deleteCustomFilter?: Maybe<GenericMutationResponse>;
|
|
70168
|
+
deleteDefaultSpaceRoleAssignments?: Maybe<DeleteDefaultSpaceRoleAssignmentsPayload>;
|
|
69777
70169
|
deleteDevOpsContainerRelationshipEntityProperties?: Maybe<DeleteDevOpsContainerRelationshipEntityPropertiesPayload>;
|
|
69778
70170
|
deleteDevOpsService?: Maybe<DeleteDevOpsServicePayload>;
|
|
69779
70171
|
deleteDevOpsServiceAndJiraProjectRelationship?: Maybe<DeleteDevOpsServiceAndJiraProjectRelationshipPayload>;
|
|
@@ -69791,6 +70183,8 @@ export declare type Mutation = {
|
|
|
69791
70183
|
deletePolarisViewSet?: Maybe<DeletePolarisViewSetPayload>;
|
|
69792
70184
|
deleteReaction?: Maybe<SaveReactionResponse>;
|
|
69793
70185
|
deleteRelation?: Maybe<DeleteRelationPayload>;
|
|
70186
|
+
deleteSpaceDefaultClassificationLevel?: Maybe<DeleteSpaceDefaultClassificationLevelPayload>;
|
|
70187
|
+
deleteSpaceRoleAssignments?: Maybe<DeleteSpaceRoleAssignmentsPayload>;
|
|
69794
70188
|
deleteSprint?: Maybe<MutationResponse>;
|
|
69795
70189
|
deleteTemplate?: Maybe<Scalars['ID']['output']>;
|
|
69796
70190
|
deleteWebTriggerUrl?: Maybe<DeleteWebTriggerUrlResponse>;
|
|
@@ -69804,6 +70198,7 @@ export declare type Mutation = {
|
|
|
69804
70198
|
disableSuperAdmin?: Maybe<SuperAdminPayload>;
|
|
69805
70199
|
ecosystem?: Maybe<EcosystemMutation>;
|
|
69806
70200
|
editSprint?: Maybe<SprintResponse>;
|
|
70201
|
+
editorDraftSyncAction?: Maybe<EditorDraftSyncPayload>;
|
|
69807
70202
|
enableExperiment?: Maybe<TapExperiment>;
|
|
69808
70203
|
enablePublicLinkForPage?: Maybe<EnablePublicLinkForPagePayload>;
|
|
69809
70204
|
enablePublicLinkForSite?: Maybe<PublicLinkSitePayload>;
|
|
@@ -69811,10 +70206,13 @@ export declare type Mutation = {
|
|
|
69811
70206
|
ersLifecycle?: Maybe<ErsLifecycleMutation>;
|
|
69812
70207
|
favouritePage?: Maybe<FavouritePagePayload>;
|
|
69813
70208
|
favouriteSpace?: Maybe<FavouriteSpacePayload>;
|
|
70209
|
+
favouriteSpaceBulk?: Maybe<FavouriteSpaceBulkPayload>;
|
|
69814
70210
|
followUser?: Maybe<FollowUserPayload>;
|
|
70211
|
+
generatePermsReport?: Maybe<ConfluenceAdminReportPayload>;
|
|
69815
70212
|
grantContentAccess?: Maybe<GrantContentAccessPayload>;
|
|
69816
70213
|
graphStore?: Maybe<GraphStoreMutation>;
|
|
69817
70214
|
growthUnifiedProfile_createUnifiedProfile?: Maybe<GrowthUnifiedProfileResult>;
|
|
70215
|
+
hardDeleteSpace?: Maybe<HardDeleteSpacePayload>;
|
|
69818
70216
|
helpCenter?: Maybe<HelpCenterMutationApi>;
|
|
69819
70217
|
helpExternalResource?: Maybe<HelpExternalResourceMutationApi>;
|
|
69820
70218
|
helpLayout?: Maybe<HelpLayoutMutationApi>;
|
|
@@ -69846,6 +70244,7 @@ export declare type Mutation = {
|
|
|
69846
70244
|
marketplaceStore?: Maybe<MarketplaceStoreMutationApi>;
|
|
69847
70245
|
mercury?: Maybe<MercuryMutationApi>;
|
|
69848
70246
|
mercury_providerOrchestration?: Maybe<MercuryProviderOrchestrationMutationApi>;
|
|
70247
|
+
migrateSpaceShortcuts?: Maybe<MigrateSpaceShortcutsPayload>;
|
|
69849
70248
|
moveBlog?: Maybe<MoveBlogPayload>;
|
|
69850
70249
|
movePageAfter?: Maybe<MovePagePayload>;
|
|
69851
70250
|
movePageAppend?: Maybe<MovePagePayload>;
|
|
@@ -69855,6 +70254,7 @@ export declare type Mutation = {
|
|
|
69855
70254
|
moveSprintUp?: Maybe<MoveSprintUpResponse>;
|
|
69856
70255
|
newPage?: Maybe<NewPagePayload>;
|
|
69857
70256
|
notifications?: Maybe<InfluentsNotificationMutation>;
|
|
70257
|
+
notifyUsersOnFirstView?: Maybe<NotificationResponsePayload>;
|
|
69858
70258
|
openUpSpacePermissions?: Maybe<Scalars['Boolean']['output']>;
|
|
69859
70259
|
partnerEarlyAccess?: Maybe<PeapMutationApi>;
|
|
69860
70260
|
patchCommentsSummary?: Maybe<PatchCommentsSummaryPayload>;
|
|
@@ -69876,21 +70276,29 @@ export declare type Mutation = {
|
|
|
69876
70276
|
rankColumn?: Maybe<RankColumnOutput>;
|
|
69877
70277
|
rankCustomFilter?: Maybe<GenericMutationResponse>;
|
|
69878
70278
|
rateLimitTest?: Maybe<GenericMutationResponse>;
|
|
70279
|
+
recoverSpaceAdminPermission?: Maybe<RecoverSpaceAdminPermissionPayload>;
|
|
70280
|
+
recoverSpaceWithAdminRoleAssignment?: Maybe<RecoverSpaceWithAdminRoleAssignmentPayload>;
|
|
69879
70281
|
refreshPolarisSnippets?: Maybe<RefreshPolarisSnippetsPayload>;
|
|
69880
70282
|
refreshTeamCalendar?: Maybe<Scalars['Boolean']['output']>;
|
|
69881
70283
|
registerTunnel?: Maybe<RegisterTunnelResponse>;
|
|
69882
70284
|
removeAllDirectUserSpacePermissions?: Maybe<RemoveSpacePermissionsPayload>;
|
|
69883
70285
|
removeContentState?: Maybe<Scalars['Boolean']['output']>;
|
|
69884
70286
|
removeGroupSpacePermissions?: Maybe<RemoveSpacePermissionsPayload>;
|
|
70287
|
+
removePublicLinkPermissions?: Maybe<RemovePublicLinkPermissionsPayload>;
|
|
69885
70288
|
removeUserSpacePermissions?: Maybe<RemoveSpacePermissionsPayload>;
|
|
69886
70289
|
replyInlineComment?: Maybe<Comment>;
|
|
69887
70290
|
requestAccessExco?: Maybe<Scalars['Boolean']['output']>;
|
|
69888
70291
|
requestPageAccess?: Maybe<RequestPageAccessPayload>;
|
|
69889
70292
|
resetExCoSpacePermissions?: Maybe<ResetExCoSpacePermissionsPayload>;
|
|
69890
70293
|
resetSpaceContentStates?: Maybe<ContentStateSettings>;
|
|
70294
|
+
resetSpaceRolesFromAnotherSpace?: Maybe<ResetSpaceRolesFromAnotherSpacePayload>;
|
|
69891
70295
|
resetSystemSpaceHomepage?: Maybe<Space>;
|
|
70296
|
+
resetToDefaultSpaceRoleAssignments?: Maybe<ResetToDefaultSpaceRoleAssignmentsPayload>;
|
|
69892
70297
|
resolveInlineComment?: Maybe<ResolveInlineCommentPayload>;
|
|
69893
70298
|
resolvePolarisObject?: Maybe<ResolvePolarisObjectPayload>;
|
|
70299
|
+
resolveRestrictions?: Maybe<ResolveRestrictionsPayload>;
|
|
70300
|
+
resolveRestrictionsForSubjects?: Maybe<ResolveRestrictionsPayload>;
|
|
70301
|
+
restoreSpace?: Maybe<RestoreSpacePayload>;
|
|
69894
70302
|
revertToLegacyEditor?: Maybe<RevertToLegacyEditorResult>;
|
|
69895
70303
|
roadmaps?: Maybe<RoadmapsMutation>;
|
|
69896
70304
|
setAppEnvironmentVariable?: Maybe<SetAppEnvironmentVariablePayload>;
|
|
@@ -69903,6 +70311,7 @@ export declare type Mutation = {
|
|
|
69903
70311
|
setContentState?: Maybe<ContentState>;
|
|
69904
70312
|
setContentStateAndPublish?: Maybe<ContentState>;
|
|
69905
70313
|
setContentStateSettings?: Maybe<ContentStateSettings>;
|
|
70314
|
+
setDefaultSpaceRoleAssignments?: Maybe<SetDefaultSpaceRoleAssignmentsPayload>;
|
|
69906
70315
|
setEditorConversionSettings?: Maybe<EditorConversionSetting>;
|
|
69907
70316
|
setEstimationType?: Maybe<GenericMutationResponse>;
|
|
69908
70317
|
setExternalAuthCredentials?: Maybe<SetExternalAuthCredentialsPayload>;
|
|
@@ -69916,12 +70325,14 @@ export declare type Mutation = {
|
|
|
69916
70325
|
setRecommendedPagesSpaceStatus?: Maybe<SetRecommendedPagesSpaceStatusPayload>;
|
|
69917
70326
|
setRecommendedPagesStatus?: Maybe<SetRecommendedPagesStatusPayload>;
|
|
69918
70327
|
setRelevantFeedFilters?: Maybe<HomeUserSettings>;
|
|
70328
|
+
setSpaceRoleAssignments?: Maybe<SetSpaceRoleAssignmentsPayload>;
|
|
69919
70329
|
setSwimlaneStrategy?: Maybe<SetSwimlaneStrategyResponse>;
|
|
69920
70330
|
setTaskStatus?: Maybe<GraphQlMutationResponse>;
|
|
69921
70331
|
setUserSwimlaneStrategy?: Maybe<SetSwimlaneStrategyResponse>;
|
|
69922
70332
|
settings_updateNavigationCustomisation?: Maybe<SettingsNavigationCustomisation>;
|
|
69923
70333
|
shareResource?: Maybe<ShareResourcePayload>;
|
|
69924
70334
|
shepherd?: Maybe<ShepherdMutation>;
|
|
70335
|
+
softDeleteSpace?: Maybe<SoftDeleteSpacePayload>;
|
|
69925
70336
|
splitIssue?: Maybe<SplitIssueOutput>;
|
|
69926
70337
|
startSprint?: Maybe<SprintResponse>;
|
|
69927
70338
|
subscribeToApp?: Maybe<AppSubscribePayload>;
|
|
@@ -69932,6 +70343,7 @@ export declare type Mutation = {
|
|
|
69932
70343
|
townsquare?: Maybe<TownsquareMutationApi>;
|
|
69933
70344
|
trello: TrelloMutationApi;
|
|
69934
70345
|
unarchivePolarisInsights?: Maybe<UnarchivePolarisInsightsPayload>;
|
|
70346
|
+
unarchiveSpace?: Maybe<UnarchiveSpacePayload>;
|
|
69935
70347
|
unassignIssueParent?: Maybe<UnassignIssueParentOutput>;
|
|
69936
70348
|
unfavouritePage?: Maybe<FavouritePagePayload>;
|
|
69937
70349
|
unfavouriteSpace?: Maybe<FavouriteSpacePayload>;
|
|
@@ -69944,10 +70356,14 @@ export declare type Mutation = {
|
|
|
69944
70356
|
unwatchContent?: Maybe<WatchContentPayload>;
|
|
69945
70357
|
unwatchMarketplaceApp?: Maybe<UnwatchMarketplaceAppPayload>;
|
|
69946
70358
|
unwatchSpace?: Maybe<WatchSpacePayload>;
|
|
70359
|
+
updateAdminAnnouncementBanner?: Maybe<ConfluenceAdminAnnouncementBannerPayload>;
|
|
69947
70360
|
updateAppDetails?: Maybe<UpdateAppDetailsResponse>;
|
|
69948
70361
|
updateArchiveNotes?: Maybe<UpdateArchiveNotesPayload>;
|
|
69949
70362
|
updateAtlassianOAuthClient?: Maybe<UpdateAtlassianOAuthClientResponse>;
|
|
69950
70363
|
updateComment?: Maybe<Comment>;
|
|
70364
|
+
updateContentDataClassificationLevel?: Maybe<UpdateContentDataClassificationLevelPayload>;
|
|
70365
|
+
updateContentPermissions?: Maybe<ContentPermissionsPayload>;
|
|
70366
|
+
updateCoverPictureWidth?: Maybe<UpdateCoverPictureWidthPayload>;
|
|
69951
70367
|
updateCustomFilter?: Maybe<CustomFilterCreateOutput>;
|
|
69952
70368
|
updateCustomFilterV2?: Maybe<CustomFilterCreateOutputV2>;
|
|
69953
70369
|
updateDevOpsContainerRelationshipEntityProperties?: Maybe<UpdateDevOpsContainerRelationshipEntityPropertiesPayload>;
|
|
@@ -69959,10 +70375,14 @@ export declare type Mutation = {
|
|
|
69959
70375
|
updateDevOpsServiceRelationship?: Maybe<UpdateDevOpsServiceRelationshipPayload>;
|
|
69960
70376
|
updateDeveloperLogAccess?: Maybe<UpdateDeveloperLogAccessPayload>;
|
|
69961
70377
|
updateEmbed?: Maybe<Content>;
|
|
70378
|
+
updateExternalCollaboratorDefaultSpace?: Maybe<UpdateExternalCollaboratorDefaultSpacePayload>;
|
|
69962
70379
|
updateHomeUserSettings?: Maybe<HomeUserSettings>;
|
|
69963
70380
|
updateLocalStorage?: Maybe<LocalStorage>;
|
|
70381
|
+
updateNestedPageOwners?: Maybe<UpdateNestedPageOwnersPayload>;
|
|
69964
70382
|
updateOwner?: Maybe<UpdateOwnerPayload>;
|
|
69965
70383
|
updatePage?: Maybe<UpdatePagePayload>;
|
|
70384
|
+
updatePageOwners?: Maybe<UpdatePageOwnersPayload>;
|
|
70385
|
+
updatePageStatuses?: Maybe<UpdatePageStatusesPayload>;
|
|
69966
70386
|
updatePolarisComment?: Maybe<UpdatePolarisCommentPayload>;
|
|
69967
70387
|
updatePolarisIdea?: Maybe<UpdatePolarisIdeaPayload>;
|
|
69968
70388
|
updatePolarisIdeaTemplate?: Maybe<UpdatePolarisIdeaTemplatePayload>;
|
|
@@ -69979,7 +70399,13 @@ export declare type Mutation = {
|
|
|
69979
70399
|
updatePushNotificationGroupSetting?: Maybe<ConfluencePushNotificationSettings>;
|
|
69980
70400
|
updateRelation?: Maybe<UpdateRelationPayload>;
|
|
69981
70401
|
updateReleaseNote: ContentPlatformReleaseNote;
|
|
70402
|
+
updateSiteLookAndFeel?: Maybe<UpdateSiteLookAndFeelPayload>;
|
|
69982
70403
|
updateSitePermission?: Maybe<SitePermission>;
|
|
70404
|
+
updateSpaceDefaultClassificationLevel?: Maybe<UpdateSpaceDefaultClassificationLevelPayload>;
|
|
70405
|
+
updateSpaceDetails?: Maybe<UpdateSpaceDetailsPayload>;
|
|
70406
|
+
updateSpacePermissionDefaults?: Maybe<UpdateDefaultSpacePermissionsPayload>;
|
|
70407
|
+
updateSpacePermissions?: Maybe<UpdateSpacePermissionsPayload>;
|
|
70408
|
+
updateSpaceTypeSettings?: Maybe<UpdateSpaceTypeSettingsPayload>;
|
|
69983
70409
|
updateTemplate?: Maybe<ContentTemplate>;
|
|
69984
70410
|
updateTemplatePropertySet?: Maybe<UpdateTemplatePropertySetPayload>;
|
|
69985
70411
|
updateTitle?: Maybe<Content>;
|
|
@@ -69993,12 +70419,21 @@ export declare type Mutation = {
|
|
|
69993
70419
|
watchSpace?: Maybe<WatchSpacePayload>;
|
|
69994
70420
|
workSuggestions?: Maybe<WorkSuggestionsMutation>;
|
|
69995
70421
|
};
|
|
70422
|
+
export declare type MutationActivatePaywallContentArgs = {
|
|
70423
|
+
input: ActivatePaywallContentInput;
|
|
70424
|
+
};
|
|
69996
70425
|
export declare type MutationAddBetaUserAsSiteCreatorArgs = {
|
|
69997
70426
|
input: AddBetaUserAsSiteCreatorInput;
|
|
69998
70427
|
};
|
|
70428
|
+
export declare type MutationAddDefaultExCoSpacePermissionsArgs = {
|
|
70429
|
+
spacePermissionsInput: AddDefaultExCoSpacePermissionsInput;
|
|
70430
|
+
};
|
|
69999
70431
|
export declare type MutationAddLabelsArgs = {
|
|
70000
70432
|
input: AddLabelsInput;
|
|
70001
70433
|
};
|
|
70434
|
+
export declare type MutationAddPublicLinkPermissionsArgs = {
|
|
70435
|
+
input: AddPublicLinkPermissionsInput;
|
|
70436
|
+
};
|
|
70002
70437
|
export declare type MutationAddReactionArgs = {
|
|
70003
70438
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
70004
70439
|
containerId: Scalars['String']['input'];
|
|
@@ -70017,6 +70452,9 @@ export declare type MutationArchivePolarisInsightsArgs = {
|
|
|
70017
70452
|
containers?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
70018
70453
|
project: Scalars['ID']['input'];
|
|
70019
70454
|
};
|
|
70455
|
+
export declare type MutationArchiveSpaceArgs = {
|
|
70456
|
+
input: ArchiveSpaceInput;
|
|
70457
|
+
};
|
|
70020
70458
|
export declare type MutationAssignIssueParentArgs = {
|
|
70021
70459
|
input?: InputMaybe<AssignIssueParentInput>;
|
|
70022
70460
|
};
|
|
@@ -70026,11 +70464,29 @@ export declare type MutationAttachDanglingCommentArgs = {
|
|
|
70026
70464
|
export declare type MutationBoardCardMoveArgs = {
|
|
70027
70465
|
input?: InputMaybe<BoardCardMoveInput>;
|
|
70028
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
|
+
};
|
|
70029
70482
|
export declare type MutationBulkUnarchivePagesArgs = {
|
|
70030
70483
|
includeChildren?: InputMaybe<Array<InputMaybe<Scalars['Boolean']['input']>>>;
|
|
70031
70484
|
pageIDs?: InputMaybe<Array<InputMaybe<Scalars['Long']['input']>>>;
|
|
70032
70485
|
parentPageId?: InputMaybe<Scalars['Long']['input']>;
|
|
70033
70486
|
};
|
|
70487
|
+
export declare type MutationBulkUpdateContentDataClassificationLevelArgs = {
|
|
70488
|
+
input: BulkUpdateContentDataClassificationLevelInput;
|
|
70489
|
+
};
|
|
70034
70490
|
export declare type MutationBulkUpdateMainSpaceSidebarLinksArgs = {
|
|
70035
70491
|
input: Array<InputMaybe<BulkUpdateMainSpaceSidebarLinksInput>>;
|
|
70036
70492
|
spaceKey: Scalars['String']['input'];
|
|
@@ -70602,6 +71058,9 @@ export declare type MutationConnectionManager_DeleteConnectionForJiraProjectArgs
|
|
|
70602
71058
|
export declare type MutationContactAdminArgs = {
|
|
70603
71059
|
input: ContactAdminMutationInput;
|
|
70604
71060
|
};
|
|
71061
|
+
export declare type MutationConvertPageToLiveEditActionArgs = {
|
|
71062
|
+
input: ConvertPageToLiveEditActionInput;
|
|
71063
|
+
};
|
|
70605
71064
|
export declare type MutationConvertToFolderArgs = {
|
|
70606
71065
|
id: Scalars['ID']['input'];
|
|
70607
71066
|
};
|
|
@@ -70616,6 +71075,9 @@ export declare type MutationCopySpacePermissionsArgs = {
|
|
|
70616
71075
|
sourceSpaceKey: Scalars['String']['input'];
|
|
70617
71076
|
targetSpaceKey: Scalars['String']['input'];
|
|
70618
71077
|
};
|
|
71078
|
+
export declare type MutationCreateAdminAnnouncementBannerArgs = {
|
|
71079
|
+
announcementBanner: ConfluenceCreateAdminAnnouncementBannerInput;
|
|
71080
|
+
};
|
|
70619
71081
|
export declare type MutationCreateAppArgs = {
|
|
70620
71082
|
input: CreateAppInput;
|
|
70621
71083
|
};
|
|
@@ -70643,6 +71105,9 @@ export declare type MutationCreateContentGlobalArgs = {
|
|
|
70643
71105
|
export declare type MutationCreateContentInlineArgs = {
|
|
70644
71106
|
input: CreateInlineContentInput;
|
|
70645
71107
|
};
|
|
71108
|
+
export declare type MutationCreateContentMentionNotificationActionArgs = {
|
|
71109
|
+
input: CreateContentMentionNotificationActionInput;
|
|
71110
|
+
};
|
|
70646
71111
|
export declare type MutationCreateContentTemplateLabelsArgs = {
|
|
70647
71112
|
input: CreateContentTemplateLabelsInput;
|
|
70648
71113
|
};
|
|
@@ -70669,6 +71134,9 @@ export declare type MutationCreateDevOpsServiceAndRepositoryRelationshipArgs = {
|
|
|
70669
71134
|
export declare type MutationCreateDevOpsServiceRelationshipArgs = {
|
|
70670
71135
|
input: CreateDevOpsServiceRelationshipInput;
|
|
70671
71136
|
};
|
|
71137
|
+
export declare type MutationCreateFaviconFilesArgs = {
|
|
71138
|
+
input: CreateFaviconFilesInput;
|
|
71139
|
+
};
|
|
70672
71140
|
export declare type MutationCreateFooterCommentArgs = {
|
|
70673
71141
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
70674
71142
|
input: CreateCommentInput;
|
|
@@ -70680,9 +71148,18 @@ export declare type MutationCreateInlineCommentArgs = {
|
|
|
70680
71148
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
70681
71149
|
input: CreateInlineCommentInput;
|
|
70682
71150
|
};
|
|
71151
|
+
export declare type MutationCreateInlineTaskNotificationArgs = {
|
|
71152
|
+
input: CreateInlineTaskNotificationInput;
|
|
71153
|
+
};
|
|
70683
71154
|
export declare type MutationCreateLivePageArgs = {
|
|
70684
71155
|
input: CreateLivePageInput;
|
|
70685
71156
|
};
|
|
71157
|
+
export declare type MutationCreateMentionNotificationArgs = {
|
|
71158
|
+
input: CreateMentionNotificationInput;
|
|
71159
|
+
};
|
|
71160
|
+
export declare type MutationCreateMentionReminderNotificationArgs = {
|
|
71161
|
+
input: CreateMentionReminderNotificationInput;
|
|
71162
|
+
};
|
|
70686
71163
|
export declare type MutationCreateOnboardingSpaceArgs = {
|
|
70687
71164
|
spaceType: Scalars['String']['input'];
|
|
70688
71165
|
};
|
|
@@ -70757,6 +71234,9 @@ export declare type MutationCreateWebTriggerUrlArgs = {
|
|
|
70757
71234
|
export declare type MutationCustomerServiceArgs = {
|
|
70758
71235
|
cloudId: Scalars['ID']['input'];
|
|
70759
71236
|
};
|
|
71237
|
+
export declare type MutationDeactivatePaywallContentArgs = {
|
|
71238
|
+
input: DeactivatePaywallContentInput;
|
|
71239
|
+
};
|
|
70760
71240
|
export declare type MutationDeleteAppArgs = {
|
|
70761
71241
|
input: DeleteAppInput;
|
|
70762
71242
|
};
|
|
@@ -70777,6 +71257,9 @@ export declare type MutationDeleteContentArgs = {
|
|
|
70777
71257
|
action: ContentDeleteActionType;
|
|
70778
71258
|
contentId: Scalars['ID']['input'];
|
|
70779
71259
|
};
|
|
71260
|
+
export declare type MutationDeleteContentDataClassificationLevelArgs = {
|
|
71261
|
+
input: DeleteContentDataClassificationLevelInput;
|
|
71262
|
+
};
|
|
70780
71263
|
export declare type MutationDeleteContentStateArgs = {
|
|
70781
71264
|
stateInput: ContentStateInput;
|
|
70782
71265
|
};
|
|
@@ -70787,6 +71270,9 @@ export declare type MutationDeleteCustomFilterArgs = {
|
|
|
70787
71270
|
input?: InputMaybe<DeleteCustomFilterInput>;
|
|
70788
71271
|
isCMP?: InputMaybe<Scalars['Boolean']['input']>;
|
|
70789
71272
|
};
|
|
71273
|
+
export declare type MutationDeleteDefaultSpaceRoleAssignmentsArgs = {
|
|
71274
|
+
input: DeleteDefaultSpaceRoleAssignmentsInput;
|
|
71275
|
+
};
|
|
70790
71276
|
export declare type MutationDeleteDevOpsContainerRelationshipEntityPropertiesArgs = {
|
|
70791
71277
|
input: DeleteDevOpsContainerRelationshipEntityPropertiesInput;
|
|
70792
71278
|
};
|
|
@@ -70843,6 +71329,12 @@ export declare type MutationDeleteReactionArgs = {
|
|
|
70843
71329
|
export declare type MutationDeleteRelationArgs = {
|
|
70844
71330
|
input: DeleteRelationInput;
|
|
70845
71331
|
};
|
|
71332
|
+
export declare type MutationDeleteSpaceDefaultClassificationLevelArgs = {
|
|
71333
|
+
input: DeleteSpaceDefaultClassificationLevelInput;
|
|
71334
|
+
};
|
|
71335
|
+
export declare type MutationDeleteSpaceRoleAssignmentsArgs = {
|
|
71336
|
+
input: DeleteSpaceRoleAssignmentsInput;
|
|
71337
|
+
};
|
|
70846
71338
|
export declare type MutationDeleteSprintArgs = {
|
|
70847
71339
|
input?: InputMaybe<DeleteSprintInput>;
|
|
70848
71340
|
};
|
|
@@ -70871,6 +71363,9 @@ export declare type MutationDisablePublicLinkForPageArgs = {
|
|
|
70871
71363
|
export declare type MutationEditSprintArgs = {
|
|
70872
71364
|
input?: InputMaybe<EditSprintInput>;
|
|
70873
71365
|
};
|
|
71366
|
+
export declare type MutationEditorDraftSyncActionArgs = {
|
|
71367
|
+
input: EditorDraftSyncInput;
|
|
71368
|
+
};
|
|
70874
71369
|
export declare type MutationEnableExperimentArgs = {
|
|
70875
71370
|
experimentKey: Scalars['String']['input'];
|
|
70876
71371
|
};
|
|
@@ -70883,15 +71378,25 @@ export declare type MutationFavouritePageArgs = {
|
|
|
70883
71378
|
export declare type MutationFavouriteSpaceArgs = {
|
|
70884
71379
|
spaceKey: Scalars['String']['input'];
|
|
70885
71380
|
};
|
|
71381
|
+
export declare type MutationFavouriteSpaceBulkArgs = {
|
|
71382
|
+
spaceKeys: Array<InputMaybe<Scalars['String']['input']>>;
|
|
71383
|
+
};
|
|
70886
71384
|
export declare type MutationFollowUserArgs = {
|
|
70887
71385
|
followUserInput: FollowUserInput;
|
|
70888
71386
|
};
|
|
71387
|
+
export declare type MutationGeneratePermsReportArgs = {
|
|
71388
|
+
id: Scalars['ID']['input'];
|
|
71389
|
+
targetType: PermsReportTargetType;
|
|
71390
|
+
};
|
|
70889
71391
|
export declare type MutationGrantContentAccessArgs = {
|
|
70890
71392
|
grantContentAccessInput: GrantContentAccessInput;
|
|
70891
71393
|
};
|
|
70892
71394
|
export declare type MutationGrowthUnifiedProfile_CreateUnifiedProfileArgs = {
|
|
70893
71395
|
profile: GrowthUnifiedProfileCreateProfileInput;
|
|
70894
71396
|
};
|
|
71397
|
+
export declare type MutationHardDeleteSpaceArgs = {
|
|
71398
|
+
spaceKey: Scalars['String']['input'];
|
|
71399
|
+
};
|
|
70895
71400
|
export declare type MutationHelpCenterArgs = {
|
|
70896
71401
|
cloudId: Scalars['ID']['input'];
|
|
70897
71402
|
};
|
|
@@ -70954,6 +71459,10 @@ export declare type MutationMarkFeatureDiscoveredArgs = {
|
|
|
70954
71459
|
featureKey: Scalars['String']['input'];
|
|
70955
71460
|
pluginKey: Scalars['String']['input'];
|
|
70956
71461
|
};
|
|
71462
|
+
export declare type MutationMigrateSpaceShortcutsArgs = {
|
|
71463
|
+
shortcutsList: Array<InputMaybe<GraphQlSpaceShortcutsInput>>;
|
|
71464
|
+
spaceId: Scalars['ID']['input'];
|
|
71465
|
+
};
|
|
70957
71466
|
export declare type MutationMoveBlogArgs = {
|
|
70958
71467
|
input: MoveBlogInput;
|
|
70959
71468
|
};
|
|
@@ -70978,6 +71487,9 @@ export declare type MutationMoveSprintUpArgs = {
|
|
|
70978
71487
|
export declare type MutationNewPageArgs = {
|
|
70979
71488
|
input: NewPageInput;
|
|
70980
71489
|
};
|
|
71490
|
+
export declare type MutationNotifyUsersOnFirstViewArgs = {
|
|
71491
|
+
contentId: Scalars['ID']['input'];
|
|
71492
|
+
};
|
|
70981
71493
|
export declare type MutationOpenUpSpacePermissionsArgs = {
|
|
70982
71494
|
spaceKey: Scalars['String']['input'];
|
|
70983
71495
|
};
|
|
@@ -71039,6 +71551,12 @@ export declare type MutationRankCustomFilterArgs = {
|
|
|
71039
71551
|
export declare type MutationRateLimitTestArgs = {
|
|
71040
71552
|
input: InvokeExtensionInput;
|
|
71041
71553
|
};
|
|
71554
|
+
export declare type MutationRecoverSpaceAdminPermissionArgs = {
|
|
71555
|
+
input: RecoverSpaceAdminPermissionInput;
|
|
71556
|
+
};
|
|
71557
|
+
export declare type MutationRecoverSpaceWithAdminRoleAssignmentArgs = {
|
|
71558
|
+
input: RecoverSpaceWithAdminRoleAssignmentInput;
|
|
71559
|
+
};
|
|
71042
71560
|
export declare type MutationRefreshPolarisSnippetsArgs = {
|
|
71043
71561
|
input: RefreshPolarisSnippetsInput;
|
|
71044
71562
|
};
|
|
@@ -71057,6 +71575,9 @@ export declare type MutationRemoveContentStateArgs = {
|
|
|
71057
71575
|
export declare type MutationRemoveGroupSpacePermissionsArgs = {
|
|
71058
71576
|
spacePermissionsInput: RemoveGroupSpacePermissionsInput;
|
|
71059
71577
|
};
|
|
71578
|
+
export declare type MutationRemovePublicLinkPermissionsArgs = {
|
|
71579
|
+
input: RemovePublicLinkPermissionsInput;
|
|
71580
|
+
};
|
|
71060
71581
|
export declare type MutationRemoveUserSpacePermissionsArgs = {
|
|
71061
71582
|
spacePermissionsInput: RemoveUserSpacePermissionsInput;
|
|
71062
71583
|
};
|
|
@@ -71073,9 +71594,15 @@ export declare type MutationResetExCoSpacePermissionsArgs = {
|
|
|
71073
71594
|
export declare type MutationResetSpaceContentStatesArgs = {
|
|
71074
71595
|
spaceKey: Scalars['String']['input'];
|
|
71075
71596
|
};
|
|
71597
|
+
export declare type MutationResetSpaceRolesFromAnotherSpaceArgs = {
|
|
71598
|
+
input: ResetSpaceRolesFromAnotherSpaceInput;
|
|
71599
|
+
};
|
|
71076
71600
|
export declare type MutationResetSystemSpaceHomepageArgs = {
|
|
71077
71601
|
input: SystemSpaceHomepageInput;
|
|
71078
71602
|
};
|
|
71603
|
+
export declare type MutationResetToDefaultSpaceRoleAssignmentsArgs = {
|
|
71604
|
+
input: ResetToDefaultSpaceRoleAssignmentsInput;
|
|
71605
|
+
};
|
|
71079
71606
|
export declare type MutationResolveInlineCommentArgs = {
|
|
71080
71607
|
commentId: Scalars['ID']['input'];
|
|
71081
71608
|
dangling: Scalars['Boolean']['input'];
|
|
@@ -71084,6 +71611,15 @@ export declare type MutationResolveInlineCommentArgs = {
|
|
|
71084
71611
|
export declare type MutationResolvePolarisObjectArgs = {
|
|
71085
71612
|
input: ResolvePolarisObjectInput;
|
|
71086
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
|
+
};
|
|
71087
71623
|
export declare type MutationRevertToLegacyEditorArgs = {
|
|
71088
71624
|
contentId: Scalars['ID']['input'];
|
|
71089
71625
|
};
|
|
@@ -71123,6 +71659,9 @@ export declare type MutationSetContentStateSettingsArgs = {
|
|
|
71123
71659
|
spaceKey: Scalars['String']['input'];
|
|
71124
71660
|
spaceStatesSetting: Scalars['Boolean']['input'];
|
|
71125
71661
|
};
|
|
71662
|
+
export declare type MutationSetDefaultSpaceRoleAssignmentsArgs = {
|
|
71663
|
+
input: SetDefaultSpaceRoleAssignmentsInput;
|
|
71664
|
+
};
|
|
71126
71665
|
export declare type MutationSetEditorConversionSettingsArgs = {
|
|
71127
71666
|
spaceKey: Scalars['String']['input'];
|
|
71128
71667
|
value: EditorConversionSetting;
|
|
@@ -71165,6 +71704,9 @@ export declare type MutationSetRelevantFeedFiltersArgs = {
|
|
|
71165
71704
|
relevantFeedSpacesFilter: Array<InputMaybe<Scalars['Long']['input']>>;
|
|
71166
71705
|
relevantFeedUsersFilter: Array<InputMaybe<Scalars['String']['input']>>;
|
|
71167
71706
|
};
|
|
71707
|
+
export declare type MutationSetSpaceRoleAssignmentsArgs = {
|
|
71708
|
+
input: SetSpaceRoleAssignmentsInput;
|
|
71709
|
+
};
|
|
71168
71710
|
export declare type MutationSetSwimlaneStrategyArgs = {
|
|
71169
71711
|
input?: InputMaybe<SetSwimlaneStrategyInput>;
|
|
71170
71712
|
};
|
|
@@ -71180,6 +71722,9 @@ export declare type MutationSettings_UpdateNavigationCustomisationArgs = {
|
|
|
71180
71722
|
export declare type MutationShareResourceArgs = {
|
|
71181
71723
|
shareResourceInput: ShareResourceInput;
|
|
71182
71724
|
};
|
|
71725
|
+
export declare type MutationSoftDeleteSpaceArgs = {
|
|
71726
|
+
spaceKey: Scalars['String']['input'];
|
|
71727
|
+
};
|
|
71183
71728
|
export declare type MutationSplitIssueArgs = {
|
|
71184
71729
|
input?: InputMaybe<SplitIssueInput>;
|
|
71185
71730
|
};
|
|
@@ -71202,6 +71747,9 @@ export declare type MutationUnarchivePolarisInsightsArgs = {
|
|
|
71202
71747
|
containers?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
71203
71748
|
project: Scalars['ID']['input'];
|
|
71204
71749
|
};
|
|
71750
|
+
export declare type MutationUnarchiveSpaceArgs = {
|
|
71751
|
+
input: UnarchiveSpaceInput;
|
|
71752
|
+
};
|
|
71205
71753
|
export declare type MutationUnassignIssueParentArgs = {
|
|
71206
71754
|
input?: InputMaybe<UnassignIssueParentInput>;
|
|
71207
71755
|
};
|
|
@@ -71235,6 +71783,9 @@ export declare type MutationUnwatchMarketplaceAppArgs = {
|
|
|
71235
71783
|
export declare type MutationUnwatchSpaceArgs = {
|
|
71236
71784
|
watchSpaceInput: WatchSpaceInput;
|
|
71237
71785
|
};
|
|
71786
|
+
export declare type MutationUpdateAdminAnnouncementBannerArgs = {
|
|
71787
|
+
announcementBanner: ConfluenceUpdateAdminAnnouncementBannerInput;
|
|
71788
|
+
};
|
|
71238
71789
|
export declare type MutationUpdateAppDetailsArgs = {
|
|
71239
71790
|
input: UpdateAppDetailsInput;
|
|
71240
71791
|
};
|
|
@@ -71247,6 +71798,16 @@ export declare type MutationUpdateAtlassianOAuthClientArgs = {
|
|
|
71247
71798
|
export declare type MutationUpdateCommentArgs = {
|
|
71248
71799
|
input: UpdateCommentInput;
|
|
71249
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
|
+
};
|
|
71250
71811
|
export declare type MutationUpdateCustomFilterArgs = {
|
|
71251
71812
|
input?: InputMaybe<UpdateCustomFilterInput>;
|
|
71252
71813
|
isCMP?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -71282,18 +71843,30 @@ export declare type MutationUpdateDeveloperLogAccessArgs = {
|
|
|
71282
71843
|
export declare type MutationUpdateEmbedArgs = {
|
|
71283
71844
|
input: UpdateEmbedInput;
|
|
71284
71845
|
};
|
|
71846
|
+
export declare type MutationUpdateExternalCollaboratorDefaultSpaceArgs = {
|
|
71847
|
+
input: UpdateExternalCollaboratorDefaultSpaceInput;
|
|
71848
|
+
};
|
|
71285
71849
|
export declare type MutationUpdateHomeUserSettingsArgs = {
|
|
71286
71850
|
homeUserSettings: HomeUserSettingsInput;
|
|
71287
71851
|
};
|
|
71288
71852
|
export declare type MutationUpdateLocalStorageArgs = {
|
|
71289
71853
|
localStorage: LocalStorageInput;
|
|
71290
71854
|
};
|
|
71855
|
+
export declare type MutationUpdateNestedPageOwnersArgs = {
|
|
71856
|
+
input: UpdatedNestedPageOwnersInput;
|
|
71857
|
+
};
|
|
71291
71858
|
export declare type MutationUpdateOwnerArgs = {
|
|
71292
71859
|
input: UpdateOwnerInput;
|
|
71293
71860
|
};
|
|
71294
71861
|
export declare type MutationUpdatePageArgs = {
|
|
71295
71862
|
input: UpdatePageInput;
|
|
71296
71863
|
};
|
|
71864
|
+
export declare type MutationUpdatePageOwnersArgs = {
|
|
71865
|
+
input: UpdatePageOwnersInput;
|
|
71866
|
+
};
|
|
71867
|
+
export declare type MutationUpdatePageStatusesArgs = {
|
|
71868
|
+
input: UpdatePageStatusesInput;
|
|
71869
|
+
};
|
|
71297
71870
|
export declare type MutationUpdatePolarisCommentArgs = {
|
|
71298
71871
|
input: UpdatePolarisCommentInput;
|
|
71299
71872
|
};
|
|
@@ -71369,9 +71942,27 @@ export declare type MutationUpdateReleaseNoteArgs = {
|
|
|
71369
71942
|
title?: Scalars['String']['input'];
|
|
71370
71943
|
visibleInFedRAMP?: InputMaybe<Scalars['Boolean']['input']>;
|
|
71371
71944
|
};
|
|
71945
|
+
export declare type MutationUpdateSiteLookAndFeelArgs = {
|
|
71946
|
+
input: UpdateSiteLookAndFeelInput;
|
|
71947
|
+
};
|
|
71372
71948
|
export declare type MutationUpdateSitePermissionArgs = {
|
|
71373
71949
|
input: SitePermissionInput;
|
|
71374
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
|
+
};
|
|
71375
71966
|
export declare type MutationUpdateTemplateArgs = {
|
|
71376
71967
|
contentTemplate: UpdateContentTemplateInput;
|
|
71377
71968
|
};
|
|
@@ -71530,6 +72121,12 @@ export declare type NestedActionsFeature = {
|
|
|
71530
72121
|
__typename?: 'NestedActionsFeature';
|
|
71531
72122
|
isEntitled: Scalars['Boolean']['output'];
|
|
71532
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
|
+
};
|
|
71533
72130
|
export declare type NewCard = {
|
|
71534
72131
|
assigneeId?: InputMaybe<Scalars['ID']['input']>;
|
|
71535
72132
|
fixVersions?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -71638,6 +72235,15 @@ export declare type NlpSource = {
|
|
|
71638
72235
|
export declare type Node = {
|
|
71639
72236
|
id: Scalars['ID']['output'];
|
|
71640
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
|
+
};
|
|
71641
72247
|
export declare type NumberUserInput = {
|
|
71642
72248
|
type: NumberUserInputType;
|
|
71643
72249
|
value?: InputMaybe<Scalars['Float']['input']>;
|
|
@@ -71694,6 +72300,14 @@ export declare type OnboardingStateInput = {
|
|
|
71694
72300
|
key: Scalars['String']['input'];
|
|
71695
72301
|
value: Scalars['String']['input'];
|
|
71696
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
|
+
}
|
|
71697
72311
|
export declare type OperationCheckResult = {
|
|
71698
72312
|
__typename?: 'OperationCheckResult';
|
|
71699
72313
|
links?: Maybe<LinksContextBase>;
|
|
@@ -72955,6 +73569,10 @@ export declare type PermsReportDownloadLink = {
|
|
|
72955
73569
|
__typename?: 'PermsReportDownloadLink';
|
|
72956
73570
|
url?: Maybe<Scalars['String']['output']>;
|
|
72957
73571
|
};
|
|
73572
|
+
export declare enum PermsReportTargetType {
|
|
73573
|
+
Group = "GROUP",
|
|
73574
|
+
User = "USER"
|
|
73575
|
+
}
|
|
72958
73576
|
export declare type Person = {
|
|
72959
73577
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
72960
73578
|
operations?: Maybe<Array<Maybe<OperationCheckResult>>>;
|
|
@@ -73978,8 +74596,8 @@ export declare type Query = {
|
|
|
73978
74596
|
adminAnnouncementBannerSettings?: Maybe<Array<Maybe<ConfluenceAdminAnnouncementBannerSetting>>>;
|
|
73979
74597
|
adminAnnouncementBannerSettingsByCriteria?: Maybe<AdminAnnouncementBannerSettingConnection>;
|
|
73980
74598
|
adminReportStatus?: Maybe<ConfluenceAdminReportStatus>;
|
|
73981
|
-
agentAI_contextPanel?: Maybe<
|
|
73982
|
-
agentAI_summarizeIssue?: Maybe<
|
|
74599
|
+
agentAI_contextPanel?: Maybe<AgentAiContextPanelResult>;
|
|
74600
|
+
agentAI_summarizeIssue?: Maybe<AgentAiIssueSummaryResult>;
|
|
73983
74601
|
allIndividualSpaces?: Maybe<SpaceInfoConnection>;
|
|
73984
74602
|
allTemplates?: Maybe<PaginatedTemplateInfoList>;
|
|
73985
74603
|
allUpdatesFeed?: Maybe<PaginatedAllUpdatesFeed>;
|
|
@@ -74010,6 +74628,7 @@ export declare type Query = {
|
|
|
74010
74628
|
bitbucketRepositoriesAvailableToLinkWithNewDevOpsService?: Maybe<BitbucketRepositoryIdConnection>;
|
|
74011
74629
|
blockedAccessRestrictions?: Maybe<BlockedAccessRestrictions>;
|
|
74012
74630
|
boardScope?: Maybe<BoardScope>;
|
|
74631
|
+
bulkPermitted?: Maybe<Array<Maybe<BulkPermittedResponse>>>;
|
|
74013
74632
|
canSplitIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
74014
74633
|
canvasToken?: Maybe<CanvasToken>;
|
|
74015
74634
|
catchupEditMetadataForContent?: Maybe<CatchupEditMetadataForContent>;
|
|
@@ -74246,6 +74865,7 @@ export declare type Query = {
|
|
|
74246
74865
|
confluenceV2_spaceTheme?: Maybe<ConfluenceV2Theme>;
|
|
74247
74866
|
confluenceV2_spaces?: Maybe<Array<Maybe<ConfluenceV2Space>>>;
|
|
74248
74867
|
confluence_calendarPreference?: Maybe<ConfluenceCalendarPreference>;
|
|
74868
|
+
confluence_calendarTimezones?: Maybe<ConfluenceCalendarTimezones>;
|
|
74249
74869
|
confluence_mutationsPlaceholderQuery?: Maybe<Scalars['Boolean']['output']>;
|
|
74250
74870
|
confluence_refreshMigrationMediaSession?: Maybe<ContentMediaSession>;
|
|
74251
74871
|
confluence_search?: Maybe<ConfluenceSearchConnection>;
|
|
@@ -74483,6 +75103,7 @@ export declare type Query = {
|
|
|
74483
75103
|
partnerEarlyAccess?: Maybe<PeapQueryApi>;
|
|
74484
75104
|
paywallContentToDisable?: Maybe<PaywallContentSingle>;
|
|
74485
75105
|
paywallStatus?: Maybe<PaywallStatus>;
|
|
75106
|
+
permitted?: Maybe<Scalars['Boolean']['output']>;
|
|
74486
75107
|
permsReportDownloadLinkForTask?: Maybe<PermsReportDownloadLink>;
|
|
74487
75108
|
playbook_jiraPlaybook?: Maybe<JiraPlaybookQueryPayload>;
|
|
74488
75109
|
playbook_jiraPlaybookInstancesForIssue?: Maybe<JiraPlaybookInstanceConnection>;
|
|
@@ -74795,6 +75416,12 @@ export declare type QueryBoardScopeArgs = {
|
|
|
74795
75416
|
boardId: Scalars['ID']['input'];
|
|
74796
75417
|
isCMP?: InputMaybe<Scalars['Boolean']['input']>;
|
|
74797
75418
|
};
|
|
75419
|
+
export declare type QueryBulkPermittedArgs = {
|
|
75420
|
+
dontRequirePrincipalsInSite?: InputMaybe<Array<InputMaybe<Scalars['Boolean']['input']>>>;
|
|
75421
|
+
permissionIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
75422
|
+
principalIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
75423
|
+
resourceIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
75424
|
+
};
|
|
74798
75425
|
export declare type QueryCanSplitIssueArgs = {
|
|
74799
75426
|
boardId: Scalars['ID']['input'];
|
|
74800
75427
|
cardId: Scalars['ID']['input'];
|
|
@@ -75802,6 +76429,9 @@ export declare type QueryConfluenceV2_SpacesArgs = {
|
|
|
75802
76429
|
export declare type QueryConfluence_CalendarPreferenceArgs = {
|
|
75803
76430
|
cloudId: Scalars['ID']['input'];
|
|
75804
76431
|
};
|
|
76432
|
+
export declare type QueryConfluence_CalendarTimezonesArgs = {
|
|
76433
|
+
cloudId: Scalars['ID']['input'];
|
|
76434
|
+
};
|
|
75805
76435
|
export declare type QueryConfluence_RefreshMigrationMediaSessionArgs = {
|
|
75806
76436
|
cloudId: Scalars['ID']['input'];
|
|
75807
76437
|
migrationId: Scalars['String']['input'];
|
|
@@ -76648,6 +77278,12 @@ export declare type QueryPaywallContentToDisableArgs = {
|
|
|
76648
77278
|
export declare type QueryPaywallStatusArgs = {
|
|
76649
77279
|
id: Scalars['ID']['input'];
|
|
76650
77280
|
};
|
|
77281
|
+
export declare type QueryPermittedArgs = {
|
|
77282
|
+
dontRequirePrincipalInSite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
77283
|
+
permissionId?: InputMaybe<Scalars['String']['input']>;
|
|
77284
|
+
principalId?: InputMaybe<Scalars['String']['input']>;
|
|
77285
|
+
resourceId?: InputMaybe<Scalars['String']['input']>;
|
|
77286
|
+
};
|
|
76651
77287
|
export declare type QueryPermsReportDownloadLinkForTaskArgs = {
|
|
76652
77288
|
id: Scalars['ID']['input'];
|
|
76653
77289
|
};
|
|
@@ -77752,6 +78388,22 @@ export declare type RecommendedSpaceItem = {
|
|
|
77752
78388
|
space?: Maybe<Space>;
|
|
77753
78389
|
spaceId: Scalars['Long']['output'];
|
|
77754
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
|
+
};
|
|
77755
78407
|
export declare type RefreshPolarisSnippetsInput = {
|
|
77756
78408
|
project: Scalars['ID']['input'];
|
|
77757
78409
|
subject?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -77852,6 +78504,16 @@ export declare type RemoveGroupSpacePermissionsInput = {
|
|
|
77852
78504
|
export declare type RemovePolarisColumnInput = {
|
|
77853
78505
|
column: Scalars['ID']['input'];
|
|
77854
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
|
+
};
|
|
77855
78517
|
export declare type RemoveSpacePermissionsPayload = {
|
|
77856
78518
|
__typename?: 'RemoveSpacePermissionsPayload';
|
|
77857
78519
|
status: Scalars['Boolean']['output'];
|
|
@@ -77887,6 +78549,23 @@ export declare type ResetExCoSpacePermissionsPayload = {
|
|
|
77887
78549
|
__typename?: 'ResetExCoSpacePermissionsPayload';
|
|
77888
78550
|
status: Scalars['Boolean']['output'];
|
|
77889
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
|
+
};
|
|
77890
78569
|
export declare type ResolveInlineCommentPayload = {
|
|
77891
78570
|
__typename?: 'ResolveInlineCommentPayload';
|
|
77892
78571
|
resolveProperties?: Maybe<InlineCommentResolveProperties>;
|
|
@@ -77912,6 +78591,22 @@ export declare type ResolveRestrictionsForSubjectMutationErrorExtension = Mutati
|
|
|
77912
78591
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
77913
78592
|
subject: BlockedAccessSubject;
|
|
77914
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
|
+
};
|
|
77915
78610
|
export declare type ResolvedPolarisObject = {
|
|
77916
78611
|
__typename?: 'ResolvedPolarisObject';
|
|
77917
78612
|
auth?: Maybe<ResolvedPolarisObjectAuth>;
|
|
@@ -77947,6 +78642,11 @@ export declare enum ResponseType {
|
|
|
77947
78642
|
BulletListMarkdown = "BULLET_LIST_MARKDOWN",
|
|
77948
78643
|
ParagraphPlaintext = "PARAGRAPH_PLAINTEXT"
|
|
77949
78644
|
}
|
|
78645
|
+
export declare type RestoreSpacePayload = Payload & {
|
|
78646
|
+
__typename?: 'RestoreSpacePayload';
|
|
78647
|
+
errors?: Maybe<Array<MutationError>>;
|
|
78648
|
+
success: Scalars['Boolean']['output'];
|
|
78649
|
+
};
|
|
77950
78650
|
export declare type RestrictedResource = {
|
|
77951
78651
|
__typename?: 'RestrictedResource';
|
|
77952
78652
|
requiredAccessType?: Maybe<ResourceAccessType>;
|
|
@@ -78643,6 +79343,10 @@ export declare type RoadmapsQueryRoadmapSubtasksByIdsArgs = {
|
|
|
78643
79343
|
itemIds: Array<Scalars['ID']['input']>;
|
|
78644
79344
|
sourceARI: Scalars['ID']['input'];
|
|
78645
79345
|
};
|
|
79346
|
+
export declare type RoleAssignment = {
|
|
79347
|
+
principal: RoleAssignmentPrincipalInput;
|
|
79348
|
+
roleId: Scalars['ID']['input'];
|
|
79349
|
+
};
|
|
78646
79350
|
export declare type RoleAssignmentPrincipalInput = {
|
|
78647
79351
|
principalId: Scalars['ID']['input'];
|
|
78648
79352
|
principalType: RoleAssignmentPrincipalType;
|
|
@@ -79992,6 +80696,14 @@ export declare type SetColumnNameOutput = MutationResponse & {
|
|
|
79992
80696
|
statusCode: Scalars['Int']['output'];
|
|
79993
80697
|
success: Scalars['Boolean']['output'];
|
|
79994
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
|
+
};
|
|
79995
80707
|
export declare type SetEstimationTypeInput = {
|
|
79996
80708
|
boardId: Scalars['ID']['input'];
|
|
79997
80709
|
estimationType: Scalars['String']['input'];
|
|
@@ -80096,6 +80808,15 @@ export declare type SetRecommendedPagesStatusPayloadErrorExtension = {
|
|
|
80096
80808
|
__typename?: 'SetRecommendedPagesStatusPayloadErrorExtension';
|
|
80097
80809
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
80098
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
|
+
};
|
|
80099
80820
|
export declare type SetSwimlaneStrategyInput = {
|
|
80100
80821
|
boardId: Scalars['ID']['input'];
|
|
80101
80822
|
strategy: SwimlaneStrategy;
|
|
@@ -81620,6 +82341,17 @@ export declare type SiteDescription = {
|
|
|
81620
82341
|
__typename?: 'SiteDescription';
|
|
81621
82342
|
logoUrl?: Maybe<Scalars['String']['output']>;
|
|
81622
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
|
+
};
|
|
81623
82355
|
export declare type SiteOperations = {
|
|
81624
82356
|
__typename?: 'SiteOperations';
|
|
81625
82357
|
allOperations: Array<Maybe<OperationCheckResult>>;
|
|
@@ -81899,6 +82631,11 @@ export declare type SocialSignalsApiSocialSignalsSearchArgs = {
|
|
|
81899
82631
|
objectARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
81900
82632
|
tenantId: Scalars['ID']['input'];
|
|
81901
82633
|
};
|
|
82634
|
+
export declare type SoftDeleteSpacePayload = Payload & {
|
|
82635
|
+
__typename?: 'SoftDeleteSpacePayload';
|
|
82636
|
+
errors?: Maybe<Array<MutationError>>;
|
|
82637
|
+
success: Scalars['Boolean']['output'];
|
|
82638
|
+
};
|
|
81902
82639
|
export declare type SoftwareBoard = {
|
|
81903
82640
|
__typename?: 'SoftwareBoard';
|
|
81904
82641
|
assignees?: Maybe<Array<Maybe<User>>>;
|
|
@@ -82786,6 +83523,11 @@ export declare type SubjectKey = {
|
|
|
82786
83523
|
group?: Maybe<Group>;
|
|
82787
83524
|
id?: Maybe<Scalars['String']['output']>;
|
|
82788
83525
|
};
|
|
83526
|
+
export declare type SubjectPermissionDeltas = {
|
|
83527
|
+
permissionsToAdd: Array<InputMaybe<SpacePermissionType>>;
|
|
83528
|
+
permissionsToRemove: Array<InputMaybe<SpacePermissionType>>;
|
|
83529
|
+
subjectKeyInput: UpdatePermissionSubjectKeyInput;
|
|
83530
|
+
};
|
|
82789
83531
|
export declare type SubjectRestrictionHierarchySummary = {
|
|
82790
83532
|
__typename?: 'SubjectRestrictionHierarchySummary';
|
|
82791
83533
|
restrictedResources?: Maybe<Array<Maybe<RestrictedResource>>>;
|
|
@@ -86638,6 +87380,14 @@ export declare type UnarchivePolarisInsightsPayload = Payload & {
|
|
|
86638
87380
|
errors?: Maybe<Array<MutationError>>;
|
|
86639
87381
|
success: Scalars['Boolean']['output'];
|
|
86640
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
|
+
};
|
|
86641
87391
|
export declare type UnassignIssueParentInput = {
|
|
86642
87392
|
boardId: Scalars['ID']['input'];
|
|
86643
87393
|
issueIds: Array<Scalars['ID']['input']>;
|
|
@@ -87580,6 +88330,21 @@ export declare type UpdateComponentApiUploadPayload = {
|
|
|
87580
88330
|
errors?: Maybe<Array<Scalars['String']['output']>>;
|
|
87581
88331
|
success: Scalars['Boolean']['output'];
|
|
87582
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
|
+
};
|
|
87583
88348
|
export declare type UpdateContentTemplateInput = {
|
|
87584
88349
|
body: ContentTemplateBodyInput;
|
|
87585
88350
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -87590,6 +88355,17 @@ export declare type UpdateContentTemplateInput = {
|
|
|
87590
88355
|
templateId: Scalars['ID']['input'];
|
|
87591
88356
|
templateType: GraphQlContentTemplateType;
|
|
87592
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
|
+
};
|
|
87593
88369
|
export declare type UpdateCustomFilterInput = {
|
|
87594
88370
|
boardId: Scalars['ID']['input'];
|
|
87595
88371
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -87597,6 +88373,16 @@ export declare type UpdateCustomFilterInput = {
|
|
|
87597
88373
|
jql: Scalars['String']['input'];
|
|
87598
88374
|
name: Scalars['String']['input'];
|
|
87599
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
|
+
};
|
|
87600
88386
|
export declare type UpdateDevOpsContainerRelationshipEntityPropertiesInput = {
|
|
87601
88387
|
id: Scalars['ID']['input'];
|
|
87602
88388
|
properties: Array<DevOpsContainerRelationshipEntityPropertyInput>;
|
|
@@ -87704,6 +88490,15 @@ export declare type UpdateEmbedInput = {
|
|
|
87704
88490
|
resourceType?: InputMaybe<Scalars['String']['input']>;
|
|
87705
88491
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
87706
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
|
+
};
|
|
87707
88502
|
export declare type UpdateJiraPlaybookInput = {
|
|
87708
88503
|
filters?: InputMaybe<Array<JiraPlaybookIssueFilterInput>>;
|
|
87709
88504
|
id: Scalars['ID']['input'];
|
|
@@ -87735,6 +88530,13 @@ export declare type UpdateJiraPlaybookStepInput = {
|
|
|
87735
88530
|
ruleId?: InputMaybe<Scalars['String']['input']>;
|
|
87736
88531
|
type: JiraPlaybookStepType;
|
|
87737
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
|
+
};
|
|
87738
88540
|
export declare type UpdateOwnerInput = {
|
|
87739
88541
|
contentId: Scalars['ID']['input'];
|
|
87740
88542
|
ownerId: Scalars['String']['input'];
|
|
@@ -87757,6 +88559,16 @@ export declare type UpdatePageInput = {
|
|
|
87757
88559
|
status?: InputMaybe<PageStatusInput>;
|
|
87758
88560
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
87759
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
|
+
};
|
|
87760
88572
|
export declare type UpdatePagePayload = {
|
|
87761
88573
|
__typename?: 'UpdatePagePayload';
|
|
87762
88574
|
content?: Maybe<Content>;
|
|
@@ -87765,6 +88577,21 @@ export declare type UpdatePagePayload = {
|
|
|
87765
88577
|
pageId: Scalars['ID']['output'];
|
|
87766
88578
|
restrictions?: Maybe<PageRestrictions>;
|
|
87767
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
|
+
};
|
|
87768
88595
|
export declare type UpdatePolarisCommentInput = {
|
|
87769
88596
|
content?: InputMaybe<Scalars['JSON']['input']>;
|
|
87770
88597
|
delete?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -87954,12 +88781,74 @@ export declare type UpdateRelationPayload = {
|
|
|
87954
88781
|
targetKey: Scalars['String']['output'];
|
|
87955
88782
|
url: Scalars['String']['output'];
|
|
87956
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
|
+
};
|
|
87957
88802
|
export declare type UpdateSitePermissionInput = {
|
|
87958
88803
|
anonymous?: InputMaybe<AnonymousWithPermissionsInput>;
|
|
87959
88804
|
groups?: InputMaybe<Array<InputMaybe<GroupWithPermissionsInput>>>;
|
|
87960
88805
|
unlicensedUser?: InputMaybe<UnlicensedUserWithPermissionsInput>;
|
|
87961
88806
|
users?: InputMaybe<Array<InputMaybe<UserWithPermissionsInput>>>;
|
|
87962
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
|
+
};
|
|
87963
88852
|
export declare type UpdateTemplatePropertySetInput = {
|
|
87964
88853
|
templateId: Scalars['Long']['input'];
|
|
87965
88854
|
templatePropertySet: TemplatePropertySetInput;
|
|
@@ -87973,6 +88862,10 @@ export declare type UpdateUserInstallationRulesInput = {
|
|
|
87973
88862
|
cloudId: Scalars['ID']['input'];
|
|
87974
88863
|
rule: UserInstallationRuleValue;
|
|
87975
88864
|
};
|
|
88865
|
+
export declare type UpdatedNestedPageOwnersInput = {
|
|
88866
|
+
ownerId: Scalars['ID']['input'];
|
|
88867
|
+
pages: Array<InputMaybe<NestedPageInput>>;
|
|
88868
|
+
};
|
|
87976
88869
|
export declare type UpgradeableByRollout = {
|
|
87977
88870
|
__typename?: 'UpgradeableByRollout';
|
|
87978
88871
|
sourceVersionId: Scalars['ID']['output'];
|
|
@@ -88815,6 +89708,7 @@ export declare type WatchContentInput = {
|
|
|
88815
89708
|
contentId: Scalars['ID']['input'];
|
|
88816
89709
|
currentUser?: InputMaybe<Scalars['Boolean']['input']>;
|
|
88817
89710
|
includeChildren?: InputMaybe<Scalars['Boolean']['input']>;
|
|
89711
|
+
shouldUnwatchAncestorWatchingChildren?: InputMaybe<Scalars['Boolean']['input']>;
|
|
88818
89712
|
};
|
|
88819
89713
|
export declare type WatchContentPayload = {
|
|
88820
89714
|
__typename?: 'WatchContentPayload';
|
|
@@ -89044,7 +89938,6 @@ export declare type WorkSuggestionsByProjectsResponse = {
|
|
|
89044
89938
|
__typename?: 'WorkSuggestionsByProjectsResponse';
|
|
89045
89939
|
autoDevJobsSuggestions?: Maybe<Array<WorkSuggestionsAutoDevJobTask>>;
|
|
89046
89940
|
blockingIssueSuggestions?: Maybe<Array<WorkSuggestionsBlockingIssueTask>>;
|
|
89047
|
-
commonSuggestions?: Maybe<WorkSuggestionsConnection>;
|
|
89048
89941
|
compassSuggestions?: Maybe<Array<WorkSuggestionsCompassTask>>;
|
|
89049
89942
|
draftPRSuggestions?: Maybe<Array<WorkSuggestionsPullRequestDraftTask>>;
|
|
89050
89943
|
inactivePRSuggestions?: Maybe<Array<WorkSuggestionsPullRequestInactiveTask>>;
|
|
@@ -89058,10 +89951,6 @@ export declare type WorkSuggestionsByProjectsResponseAutoDevJobsSuggestionsArgs
|
|
|
89058
89951
|
export declare type WorkSuggestionsByProjectsResponseBlockingIssueSuggestionsArgs = {
|
|
89059
89952
|
input?: InputMaybe<WorkSuggestionsInput>;
|
|
89060
89953
|
};
|
|
89061
|
-
export declare type WorkSuggestionsByProjectsResponseCommonSuggestionsArgs = {
|
|
89062
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
89063
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
89064
|
-
};
|
|
89065
89954
|
export declare type WorkSuggestionsByProjectsResponseCompassSuggestionsArgs = {
|
|
89066
89955
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
89067
89956
|
};
|