@forge/cli-shared 8.0.1-next.4 → 8.0.1-next.5
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 +8 -0
- package/out/graphql/graphql-types.d.ts +372 -36
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +56 -33
- package/package.json +2 -2
|
@@ -3420,6 +3420,7 @@ export declare type BlockedAccessEmpowerment = {
|
|
|
3420
3420
|
};
|
|
3421
3421
|
export declare type BlockedAccessRestrictions = {
|
|
3422
3422
|
__typename?: 'BlockedAccessRestrictions';
|
|
3423
|
+
blockedAccessAssignableSpaceRolesIntersection: Array<Maybe<ConfluenceBlockedAccessAssignableSpaceRole>>;
|
|
3423
3424
|
blockedAccessEmpowerment: Array<Maybe<BlockedAccessEmpowerment>>;
|
|
3424
3425
|
blockedAccessRestrictionSummary: Array<Maybe<SubjectRestrictionHierarchySummary>>;
|
|
3425
3426
|
canFixRestrictionsForAllSubjects: Scalars['Boolean']['output'];
|
|
@@ -5214,6 +5215,7 @@ export declare type CcpQueryApi = {
|
|
|
5214
5215
|
catalogAccounts?: Maybe<Array<Maybe<CcpCatalogAccount>>>;
|
|
5215
5216
|
entitlement?: Maybe<CcpEntitlement>;
|
|
5216
5217
|
entitlementTemplates?: Maybe<Array<Maybe<CcpEntitlementTemplate>>>;
|
|
5218
|
+
entitlementV2?: Maybe<CcpEntitlement>;
|
|
5217
5219
|
entitlements?: Maybe<Array<Maybe<CcpEntitlement>>>;
|
|
5218
5220
|
entitlementsV2?: Maybe<Array<Maybe<CcpEntitlement>>>;
|
|
5219
5221
|
experienceCapabilities?: Maybe<CcpRootExperienceCapabilities>;
|
|
@@ -5223,12 +5225,15 @@ export declare type CcpQueryApi = {
|
|
|
5223
5225
|
offerings?: Maybe<Array<Maybe<CcpOffering>>>;
|
|
5224
5226
|
paymentMethods?: Maybe<Array<Maybe<CcpPaymentMethod>>>;
|
|
5225
5227
|
pricingPlan?: Maybe<CcpPricingPlan>;
|
|
5228
|
+
pricingPlanV2?: Maybe<CcpPricingPlan>;
|
|
5226
5229
|
pricingPlans?: Maybe<Array<Maybe<CcpPricingPlan>>>;
|
|
5227
5230
|
product?: Maybe<CcpProduct>;
|
|
5231
|
+
productV2?: Maybe<CcpProduct>;
|
|
5228
5232
|
promotions?: Maybe<Array<Maybe<CcpPromotion>>>;
|
|
5229
5233
|
quotes?: Maybe<Array<Maybe<CcpQuote>>>;
|
|
5230
5234
|
shipToParties?: Maybe<Array<Maybe<CcpShipToParty>>>;
|
|
5231
5235
|
transactionAccount?: Maybe<CcpTransactionAccount>;
|
|
5236
|
+
transactionAccountV2?: Maybe<CcpTransactionAccount>;
|
|
5232
5237
|
transactionAccounts?: Maybe<Array<Maybe<CcpTransactionAccount>>>;
|
|
5233
5238
|
};
|
|
5234
5239
|
export declare type CcpQueryApiCatalogAccountsArgs = {
|
|
@@ -5240,6 +5245,9 @@ export declare type CcpQueryApiEntitlementArgs = {
|
|
|
5240
5245
|
export declare type CcpQueryApiEntitlementTemplatesArgs = {
|
|
5241
5246
|
ids: Array<Scalars['ID']['input']>;
|
|
5242
5247
|
};
|
|
5248
|
+
export declare type CcpQueryApiEntitlementV2Args = {
|
|
5249
|
+
id: Scalars['ID']['input'];
|
|
5250
|
+
};
|
|
5243
5251
|
export declare type CcpQueryApiEntitlementsArgs = {
|
|
5244
5252
|
ids: Array<Scalars['ID']['input']>;
|
|
5245
5253
|
};
|
|
@@ -5250,7 +5258,8 @@ export declare type CcpQueryApiInvoiceGroupsArgs = {
|
|
|
5250
5258
|
ids: Array<Scalars['ID']['input']>;
|
|
5251
5259
|
};
|
|
5252
5260
|
export declare type CcpQueryApiOfferingArgs = {
|
|
5253
|
-
|
|
5261
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
5262
|
+
key?: InputMaybe<Scalars['ID']['input']>;
|
|
5254
5263
|
};
|
|
5255
5264
|
export declare type CcpQueryApiOfferingRelationshipTemplatesArgs = {
|
|
5256
5265
|
ids: Array<Scalars['ID']['input']>;
|
|
@@ -5264,12 +5273,18 @@ export declare type CcpQueryApiPaymentMethodsArgs = {
|
|
|
5264
5273
|
export declare type CcpQueryApiPricingPlanArgs = {
|
|
5265
5274
|
id: Scalars['ID']['input'];
|
|
5266
5275
|
};
|
|
5276
|
+
export declare type CcpQueryApiPricingPlanV2Args = {
|
|
5277
|
+
id: Scalars['ID']['input'];
|
|
5278
|
+
};
|
|
5267
5279
|
export declare type CcpQueryApiPricingPlansArgs = {
|
|
5268
5280
|
ids: Array<Scalars['ID']['input']>;
|
|
5269
5281
|
};
|
|
5270
5282
|
export declare type CcpQueryApiProductArgs = {
|
|
5271
5283
|
id: Scalars['ID']['input'];
|
|
5272
5284
|
};
|
|
5285
|
+
export declare type CcpQueryApiProductV2Args = {
|
|
5286
|
+
id: Scalars['ID']['input'];
|
|
5287
|
+
};
|
|
5273
5288
|
export declare type CcpQueryApiPromotionsArgs = {
|
|
5274
5289
|
ids: Array<Scalars['ID']['input']>;
|
|
5275
5290
|
};
|
|
@@ -5282,6 +5297,9 @@ export declare type CcpQueryApiShipToPartiesArgs = {
|
|
|
5282
5297
|
export declare type CcpQueryApiTransactionAccountArgs = {
|
|
5283
5298
|
id: Scalars['ID']['input'];
|
|
5284
5299
|
};
|
|
5300
|
+
export declare type CcpQueryApiTransactionAccountV2Args = {
|
|
5301
|
+
id: Scalars['ID']['input'];
|
|
5302
|
+
};
|
|
5285
5303
|
export declare type CcpQueryApiTransactionAccountsArgs = {
|
|
5286
5304
|
ids: Array<Scalars['ID']['input']>;
|
|
5287
5305
|
};
|
|
@@ -5919,6 +5937,7 @@ export declare type ChannelPlatformTranscriptEntry = {
|
|
|
5919
5937
|
type?: Maybe<Scalars['String']['output']>;
|
|
5920
5938
|
};
|
|
5921
5939
|
export declare type ChannelPlatformTranscriptRequest = {
|
|
5940
|
+
contactId?: InputMaybe<Scalars['String']['input']>;
|
|
5922
5941
|
issueId?: InputMaybe<Scalars['String']['input']>;
|
|
5923
5942
|
role?: InputMaybe<ChannelPlatformRole>;
|
|
5924
5943
|
};
|
|
@@ -11628,6 +11647,11 @@ export declare enum ConfluenceAnalyticsCommentContentType {
|
|
|
11628
11647
|
Whiteboard = "whiteboard"
|
|
11629
11648
|
}
|
|
11630
11649
|
export declare type ConfluenceAncestor = ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluencePage | ConfluenceWhiteboard;
|
|
11650
|
+
export declare type ConfluenceAppInstallationConfigExtension = {
|
|
11651
|
+
__typename?: 'ConfluenceAppInstallationConfigExtension';
|
|
11652
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
11653
|
+
value?: Maybe<Scalars['Boolean']['output']>;
|
|
11654
|
+
};
|
|
11631
11655
|
export declare type ConfluenceApplicationLink = {
|
|
11632
11656
|
__typename?: 'ConfluenceApplicationLink';
|
|
11633
11657
|
applicationId: Scalars['String']['output'];
|
|
@@ -11639,6 +11663,13 @@ export declare type ConfluenceApplicationLink = {
|
|
|
11639
11663
|
rpcUrl?: Maybe<Scalars['String']['output']>;
|
|
11640
11664
|
typeId: Scalars['String']['output'];
|
|
11641
11665
|
};
|
|
11666
|
+
export declare type ConfluenceBlockedAccessAssignableSpaceRole = {
|
|
11667
|
+
__typename?: 'ConfluenceBlockedAccessAssignableSpaceRole';
|
|
11668
|
+
roleDescription: Scalars['String']['output'];
|
|
11669
|
+
roleId: Scalars['ID']['output'];
|
|
11670
|
+
roleName: Scalars['String']['output'];
|
|
11671
|
+
roleType: SpaceRoleType;
|
|
11672
|
+
};
|
|
11642
11673
|
export declare type ConfluenceBlogPost = Node & {
|
|
11643
11674
|
__typename?: 'ConfluenceBlogPost';
|
|
11644
11675
|
author?: Maybe<ConfluenceUserInfo>;
|
|
@@ -11861,6 +11892,33 @@ export declare type ConfluenceCommentUpdated = {
|
|
|
11861
11892
|
__typename?: 'ConfluenceCommentUpdated';
|
|
11862
11893
|
commentId?: Maybe<Scalars['ID']['output']>;
|
|
11863
11894
|
};
|
|
11895
|
+
export declare type ConfluenceContentAccessRequest = {
|
|
11896
|
+
__typename?: 'ConfluenceContentAccessRequest';
|
|
11897
|
+
accessRequestedAaid: Scalars['ID']['output'];
|
|
11898
|
+
contentId: Scalars['ID']['output'];
|
|
11899
|
+
creatorAaid?: Maybe<Scalars['ID']['output']>;
|
|
11900
|
+
id: Scalars['ID']['output'];
|
|
11901
|
+
lastModifierAaid?: Maybe<Scalars['ID']['output']>;
|
|
11902
|
+
requestAccessType: ResourceAccessType;
|
|
11903
|
+
status: ConfluenceContentAccessRequestStatus;
|
|
11904
|
+
};
|
|
11905
|
+
export declare type ConfluenceContentAccessRequestConnection = {
|
|
11906
|
+
__typename?: 'ConfluenceContentAccessRequestConnection';
|
|
11907
|
+
edges?: Maybe<Array<Maybe<ConfluenceContentAccessRequestEdge>>>;
|
|
11908
|
+
nodes: Array<Maybe<ConfluenceContentAccessRequest>>;
|
|
11909
|
+
pageInfo: PageInfo;
|
|
11910
|
+
};
|
|
11911
|
+
export declare type ConfluenceContentAccessRequestEdge = {
|
|
11912
|
+
__typename?: 'ConfluenceContentAccessRequestEdge';
|
|
11913
|
+
contentAccessRequest: ConfluenceContentAccessRequest;
|
|
11914
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
11915
|
+
};
|
|
11916
|
+
export declare enum ConfluenceContentAccessRequestStatus {
|
|
11917
|
+
Approve = "APPROVE",
|
|
11918
|
+
Deny = "DENY",
|
|
11919
|
+
Pending = "PENDING",
|
|
11920
|
+
PendingSiteApproval = "PENDING_SITE_APPROVAL"
|
|
11921
|
+
}
|
|
11864
11922
|
export declare type ConfluenceContentAnalyticsCountUserByContentType = {
|
|
11865
11923
|
__typename?: 'ConfluenceContentAnalyticsCountUserByContentType';
|
|
11866
11924
|
nodes: Array<ConfluenceCountGroupByContentItem>;
|
|
@@ -12155,6 +12213,19 @@ export declare type ConfluenceCreateSpacePayload = Payload & {
|
|
|
12155
12213
|
space?: Maybe<ConfluenceSpace>;
|
|
12156
12214
|
success: Scalars['Boolean']['output'];
|
|
12157
12215
|
};
|
|
12216
|
+
export declare type ConfluenceCreateTopicInput = {
|
|
12217
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
12218
|
+
featured?: InputMaybe<Scalars['Boolean']['input']>;
|
|
12219
|
+
logoId?: InputMaybe<Scalars['String']['input']>;
|
|
12220
|
+
logoUrl?: InputMaybe<Scalars['String']['input']>;
|
|
12221
|
+
name: Scalars['String']['input'];
|
|
12222
|
+
};
|
|
12223
|
+
export declare type ConfluenceCreateTopicPayload = Payload & {
|
|
12224
|
+
__typename?: 'ConfluenceCreateTopicPayload';
|
|
12225
|
+
errors?: Maybe<Array<MutationError>>;
|
|
12226
|
+
success: Scalars['Boolean']['output'];
|
|
12227
|
+
topic?: Maybe<ConfluenceTopic>;
|
|
12228
|
+
};
|
|
12158
12229
|
export declare type ConfluenceCurrentContentNativeProperties = {
|
|
12159
12230
|
__typename?: 'ConfluenceCurrentContentNativeProperties';
|
|
12160
12231
|
contentState?: Maybe<ConfluenceContentState>;
|
|
@@ -12296,6 +12367,14 @@ export declare type ConfluenceDeleteSubCalendarSingleEventPayload = Payload & {
|
|
|
12296
12367
|
errors?: Maybe<Array<MutationError>>;
|
|
12297
12368
|
success: Scalars['Boolean']['output'];
|
|
12298
12369
|
};
|
|
12370
|
+
export declare type ConfluenceDeleteTopicInput = {
|
|
12371
|
+
id: Scalars['ID']['input'];
|
|
12372
|
+
};
|
|
12373
|
+
export declare type ConfluenceDeleteTopicPayload = Payload & {
|
|
12374
|
+
__typename?: 'ConfluenceDeleteTopicPayload';
|
|
12375
|
+
errors?: Maybe<Array<MutationError>>;
|
|
12376
|
+
success: Scalars['Boolean']['output'];
|
|
12377
|
+
};
|
|
12299
12378
|
export declare type ConfluenceDeletedUser = {
|
|
12300
12379
|
__typename?: 'ConfluenceDeletedUser';
|
|
12301
12380
|
accountIds: Array<Maybe<Scalars['String']['output']>>;
|
|
@@ -12352,6 +12431,20 @@ export declare type ConfluenceExperimentInitModernizePayload = {
|
|
|
12352
12431
|
errors?: Maybe<Array<MutationError>>;
|
|
12353
12432
|
success: Scalars['Boolean']['output'];
|
|
12354
12433
|
};
|
|
12434
|
+
export declare type ConfluenceExtensionEgressDeclaration = {
|
|
12435
|
+
__typename?: 'ConfluenceExtensionEgressDeclaration';
|
|
12436
|
+
addresses?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
12437
|
+
category?: Maybe<Scalars['String']['output']>;
|
|
12438
|
+
inScopeEUD?: Maybe<Scalars['Boolean']['output']>;
|
|
12439
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
12440
|
+
};
|
|
12441
|
+
export declare type ConfluenceExtensionRenderingContextInput = {
|
|
12442
|
+
spaceId: Scalars['String']['input'];
|
|
12443
|
+
};
|
|
12444
|
+
export declare enum ConfluenceExtensionVisibilityControlMechanism {
|
|
12445
|
+
AppAccessRules = "APP_ACCESS_RULES",
|
|
12446
|
+
DisplayConditions = "DISPLAY_CONDITIONS"
|
|
12447
|
+
}
|
|
12355
12448
|
export declare type ConfluenceExternalLink = {
|
|
12356
12449
|
__typename?: 'ConfluenceExternalLink';
|
|
12357
12450
|
id?: Maybe<Scalars['Long']['output']>;
|
|
@@ -12407,6 +12500,25 @@ export declare type ConfluenceFooterComment = ConfluenceComment & Node & {
|
|
|
12407
12500
|
name?: Maybe<Scalars['String']['output']>;
|
|
12408
12501
|
status?: Maybe<ConfluenceCommentStatus>;
|
|
12409
12502
|
};
|
|
12503
|
+
export declare type ConfluenceForgeExtension = {
|
|
12504
|
+
__typename?: 'ConfluenceForgeExtension';
|
|
12505
|
+
appVersion?: Maybe<Scalars['String']['output']>;
|
|
12506
|
+
consentUrl?: Maybe<Scalars['String']['output']>;
|
|
12507
|
+
egress?: Maybe<Array<Maybe<ConfluenceExtensionEgressDeclaration>>>;
|
|
12508
|
+
environmentKey?: Maybe<Scalars['String']['output']>;
|
|
12509
|
+
environmentType?: Maybe<Scalars['String']['output']>;
|
|
12510
|
+
hiddenBy?: Maybe<ConfluenceExtensionVisibilityControlMechanism>;
|
|
12511
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
12512
|
+
installationConfig?: Maybe<Array<Maybe<ConfluenceAppInstallationConfigExtension>>>;
|
|
12513
|
+
installationId?: Maybe<Scalars['String']['output']>;
|
|
12514
|
+
license?: Maybe<Array<Maybe<KeyValueHierarchyMap>>>;
|
|
12515
|
+
moduleId?: Maybe<Scalars['String']['output']>;
|
|
12516
|
+
overrides?: Maybe<Array<Maybe<MapOfStringToBoolean>>>;
|
|
12517
|
+
properties?: Maybe<Array<Maybe<KeyValueHierarchyMap>>>;
|
|
12518
|
+
scopes?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
12519
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
12520
|
+
userAccess?: Maybe<Array<Maybe<KeyValueHierarchyMap>>>;
|
|
12521
|
+
};
|
|
12410
12522
|
export declare enum ConfluenceGraphQlDefaultTitleEmoji {
|
|
12411
12523
|
LivePageDefault = "LIVE_PAGE_DEFAULT",
|
|
12412
12524
|
None = "NONE"
|
|
@@ -12593,6 +12705,10 @@ export declare type ConfluenceLongTaskSuccess = ConfluenceLongTaskState & {
|
|
|
12593
12705
|
name?: Maybe<Scalars['String']['output']>;
|
|
12594
12706
|
result?: Maybe<ConfluenceLongTaskResult>;
|
|
12595
12707
|
};
|
|
12708
|
+
export declare type ConfluenceLoomEntryPoints = {
|
|
12709
|
+
__typename?: 'ConfluenceLoomEntryPoints';
|
|
12710
|
+
isLoomEntryPointsEnabled: Scalars['Boolean']['output'];
|
|
12711
|
+
};
|
|
12596
12712
|
export declare type ConfluenceMakeSubCalendarPrivateUrlInput = {
|
|
12597
12713
|
subCalendarId: Scalars['ID']['input'];
|
|
12598
12714
|
};
|
|
@@ -13079,11 +13195,29 @@ export declare type ConfluenceQueryApiWhiteboardArgs = {
|
|
|
13079
13195
|
export declare type ConfluenceQueryApiWhiteboardsArgs = {
|
|
13080
13196
|
ids: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
13081
13197
|
};
|
|
13198
|
+
export declare type ConfluenceReactedUsersInput = {
|
|
13199
|
+
containerId?: InputMaybe<Scalars['String']['input']>;
|
|
13200
|
+
containerType?: InputMaybe<ContainerType>;
|
|
13201
|
+
contentId: Scalars['String']['input'];
|
|
13202
|
+
contentType: GraphQlReactionContentType;
|
|
13203
|
+
emojiId: Scalars['String']['input'];
|
|
13204
|
+
};
|
|
13205
|
+
export declare type ConfluenceReactedUsersResponsePayload = Payload & {
|
|
13206
|
+
__typename?: 'ConfluenceReactedUsersResponsePayload';
|
|
13207
|
+
ari?: Maybe<Scalars['String']['output']>;
|
|
13208
|
+
confluencePerson: Array<Maybe<ConfluencePerson>>;
|
|
13209
|
+
containerAri?: Maybe<Scalars['String']['output']>;
|
|
13210
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
13211
|
+
emojiId: Scalars['String']['output'];
|
|
13212
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13213
|
+
reacted?: Maybe<Scalars['Boolean']['output']>;
|
|
13214
|
+
success: Scalars['Boolean']['output'];
|
|
13215
|
+
};
|
|
13082
13216
|
export declare type ConfluenceReactionInput = {
|
|
13083
13217
|
containerId?: InputMaybe<Scalars['Long']['input']>;
|
|
13084
|
-
containerType?: InputMaybe<
|
|
13218
|
+
containerType?: InputMaybe<ContainerType>;
|
|
13085
13219
|
contentId?: InputMaybe<Scalars['Long']['input']>;
|
|
13086
|
-
contentType?: InputMaybe<
|
|
13220
|
+
contentType?: InputMaybe<GraphQlReactionContentType>;
|
|
13087
13221
|
emojiId?: InputMaybe<Scalars['String']['input']>;
|
|
13088
13222
|
};
|
|
13089
13223
|
export declare type ConfluenceReactionPayload = Payload & {
|
|
@@ -13094,16 +13228,30 @@ export declare type ConfluenceReactionPayload = Payload & {
|
|
|
13094
13228
|
errors?: Maybe<Array<MutationError>>;
|
|
13095
13229
|
success: Scalars['Boolean']['output'];
|
|
13096
13230
|
};
|
|
13097
|
-
export declare
|
|
13098
|
-
|
|
13099
|
-
|
|
13100
|
-
|
|
13101
|
-
|
|
13102
|
-
|
|
13103
|
-
|
|
13104
|
-
|
|
13105
|
-
|
|
13106
|
-
}
|
|
13231
|
+
export declare type ConfluenceReactionSummary = {
|
|
13232
|
+
__typename?: 'ConfluenceReactionSummary';
|
|
13233
|
+
reactionsSummary?: Maybe<Array<Maybe<ConfluenceReactionsSummaryResponse>>>;
|
|
13234
|
+
};
|
|
13235
|
+
export declare type ConfluenceReactionSummaryInput = {
|
|
13236
|
+
containerId?: InputMaybe<Scalars['Long']['input']>;
|
|
13237
|
+
containerType?: InputMaybe<ContainerType>;
|
|
13238
|
+
contentId?: InputMaybe<Scalars['Long']['input']>;
|
|
13239
|
+
contentType?: InputMaybe<GraphQlReactionContentType>;
|
|
13240
|
+
};
|
|
13241
|
+
export declare type ConfluenceReactionsSummaryForEmoji = {
|
|
13242
|
+
__typename?: 'ConfluenceReactionsSummaryForEmoji';
|
|
13243
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
13244
|
+
emojiId?: Maybe<Scalars['String']['output']>;
|
|
13245
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
13246
|
+
reacted?: Maybe<Scalars['Boolean']['output']>;
|
|
13247
|
+
};
|
|
13248
|
+
export declare type ConfluenceReactionsSummaryResponse = {
|
|
13249
|
+
__typename?: 'ConfluenceReactionsSummaryResponse';
|
|
13250
|
+
ari?: Maybe<Scalars['String']['output']>;
|
|
13251
|
+
containerAri?: Maybe<Scalars['String']['output']>;
|
|
13252
|
+
reactionsCount?: Maybe<Scalars['Int']['output']>;
|
|
13253
|
+
reactionsSummaryForEmoji?: Maybe<Array<Maybe<ConfluenceReactionsSummaryForEmoji>>>;
|
|
13254
|
+
};
|
|
13107
13255
|
export declare type ConfluenceRedactionMetadata = {
|
|
13108
13256
|
__typename?: 'ConfluenceRedactionMetadata';
|
|
13109
13257
|
creationDate?: Maybe<Scalars['String']['output']>;
|
|
@@ -13157,6 +13305,10 @@ export declare type ConfluenceReplyToCommentPayload = {
|
|
|
13157
13305
|
errors?: Maybe<Array<MutationError>>;
|
|
13158
13306
|
success: Scalars['Boolean']['output'];
|
|
13159
13307
|
};
|
|
13308
|
+
export declare enum ConfluenceRequestAccessApprovalDecision {
|
|
13309
|
+
Approve = "APPROVE",
|
|
13310
|
+
Deny = "DENY"
|
|
13311
|
+
}
|
|
13160
13312
|
export declare type ConfluenceResolveCommentByContentIdPayload = Payload & {
|
|
13161
13313
|
__typename?: 'ConfluenceResolveCommentByContentIdPayload';
|
|
13162
13314
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -13177,6 +13329,16 @@ export declare type ConfluenceResolveInlineCommentPayload = {
|
|
|
13177
13329
|
errors?: Maybe<Array<MutationError>>;
|
|
13178
13330
|
success: Scalars['Boolean']['output'];
|
|
13179
13331
|
};
|
|
13332
|
+
export declare enum ConfluenceRoleAssignabilityCode {
|
|
13333
|
+
Assignable = "ASSIGNABLE",
|
|
13334
|
+
DefaultRoleAssignmentNotSupported = "DEFAULT_ROLE_ASSIGNMENT_NOT_SUPPORTED",
|
|
13335
|
+
EscalationNotAssignable = "ESCALATION_NOT_ASSIGNABLE",
|
|
13336
|
+
GuestExistingSpaceAccess = "GUEST_EXISTING_SPACE_ACCESS",
|
|
13337
|
+
NotAssignable = "NOT_ASSIGNABLE",
|
|
13338
|
+
NoManageGuestUsersPermNotAssignable = "NO_MANAGE_GUEST_USERS_PERM_NOT_ASSIGNABLE",
|
|
13339
|
+
NoManageNonlicensedUsersPermNotAssignable = "NO_MANAGE_NONLICENSED_USERS_PERM_NOT_ASSIGNABLE",
|
|
13340
|
+
PrincipalInvalidRole = "PRINCIPAL_INVALID_ROLE"
|
|
13341
|
+
}
|
|
13180
13342
|
export declare type ConfluenceSchedulePublished = {
|
|
13181
13343
|
__typename?: 'ConfluenceSchedulePublished';
|
|
13182
13344
|
confVersion?: Maybe<Scalars['Int']['output']>;
|
|
@@ -13328,6 +13490,11 @@ export declare enum ConfluenceSpaceOwnerType {
|
|
|
13328
13490
|
Group = "GROUP",
|
|
13329
13491
|
User = "USER"
|
|
13330
13492
|
}
|
|
13493
|
+
export declare enum ConfluenceSpaceRoleMode {
|
|
13494
|
+
PreRoles = "PRE_ROLES",
|
|
13495
|
+
Roles = "ROLES",
|
|
13496
|
+
RolesTransition = "ROLES_TRANSITION"
|
|
13497
|
+
}
|
|
13331
13498
|
export declare enum ConfluenceSpaceSettingEditorVersion {
|
|
13332
13499
|
V1 = "V1",
|
|
13333
13500
|
V2 = "V2"
|
|
@@ -13417,6 +13584,28 @@ export declare type ConfluenceTenantContext = {
|
|
|
13417
13584
|
licensedProducts: Array<LicensedProduct>;
|
|
13418
13585
|
timeZone?: Maybe<Scalars['String']['output']>;
|
|
13419
13586
|
};
|
|
13587
|
+
export declare type ConfluenceTopic = {
|
|
13588
|
+
__typename?: 'ConfluenceTopic';
|
|
13589
|
+
creator?: Maybe<Scalars['ID']['output']>;
|
|
13590
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
13591
|
+
featured?: Maybe<Scalars['Boolean']['output']>;
|
|
13592
|
+
id: Scalars['ID']['output'];
|
|
13593
|
+
logoId?: Maybe<Scalars['String']['output']>;
|
|
13594
|
+
logoUrl?: Maybe<Scalars['String']['output']>;
|
|
13595
|
+
modifier?: Maybe<Scalars['ID']['output']>;
|
|
13596
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
13597
|
+
};
|
|
13598
|
+
export declare type ConfluenceTopicConnection = {
|
|
13599
|
+
__typename?: 'ConfluenceTopicConnection';
|
|
13600
|
+
edges?: Maybe<Array<Maybe<ConfluenceTopicEdge>>>;
|
|
13601
|
+
nodes?: Maybe<Array<Maybe<ConfluenceTopic>>>;
|
|
13602
|
+
pageInfo: ConfluencePageInfo;
|
|
13603
|
+
};
|
|
13604
|
+
export declare type ConfluenceTopicEdge = {
|
|
13605
|
+
__typename?: 'ConfluenceTopicEdge';
|
|
13606
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
13607
|
+
node?: Maybe<ConfluenceTopic>;
|
|
13608
|
+
};
|
|
13420
13609
|
export declare type ConfluenceTrashBlogPostInput = {
|
|
13421
13610
|
id: Scalars['ID']['input'];
|
|
13422
13611
|
};
|
|
@@ -13471,6 +13660,25 @@ export declare type ConfluenceUpdateCommentPayload = {
|
|
|
13471
13660
|
errors?: Maybe<Array<MutationError>>;
|
|
13472
13661
|
success: Scalars['Boolean']['output'];
|
|
13473
13662
|
};
|
|
13663
|
+
export declare type ConfluenceUpdateContentAccessRequestInput = {
|
|
13664
|
+
accessRequestedAccountId: Scalars['ID']['input'];
|
|
13665
|
+
accessType: ResourceAccessType;
|
|
13666
|
+
approvalDecision: ConfluenceRequestAccessApprovalDecision;
|
|
13667
|
+
contentId: Scalars['ID']['input'];
|
|
13668
|
+
requestId: Scalars['ID']['input'];
|
|
13669
|
+
};
|
|
13670
|
+
export declare type ConfluenceUpdateContentAccessRequestMutationErrorExtension = MutationErrorExtension & {
|
|
13671
|
+
__typename?: 'ConfluenceUpdateContentAccessRequestMutationErrorExtension';
|
|
13672
|
+
displayName: Scalars['String']['output'];
|
|
13673
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
13674
|
+
processedRequestStatus: ConfluenceContentAccessRequestStatus;
|
|
13675
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
13676
|
+
};
|
|
13677
|
+
export declare type ConfluenceUpdateContentAccessRequestPayload = Payload & {
|
|
13678
|
+
__typename?: 'ConfluenceUpdateContentAccessRequestPayload';
|
|
13679
|
+
errors: Array<MutationError>;
|
|
13680
|
+
success: Scalars['Boolean']['output'];
|
|
13681
|
+
};
|
|
13474
13682
|
export declare type ConfluenceUpdateCurrentBlogPostInput = {
|
|
13475
13683
|
body?: InputMaybe<ConfluenceContentBodyInput>;
|
|
13476
13684
|
id: Scalars['ID']['input'];
|
|
@@ -13585,6 +13793,19 @@ export declare type ConfluenceUpdateTeamPresenceSpaceSettingsPayload = {
|
|
|
13585
13793
|
isEnabledOnContentView: Scalars['Boolean']['output'];
|
|
13586
13794
|
success: Scalars['Boolean']['output'];
|
|
13587
13795
|
};
|
|
13796
|
+
export declare type ConfluenceUpdateTopicInput = {
|
|
13797
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
13798
|
+
featured?: InputMaybe<Scalars['Boolean']['input']>;
|
|
13799
|
+
id: Scalars['ID']['input'];
|
|
13800
|
+
logoId?: InputMaybe<Scalars['String']['input']>;
|
|
13801
|
+
logoUrl?: InputMaybe<Scalars['String']['input']>;
|
|
13802
|
+
};
|
|
13803
|
+
export declare type ConfluenceUpdateTopicPayload = Payload & {
|
|
13804
|
+
__typename?: 'ConfluenceUpdateTopicPayload';
|
|
13805
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13806
|
+
success: Scalars['Boolean']['output'];
|
|
13807
|
+
topic?: Maybe<ConfluenceTopic>;
|
|
13808
|
+
};
|
|
13588
13809
|
export declare type ConfluenceUpdateValueBlogPostPropertyInput = {
|
|
13589
13810
|
blogPostId: Scalars['ID']['input'];
|
|
13590
13811
|
key: Scalars['String']['input'];
|
|
@@ -14060,6 +14281,7 @@ export declare type ContentAnalyticsLastViewedAtByPageItem = {
|
|
|
14060
14281
|
export declare type ContentAnalyticsPageViewInfo = {
|
|
14061
14282
|
__typename?: 'ContentAnalyticsPageViewInfo';
|
|
14062
14283
|
isEngaged?: Maybe<Scalars['Boolean']['output']>;
|
|
14284
|
+
isPrivate?: Maybe<Scalars['Boolean']['output']>;
|
|
14063
14285
|
lastVersionViewed: Scalars['Int']['output'];
|
|
14064
14286
|
lastVersionViewedNumber?: Maybe<Scalars['Int']['output']>;
|
|
14065
14287
|
lastVersionViewedUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -22400,6 +22622,7 @@ export declare type ExternalPosition = Node & {
|
|
|
22400
22622
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
22401
22623
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
22402
22624
|
id: Scalars['ID']['output'];
|
|
22625
|
+
jobTitle?: Maybe<Scalars['String']['output']>;
|
|
22403
22626
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
22404
22627
|
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
22405
22628
|
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
@@ -22611,7 +22834,9 @@ export declare type ExternalUser = {
|
|
|
22611
22834
|
__typename?: 'ExternalUser';
|
|
22612
22835
|
linkedUsers?: Maybe<GraphStoreSimplifiedUserLinkedThirdPartyUserInverseConnection>;
|
|
22613
22836
|
thirdPartyUser?: Maybe<ThirdPartyUser>;
|
|
22837
|
+
thirdPartyUserId?: Maybe<Scalars['ID']['output']>;
|
|
22614
22838
|
user?: Maybe<User>;
|
|
22839
|
+
userId?: Maybe<Scalars['ID']['output']>;
|
|
22615
22840
|
};
|
|
22616
22841
|
export declare type ExternalUserLinkedUsersArgs = {
|
|
22617
22842
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -51374,6 +51599,7 @@ export declare type HelpObjectStoreSuccessfullyCreatedEntityMappingDetail = {
|
|
|
51374
51599
|
};
|
|
51375
51600
|
export declare type History = {
|
|
51376
51601
|
__typename?: 'History';
|
|
51602
|
+
archivedDate?: Maybe<Scalars['String']['output']>;
|
|
51377
51603
|
contributors?: Maybe<Contributors>;
|
|
51378
51604
|
createdBy?: Maybe<Person>;
|
|
51379
51605
|
createdDate?: Maybe<Scalars['String']['output']>;
|
|
@@ -57861,6 +58087,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
57861
58087
|
lastViewedTimestamp?: Maybe<Scalars['Long']['output']>;
|
|
57862
58088
|
legacyContentPanels?: Maybe<JiraIssueContentPanelConnection>;
|
|
57863
58089
|
lifecycleState?: Maybe<JiraIssueLifecycleState>;
|
|
58090
|
+
linkedPullRequests?: Maybe<JiraIssuePullRequests>;
|
|
57864
58091
|
matchesIssueSearch?: Maybe<Scalars['Boolean']['output']>;
|
|
57865
58092
|
mediaReadToken?: Maybe<JiraMediaReadToken>;
|
|
57866
58093
|
mediaUploadToken?: Maybe<JiraMediaUploadTokenResult>;
|
|
@@ -58047,6 +58274,9 @@ export declare type JiraIssueLegacyContentPanelsArgs = {
|
|
|
58047
58274
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
58048
58275
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
58049
58276
|
};
|
|
58277
|
+
export declare type JiraIssueLinkedPullRequestsArgs = {
|
|
58278
|
+
input?: InputMaybe<JiraIssuePullRequestsInput>;
|
|
58279
|
+
};
|
|
58050
58280
|
export declare type JiraIssueMatchesIssueSearchArgs = {
|
|
58051
58281
|
issueSearchInput: JiraIssueSearchInput;
|
|
58052
58282
|
};
|
|
@@ -58970,6 +59200,9 @@ export declare type JiraIssuePullRequests = {
|
|
|
58970
59200
|
configErrors?: Maybe<Array<JiraDevInfoConfigError>>;
|
|
58971
59201
|
details?: Maybe<Array<JiraDevOpsPullRequestDetails>>;
|
|
58972
59202
|
};
|
|
59203
|
+
export declare type JiraIssuePullRequestsInput = {
|
|
59204
|
+
filterLegacy?: InputMaybe<Scalars['Boolean']['input']>;
|
|
59205
|
+
};
|
|
58973
59206
|
export declare type JiraIssueRemoteIssueLink = {
|
|
58974
59207
|
__typename?: 'JiraIssueRemoteIssueLink';
|
|
58975
59208
|
href?: Maybe<Scalars['String']['output']>;
|
|
@@ -59179,6 +59412,9 @@ export declare enum JiraIssueSearchFieldSetSelectedState {
|
|
|
59179
59412
|
NonSelected = "NON_SELECTED",
|
|
59180
59413
|
Selected = "SELECTED"
|
|
59181
59414
|
}
|
|
59415
|
+
export declare type JiraIssueSearchFieldSets = {
|
|
59416
|
+
replaceFieldSetsInput?: InputMaybe<JiraIssueSearchReplaceFieldSetsInput>;
|
|
59417
|
+
};
|
|
59182
59418
|
export declare type JiraIssueSearchFieldSetsFilter = {
|
|
59183
59419
|
fieldSetSelectedState?: InputMaybe<JiraIssueSearchFieldSetSelectedState>;
|
|
59184
59420
|
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -59226,6 +59462,10 @@ export declare enum JiraIssueSearchOperationScope {
|
|
|
59226
59462
|
export declare type JiraIssueSearchOptions = {
|
|
59227
59463
|
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
59228
59464
|
};
|
|
59465
|
+
export declare type JiraIssueSearchReplaceFieldSetsInput = {
|
|
59466
|
+
context?: InputMaybe<JiraIssueSearchViewFieldSetsContext>;
|
|
59467
|
+
nodes: Array<Scalars['String']['input']>;
|
|
59468
|
+
};
|
|
59229
59469
|
export declare type JiraIssueSearchResult = {
|
|
59230
59470
|
content?: Maybe<JiraIssueSearchContextualContent>;
|
|
59231
59471
|
contentByFieldSetIds?: Maybe<JiraIssueSearchContextlessContent>;
|
|
@@ -67528,6 +67768,16 @@ export declare type JiraSetIsFavouritePayload = Payload & {
|
|
|
67528
67768
|
favouriteValue?: Maybe<JiraFavouriteValue>;
|
|
67529
67769
|
success: Scalars['Boolean']['output'];
|
|
67530
67770
|
};
|
|
67771
|
+
export declare type JiraSetIssueSearchFieldSetsInput = {
|
|
67772
|
+
fieldSetsInput?: InputMaybe<JiraIssueSearchFieldSets>;
|
|
67773
|
+
viewId: Scalars['ID']['input'];
|
|
67774
|
+
};
|
|
67775
|
+
export declare type JiraSetIssueSearchFieldSetsPayload = {
|
|
67776
|
+
__typename?: 'JiraSetIssueSearchFieldSetsPayload';
|
|
67777
|
+
errors?: Maybe<Array<MutationError>>;
|
|
67778
|
+
success: Scalars['Boolean']['output'];
|
|
67779
|
+
view?: Maybe<JiraSpreadsheetView>;
|
|
67780
|
+
};
|
|
67531
67781
|
export declare type JiraSetIssueSearchGroupByInput = {
|
|
67532
67782
|
fieldId?: InputMaybe<Scalars['String']['input']>;
|
|
67533
67783
|
viewId: Scalars['ID']['input'];
|
|
@@ -67555,6 +67805,15 @@ export declare type JiraSetIssueSearchHierarchyEnabledPayload = Payload & {
|
|
|
67555
67805
|
errors?: Maybe<Array<MutationError>>;
|
|
67556
67806
|
success: Scalars['Boolean']['output'];
|
|
67557
67807
|
};
|
|
67808
|
+
export declare type JiraSetIssueSearchJqlInput = {
|
|
67809
|
+
jql: Scalars['String']['input'];
|
|
67810
|
+
viewId: Scalars['ID']['input'];
|
|
67811
|
+
};
|
|
67812
|
+
export declare type JiraSetIssueSearchJqlPayload = Payload & {
|
|
67813
|
+
__typename?: 'JiraSetIssueSearchJqlPayload';
|
|
67814
|
+
errors?: Maybe<Array<MutationError>>;
|
|
67815
|
+
success: Scalars['Boolean']['output'];
|
|
67816
|
+
};
|
|
67558
67817
|
export declare type JiraSetIssueSearchViewLayoutInput = {
|
|
67559
67818
|
viewId: Scalars['ID']['input'];
|
|
67560
67819
|
viewLayout: JiraIssueSearchViewLayout;
|
|
@@ -67997,6 +68256,7 @@ export declare type JiraSpreadsheetGroup = {
|
|
|
67997
68256
|
afterGroupId?: Maybe<Scalars['String']['output']>;
|
|
67998
68257
|
beforeGroupId?: Maybe<Scalars['String']['output']>;
|
|
67999
68258
|
fieldId?: Maybe<Scalars['String']['output']>;
|
|
68259
|
+
fieldSetId?: Maybe<Scalars['String']['output']>;
|
|
68000
68260
|
fieldType?: Maybe<Scalars['String']['output']>;
|
|
68001
68261
|
fieldValue?: Maybe<JiraJqlFieldValue>;
|
|
68002
68262
|
id: Scalars['ID']['output'];
|
|
@@ -68039,6 +68299,7 @@ export declare type JiraSpreadsheetGroupByConfigRecentlyUsedArgs = {
|
|
|
68039
68299
|
export declare type JiraSpreadsheetGroupByFieldOptionConnection = {
|
|
68040
68300
|
__typename?: 'JiraSpreadsheetGroupByFieldOptionConnection';
|
|
68041
68301
|
edges?: Maybe<Array<Maybe<JiraSpreadsheetGroupByFieldOptionEdge>>>;
|
|
68302
|
+
pageInfo?: Maybe<PageInfo>;
|
|
68042
68303
|
};
|
|
68043
68304
|
export declare type JiraSpreadsheetGroupByFieldOptionEdge = {
|
|
68044
68305
|
__typename?: 'JiraSpreadsheetGroupByFieldOptionEdge';
|
|
@@ -78395,13 +78656,16 @@ export declare type Mutation = {
|
|
|
78395
78656
|
confluence_createCustomRole?: Maybe<ConfluenceCreateCustomRolePayload>;
|
|
78396
78657
|
confluence_createPdfExportTaskForBulkContent?: Maybe<ConfluenceCreatePdfExportTaskForBulkContentPayload>;
|
|
78397
78658
|
confluence_createPdfExportTaskForSingleContent?: Maybe<ConfluenceCreatePdfExportTaskForSingleContentPayload>;
|
|
78659
|
+
confluence_createTopic?: Maybe<ConfluenceCreateTopicPayload>;
|
|
78398
78660
|
confluence_deleteCalendarCustomEventType?: Maybe<ConfluenceDeleteCalendarCustomEventTypePayload>;
|
|
78399
78661
|
confluence_deleteCustomRole?: Maybe<ConfluenceDeleteCustomRolePayload>;
|
|
78662
|
+
confluence_deleteReaction?: Maybe<ConfluenceReactionPayload>;
|
|
78400
78663
|
confluence_deleteSubCalendarAllFutureEvents?: Maybe<ConfluenceDeleteSubCalendarAllFutureEventsPayload>;
|
|
78401
78664
|
confluence_deleteSubCalendarEvent?: Maybe<ConfluenceDeleteSubCalendarEventPayload>;
|
|
78402
78665
|
confluence_deleteSubCalendarHiddenEvents?: Maybe<ConfluenceDeleteSubCalendarHiddenEventsPayload>;
|
|
78403
78666
|
confluence_deleteSubCalendarPrivateUrl?: Maybe<ConfluenceDeleteSubCalendarPrivateUrlPayload>;
|
|
78404
78667
|
confluence_deleteSubCalendarSingleEvent?: Maybe<ConfluenceDeleteSubCalendarSingleEventPayload>;
|
|
78668
|
+
confluence_deleteTopic?: Maybe<ConfluenceDeleteTopicPayload>;
|
|
78405
78669
|
confluence_experimentInitModernize?: Maybe<ConfluenceExperimentInitModernizePayload>;
|
|
78406
78670
|
confluence_inviteUsers?: Maybe<ConfluenceInviteUserPayload>;
|
|
78407
78671
|
confluence_makeSubCalendarPrivateUrl?: Maybe<ConfluenceMakeSubCalendarPrivateUrlPayload>;
|
|
@@ -78414,11 +78678,13 @@ export declare type Mutation = {
|
|
|
78414
78678
|
confluence_unmarkCommentAsDangling?: Maybe<ConfluenceUnmarkCommentAsDanglingPayload>;
|
|
78415
78679
|
confluence_unwatchLabel?: Maybe<ConfluenceLabelWatchStatus>;
|
|
78416
78680
|
confluence_unwatchSubCalendar?: Maybe<ConfluenceUnwatchSubCalendarPayload>;
|
|
78681
|
+
confluence_updateContentAccessRequest?: Maybe<ConfluenceUpdateContentAccessRequestPayload>;
|
|
78417
78682
|
confluence_updateCustomRole?: Maybe<ConfluenceUpdateCustomRolePayload>;
|
|
78418
78683
|
confluence_updateDefaultTitleEmoji?: Maybe<ConfluenceUpdateDefaultTitleEmojiPayload>;
|
|
78419
78684
|
confluence_updateNav4OptIn?: Maybe<ConfluenceUpdateNav4OptInPayload>;
|
|
78420
78685
|
confluence_updateSubCalendarHiddenEvents?: Maybe<ConfluenceUpdateSubCalendarHiddenEventsPayload>;
|
|
78421
78686
|
confluence_updateTeamPresenceSpaceSettings?: Maybe<ConfluenceUpdateTeamPresenceSpaceSettingsPayload>;
|
|
78687
|
+
confluence_updateTopic?: Maybe<ConfluenceUpdateTopicPayload>;
|
|
78422
78688
|
confluence_watchLabel?: Maybe<ConfluenceLabelWatchStatus>;
|
|
78423
78689
|
confluence_watchSubCalendar?: Maybe<ConfluenceWatchSubCalendarPayload>;
|
|
78424
78690
|
connectionManager_createApiTokenConnectionForJiraProject?: Maybe<ConnectionManagerCreateApiTokenConnectionForJiraProjectPayload>;
|
|
@@ -78595,9 +78861,11 @@ export declare type Mutation = {
|
|
|
78595
78861
|
jira_setBoardViewStatusColumnMapping?: Maybe<JiraSetBoardViewStatusColumnMappingPayload>;
|
|
78596
78862
|
jira_setBoardViewWorkflowSelected?: Maybe<JiraSetBoardViewWorkflowSelectedPayload>;
|
|
78597
78863
|
jira_setFieldSetsPreferences?: Maybe<JiraSetFieldSetsPreferencesPayload>;
|
|
78864
|
+
jira_setIssueSearchFieldSets?: Maybe<JiraSetIssueSearchFieldSetsPayload>;
|
|
78598
78865
|
jira_setIssueSearchGroupBy?: Maybe<JiraSetIssueSearchGroupByPayload>;
|
|
78599
78866
|
jira_setIssueSearchHideDoneItems?: Maybe<JiraSetIssueSearchHideDoneItemsPayload>;
|
|
78600
78867
|
jira_setIssueSearchHierarchyEnabled?: Maybe<JiraSetIssueSearchHierarchyEnabledPayload>;
|
|
78868
|
+
jira_setIssueSearchJql?: Maybe<JiraSetIssueSearchJqlPayload>;
|
|
78601
78869
|
jira_setIssueSearchViewLayout?: Maybe<JiraSetIssueSearchViewLayoutPayload>;
|
|
78602
78870
|
jira_setViewFilter?: Maybe<JiraSetViewFilterPayload>;
|
|
78603
78871
|
jira_setViewGroupBy?: Maybe<JiraSetViewGroupByPayload>;
|
|
@@ -78683,7 +78951,6 @@ export declare type Mutation = {
|
|
|
78683
78951
|
resetToDefaultSpaceRoleAssignments?: Maybe<ResetToDefaultSpaceRoleAssignmentsPayload>;
|
|
78684
78952
|
resolveInlineComment?: Maybe<ResolveInlineCommentPayload>;
|
|
78685
78953
|
resolvePolarisObject?: Maybe<ResolvePolarisObjectPayload>;
|
|
78686
|
-
resolveRestrictions?: Maybe<ResolveRestrictionsPayload>;
|
|
78687
78954
|
resolveRestrictionsForSubjects?: Maybe<ResolveRestrictionsPayload>;
|
|
78688
78955
|
restoreSpace?: Maybe<RestoreSpacePayload>;
|
|
78689
78956
|
revertToLegacyEditor?: Maybe<RevertToLegacyEditorResult>;
|
|
@@ -79066,6 +79333,10 @@ export declare type MutationConfluence_CreatePdfExportTaskForBulkContentArgs = {
|
|
|
79066
79333
|
export declare type MutationConfluence_CreatePdfExportTaskForSingleContentArgs = {
|
|
79067
79334
|
input: ConfluenceCreatePdfExportTaskForSingleContentInput;
|
|
79068
79335
|
};
|
|
79336
|
+
export declare type MutationConfluence_CreateTopicArgs = {
|
|
79337
|
+
cloudId: Scalars['ID']['input'];
|
|
79338
|
+
input: ConfluenceCreateTopicInput;
|
|
79339
|
+
};
|
|
79069
79340
|
export declare type MutationConfluence_DeleteCalendarCustomEventTypeArgs = {
|
|
79070
79341
|
cloudId: Scalars['ID']['input'];
|
|
79071
79342
|
input: ConfluenceDeleteCalendarCustomEventTypeInput;
|
|
@@ -79074,6 +79345,10 @@ export declare type MutationConfluence_DeleteCustomRoleArgs = {
|
|
|
79074
79345
|
cloudId: Scalars['ID']['input'];
|
|
79075
79346
|
input: ConfluenceDeleteCustomRoleInput;
|
|
79076
79347
|
};
|
|
79348
|
+
export declare type MutationConfluence_DeleteReactionArgs = {
|
|
79349
|
+
cloudId: Scalars['ID']['input'];
|
|
79350
|
+
input: ConfluenceReactionInput;
|
|
79351
|
+
};
|
|
79077
79352
|
export declare type MutationConfluence_DeleteSubCalendarAllFutureEventsArgs = {
|
|
79078
79353
|
cloudId: Scalars['ID']['input'];
|
|
79079
79354
|
input?: InputMaybe<ConfluenceDeleteSubCalendarAllFutureEventsInput>;
|
|
@@ -79094,6 +79369,10 @@ export declare type MutationConfluence_DeleteSubCalendarSingleEventArgs = {
|
|
|
79094
79369
|
cloudId: Scalars['ID']['input'];
|
|
79095
79370
|
input: ConfluenceDeleteSubCalendarSingleEventInput;
|
|
79096
79371
|
};
|
|
79372
|
+
export declare type MutationConfluence_DeleteTopicArgs = {
|
|
79373
|
+
cloudId: Scalars['ID']['input'];
|
|
79374
|
+
input: ConfluenceDeleteTopicInput;
|
|
79375
|
+
};
|
|
79097
79376
|
export declare type MutationConfluence_ExperimentInitModernizeArgs = {
|
|
79098
79377
|
cloudId: Scalars['ID']['input'];
|
|
79099
79378
|
};
|
|
@@ -79142,6 +79421,10 @@ export declare type MutationConfluence_UnwatchSubCalendarArgs = {
|
|
|
79142
79421
|
cloudId: Scalars['ID']['input'];
|
|
79143
79422
|
input: ConfluenceUnwatchSubCalendarInput;
|
|
79144
79423
|
};
|
|
79424
|
+
export declare type MutationConfluence_UpdateContentAccessRequestArgs = {
|
|
79425
|
+
cloudId: Scalars['ID']['input'];
|
|
79426
|
+
updateContentAccessRequestInput: ConfluenceUpdateContentAccessRequestInput;
|
|
79427
|
+
};
|
|
79145
79428
|
export declare type MutationConfluence_UpdateCustomRoleArgs = {
|
|
79146
79429
|
cloudId: Scalars['ID']['input'];
|
|
79147
79430
|
input: ConfluenceUpdateCustomRoleInput;
|
|
@@ -79162,6 +79445,10 @@ export declare type MutationConfluence_UpdateTeamPresenceSpaceSettingsArgs = {
|
|
|
79162
79445
|
cloudId: Scalars['ID']['input'];
|
|
79163
79446
|
input: ConfluenceUpdateTeamPresenceSpaceSettingsInput;
|
|
79164
79447
|
};
|
|
79448
|
+
export declare type MutationConfluence_UpdateTopicArgs = {
|
|
79449
|
+
cloudId: Scalars['ID']['input'];
|
|
79450
|
+
input: ConfluenceUpdateTopicInput;
|
|
79451
|
+
};
|
|
79165
79452
|
export declare type MutationConfluence_WatchLabelArgs = {
|
|
79166
79453
|
cloudId: Scalars['ID']['input'];
|
|
79167
79454
|
input: ConfluenceLabelWatchInput;
|
|
@@ -79734,6 +80021,9 @@ export declare type MutationJira_SetBoardViewWorkflowSelectedArgs = {
|
|
|
79734
80021
|
export declare type MutationJira_SetFieldSetsPreferencesArgs = {
|
|
79735
80022
|
input: JiraSetFieldSetsPreferencesInput;
|
|
79736
80023
|
};
|
|
80024
|
+
export declare type MutationJira_SetIssueSearchFieldSetsArgs = {
|
|
80025
|
+
input: JiraSetIssueSearchFieldSetsInput;
|
|
80026
|
+
};
|
|
79737
80027
|
export declare type MutationJira_SetIssueSearchGroupByArgs = {
|
|
79738
80028
|
input: JiraSetIssueSearchGroupByInput;
|
|
79739
80029
|
};
|
|
@@ -79743,6 +80033,9 @@ export declare type MutationJira_SetIssueSearchHideDoneItemsArgs = {
|
|
|
79743
80033
|
export declare type MutationJira_SetIssueSearchHierarchyEnabledArgs = {
|
|
79744
80034
|
input: JiraSetIssueSearchHierarchyEnabledInput;
|
|
79745
80035
|
};
|
|
80036
|
+
export declare type MutationJira_SetIssueSearchJqlArgs = {
|
|
80037
|
+
input: JiraSetIssueSearchJqlInput;
|
|
80038
|
+
};
|
|
79746
80039
|
export declare type MutationJira_SetIssueSearchViewLayoutArgs = {
|
|
79747
80040
|
input: JiraSetIssueSearchViewLayoutInput;
|
|
79748
80041
|
};
|
|
@@ -79988,9 +80281,6 @@ export declare type MutationResolveInlineCommentArgs = {
|
|
|
79988
80281
|
export declare type MutationResolvePolarisObjectArgs = {
|
|
79989
80282
|
input: ResolvePolarisObjectInput;
|
|
79990
80283
|
};
|
|
79991
|
-
export declare type MutationResolveRestrictionsArgs = {
|
|
79992
|
-
input: Array<InputMaybe<ResolveRestrictionsInput>>;
|
|
79993
|
-
};
|
|
79994
80284
|
export declare type MutationResolveRestrictionsForSubjectsArgs = {
|
|
79995
80285
|
input: ResolveRestrictionsForSubjectsInput;
|
|
79996
80286
|
};
|
|
@@ -82879,7 +83169,8 @@ export declare enum PrincipalFilterType {
|
|
|
82879
83169
|
Group = "GROUP",
|
|
82880
83170
|
Guest = "GUEST",
|
|
82881
83171
|
Team = "TEAM",
|
|
82882
|
-
User = "USER"
|
|
83172
|
+
User = "USER",
|
|
83173
|
+
UserClass = "USER_CLASS"
|
|
82883
83174
|
}
|
|
82884
83175
|
export declare enum PrincipalType {
|
|
82885
83176
|
Anonymous = "ANONYMOUS",
|
|
@@ -83333,7 +83624,9 @@ export declare type Query = {
|
|
|
83333
83624
|
confluence_atlassianUser?: Maybe<AtlassianUser>;
|
|
83334
83625
|
confluence_calendarPreference?: Maybe<ConfluenceCalendarPreference>;
|
|
83335
83626
|
confluence_calendarTimezones?: Maybe<ConfluenceCalendarTimezones>;
|
|
83627
|
+
confluence_contentAccessRequestByStatus?: Maybe<ConfluenceContentAccessRequestConnection>;
|
|
83336
83628
|
confluence_contentAnalyticsCountUserByContentType?: Maybe<ConfluenceContentAnalyticsCountUserByContentType>;
|
|
83629
|
+
confluence_contentReactionsSummary?: Maybe<ConfluenceReactionSummary>;
|
|
83337
83630
|
confluence_contentSmartLinksForDraft?: Maybe<PaginatedSmartLinkList>;
|
|
83338
83631
|
confluence_contentWatchersUnfiltered?: Maybe<PaginatedPersonList>;
|
|
83339
83632
|
confluence_contents?: Maybe<Array<Maybe<Content>>>;
|
|
@@ -83342,21 +83635,27 @@ export declare type Query = {
|
|
|
83342
83635
|
confluence_empty?: Maybe<Scalars['String']['output']>;
|
|
83343
83636
|
confluence_expandTypeFromJira?: Maybe<ConfluenceExpandTypeFromJira>;
|
|
83344
83637
|
confluence_externalCollaboratorsByCriteria?: Maybe<ConfluencePersonConnection>;
|
|
83638
|
+
confluence_forgeExtensionsByType?: Maybe<Array<Maybe<ConfluenceForgeExtension>>>;
|
|
83345
83639
|
confluence_hasClearPermissionForSpace?: Maybe<Scalars['Boolean']['output']>;
|
|
83346
83640
|
confluence_hasDivergedFromDefaultSpacePermissions?: Maybe<Scalars['Boolean']['output']>;
|
|
83347
83641
|
confluence_isPrivacyModeEnabled?: Maybe<ConfluencePrivacyMode>;
|
|
83348
83642
|
confluence_isWatchingLabel?: Maybe<ConfluenceLabelWatchStatus>;
|
|
83349
83643
|
confluence_latestKnowledgeGraphObjectV2?: Maybe<KnowledgeGraphObjectResponseV2>;
|
|
83644
|
+
confluence_loomEntryPoints?: Maybe<ConfluenceLoomEntryPoints>;
|
|
83350
83645
|
confluence_macrosByIds?: Maybe<Array<Maybe<Macro>>>;
|
|
83351
83646
|
confluence_mutationsPlaceholderQuery?: Maybe<Scalars['Boolean']['output']>;
|
|
83352
83647
|
confluence_pdfExportDownloadLink?: Maybe<ConfluencePdfExportDownloadLink>;
|
|
83353
83648
|
confluence_pdfExportTask?: Maybe<ConfluencePdfExportTask>;
|
|
83354
83649
|
confluence_publicLinkSpaceHomePage?: Maybe<PublicLinkPage>;
|
|
83650
|
+
confluence_reactedUsers?: Maybe<ConfluenceReactedUsersResponsePayload>;
|
|
83651
|
+
confluence_reactionsSummaries?: Maybe<Array<Maybe<ConfluenceReactionSummary>>>;
|
|
83652
|
+
confluence_reactionsSummary?: Maybe<ConfluenceReactionSummary>;
|
|
83355
83653
|
confluence_refreshMigrationMediaSession?: Maybe<ContentMediaSession>;
|
|
83356
83654
|
confluence_search?: Maybe<ConfluenceSearchConnection>;
|
|
83357
83655
|
confluence_searchTeamLabels?: Maybe<LabelSearchResults>;
|
|
83358
83656
|
confluence_searchUser?: Maybe<ConfluenceSearchConnection>;
|
|
83359
83657
|
confluence_spaceMediaSession?: Maybe<ContentMediaSession>;
|
|
83658
|
+
confluence_spaceRoleMode?: Maybe<ConfluenceSpaceRoleMode>;
|
|
83360
83659
|
confluence_spaceWatchersUnfiltered?: Maybe<PaginatedPersonList>;
|
|
83361
83660
|
confluence_storage?: Maybe<ConfluenceStorage>;
|
|
83362
83661
|
confluence_subCalendarEmbedInfo?: Maybe<Array<Maybe<ConfluenceSubCalendarEmbedInfo>>>;
|
|
@@ -83367,6 +83666,8 @@ export declare type Query = {
|
|
|
83367
83666
|
confluence_teamPresenceSpaceSettings?: Maybe<ConfluenceTeamPresenceSpaceSettings>;
|
|
83368
83667
|
confluence_template?: Maybe<ContentTemplate>;
|
|
83369
83668
|
confluence_tenantContext?: Maybe<ConfluenceTenantContext>;
|
|
83669
|
+
confluence_topic?: Maybe<ConfluenceTopic>;
|
|
83670
|
+
confluence_topics?: Maybe<ConfluenceTopicConnection>;
|
|
83370
83671
|
confluence_userClasses?: Maybe<ConfluenceUserClassConnection>;
|
|
83371
83672
|
confluence_userContentAccess?: Maybe<ConfluenceUserContentAccessResult>;
|
|
83372
83673
|
confluence_usersHavePermission?: Maybe<ConfluenceUsersHavePermissionList>;
|
|
@@ -83720,7 +84021,6 @@ export declare type Query = {
|
|
|
83720
84021
|
signUpProperties?: Maybe<SignUpProperties>;
|
|
83721
84022
|
signup?: Maybe<SignupQueryApi>;
|
|
83722
84023
|
singleContent?: Maybe<Content>;
|
|
83723
|
-
singleRestrictedResource?: Maybe<RestrictedResourceInfo>;
|
|
83724
84024
|
siteConfiguration?: Maybe<SiteConfiguration>;
|
|
83725
84025
|
siteDescription?: Maybe<SiteDescription>;
|
|
83726
84026
|
siteOperations?: Maybe<SiteOperations>;
|
|
@@ -84175,6 +84475,13 @@ export declare type QueryConfluence_CalendarPreferenceArgs = {
|
|
|
84175
84475
|
export declare type QueryConfluence_CalendarTimezonesArgs = {
|
|
84176
84476
|
cloudId: Scalars['ID']['input'];
|
|
84177
84477
|
};
|
|
84478
|
+
export declare type QueryConfluence_ContentAccessRequestByStatusArgs = {
|
|
84479
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
84480
|
+
cloudId: Scalars['ID']['input'];
|
|
84481
|
+
contentId: Scalars['ID']['input'];
|
|
84482
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
84483
|
+
status?: InputMaybe<ConfluenceContentAccessRequestStatus>;
|
|
84484
|
+
};
|
|
84178
84485
|
export declare type QueryConfluence_ContentAnalyticsCountUserByContentTypeArgs = {
|
|
84179
84486
|
cloudId: Scalars['ID']['input'];
|
|
84180
84487
|
contentIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
@@ -84186,6 +84493,11 @@ export declare type QueryConfluence_ContentAnalyticsCountUserByContentTypeArgs =
|
|
|
84186
84493
|
startTime: Scalars['String']['input'];
|
|
84187
84494
|
subType?: InputMaybe<Scalars['String']['input']>;
|
|
84188
84495
|
};
|
|
84496
|
+
export declare type QueryConfluence_ContentReactionsSummaryArgs = {
|
|
84497
|
+
cloudId: Scalars['ID']['input'];
|
|
84498
|
+
contentId: Scalars['ID']['input'];
|
|
84499
|
+
contentType: GraphQlReactionContentType;
|
|
84500
|
+
};
|
|
84189
84501
|
export declare type QueryConfluence_ContentSmartLinksForDraftArgs = {
|
|
84190
84502
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
84191
84503
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -84226,6 +84538,13 @@ export declare type QueryConfluence_ExternalCollaboratorsByCriteriaArgs = {
|
|
|
84226
84538
|
spaceAssignmentType?: InputMaybe<SpaceAssignmentType>;
|
|
84227
84539
|
spaceIds?: InputMaybe<Array<InputMaybe<Scalars['Long']['input']>>>;
|
|
84228
84540
|
};
|
|
84541
|
+
export declare type QueryConfluence_ForgeExtensionsByTypeArgs = {
|
|
84542
|
+
cloudId: Scalars['ID']['input'];
|
|
84543
|
+
context?: InputMaybe<ConfluenceExtensionRenderingContextInput>;
|
|
84544
|
+
includeHidden?: InputMaybe<Scalars['Boolean']['input']>;
|
|
84545
|
+
locale?: InputMaybe<Scalars['String']['input']>;
|
|
84546
|
+
types?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
84547
|
+
};
|
|
84229
84548
|
export declare type QueryConfluence_HasClearPermissionForSpaceArgs = {
|
|
84230
84549
|
cloudId: Scalars['ID']['input'];
|
|
84231
84550
|
spaceKey: Scalars['String']['input'];
|
|
@@ -84247,6 +84566,9 @@ export declare type QueryConfluence_LatestKnowledgeGraphObjectV2Args = {
|
|
|
84247
84566
|
contentType: KnowledgeGraphContentType;
|
|
84248
84567
|
objectType: KnowledgeGraphObjectType;
|
|
84249
84568
|
};
|
|
84569
|
+
export declare type QueryConfluence_LoomEntryPointsArgs = {
|
|
84570
|
+
cloudId: Scalars['ID']['input'];
|
|
84571
|
+
};
|
|
84250
84572
|
export declare type QueryConfluence_MacrosByIdsArgs = {
|
|
84251
84573
|
cloudId: Scalars['ID']['input'];
|
|
84252
84574
|
contentId: Scalars['ID']['input'];
|
|
@@ -84264,6 +84586,19 @@ export declare type QueryConfluence_PublicLinkSpaceHomePageArgs = {
|
|
|
84264
84586
|
cloudId: Scalars['ID']['input'];
|
|
84265
84587
|
spaceKey: Scalars['String']['input'];
|
|
84266
84588
|
};
|
|
84589
|
+
export declare type QueryConfluence_ReactedUsersArgs = {
|
|
84590
|
+
cloudId: Scalars['ID']['input'];
|
|
84591
|
+
input: ConfluenceReactedUsersInput;
|
|
84592
|
+
};
|
|
84593
|
+
export declare type QueryConfluence_ReactionsSummariesArgs = {
|
|
84594
|
+
cloudId: Scalars['ID']['input'];
|
|
84595
|
+
input: Array<InputMaybe<ConfluenceReactionSummaryInput>>;
|
|
84596
|
+
};
|
|
84597
|
+
export declare type QueryConfluence_ReactionsSummaryArgs = {
|
|
84598
|
+
cloudId: Scalars['ID']['input'];
|
|
84599
|
+
contentId: Scalars['ID']['input'];
|
|
84600
|
+
contentType: GraphQlReactionContentType;
|
|
84601
|
+
};
|
|
84267
84602
|
export declare type QueryConfluence_RefreshMigrationMediaSessionArgs = {
|
|
84268
84603
|
cloudId: Scalars['ID']['input'];
|
|
84269
84604
|
migrationId: Scalars['String']['input'];
|
|
@@ -84300,6 +84635,9 @@ export declare type QueryConfluence_SpaceMediaSessionArgs = {
|
|
|
84300
84635
|
contentType: Scalars['String']['input'];
|
|
84301
84636
|
spaceKey: Scalars['String']['input'];
|
|
84302
84637
|
};
|
|
84638
|
+
export declare type QueryConfluence_SpaceRoleModeArgs = {
|
|
84639
|
+
cloudId: Scalars['ID']['input'];
|
|
84640
|
+
};
|
|
84303
84641
|
export declare type QueryConfluence_SpaceWatchersUnfilteredArgs = {
|
|
84304
84642
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
84305
84643
|
cloudId: Scalars['ID']['input'];
|
|
@@ -84342,6 +84680,18 @@ export declare type QueryConfluence_TemplateArgs = {
|
|
|
84342
84680
|
export declare type QueryConfluence_TenantContextArgs = {
|
|
84343
84681
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
84344
84682
|
};
|
|
84683
|
+
export declare type QueryConfluence_TopicArgs = {
|
|
84684
|
+
cloudId: Scalars['ID']['input'];
|
|
84685
|
+
id?: InputMaybe<Scalars['Long']['input']>;
|
|
84686
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
84687
|
+
};
|
|
84688
|
+
export declare type QueryConfluence_TopicsArgs = {
|
|
84689
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
84690
|
+
cloudId: Scalars['ID']['input'];
|
|
84691
|
+
featured?: InputMaybe<Scalars['Boolean']['input']>;
|
|
84692
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
84693
|
+
namePattern?: InputMaybe<Scalars['String']['input']>;
|
|
84694
|
+
};
|
|
84345
84695
|
export declare type QueryConfluence_UserClassesArgs = {
|
|
84346
84696
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
84347
84697
|
cloudId: Scalars['ID']['input'];
|
|
@@ -84430,6 +84780,7 @@ export declare type QueryContentAnalyticsViewsByUserArgs = {
|
|
|
84430
84780
|
accountIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
84431
84781
|
contentId: Scalars['ID']['input'];
|
|
84432
84782
|
engageTimeThreshold?: InputMaybe<Scalars['Int']['input']>;
|
|
84783
|
+
isPrivacyModeEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
84433
84784
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
84434
84785
|
};
|
|
84435
84786
|
export declare type QueryContentBodyArgs = {
|
|
@@ -85672,11 +86023,6 @@ export declare type QuerySingleContentArgs = {
|
|
|
85672
86023
|
status?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
85673
86024
|
validatedShareToken?: InputMaybe<Scalars['String']['input']>;
|
|
85674
86025
|
};
|
|
85675
|
-
export declare type QuerySingleRestrictedResourceArgs = {
|
|
85676
|
-
accessType: ResourceAccessType;
|
|
85677
|
-
accountId: Scalars['ID']['input'];
|
|
85678
|
-
resourceId: Scalars['Long']['input'];
|
|
85679
|
-
};
|
|
85680
86026
|
export declare type QuerySitePermissionsArgs = {
|
|
85681
86027
|
operations?: InputMaybe<Array<InputMaybe<SitePermissionOperationType>>>;
|
|
85682
86028
|
permissionTypes?: InputMaybe<Array<InputMaybe<SitePermissionType>>>;
|
|
@@ -86992,14 +87338,9 @@ export declare type ResolveRestrictionsForSubjectMutationErrorExtension = Mutati
|
|
|
86992
87338
|
export declare type ResolveRestrictionsForSubjectsInput = {
|
|
86993
87339
|
accessType: ResourceAccessType;
|
|
86994
87340
|
contentId: Scalars['Long']['input'];
|
|
87341
|
+
spaceRoleId?: InputMaybe<Scalars['ID']['input']>;
|
|
86995
87342
|
subjects: Array<InputMaybe<BlockedAccessSubjectInput>>;
|
|
86996
87343
|
};
|
|
86997
|
-
export declare type ResolveRestrictionsInput = {
|
|
86998
|
-
accessType: ResourceAccessType;
|
|
86999
|
-
accountId: Scalars['ID']['input'];
|
|
87000
|
-
resourceId: Scalars['Long']['input'];
|
|
87001
|
-
resourceType: ResourceType;
|
|
87002
|
-
};
|
|
87003
87344
|
export declare type ResolveRestrictionsPayload = Payload & {
|
|
87004
87345
|
__typename?: 'ResolveRestrictionsPayload';
|
|
87005
87346
|
errors: Array<MutationError>;
|
|
@@ -87053,12 +87394,6 @@ export declare type RestrictedResource = {
|
|
|
87053
87394
|
resourceTitle: Scalars['String']['output'];
|
|
87054
87395
|
resourceType: ResourceType;
|
|
87055
87396
|
};
|
|
87056
|
-
export declare type RestrictedResourceInfo = {
|
|
87057
|
-
__typename?: 'RestrictedResourceInfo';
|
|
87058
|
-
canSetPermission?: Maybe<Scalars['Boolean']['output']>;
|
|
87059
|
-
hasMultipleRestriction?: Maybe<Scalars['Boolean']['output']>;
|
|
87060
|
-
restrictedResourceList?: Maybe<Array<Maybe<RestrictedResource>>>;
|
|
87061
|
-
};
|
|
87062
87397
|
export declare type RestrictedResourceLinks = {
|
|
87063
87398
|
__typename?: 'RestrictedResourceLinks';
|
|
87064
87399
|
base?: Maybe<Scalars['String']['output']>;
|
|
@@ -91766,6 +92101,7 @@ export declare type SpacePermissionsSubjectsWithPermissionsArgs = {
|
|
|
91766
92101
|
};
|
|
91767
92102
|
export declare type SpaceRole = {
|
|
91768
92103
|
__typename?: 'SpaceRole';
|
|
92104
|
+
confluenceRoleAssignabilityCode: ConfluenceRoleAssignabilityCode;
|
|
91769
92105
|
inUseByDefaultSpaceRoleAssignments?: Maybe<Scalars['Boolean']['output']>;
|
|
91770
92106
|
inUseByPrincipals?: Maybe<Scalars['Boolean']['output']>;
|
|
91771
92107
|
roleDescription: Scalars['String']['output'];
|