@forge/cli-shared 6.8.0-next.27 → 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 +13 -0
- package/out/graphql/graphql-types.d.ts +238 -14
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +13 -4
- package/out/ui/text.d.ts +1 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +2 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
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
|
+
|
|
10
|
+
## 6.8.0-next.28
|
|
11
|
+
|
|
12
|
+
### Minor Changes
|
|
13
|
+
|
|
14
|
+
- f12ec8a: Providing request id in forge cli for installation/upgrade failures to contact support with faster traceability
|
|
15
|
+
|
|
3
16
|
## 6.8.0-next.27
|
|
4
17
|
|
|
5
18
|
### Patch 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
|
|
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
|
|
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
|
-
|
|
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'];
|
|
@@ -24975,7 +25042,7 @@ export declare type ExternalAssociationEdge = {
|
|
|
24975
25042
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24976
25043
|
node?: Maybe<ExternalAssociation>;
|
|
24977
25044
|
};
|
|
24978
|
-
export declare type ExternalAssociationEntity = DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSpace | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraIssue | JiraProject | JiraVersion | ThirdPartyUser;
|
|
25045
|
+
export declare type ExternalAssociationEntity = DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSpace | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraIssue | JiraProject | JiraVersion | ThirdPartyUser;
|
|
24979
25046
|
export declare type ExternalAttachment = {
|
|
24980
25047
|
__typename?: 'ExternalAttachment';
|
|
24981
25048
|
byteSize?: Maybe<Scalars['Long']['output']>;
|
|
@@ -25399,6 +25466,7 @@ export declare type ExternalDocument = Node & {
|
|
|
25399
25466
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
25400
25467
|
hasChildren?: Maybe<Scalars['Boolean']['output']>;
|
|
25401
25468
|
id: Scalars['ID']['output'];
|
|
25469
|
+
labels?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
25402
25470
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
25403
25471
|
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
25404
25472
|
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
@@ -25454,6 +25522,7 @@ export declare type ExternalEntities = {
|
|
|
25454
25522
|
message?: Maybe<Array<Maybe<ExternalMessage>>>;
|
|
25455
25523
|
organisation?: Maybe<Array<Maybe<ExternalOrganisation>>>;
|
|
25456
25524
|
position?: Maybe<Array<Maybe<ExternalPosition>>>;
|
|
25525
|
+
project?: Maybe<Array<Maybe<ExternalProject>>>;
|
|
25457
25526
|
pullRequest?: Maybe<Array<Maybe<ExternalPullRequest>>>;
|
|
25458
25527
|
remoteLink?: Maybe<Array<Maybe<ExternalRemoteLink>>>;
|
|
25459
25528
|
repository?: Maybe<Array<Maybe<ExternalRepository>>>;
|
|
@@ -25463,7 +25532,7 @@ export declare type ExternalEntities = {
|
|
|
25463
25532
|
workItem?: Maybe<Array<Maybe<ExternalWorkItem>>>;
|
|
25464
25533
|
worker?: Maybe<Array<Maybe<ExternalWorker>>>;
|
|
25465
25534
|
};
|
|
25466
|
-
export declare type ExternalEntity = ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSpace | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker;
|
|
25535
|
+
export declare type ExternalEntity = ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSpace | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker;
|
|
25467
25536
|
export declare type ExternalEnvironment = {
|
|
25468
25537
|
__typename?: 'ExternalEnvironment';
|
|
25469
25538
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -25644,10 +25713,44 @@ export declare type ExternalPosition = Node & {
|
|
|
25644
25713
|
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
25645
25714
|
url?: Maybe<Scalars['String']['output']>;
|
|
25646
25715
|
};
|
|
25647
|
-
export declare type ExternalProject = {
|
|
25716
|
+
export declare type ExternalProject = Node & {
|
|
25648
25717
|
__typename?: 'ExternalProject';
|
|
25649
|
-
|
|
25718
|
+
assignee?: Maybe<ExternalUser>;
|
|
25719
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
25720
|
+
attachments?: Maybe<Array<Maybe<ExternalProjectAttachment>>>;
|
|
25721
|
+
container?: Maybe<ExternalEntity>;
|
|
25722
|
+
containerId?: Maybe<Scalars['ID']['output']>;
|
|
25723
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
25724
|
+
createdBy?: Maybe<ExternalUser>;
|
|
25725
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
25726
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
25727
|
+
dueDate?: Maybe<Scalars['String']['output']>;
|
|
25728
|
+
environment?: Maybe<Scalars['String']['output']>;
|
|
25729
|
+
externalId?: Maybe<Scalars['String']['output']>;
|
|
25730
|
+
id: Scalars['ID']['output'];
|
|
25731
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
25732
|
+
labels?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
25733
|
+
largeDescription?: Maybe<ExternalLargeContent>;
|
|
25734
|
+
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
25735
|
+
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
25650
25736
|
name?: Maybe<Scalars['String']['output']>;
|
|
25737
|
+
priority?: Maybe<Scalars['String']['output']>;
|
|
25738
|
+
provider?: Maybe<ExternalProvider>;
|
|
25739
|
+
resolution?: Maybe<Scalars['String']['output']>;
|
|
25740
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
25741
|
+
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
25742
|
+
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
25743
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
25744
|
+
votesCount?: Maybe<Scalars['Long']['output']>;
|
|
25745
|
+
watchersCount?: Maybe<Scalars['Long']['output']>;
|
|
25746
|
+
};
|
|
25747
|
+
export declare type ExternalProjectAttachment = {
|
|
25748
|
+
__typename?: 'ExternalProjectAttachment';
|
|
25749
|
+
byteSize?: Maybe<Scalars['Long']['output']>;
|
|
25750
|
+
mimeType?: Maybe<Scalars['String']['output']>;
|
|
25751
|
+
thumbnailUrl?: Maybe<Scalars['String']['output']>;
|
|
25752
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
25753
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
25651
25754
|
};
|
|
25652
25755
|
export declare type ExternalProvider = {
|
|
25653
25756
|
__typename?: 'ExternalProvider';
|
|
@@ -53089,6 +53192,7 @@ export declare type InlineComment = CommentLocation & {
|
|
|
53089
53192
|
};
|
|
53090
53193
|
export declare type InlineCommentResolveProperties = {
|
|
53091
53194
|
__typename?: 'InlineCommentResolveProperties';
|
|
53195
|
+
isDangling: Scalars['Boolean']['output'];
|
|
53092
53196
|
resolved: Scalars['Boolean']['output'];
|
|
53093
53197
|
resolvedByDangling: Scalars['Boolean']['output'];
|
|
53094
53198
|
resolvedFriendlyDate?: Maybe<Scalars['String']['output']>;
|
|
@@ -61869,6 +61973,7 @@ export declare type JiraMutation = {
|
|
|
61869
61973
|
setMostRecentlyViewedBoard?: Maybe<JiraSetMostRecentlyViewedBoardPayload>;
|
|
61870
61974
|
setPlanAutoSchedulerEnabled?: Maybe<JiraEnablePlanFeaturePayloadGraphQl>;
|
|
61871
61975
|
setPlanMultiScenarioEnabled?: Maybe<JiraEnablePlanFeaturePayloadGraphQl>;
|
|
61976
|
+
setPlanReleaseEnabled?: Maybe<JiraEnablePlanFeaturePayloadGraphQl>;
|
|
61872
61977
|
setUserBroadcastMessageDismissed?: Maybe<JiraUserBroadcastMessageActionPayload>;
|
|
61873
61978
|
sprintUpdate?: Maybe<JiraSprintMutationPayload>;
|
|
61874
61979
|
submitBulkOperation?: Maybe<JiraSubmitBulkOperationPayload>;
|
|
@@ -62325,6 +62430,9 @@ export declare type JiraMutationSetPlanAutoSchedulerEnabledArgs = {
|
|
|
62325
62430
|
export declare type JiraMutationSetPlanMultiScenarioEnabledArgs = {
|
|
62326
62431
|
input?: InputMaybe<JiraPlanMultiScenarioFeatureMutationInput>;
|
|
62327
62432
|
};
|
|
62433
|
+
export declare type JiraMutationSetPlanReleaseEnabledArgs = {
|
|
62434
|
+
input?: InputMaybe<JiraPlanReleaseFeatureMutationInput>;
|
|
62435
|
+
};
|
|
62328
62436
|
export declare type JiraMutationSetUserBroadcastMessageDismissedArgs = {
|
|
62329
62437
|
cloudId: Scalars['ID']['input'];
|
|
62330
62438
|
id: Scalars['ID']['input'];
|
|
@@ -63460,6 +63568,7 @@ export declare type JiraPlan = Node & {
|
|
|
63460
63568
|
isAutoSchedulerEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
63461
63569
|
isMultiScenarioEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
63462
63570
|
isReadOnly?: Maybe<Scalars['Boolean']['output']>;
|
|
63571
|
+
isReleaseEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
63463
63572
|
lastViewedTimestamp?: Maybe<Scalars['Long']['output']>;
|
|
63464
63573
|
owner?: Maybe<User>;
|
|
63465
63574
|
planId?: Maybe<Scalars['Long']['output']>;
|
|
@@ -63484,6 +63593,10 @@ export declare type JiraPlanMultiScenarioFeatureMutationInput = {
|
|
|
63484
63593
|
planId: Scalars['ID']['input'];
|
|
63485
63594
|
scenarioId: Scalars['ID']['input'];
|
|
63486
63595
|
};
|
|
63596
|
+
export declare type JiraPlanReleaseFeatureMutationInput = {
|
|
63597
|
+
enabled: Scalars['Boolean']['input'];
|
|
63598
|
+
planId: Scalars['ID']['input'];
|
|
63599
|
+
};
|
|
63487
63600
|
export declare enum JiraPlanStatus {
|
|
63488
63601
|
Active = "ACTIVE",
|
|
63489
63602
|
Archived = "ARCHIVED",
|
|
@@ -67890,6 +68003,7 @@ export declare type JiraSetBoardIssueCardCoverPayload = Payload & {
|
|
|
67890
68003
|
__typename?: 'JiraSetBoardIssueCardCoverPayload';
|
|
67891
68004
|
boardView?: Maybe<JiraBoardView>;
|
|
67892
68005
|
errors?: Maybe<Array<MutationError>>;
|
|
68006
|
+
issue?: Maybe<JiraIssue>;
|
|
67893
68007
|
success: Scalars['Boolean']['output'];
|
|
67894
68008
|
};
|
|
67895
68009
|
export declare type JiraSetBoardViewCardFieldSelectedInput = {
|
|
@@ -72426,6 +72540,9 @@ export declare enum KnowledgeDiscoveryKeyPhraseInputTextFormat {
|
|
|
72426
72540
|
Plain = "PLAIN"
|
|
72427
72541
|
}
|
|
72428
72542
|
export declare type KnowledgeDiscoveryKeyPhrasesResult = KnowledgeDiscoveryKeyPhraseConnection | QueryError;
|
|
72543
|
+
export declare type KnowledgeDiscoveryMetadata = {
|
|
72544
|
+
numberOfRecentDocuments?: InputMaybe<Scalars['Int']['input']>;
|
|
72545
|
+
};
|
|
72429
72546
|
export declare type KnowledgeDiscoveryMutationApi = {
|
|
72430
72547
|
__typename?: 'KnowledgeDiscoveryMutationApi';
|
|
72431
72548
|
approveBookmarkSuggestion?: Maybe<KnowledgeDiscoveryApproveAdminhubBookmarkSuggestionPayload>;
|
|
@@ -72562,7 +72679,7 @@ export declare type KnowledgeDiscoveryQueryApiSearchUserArgs = {
|
|
|
72562
72679
|
};
|
|
72563
72680
|
export declare type KnowledgeDiscoveryQueryApiSmartAnswersRouteArgs = {
|
|
72564
72681
|
locale: Scalars['String']['input'];
|
|
72565
|
-
metadata?: InputMaybe<
|
|
72682
|
+
metadata?: InputMaybe<KnowledgeDiscoveryMetadata>;
|
|
72566
72683
|
orgId?: InputMaybe<Scalars['String']['input']>;
|
|
72567
72684
|
query: Scalars['String']['input'];
|
|
72568
72685
|
siteId: Scalars['String']['input'];
|
|
@@ -73159,9 +73276,12 @@ export declare enum LoomUserStatus {
|
|
|
73159
73276
|
}
|
|
73160
73277
|
export declare type LoomVideo = Node & {
|
|
73161
73278
|
__typename?: 'LoomVideo';
|
|
73279
|
+
collaborators?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
73162
73280
|
description?: Maybe<Scalars['String']['output']>;
|
|
73163
73281
|
id: Scalars['ID']['output'];
|
|
73164
73282
|
isArchived: Scalars['Boolean']['output'];
|
|
73283
|
+
isMeeting?: Maybe<Scalars['Boolean']['output']>;
|
|
73284
|
+
meetingAri?: Maybe<Scalars['String']['output']>;
|
|
73165
73285
|
name: Scalars['String']['output'];
|
|
73166
73286
|
owner?: Maybe<User>;
|
|
73167
73287
|
ownerId?: Maybe<Scalars['String']['output']>;
|
|
@@ -77957,6 +78077,7 @@ export declare type Mutation = {
|
|
|
77957
78077
|
confluenceV2_deletePage?: Maybe<Scalars['Boolean']['output']>;
|
|
77958
78078
|
confluenceV2_updatePage?: Maybe<ConfluenceV2UpdatePagePayload>;
|
|
77959
78079
|
confluence_bulkNestedConvertToLiveDocs?: Maybe<ConfluenceBulkNestedConvertToLiveDocsPayload>;
|
|
78080
|
+
confluence_copySpaceSecurityConfiguration?: Maybe<ConfluenceCopySpaceSecurityConfigurationPayload>;
|
|
77960
78081
|
confluence_createCustomRole?: Maybe<ConfluenceCreateCustomRolePayload>;
|
|
77961
78082
|
confluence_createPdfExportTaskForBulkContent?: Maybe<ConfluenceCreatePdfExportTaskForBulkContentPayload>;
|
|
77962
78083
|
confluence_createPdfExportTaskForSingleContent?: Maybe<ConfluenceCreatePdfExportTaskForSingleContentPayload>;
|
|
@@ -77971,6 +78092,8 @@ export declare type Mutation = {
|
|
|
77971
78092
|
confluence_makeSubCalendarPrivateUrl?: Maybe<ConfluenceMakeSubCalendarPrivateUrlPayload>;
|
|
77972
78093
|
confluence_reopenComment?: Maybe<ConfluenceReopenCommentPayload>;
|
|
77973
78094
|
confluence_resolveComments?: Maybe<ConfluenceResolveCommentsPayload>;
|
|
78095
|
+
confluence_resolveCommentsByContentId?: Maybe<ConfluenceResolveCommentByContentIdPayload>;
|
|
78096
|
+
confluence_setSubCalendarReminder?: Maybe<ConfluenceSetSubCalendarReminderPayload>;
|
|
77974
78097
|
confluence_unwatchSubCalendar?: Maybe<ConfluenceUnwatchSubCalendarPayload>;
|
|
77975
78098
|
confluence_updateCustomRole?: Maybe<ConfluenceUpdateCustomRolePayload>;
|
|
77976
78099
|
confluence_updateSubCalendarHiddenEvents?: Maybe<ConfluenceUpdateSubCalendarHiddenEventsPayload>;
|
|
@@ -78173,6 +78296,9 @@ export declare type Mutation = {
|
|
|
78173
78296
|
publicLinkPagesAdminAction?: Maybe<PublicLinkPagesAdminActionPayload>;
|
|
78174
78297
|
publicLinkSpacesAction?: Maybe<PublicLinkSpacesActionPayload>;
|
|
78175
78298
|
publishReleaseNote: ContentPlatformReleaseNote;
|
|
78299
|
+
radar_createRoleAssignment?: Maybe<RadarMutationResponse>;
|
|
78300
|
+
radar_deleteRoleAssignment?: Maybe<RadarMutationResponse>;
|
|
78301
|
+
radar_updateFieldSettings?: Maybe<RadarMutationResponse>;
|
|
78176
78302
|
radar_updateFocusAreaMappings?: Maybe<RadarMutationResponse>;
|
|
78177
78303
|
radar_updateWorkspaceSettings?: Maybe<RadarMutationResponse>;
|
|
78178
78304
|
rankCardParent?: Maybe<GenericMutationResponse>;
|
|
@@ -78925,6 +79051,10 @@ export declare type MutationConfluence_BulkNestedConvertToLiveDocsArgs = {
|
|
|
78925
79051
|
cloudId: Scalars['ID']['input'];
|
|
78926
79052
|
input: Array<InputMaybe<NestedPageInput>>;
|
|
78927
79053
|
};
|
|
79054
|
+
export declare type MutationConfluence_CopySpaceSecurityConfigurationArgs = {
|
|
79055
|
+
cloudId: Scalars['ID']['input'];
|
|
79056
|
+
input: ConfluenceCopySpaceSecurityConfigurationInput;
|
|
79057
|
+
};
|
|
78928
79058
|
export declare type MutationConfluence_CreateCustomRoleArgs = {
|
|
78929
79059
|
cloudId: Scalars['ID']['input'];
|
|
78930
79060
|
input: ConfluenceCreateCustomRoleInput;
|
|
@@ -78979,6 +79109,14 @@ export declare type MutationConfluence_ResolveCommentsArgs = {
|
|
|
78979
79109
|
cloudId: Scalars['ID']['input'];
|
|
78980
79110
|
commentIds: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
78981
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
|
+
};
|
|
78982
79120
|
export declare type MutationConfluence_UnwatchSubCalendarArgs = {
|
|
78983
79121
|
cloudId: Scalars['ID']['input'];
|
|
78984
79122
|
input: ConfluenceUnwatchSubCalendarInput;
|
|
@@ -79585,6 +79723,18 @@ export declare type MutationPublicLinkSpacesActionArgs = {
|
|
|
79585
79723
|
export declare type MutationPublishReleaseNoteArgs = {
|
|
79586
79724
|
id: Scalars['String']['input'];
|
|
79587
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
|
+
};
|
|
79588
79738
|
export declare type MutationRadar_UpdateFocusAreaMappingsArgs = {
|
|
79589
79739
|
cloudId: Scalars['ID']['input'];
|
|
79590
79740
|
input: Array<RadarFocusAreaMappingsInput>;
|
|
@@ -82933,20 +83083,29 @@ export declare type Query = {
|
|
|
82933
83083
|
confluence_calendarPreference?: Maybe<ConfluenceCalendarPreference>;
|
|
82934
83084
|
confluence_calendarTimezones?: Maybe<ConfluenceCalendarTimezones>;
|
|
82935
83085
|
confluence_contentWatchersUnfiltered?: Maybe<PaginatedPersonList>;
|
|
83086
|
+
confluence_contentsForSimpleIds?: Maybe<Array<Maybe<Content>>>;
|
|
82936
83087
|
confluence_deletedUserAccountIds?: Maybe<ConfluenceDeletedUser>;
|
|
82937
83088
|
confluence_empty?: Maybe<Scalars['String']['output']>;
|
|
82938
83089
|
confluence_externalCollaboratorsByCriteria?: Maybe<ConfluencePersonConnection>;
|
|
83090
|
+
confluence_hasClearPermissionForSpace?: Maybe<Scalars['Boolean']['output']>;
|
|
83091
|
+
confluence_hasDivergedFromDefaultSpacePermissions?: Maybe<Scalars['Boolean']['output']>;
|
|
82939
83092
|
confluence_mutationsPlaceholderQuery?: Maybe<Scalars['Boolean']['output']>;
|
|
83093
|
+
confluence_pdfExportDownloadLink?: Maybe<ConfluencePdfExportDownloadLink>;
|
|
82940
83094
|
confluence_pdfExportTask?: Maybe<ConfluencePdfExportTask>;
|
|
83095
|
+
confluence_publicLinkSpaceHomePage?: Maybe<PublicLinkPage>;
|
|
82941
83096
|
confluence_refreshMigrationMediaSession?: Maybe<ContentMediaSession>;
|
|
82942
83097
|
confluence_search?: Maybe<ConfluenceSearchConnection>;
|
|
82943
83098
|
confluence_searchTeamLabels?: Maybe<LabelSearchResults>;
|
|
82944
83099
|
confluence_searchUser?: Maybe<ConfluenceSearchConnection>;
|
|
82945
83100
|
confluence_spaceMediaSession?: Maybe<ContentMediaSession>;
|
|
82946
83101
|
confluence_spaceWatchersUnfiltered?: Maybe<PaginatedPersonList>;
|
|
83102
|
+
confluence_spacesForSimpleIds?: Maybe<Array<Maybe<Space>>>;
|
|
82947
83103
|
confluence_storage?: Maybe<ConfluenceStorage>;
|
|
83104
|
+
confluence_subCalendarEmbedInfo?: Maybe<Array<Maybe<ConfluenceSubCalendarEmbedInfo>>>;
|
|
82948
83105
|
confluence_subCalendarSubscribersCount?: Maybe<ConfluenceSubCalendarSubscribersCount>;
|
|
83106
|
+
confluence_subCalendarWatchingStatuses?: Maybe<Array<Maybe<ConfluenceSubCalendarWatchingStatus>>>;
|
|
82949
83107
|
confluence_teamPresence?: Maybe<ConfluenceTeamPresence>;
|
|
83108
|
+
confluence_teamPresenceContentSetting?: Maybe<ConfluenceTeamPresence>;
|
|
82950
83109
|
confluence_teamPresenceSpaceSettings?: Maybe<ConfluenceTeamPresenceSpaceSettings>;
|
|
82951
83110
|
confluence_template?: Maybe<ContentTemplate>;
|
|
82952
83111
|
confluence_tenantContext?: Maybe<ConfluenceTenantContext>;
|
|
@@ -84563,6 +84722,10 @@ export declare type QueryConfluence_ContentWatchersUnfilteredArgs = {
|
|
|
84563
84722
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
84564
84723
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
84565
84724
|
};
|
|
84725
|
+
export declare type QueryConfluence_ContentsForSimpleIdsArgs = {
|
|
84726
|
+
cloudId: Scalars['ID']['input'];
|
|
84727
|
+
ids: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
84728
|
+
};
|
|
84566
84729
|
export declare type QueryConfluence_DeletedUserAccountIdsArgs = {
|
|
84567
84730
|
cloudId: Scalars['ID']['input'];
|
|
84568
84731
|
spaceKey: Scalars['String']['input'];
|
|
@@ -84582,10 +84745,26 @@ export declare type QueryConfluence_ExternalCollaboratorsByCriteriaArgs = {
|
|
|
84582
84745
|
spaceAssignmentType?: InputMaybe<SpaceAssignmentType>;
|
|
84583
84746
|
spaceIds?: InputMaybe<Array<InputMaybe<Scalars['Long']['input']>>>;
|
|
84584
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
|
+
};
|
|
84585
84760
|
export declare type QueryConfluence_PdfExportTaskArgs = {
|
|
84586
84761
|
cloudId: Scalars['ID']['input'];
|
|
84587
84762
|
id: Scalars['ID']['input'];
|
|
84588
84763
|
};
|
|
84764
|
+
export declare type QueryConfluence_PublicLinkSpaceHomePageArgs = {
|
|
84765
|
+
cloudId: Scalars['ID']['input'];
|
|
84766
|
+
spaceKey: Scalars['String']['input'];
|
|
84767
|
+
};
|
|
84589
84768
|
export declare type QueryConfluence_RefreshMigrationMediaSessionArgs = {
|
|
84590
84769
|
cloudId: Scalars['ID']['input'];
|
|
84591
84770
|
migrationId: Scalars['String']['input'];
|
|
@@ -84630,17 +84809,33 @@ export declare type QueryConfluence_SpaceWatchersUnfilteredArgs = {
|
|
|
84630
84809
|
spaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
84631
84810
|
spaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
84632
84811
|
};
|
|
84812
|
+
export declare type QueryConfluence_SpacesForSimpleIdsArgs = {
|
|
84813
|
+
cloudId: Scalars['ID']['input'];
|
|
84814
|
+
spaceIds: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
84815
|
+
};
|
|
84633
84816
|
export declare type QueryConfluence_StorageArgs = {
|
|
84634
84817
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
84635
84818
|
};
|
|
84819
|
+
export declare type QueryConfluence_SubCalendarEmbedInfoArgs = {
|
|
84820
|
+
cloudId: Scalars['ID']['input'];
|
|
84821
|
+
subCalendarIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
84822
|
+
};
|
|
84636
84823
|
export declare type QueryConfluence_SubCalendarSubscribersCountArgs = {
|
|
84637
84824
|
cloudId: Scalars['ID']['input'];
|
|
84638
84825
|
subCalendarId: Scalars['ID']['input'];
|
|
84639
84826
|
};
|
|
84827
|
+
export declare type QueryConfluence_SubCalendarWatchingStatusesArgs = {
|
|
84828
|
+
cloudId: Scalars['ID']['input'];
|
|
84829
|
+
subCalendarIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
84830
|
+
};
|
|
84640
84831
|
export declare type QueryConfluence_TeamPresenceArgs = {
|
|
84641
84832
|
cloudId: Scalars['ID']['input'];
|
|
84642
84833
|
spaceId: Scalars['Long']['input'];
|
|
84643
84834
|
};
|
|
84835
|
+
export declare type QueryConfluence_TeamPresenceContentSettingArgs = {
|
|
84836
|
+
cloudId: Scalars['ID']['input'];
|
|
84837
|
+
spaceKey: Scalars['String']['input'];
|
|
84838
|
+
};
|
|
84644
84839
|
export declare type QueryConfluence_TeamPresenceSpaceSettingsArgs = {
|
|
84645
84840
|
cloudId: Scalars['ID']['input'];
|
|
84646
84841
|
spaceId: Scalars['Long']['input'];
|
|
@@ -86203,6 +86398,7 @@ export declare type QuotaInfo = {
|
|
|
86203
86398
|
};
|
|
86204
86399
|
export declare type RadarAriFieldValue = {
|
|
86205
86400
|
__typename?: 'RadarAriFieldValue';
|
|
86401
|
+
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
86206
86402
|
value?: Maybe<RadarAriObject>;
|
|
86207
86403
|
};
|
|
86208
86404
|
export declare type RadarAriObject = MercuryFocusArea | RadarPosition | RadarWorker;
|
|
@@ -86252,8 +86448,14 @@ export declare type RadarFieldDefinition = {
|
|
|
86252
86448
|
isGroupable: Scalars['Boolean']['output'];
|
|
86253
86449
|
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
86254
86450
|
relativeId: Scalars['String']['output'];
|
|
86451
|
+
sensitivityLevel: RadarSensitivityLevel;
|
|
86255
86452
|
type: RadarFieldType;
|
|
86256
86453
|
};
|
|
86454
|
+
export declare type RadarFieldSettingsInput = {
|
|
86455
|
+
entity: RadarEntityType;
|
|
86456
|
+
relativeId: Scalars['String']['input'];
|
|
86457
|
+
sensitivityLevel: RadarSensitivityLevel;
|
|
86458
|
+
};
|
|
86257
86459
|
export declare enum RadarFieldType {
|
|
86258
86460
|
Ari = "ARI",
|
|
86259
86461
|
Boolean = "BOOLEAN",
|
|
@@ -86350,6 +86552,11 @@ export declare type RadarGroupMetricsEdge = RadarEdge & {
|
|
|
86350
86552
|
cursor: Scalars['String']['output'];
|
|
86351
86553
|
node: RadarGroupMetrics;
|
|
86352
86554
|
};
|
|
86555
|
+
export declare type RadarGroupPrincipal = {
|
|
86556
|
+
__typename?: 'RadarGroupPrincipal';
|
|
86557
|
+
id: Scalars['ID']['output'];
|
|
86558
|
+
name: Scalars['String']['output'];
|
|
86559
|
+
};
|
|
86353
86560
|
export declare type RadarMutationResponse = {
|
|
86354
86561
|
__typename?: 'RadarMutationResponse';
|
|
86355
86562
|
success?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -86365,6 +86572,7 @@ export declare type RadarNonNumericFieldDefinition = RadarFieldDefinition & {
|
|
|
86365
86572
|
isGroupable: Scalars['Boolean']['output'];
|
|
86366
86573
|
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
86367
86574
|
relativeId: Scalars['String']['output'];
|
|
86575
|
+
sensitivityLevel: RadarSensitivityLevel;
|
|
86368
86576
|
type: RadarFieldType;
|
|
86369
86577
|
};
|
|
86370
86578
|
export declare enum RadarNumericAppearance {
|
|
@@ -86383,6 +86591,7 @@ export declare type RadarNumericFieldDefinition = RadarFieldDefinition & {
|
|
|
86383
86591
|
isGroupable: Scalars['Boolean']['output'];
|
|
86384
86592
|
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
86385
86593
|
relativeId: Scalars['String']['output'];
|
|
86594
|
+
sensitivityLevel: RadarSensitivityLevel;
|
|
86386
86595
|
type: RadarFieldType;
|
|
86387
86596
|
};
|
|
86388
86597
|
export declare type RadarNumericFieldValue = {
|
|
@@ -86395,6 +86604,7 @@ export declare type RadarPermissions = {
|
|
|
86395
86604
|
__typename?: 'RadarPermissions';
|
|
86396
86605
|
canManagersAllocate: Scalars['Boolean']['output'];
|
|
86397
86606
|
canManagersViewSensitiveFields: Scalars['Boolean']['output'];
|
|
86607
|
+
principalsByResourceRoles?: Maybe<Array<RadarPrincipalByResourceRole>>;
|
|
86398
86608
|
};
|
|
86399
86609
|
export declare type RadarPermissionsInput = {
|
|
86400
86610
|
canManagersAllocate: Scalars['Boolean']['input'];
|
|
@@ -86424,6 +86634,20 @@ export declare type RadarPositionEdge = RadarEdge & {
|
|
|
86424
86634
|
cursor: Scalars['String']['output'];
|
|
86425
86635
|
node: RadarPosition;
|
|
86426
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
|
+
}
|
|
86427
86651
|
export declare type RadarSettings = {
|
|
86428
86652
|
__typename?: 'RadarSettings';
|
|
86429
86653
|
permissions: RadarPermissions;
|
|
@@ -88555,7 +88779,7 @@ export declare type SearchResultCompassComponent = SearchResult & {
|
|
|
88555
88779
|
type: SearchResultType;
|
|
88556
88780
|
url: Scalars['URL']['output'];
|
|
88557
88781
|
};
|
|
88558
|
-
export declare type SearchResultEntity = ConfluencePage | ConfluenceSpace | DevOpsService | ExternalBranch | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSpace | ExternalVideo | ExternalVulnerability | ExternalWorkItem | JiraIssue | JiraPostIncidentReviewLink | JiraProject | JiraVersion | OpsgenieTeam | ThirdPartySecurityContainer | ThirdPartySecurityWorkspace | TownsquareComment | TownsquareGoal | TownsquareProject;
|
|
88782
|
+
export declare type SearchResultEntity = ConfluencePage | ConfluenceSpace | DevOpsService | ExternalBranch | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSpace | ExternalVideo | ExternalVulnerability | ExternalWorkItem | JiraIssue | JiraPostIncidentReviewLink | JiraProject | JiraVersion | OpsgenieTeam | ThirdPartySecurityContainer | ThirdPartySecurityWorkspace | TownsquareComment | TownsquareGoal | TownsquareProject;
|
|
88559
88783
|
export declare type SearchResultFederated = SearchResult & {
|
|
88560
88784
|
__typename?: 'SearchResultFederated';
|
|
88561
88785
|
description: Scalars['String']['output'];
|
|
@@ -91989,6 +92213,7 @@ export declare type SubjectsByTypeUserWithRestrictionsArgs = {
|
|
|
91989
92213
|
};
|
|
91990
92214
|
export declare type Subscription = {
|
|
91991
92215
|
__typename?: 'Subscription';
|
|
92216
|
+
confluence_onContentModified?: Maybe<ConfluenceContentModified>;
|
|
91992
92217
|
confluence_onContentUpdated?: Maybe<ConfluenceContent>;
|
|
91993
92218
|
devOps?: Maybe<AriGraphSubscriptions>;
|
|
91994
92219
|
devai_onAutodevJobLogGroupsUpdated?: Maybe<DevAiAutodevLogGroupConnection>;
|
|
@@ -92005,6 +92230,9 @@ export declare type Subscription = {
|
|
|
92005
92230
|
testing?: Maybe<TestingSubscription>;
|
|
92006
92231
|
trello: TrelloSubscriptionApi;
|
|
92007
92232
|
};
|
|
92233
|
+
export declare type SubscriptionConfluence_OnContentModifiedArgs = {
|
|
92234
|
+
id: Scalars['ID']['input'];
|
|
92235
|
+
};
|
|
92008
92236
|
export declare type SubscriptionConfluence_OnContentUpdatedArgs = {
|
|
92009
92237
|
id: Scalars['ID']['input'];
|
|
92010
92238
|
};
|
|
@@ -97905,14 +98133,9 @@ export declare type UpdatePageExtensionInput = {
|
|
|
97905
98133
|
value: Scalars['String']['input'];
|
|
97906
98134
|
};
|
|
97907
98135
|
export declare type UpdatePageInput = {
|
|
97908
|
-
body?: InputMaybe<PageBodyInput>;
|
|
97909
98136
|
extensions?: InputMaybe<Array<InputMaybe<UpdatePageExtensionInput>>>;
|
|
97910
|
-
mediaAttachments?: InputMaybe<Array<MediaAttachmentInput>>;
|
|
97911
|
-
minorEdit?: InputMaybe<Scalars['Boolean']['input']>;
|
|
97912
98137
|
pageId: Scalars['ID']['input'];
|
|
97913
98138
|
restrictions?: InputMaybe<PageRestrictionsInput>;
|
|
97914
|
-
status?: InputMaybe<PageStatusInput>;
|
|
97915
|
-
title?: InputMaybe<Scalars['String']['input']>;
|
|
97916
98139
|
};
|
|
97917
98140
|
export declare type UpdatePageOwnersInput = {
|
|
97918
98141
|
ownerId: Scalars['ID']['input'];
|
|
@@ -98347,6 +98570,7 @@ export declare type UserPreferences = {
|
|
|
98347
98570
|
feedTab?: Maybe<Scalars['String']['output']>;
|
|
98348
98571
|
feedType?: Maybe<FeedType>;
|
|
98349
98572
|
globalPageCardAppearancePreference: PagesDisplayPersistenceOption;
|
|
98573
|
+
highlightOptionPanelEnabled: Scalars['Boolean']['output'];
|
|
98350
98574
|
homePagesDisplayView: PagesDisplayPersistenceOption;
|
|
98351
98575
|
homeWidgets: Array<HomeWidget>;
|
|
98352
98576
|
isHomeOnboardingDismissed: Scalars['Boolean']['output'];
|