@forge/cli-shared 6.8.0-next.28 → 6.8.0-next.29

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 CHANGED
@@ -1,5 +1,12 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 6.8.0-next.29
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [0dd4e3b]
8
+ - @forge/manifest@9.0.0-next.14
9
+
3
10
  ## 6.8.0-next.28
4
11
 
5
12
  ### Minor Changes
@@ -1054,8 +1054,11 @@ export declare enum AnalyticsEventName {
1054
1054
  DatabaseViewed = "database_viewed",
1055
1055
  InspectPermissionsDialogViewed = "inspectPermissionsDialog_viewed",
1056
1056
  InstanceAnalyticsViewed = "instanceAnalytics_viewed",
1057
+ LivedocViewed = "livedoc_viewed",
1057
1058
  PageAnalyticsViewed = "pageAnalytics_viewed",
1058
1059
  PageCreated = "page_created",
1060
+ PageInitialized = "page_initialized",
1061
+ PageSnapshotted = "page_snapshotted",
1059
1062
  PageUpdated = "page_updated",
1060
1063
  PageViewed = "page_viewed",
1061
1064
  PubliclinkPageViewed = "publiclink_page_viewed",
@@ -9542,6 +9545,13 @@ export declare type ConfluenceContentMetadata = {
9542
9545
  titleEmojiDraft?: Maybe<ConfluenceContentTitleEmoji>;
9543
9546
  titleEmojiPublished?: Maybe<ConfluenceContentTitleEmoji>;
9544
9547
  };
9548
+ export declare type ConfluenceContentModified = {
9549
+ __typename?: 'ConfluenceContentModified';
9550
+ _deltas?: Maybe<Array<Scalars['String']['output']>>;
9551
+ contentTitleUpdated?: Maybe<ConfluenceContentTitleUpdated>;
9552
+ id: Scalars['ID']['output'];
9553
+ type: ConfluenceSubscriptionContentType;
9554
+ };
9545
9555
  export declare type ConfluenceContentNativeProperties = {
9546
9556
  __typename?: 'ConfluenceContentNativeProperties';
9547
9557
  current?: Maybe<ConfluenceCurrentContentNativeProperties>;
@@ -9584,6 +9594,10 @@ export declare type ConfluenceContentTitleUpdate = {
9584
9594
  contentTitle: Scalars['String']['output'];
9585
9595
  id: Scalars['ID']['output'];
9586
9596
  };
9597
+ export declare type ConfluenceContentTitleUpdated = {
9598
+ __typename?: 'ConfluenceContentTitleUpdated';
9599
+ contentTitle?: Maybe<Scalars['String']['output']>;
9600
+ };
9587
9601
  export declare enum ConfluenceContentType {
9588
9602
  Attachment = "ATTACHMENT",
9589
9603
  BlogPost = "BLOG_POST",
@@ -9619,6 +9633,15 @@ export declare type ConfluenceCopyPageTaskResult = {
9619
9633
  __typename?: 'ConfluenceCopyPageTaskResult';
9620
9634
  page?: Maybe<ConfluencePage>;
9621
9635
  };
9636
+ export declare type ConfluenceCopySpaceSecurityConfigurationInput = {
9637
+ copyFromSpaceId: Scalars['ID']['input'];
9638
+ copyToSpaceId: Scalars['ID']['input'];
9639
+ };
9640
+ export declare type ConfluenceCopySpaceSecurityConfigurationPayload = Payload & {
9641
+ __typename?: 'ConfluenceCopySpaceSecurityConfigurationPayload';
9642
+ errors?: Maybe<Array<MutationError>>;
9643
+ success: Scalars['Boolean']['output'];
9644
+ };
9622
9645
  export declare type ConfluenceCreateAdminAnnouncementBannerInput = {
9623
9646
  appearance: Scalars['String']['input'];
9624
9647
  content: Scalars['String']['input'];
@@ -9708,7 +9731,8 @@ export declare type ConfluenceCreatePagePropertyPayload = Payload & {
9708
9731
  success: Scalars['Boolean']['output'];
9709
9732
  };
9710
9733
  export declare type ConfluenceCreatePdfExportTaskForBulkContentInput = {
9711
- exportContents: Array<InputMaybe<ConfluenceBulkPdfExportContent>>;
9734
+ exportContents?: InputMaybe<Array<InputMaybe<ConfluenceBulkPdfExportContent>>>;
9735
+ spaceAri: Scalars['String']['input'];
9712
9736
  };
9713
9737
  export declare type ConfluenceCreatePdfExportTaskForBulkContentPayload = Payload & {
9714
9738
  __typename?: 'ConfluenceCreatePdfExportTaskForBulkContentPayload';
@@ -15902,6 +15926,10 @@ export declare type ConfluencePageViewerSummary = {
15902
15926
  lastContribution?: Maybe<ConfluenceContribution>;
15903
15927
  lastSeenAt?: Maybe<Scalars['DateTime']['output']>;
15904
15928
  };
15929
+ export declare type ConfluencePdfExportDownloadLink = {
15930
+ __typename?: 'ConfluencePdfExportDownloadLink';
15931
+ link?: Maybe<Scalars['String']['output']>;
15932
+ };
15905
15933
  export declare enum ConfluencePdfExportState {
15906
15934
  Done = "DONE",
15907
15935
  Failed = "FAILED",
@@ -16136,6 +16164,11 @@ export declare type ConfluenceReplyToCommentPayload = {
16136
16164
  errors?: Maybe<Array<MutationError>>;
16137
16165
  success: Scalars['Boolean']['output'];
16138
16166
  };
16167
+ export declare type ConfluenceResolveCommentByContentIdPayload = Payload & {
16168
+ __typename?: 'ConfluenceResolveCommentByContentIdPayload';
16169
+ errors?: Maybe<Array<MutationError>>;
16170
+ success: Scalars['Boolean']['output'];
16171
+ };
16139
16172
  export declare type ConfluenceResolveCommentsPayload = Payload & {
16140
16173
  __typename?: 'ConfluenceResolveCommentsPayload';
16141
16174
  commentResolutionStates?: Maybe<Array<Maybe<ConfluenceCommentResolutionState>>>;
@@ -16182,6 +16215,16 @@ export declare type ConfluenceSearchResponseEdge = {
16182
16215
  cursor?: Maybe<Scalars['String']['output']>;
16183
16216
  node?: Maybe<ConfluenceSearchResponse>;
16184
16217
  };
16218
+ export declare type ConfluenceSetSubCalendarReminderInput = {
16219
+ isReminder: Scalars['Boolean']['input'];
16220
+ subCalendarId: Scalars['ID']['input'];
16221
+ };
16222
+ export declare type ConfluenceSetSubCalendarReminderPayload = {
16223
+ __typename?: 'ConfluenceSetSubCalendarReminderPayload';
16224
+ errors?: Maybe<Array<MutationError>>;
16225
+ subCalendarReminder?: Maybe<ConfluenceSubCalendarReminder>;
16226
+ success: Scalars['Boolean']['output'];
16227
+ };
16185
16228
  export declare type ConfluenceSpace = {
16186
16229
  __typename?: 'ConfluenceSpace';
16187
16230
  alias?: Maybe<Scalars['String']['output']>;
@@ -16312,10 +16355,31 @@ export declare type ConfluenceStorage = {
16312
16355
  isStorageEnforcementGracePeriodComplete?: Maybe<Scalars['Boolean']['output']>;
16313
16356
  isUnlimited?: Maybe<Scalars['Boolean']['output']>;
16314
16357
  };
16358
+ export declare type ConfluenceSubCalendarEmbedInfo = {
16359
+ __typename?: 'ConfluenceSubCalendarEmbedInfo';
16360
+ spaceId: Scalars['ID']['output'];
16361
+ spaceKey: Scalars['String']['output'];
16362
+ subCalendarDescription?: Maybe<Scalars['String']['output']>;
16363
+ subCalendarId?: Maybe<Scalars['ID']['output']>;
16364
+ subCalendarName?: Maybe<Scalars['String']['output']>;
16365
+ };
16366
+ export declare type ConfluenceSubCalendarReminder = {
16367
+ __typename?: 'ConfluenceSubCalendarReminder';
16368
+ isReminder: Scalars['Boolean']['output'];
16369
+ subCalendarId: Scalars['ID']['output'];
16370
+ user: Scalars['String']['output'];
16371
+ };
16315
16372
  export declare type ConfluenceSubCalendarSubscribersCount = {
16316
16373
  __typename?: 'ConfluenceSubCalendarSubscribersCount';
16317
16374
  count?: Maybe<Scalars['Int']['output']>;
16318
16375
  };
16376
+ export declare type ConfluenceSubCalendarWatchingStatus = {
16377
+ __typename?: 'ConfluenceSubCalendarWatchingStatus';
16378
+ isWatchable: Scalars['Boolean']['output'];
16379
+ subCalendarId?: Maybe<Scalars['ID']['output']>;
16380
+ watched: Scalars['Boolean']['output'];
16381
+ watchedViaContent: Scalars['Boolean']['output'];
16382
+ };
16319
16383
  export declare enum ConfluenceSubscriptionContentType {
16320
16384
  Blogpost = "BLOGPOST",
16321
16385
  Comment = "COMMENT",
@@ -16342,6 +16406,7 @@ export declare type ConfluenceTenantContext = {
16342
16406
  initialProductList?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
16343
16407
  licenseStates?: Maybe<LicenseStates>;
16344
16408
  licensedProducts: Array<LicensedProduct>;
16409
+ timeZone?: Maybe<Scalars['String']['output']>;
16345
16410
  };
16346
16411
  export declare type ConfluenceTrashBlogPostInput = {
16347
16412
  id: Scalars['ID']['input'];
@@ -17627,6 +17692,7 @@ export declare type ContentMetadata = {
17627
17692
  frontend?: Maybe<ContentMetadata_SpaFriendlyMetadataProvider_Frontend>;
17628
17693
  isActiveLiveEditSession?: Maybe<Scalars['Boolean']['output']>;
17629
17694
  labels?: Maybe<Array<Maybe<Label>>>;
17695
+ lastEditedTime?: Maybe<Scalars['String']['output']>;
17630
17696
  lastModifiedDate?: Maybe<Scalars['String']['output']>;
17631
17697
  likes?: Maybe<LikesModelMetadataDto>;
17632
17698
  simple?: Maybe<ContentMetadata_SimpleContentMetadataProvider_Simple>;
@@ -24285,7 +24351,7 @@ export declare type EcosystemMarketplaceData = {
24285
24351
  __typename?: 'EcosystemMarketplaceData';
24286
24352
  appId?: Maybe<Scalars['ID']['output']>;
24287
24353
  appKey?: Maybe<Scalars['String']['output']>;
24288
- cloudAppId: Scalars['ID']['output'];
24354
+ cloudAppId?: Maybe<Scalars['ID']['output']>;
24289
24355
  forumsUrl?: Maybe<Scalars['String']['output']>;
24290
24356
  issueTrackerUrl?: Maybe<Scalars['String']['output']>;
24291
24357
  listingStatus?: Maybe<EcosystemMarketplaceListingStatus>;
@@ -24535,7 +24601,8 @@ export declare type EcosystemQueryGlobalInstallationConfigArgs = {
24535
24601
  filter?: InputMaybe<GlobalInstallationConfigFilter>;
24536
24602
  };
24537
24603
  export declare type EcosystemQueryMarketplaceDataArgs = {
24538
- cloudAppId: Scalars['ID']['input'];
24604
+ appKey?: InputMaybe<Scalars['ID']['input']>;
24605
+ cloudAppId?: InputMaybe<Scalars['ID']['input']>;
24539
24606
  };
24540
24607
  export declare type EcosystemQueryUserAccessArgs = {
24541
24608
  contextId: Scalars['ID']['input'];
@@ -53125,6 +53192,7 @@ export declare type InlineComment = CommentLocation & {
53125
53192
  };
53126
53193
  export declare type InlineCommentResolveProperties = {
53127
53194
  __typename?: 'InlineCommentResolveProperties';
53195
+ isDangling: Scalars['Boolean']['output'];
53128
53196
  resolved: Scalars['Boolean']['output'];
53129
53197
  resolvedByDangling: Scalars['Boolean']['output'];
53130
53198
  resolvedFriendlyDate?: Maybe<Scalars['String']['output']>;
@@ -67935,6 +68003,7 @@ export declare type JiraSetBoardIssueCardCoverPayload = Payload & {
67935
68003
  __typename?: 'JiraSetBoardIssueCardCoverPayload';
67936
68004
  boardView?: Maybe<JiraBoardView>;
67937
68005
  errors?: Maybe<Array<MutationError>>;
68006
+ issue?: Maybe<JiraIssue>;
67938
68007
  success: Scalars['Boolean']['output'];
67939
68008
  };
67940
68009
  export declare type JiraSetBoardViewCardFieldSelectedInput = {
@@ -73207,9 +73276,12 @@ export declare enum LoomUserStatus {
73207
73276
  }
73208
73277
  export declare type LoomVideo = Node & {
73209
73278
  __typename?: 'LoomVideo';
73279
+ collaborators?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
73210
73280
  description?: Maybe<Scalars['String']['output']>;
73211
73281
  id: Scalars['ID']['output'];
73212
73282
  isArchived: Scalars['Boolean']['output'];
73283
+ isMeeting?: Maybe<Scalars['Boolean']['output']>;
73284
+ meetingAri?: Maybe<Scalars['String']['output']>;
73213
73285
  name: Scalars['String']['output'];
73214
73286
  owner?: Maybe<User>;
73215
73287
  ownerId?: Maybe<Scalars['String']['output']>;
@@ -78005,6 +78077,7 @@ export declare type Mutation = {
78005
78077
  confluenceV2_deletePage?: Maybe<Scalars['Boolean']['output']>;
78006
78078
  confluenceV2_updatePage?: Maybe<ConfluenceV2UpdatePagePayload>;
78007
78079
  confluence_bulkNestedConvertToLiveDocs?: Maybe<ConfluenceBulkNestedConvertToLiveDocsPayload>;
78080
+ confluence_copySpaceSecurityConfiguration?: Maybe<ConfluenceCopySpaceSecurityConfigurationPayload>;
78008
78081
  confluence_createCustomRole?: Maybe<ConfluenceCreateCustomRolePayload>;
78009
78082
  confluence_createPdfExportTaskForBulkContent?: Maybe<ConfluenceCreatePdfExportTaskForBulkContentPayload>;
78010
78083
  confluence_createPdfExportTaskForSingleContent?: Maybe<ConfluenceCreatePdfExportTaskForSingleContentPayload>;
@@ -78019,6 +78092,8 @@ export declare type Mutation = {
78019
78092
  confluence_makeSubCalendarPrivateUrl?: Maybe<ConfluenceMakeSubCalendarPrivateUrlPayload>;
78020
78093
  confluence_reopenComment?: Maybe<ConfluenceReopenCommentPayload>;
78021
78094
  confluence_resolveComments?: Maybe<ConfluenceResolveCommentsPayload>;
78095
+ confluence_resolveCommentsByContentId?: Maybe<ConfluenceResolveCommentByContentIdPayload>;
78096
+ confluence_setSubCalendarReminder?: Maybe<ConfluenceSetSubCalendarReminderPayload>;
78022
78097
  confluence_unwatchSubCalendar?: Maybe<ConfluenceUnwatchSubCalendarPayload>;
78023
78098
  confluence_updateCustomRole?: Maybe<ConfluenceUpdateCustomRolePayload>;
78024
78099
  confluence_updateSubCalendarHiddenEvents?: Maybe<ConfluenceUpdateSubCalendarHiddenEventsPayload>;
@@ -78221,6 +78296,9 @@ export declare type Mutation = {
78221
78296
  publicLinkPagesAdminAction?: Maybe<PublicLinkPagesAdminActionPayload>;
78222
78297
  publicLinkSpacesAction?: Maybe<PublicLinkSpacesActionPayload>;
78223
78298
  publishReleaseNote: ContentPlatformReleaseNote;
78299
+ radar_createRoleAssignment?: Maybe<RadarMutationResponse>;
78300
+ radar_deleteRoleAssignment?: Maybe<RadarMutationResponse>;
78301
+ radar_updateFieldSettings?: Maybe<RadarMutationResponse>;
78224
78302
  radar_updateFocusAreaMappings?: Maybe<RadarMutationResponse>;
78225
78303
  radar_updateWorkspaceSettings?: Maybe<RadarMutationResponse>;
78226
78304
  rankCardParent?: Maybe<GenericMutationResponse>;
@@ -78973,6 +79051,10 @@ export declare type MutationConfluence_BulkNestedConvertToLiveDocsArgs = {
78973
79051
  cloudId: Scalars['ID']['input'];
78974
79052
  input: Array<InputMaybe<NestedPageInput>>;
78975
79053
  };
79054
+ export declare type MutationConfluence_CopySpaceSecurityConfigurationArgs = {
79055
+ cloudId: Scalars['ID']['input'];
79056
+ input: ConfluenceCopySpaceSecurityConfigurationInput;
79057
+ };
78976
79058
  export declare type MutationConfluence_CreateCustomRoleArgs = {
78977
79059
  cloudId: Scalars['ID']['input'];
78978
79060
  input: ConfluenceCreateCustomRoleInput;
@@ -79027,6 +79109,14 @@ export declare type MutationConfluence_ResolveCommentsArgs = {
79027
79109
  cloudId: Scalars['ID']['input'];
79028
79110
  commentIds: Array<InputMaybe<Scalars['ID']['input']>>;
79029
79111
  };
79112
+ export declare type MutationConfluence_ResolveCommentsByContentIdArgs = {
79113
+ cloudId: Scalars['ID']['input'];
79114
+ contentId: Scalars['ID']['input'];
79115
+ };
79116
+ export declare type MutationConfluence_SetSubCalendarReminderArgs = {
79117
+ cloudId: Scalars['ID']['input'];
79118
+ input: ConfluenceSetSubCalendarReminderInput;
79119
+ };
79030
79120
  export declare type MutationConfluence_UnwatchSubCalendarArgs = {
79031
79121
  cloudId: Scalars['ID']['input'];
79032
79122
  input: ConfluenceUnwatchSubCalendarInput;
@@ -79633,6 +79723,18 @@ export declare type MutationPublicLinkSpacesActionArgs = {
79633
79723
  export declare type MutationPublishReleaseNoteArgs = {
79634
79724
  id: Scalars['String']['input'];
79635
79725
  };
79726
+ export declare type MutationRadar_CreateRoleAssignmentArgs = {
79727
+ cloudId: Scalars['ID']['input'];
79728
+ input: RadarRoleAssignmentRequest;
79729
+ };
79730
+ export declare type MutationRadar_DeleteRoleAssignmentArgs = {
79731
+ cloudId: Scalars['ID']['input'];
79732
+ input: RadarRoleAssignmentRequest;
79733
+ };
79734
+ export declare type MutationRadar_UpdateFieldSettingsArgs = {
79735
+ cloudId: Scalars['ID']['input'];
79736
+ input: Array<RadarFieldSettingsInput>;
79737
+ };
79636
79738
  export declare type MutationRadar_UpdateFocusAreaMappingsArgs = {
79637
79739
  cloudId: Scalars['ID']['input'];
79638
79740
  input: Array<RadarFocusAreaMappingsInput>;
@@ -82981,20 +83083,29 @@ export declare type Query = {
82981
83083
  confluence_calendarPreference?: Maybe<ConfluenceCalendarPreference>;
82982
83084
  confluence_calendarTimezones?: Maybe<ConfluenceCalendarTimezones>;
82983
83085
  confluence_contentWatchersUnfiltered?: Maybe<PaginatedPersonList>;
83086
+ confluence_contentsForSimpleIds?: Maybe<Array<Maybe<Content>>>;
82984
83087
  confluence_deletedUserAccountIds?: Maybe<ConfluenceDeletedUser>;
82985
83088
  confluence_empty?: Maybe<Scalars['String']['output']>;
82986
83089
  confluence_externalCollaboratorsByCriteria?: Maybe<ConfluencePersonConnection>;
83090
+ confluence_hasClearPermissionForSpace?: Maybe<Scalars['Boolean']['output']>;
83091
+ confluence_hasDivergedFromDefaultSpacePermissions?: Maybe<Scalars['Boolean']['output']>;
82987
83092
  confluence_mutationsPlaceholderQuery?: Maybe<Scalars['Boolean']['output']>;
83093
+ confluence_pdfExportDownloadLink?: Maybe<ConfluencePdfExportDownloadLink>;
82988
83094
  confluence_pdfExportTask?: Maybe<ConfluencePdfExportTask>;
83095
+ confluence_publicLinkSpaceHomePage?: Maybe<PublicLinkPage>;
82989
83096
  confluence_refreshMigrationMediaSession?: Maybe<ContentMediaSession>;
82990
83097
  confluence_search?: Maybe<ConfluenceSearchConnection>;
82991
83098
  confluence_searchTeamLabels?: Maybe<LabelSearchResults>;
82992
83099
  confluence_searchUser?: Maybe<ConfluenceSearchConnection>;
82993
83100
  confluence_spaceMediaSession?: Maybe<ContentMediaSession>;
82994
83101
  confluence_spaceWatchersUnfiltered?: Maybe<PaginatedPersonList>;
83102
+ confluence_spacesForSimpleIds?: Maybe<Array<Maybe<Space>>>;
82995
83103
  confluence_storage?: Maybe<ConfluenceStorage>;
83104
+ confluence_subCalendarEmbedInfo?: Maybe<Array<Maybe<ConfluenceSubCalendarEmbedInfo>>>;
82996
83105
  confluence_subCalendarSubscribersCount?: Maybe<ConfluenceSubCalendarSubscribersCount>;
83106
+ confluence_subCalendarWatchingStatuses?: Maybe<Array<Maybe<ConfluenceSubCalendarWatchingStatus>>>;
82997
83107
  confluence_teamPresence?: Maybe<ConfluenceTeamPresence>;
83108
+ confluence_teamPresenceContentSetting?: Maybe<ConfluenceTeamPresence>;
82998
83109
  confluence_teamPresenceSpaceSettings?: Maybe<ConfluenceTeamPresenceSpaceSettings>;
82999
83110
  confluence_template?: Maybe<ContentTemplate>;
83000
83111
  confluence_tenantContext?: Maybe<ConfluenceTenantContext>;
@@ -84611,6 +84722,10 @@ export declare type QueryConfluence_ContentWatchersUnfilteredArgs = {
84611
84722
  first?: InputMaybe<Scalars['Int']['input']>;
84612
84723
  offset?: InputMaybe<Scalars['Int']['input']>;
84613
84724
  };
84725
+ export declare type QueryConfluence_ContentsForSimpleIdsArgs = {
84726
+ cloudId: Scalars['ID']['input'];
84727
+ ids: Array<InputMaybe<Scalars['ID']['input']>>;
84728
+ };
84614
84729
  export declare type QueryConfluence_DeletedUserAccountIdsArgs = {
84615
84730
  cloudId: Scalars['ID']['input'];
84616
84731
  spaceKey: Scalars['String']['input'];
@@ -84630,10 +84745,26 @@ export declare type QueryConfluence_ExternalCollaboratorsByCriteriaArgs = {
84630
84745
  spaceAssignmentType?: InputMaybe<SpaceAssignmentType>;
84631
84746
  spaceIds?: InputMaybe<Array<InputMaybe<Scalars['Long']['input']>>>;
84632
84747
  };
84748
+ export declare type QueryConfluence_HasClearPermissionForSpaceArgs = {
84749
+ cloudId: Scalars['ID']['input'];
84750
+ spaceKey: Scalars['String']['input'];
84751
+ };
84752
+ export declare type QueryConfluence_HasDivergedFromDefaultSpacePermissionsArgs = {
84753
+ cloudId: Scalars['ID']['input'];
84754
+ spaceKey: Scalars['String']['input'];
84755
+ };
84756
+ export declare type QueryConfluence_PdfExportDownloadLinkArgs = {
84757
+ cloudId: Scalars['ID']['input'];
84758
+ id: Scalars['ID']['input'];
84759
+ };
84633
84760
  export declare type QueryConfluence_PdfExportTaskArgs = {
84634
84761
  cloudId: Scalars['ID']['input'];
84635
84762
  id: Scalars['ID']['input'];
84636
84763
  };
84764
+ export declare type QueryConfluence_PublicLinkSpaceHomePageArgs = {
84765
+ cloudId: Scalars['ID']['input'];
84766
+ spaceKey: Scalars['String']['input'];
84767
+ };
84637
84768
  export declare type QueryConfluence_RefreshMigrationMediaSessionArgs = {
84638
84769
  cloudId: Scalars['ID']['input'];
84639
84770
  migrationId: Scalars['String']['input'];
@@ -84678,17 +84809,33 @@ export declare type QueryConfluence_SpaceWatchersUnfilteredArgs = {
84678
84809
  spaceId?: InputMaybe<Scalars['ID']['input']>;
84679
84810
  spaceKey?: InputMaybe<Scalars['String']['input']>;
84680
84811
  };
84812
+ export declare type QueryConfluence_SpacesForSimpleIdsArgs = {
84813
+ cloudId: Scalars['ID']['input'];
84814
+ spaceIds: Array<InputMaybe<Scalars['ID']['input']>>;
84815
+ };
84681
84816
  export declare type QueryConfluence_StorageArgs = {
84682
84817
  cloudId?: InputMaybe<Scalars['ID']['input']>;
84683
84818
  };
84819
+ export declare type QueryConfluence_SubCalendarEmbedInfoArgs = {
84820
+ cloudId: Scalars['ID']['input'];
84821
+ subCalendarIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
84822
+ };
84684
84823
  export declare type QueryConfluence_SubCalendarSubscribersCountArgs = {
84685
84824
  cloudId: Scalars['ID']['input'];
84686
84825
  subCalendarId: Scalars['ID']['input'];
84687
84826
  };
84827
+ export declare type QueryConfluence_SubCalendarWatchingStatusesArgs = {
84828
+ cloudId: Scalars['ID']['input'];
84829
+ subCalendarIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
84830
+ };
84688
84831
  export declare type QueryConfluence_TeamPresenceArgs = {
84689
84832
  cloudId: Scalars['ID']['input'];
84690
84833
  spaceId: Scalars['Long']['input'];
84691
84834
  };
84835
+ export declare type QueryConfluence_TeamPresenceContentSettingArgs = {
84836
+ cloudId: Scalars['ID']['input'];
84837
+ spaceKey: Scalars['String']['input'];
84838
+ };
84692
84839
  export declare type QueryConfluence_TeamPresenceSpaceSettingsArgs = {
84693
84840
  cloudId: Scalars['ID']['input'];
84694
84841
  spaceId: Scalars['Long']['input'];
@@ -86251,6 +86398,7 @@ export declare type QuotaInfo = {
86251
86398
  };
86252
86399
  export declare type RadarAriFieldValue = {
86253
86400
  __typename?: 'RadarAriFieldValue';
86401
+ isHidden?: Maybe<Scalars['Boolean']['output']>;
86254
86402
  value?: Maybe<RadarAriObject>;
86255
86403
  };
86256
86404
  export declare type RadarAriObject = MercuryFocusArea | RadarPosition | RadarWorker;
@@ -86300,8 +86448,14 @@ export declare type RadarFieldDefinition = {
86300
86448
  isGroupable: Scalars['Boolean']['output'];
86301
86449
  isHidden?: Maybe<Scalars['Boolean']['output']>;
86302
86450
  relativeId: Scalars['String']['output'];
86451
+ sensitivityLevel: RadarSensitivityLevel;
86303
86452
  type: RadarFieldType;
86304
86453
  };
86454
+ export declare type RadarFieldSettingsInput = {
86455
+ entity: RadarEntityType;
86456
+ relativeId: Scalars['String']['input'];
86457
+ sensitivityLevel: RadarSensitivityLevel;
86458
+ };
86305
86459
  export declare enum RadarFieldType {
86306
86460
  Ari = "ARI",
86307
86461
  Boolean = "BOOLEAN",
@@ -86398,6 +86552,11 @@ export declare type RadarGroupMetricsEdge = RadarEdge & {
86398
86552
  cursor: Scalars['String']['output'];
86399
86553
  node: RadarGroupMetrics;
86400
86554
  };
86555
+ export declare type RadarGroupPrincipal = {
86556
+ __typename?: 'RadarGroupPrincipal';
86557
+ id: Scalars['ID']['output'];
86558
+ name: Scalars['String']['output'];
86559
+ };
86401
86560
  export declare type RadarMutationResponse = {
86402
86561
  __typename?: 'RadarMutationResponse';
86403
86562
  success?: Maybe<Scalars['Boolean']['output']>;
@@ -86413,6 +86572,7 @@ export declare type RadarNonNumericFieldDefinition = RadarFieldDefinition & {
86413
86572
  isGroupable: Scalars['Boolean']['output'];
86414
86573
  isHidden?: Maybe<Scalars['Boolean']['output']>;
86415
86574
  relativeId: Scalars['String']['output'];
86575
+ sensitivityLevel: RadarSensitivityLevel;
86416
86576
  type: RadarFieldType;
86417
86577
  };
86418
86578
  export declare enum RadarNumericAppearance {
@@ -86431,6 +86591,7 @@ export declare type RadarNumericFieldDefinition = RadarFieldDefinition & {
86431
86591
  isGroupable: Scalars['Boolean']['output'];
86432
86592
  isHidden?: Maybe<Scalars['Boolean']['output']>;
86433
86593
  relativeId: Scalars['String']['output'];
86594
+ sensitivityLevel: RadarSensitivityLevel;
86434
86595
  type: RadarFieldType;
86435
86596
  };
86436
86597
  export declare type RadarNumericFieldValue = {
@@ -86443,6 +86604,7 @@ export declare type RadarPermissions = {
86443
86604
  __typename?: 'RadarPermissions';
86444
86605
  canManagersAllocate: Scalars['Boolean']['output'];
86445
86606
  canManagersViewSensitiveFields: Scalars['Boolean']['output'];
86607
+ principalsByResourceRoles?: Maybe<Array<RadarPrincipalByResourceRole>>;
86446
86608
  };
86447
86609
  export declare type RadarPermissionsInput = {
86448
86610
  canManagersAllocate: Scalars['Boolean']['input'];
@@ -86472,6 +86634,20 @@ export declare type RadarPositionEdge = RadarEdge & {
86472
86634
  cursor: Scalars['String']['output'];
86473
86635
  node: RadarPosition;
86474
86636
  };
86637
+ export declare type RadarPrincipalByResourceRole = {
86638
+ __typename?: 'RadarPrincipalByResourceRole';
86639
+ principals: Array<RadarGroupPrincipal>;
86640
+ roleId: Scalars['String']['output'];
86641
+ };
86642
+ export declare type RadarRoleAssignmentRequest = {
86643
+ principalId: Scalars['ID']['input'];
86644
+ roleId: Scalars['ID']['input'];
86645
+ };
86646
+ export declare enum RadarSensitivityLevel {
86647
+ Open = "OPEN",
86648
+ Private = "PRIVATE",
86649
+ Restricted = "RESTRICTED"
86650
+ }
86475
86651
  export declare type RadarSettings = {
86476
86652
  __typename?: 'RadarSettings';
86477
86653
  permissions: RadarPermissions;
@@ -92037,6 +92213,7 @@ export declare type SubjectsByTypeUserWithRestrictionsArgs = {
92037
92213
  };
92038
92214
  export declare type Subscription = {
92039
92215
  __typename?: 'Subscription';
92216
+ confluence_onContentModified?: Maybe<ConfluenceContentModified>;
92040
92217
  confluence_onContentUpdated?: Maybe<ConfluenceContent>;
92041
92218
  devOps?: Maybe<AriGraphSubscriptions>;
92042
92219
  devai_onAutodevJobLogGroupsUpdated?: Maybe<DevAiAutodevLogGroupConnection>;
@@ -92053,6 +92230,9 @@ export declare type Subscription = {
92053
92230
  testing?: Maybe<TestingSubscription>;
92054
92231
  trello: TrelloSubscriptionApi;
92055
92232
  };
92233
+ export declare type SubscriptionConfluence_OnContentModifiedArgs = {
92234
+ id: Scalars['ID']['input'];
92235
+ };
92056
92236
  export declare type SubscriptionConfluence_OnContentUpdatedArgs = {
92057
92237
  id: Scalars['ID']['input'];
92058
92238
  };
@@ -97953,14 +98133,9 @@ export declare type UpdatePageExtensionInput = {
97953
98133
  value: Scalars['String']['input'];
97954
98134
  };
97955
98135
  export declare type UpdatePageInput = {
97956
- body?: InputMaybe<PageBodyInput>;
97957
98136
  extensions?: InputMaybe<Array<InputMaybe<UpdatePageExtensionInput>>>;
97958
- mediaAttachments?: InputMaybe<Array<MediaAttachmentInput>>;
97959
- minorEdit?: InputMaybe<Scalars['Boolean']['input']>;
97960
98137
  pageId: Scalars['ID']['input'];
97961
98138
  restrictions?: InputMaybe<PageRestrictionsInput>;
97962
- status?: InputMaybe<PageStatusInput>;
97963
- title?: InputMaybe<Scalars['String']['input']>;
97964
98139
  };
97965
98140
  export declare type UpdatePageOwnersInput = {
97966
98141
  ownerId: Scalars['ID']['input'];
@@ -98395,6 +98570,7 @@ export declare type UserPreferences = {
98395
98570
  feedTab?: Maybe<Scalars['String']['output']>;
98396
98571
  feedType?: Maybe<FeedType>;
98397
98572
  globalPageCardAppearancePreference: PagesDisplayPersistenceOption;
98573
+ highlightOptionPanelEnabled: Scalars['Boolean']['output'];
98398
98574
  homePagesDisplayView: PagesDisplayPersistenceOption;
98399
98575
  homeWidgets: Array<HomeWidget>;
98400
98576
  isHomeOnboardingDismissed: Scalars['Boolean']['output'];