@forge/cli-shared 2.6.2-next.2 → 2.6.2-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
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 2.6.2-next.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [c0c88f09]
|
|
8
|
+
- @forge/manifest@4.0.0-next.5
|
|
9
|
+
|
|
10
|
+
## 2.6.2-next.4
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [b1684fd]
|
|
15
|
+
- @forge/manifest@4.0.0-next.4
|
|
16
|
+
|
|
17
|
+
## 2.6.2-next.3
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- Updated dependencies [6728c67]
|
|
22
|
+
- @forge/manifest@4.0.0-next.3
|
|
23
|
+
|
|
3
24
|
## 2.6.2-next.2
|
|
4
25
|
|
|
5
26
|
### Patch Changes
|
|
@@ -936,8 +936,9 @@ export declare type AriGraphRelationshipEdge = {
|
|
|
936
936
|
export declare type AriGraphRelationshipNode = {
|
|
937
937
|
__typename?: 'AriGraphRelationshipNode';
|
|
938
938
|
id: Scalars['ID'];
|
|
939
|
-
data?: Maybe<
|
|
939
|
+
data?: Maybe<AriGraphRelationshipNodeData>;
|
|
940
940
|
};
|
|
941
|
+
export declare type AriGraphRelationshipNodeData = DeploymentSummary | ConfluenceSpace;
|
|
941
942
|
export declare type AriGraphRelationshipsErrorReference = {
|
|
942
943
|
__typename?: 'AriGraphRelationshipsErrorReference';
|
|
943
944
|
from?: Maybe<Scalars['ID']>;
|
|
@@ -3309,6 +3310,7 @@ export declare type ConfluenceBlogPost = {
|
|
|
3309
3310
|
__typename?: 'ConfluenceBlogPost';
|
|
3310
3311
|
author?: Maybe<ConfluenceUserInfo>;
|
|
3311
3312
|
blogPostId: Scalars['ID'];
|
|
3313
|
+
body?: Maybe<ConfluenceBodies>;
|
|
3312
3314
|
comments?: Maybe<Array<Maybe<ConfluenceComment>>>;
|
|
3313
3315
|
id: Scalars['ID'];
|
|
3314
3316
|
latestVersion?: Maybe<ConfluenceBlogPostVersion>;
|
|
@@ -3356,12 +3358,41 @@ export declare type ConfluenceBlogPostViewerSummary = {
|
|
|
3356
3358
|
lastContribution?: Maybe<ConfluenceContribution>;
|
|
3357
3359
|
lastSeenAt?: Maybe<Scalars['DateTime']>;
|
|
3358
3360
|
};
|
|
3361
|
+
export declare type ConfluenceBodies = {
|
|
3362
|
+
__typename?: 'ConfluenceBodies';
|
|
3363
|
+
anonymousExportView?: Maybe<ConfluenceBody>;
|
|
3364
|
+
atlasDocFormat?: Maybe<ConfluenceBody>;
|
|
3365
|
+
dynamic?: Maybe<ConfluenceBody>;
|
|
3366
|
+
editor?: Maybe<ConfluenceBody>;
|
|
3367
|
+
editor2?: Maybe<ConfluenceBody>;
|
|
3368
|
+
exportView?: Maybe<ConfluenceBody>;
|
|
3369
|
+
storage?: Maybe<ConfluenceBody>;
|
|
3370
|
+
styledView?: Maybe<ConfluenceBody>;
|
|
3371
|
+
view?: Maybe<ConfluenceBody>;
|
|
3372
|
+
};
|
|
3373
|
+
export declare type ConfluenceBody = {
|
|
3374
|
+
__typename?: 'ConfluenceBody';
|
|
3375
|
+
representation?: Maybe<ConfluenceBodyRepresentation>;
|
|
3376
|
+
value?: Maybe<Scalars['String']>;
|
|
3377
|
+
};
|
|
3378
|
+
export declare enum ConfluenceBodyRepresentation {
|
|
3379
|
+
AnonymousExportView = "ANONYMOUS_EXPORT_VIEW",
|
|
3380
|
+
AtlasDocFormat = "ATLAS_DOC_FORMAT",
|
|
3381
|
+
Dynamic = "DYNAMIC",
|
|
3382
|
+
Editor = "EDITOR",
|
|
3383
|
+
Editor2 = "EDITOR2",
|
|
3384
|
+
ExportView = "EXPORT_VIEW",
|
|
3385
|
+
Storage = "STORAGE",
|
|
3386
|
+
StyledView = "STYLED_VIEW",
|
|
3387
|
+
View = "VIEW"
|
|
3388
|
+
}
|
|
3359
3389
|
export declare enum ConfluenceCollaborativeEditingService {
|
|
3360
3390
|
Ncs = "NCS",
|
|
3361
3391
|
Synchrony = "SYNCHRONY"
|
|
3362
3392
|
}
|
|
3363
3393
|
export declare type ConfluenceComment = {
|
|
3364
3394
|
author?: Maybe<ConfluenceUserInfo>;
|
|
3395
|
+
body?: Maybe<ConfluenceBodies>;
|
|
3365
3396
|
commentId?: Maybe<Scalars['ID']>;
|
|
3366
3397
|
container?: Maybe<ConfluenceCommentContainer>;
|
|
3367
3398
|
id: Scalars['ID'];
|
|
@@ -3578,6 +3609,7 @@ export declare type ConfluenceDeleteUserPropertyPayload = Payload & {
|
|
|
3578
3609
|
export declare type ConfluenceFooterComment = ConfluenceComment & {
|
|
3579
3610
|
__typename?: 'ConfluenceFooterComment';
|
|
3580
3611
|
author?: Maybe<ConfluenceUserInfo>;
|
|
3612
|
+
body?: Maybe<ConfluenceBodies>;
|
|
3581
3613
|
commentId?: Maybe<Scalars['ID']>;
|
|
3582
3614
|
container?: Maybe<ConfluenceCommentContainer>;
|
|
3583
3615
|
id: Scalars['ID'];
|
|
@@ -3588,13 +3620,19 @@ export declare type ConfluenceFooterComment = ConfluenceComment & {
|
|
|
3588
3620
|
export declare type ConfluenceInlineComment = ConfluenceComment & {
|
|
3589
3621
|
__typename?: 'ConfluenceInlineComment';
|
|
3590
3622
|
author?: Maybe<ConfluenceUserInfo>;
|
|
3623
|
+
body?: Maybe<ConfluenceBodies>;
|
|
3591
3624
|
commentId?: Maybe<Scalars['ID']>;
|
|
3592
3625
|
container?: Maybe<ConfluenceCommentContainer>;
|
|
3593
3626
|
id: Scalars['ID'];
|
|
3594
3627
|
links?: Maybe<ConfluenceCommentLinks>;
|
|
3595
3628
|
name?: Maybe<Scalars['String']>;
|
|
3629
|
+
resolutionStatus?: Maybe<ConfluenceInlineCommentResolutionStatus>;
|
|
3596
3630
|
status?: Maybe<ConfluenceCommentStatus>;
|
|
3597
3631
|
};
|
|
3632
|
+
export declare enum ConfluenceInlineCommentResolutionStatus {
|
|
3633
|
+
Resolved = "RESOLVED",
|
|
3634
|
+
Unresolved = "UNRESOLVED"
|
|
3635
|
+
}
|
|
3598
3636
|
export declare type ConfluenceInlineTask = {
|
|
3599
3637
|
__typename?: 'ConfluenceInlineTask';
|
|
3600
3638
|
assignedTo?: Maybe<ConfluenceUserInfo>;
|
|
@@ -3639,7 +3677,9 @@ export declare type ConfluenceMutationApi = {
|
|
|
3639
3677
|
publishPage?: Maybe<ConfluencePublishPagePayload>;
|
|
3640
3678
|
purgeBlogPost?: Maybe<ConfluencePurgeBlogPostPayload>;
|
|
3641
3679
|
purgePage?: Maybe<ConfluencePurgePagePayload>;
|
|
3680
|
+
reopenInlineComment?: Maybe<ConfluenceReopenInlineCommentPayload>;
|
|
3642
3681
|
replyToComment?: Maybe<ConfluenceReplyToCommentPayload>;
|
|
3682
|
+
resolveInlineComment?: Maybe<ConfluenceResolveInlineCommentPayload>;
|
|
3643
3683
|
trashBlogPost?: Maybe<ConfluenceTrashBlogPostPayload>;
|
|
3644
3684
|
trashPage?: Maybe<ConfluenceTrashPagePayload>;
|
|
3645
3685
|
updateComment?: Maybe<ConfluenceUpdateCommentPayload>;
|
|
@@ -3703,9 +3743,15 @@ export declare type ConfluenceMutationApiPurgeBlogPostArgs = {
|
|
|
3703
3743
|
export declare type ConfluenceMutationApiPurgePageArgs = {
|
|
3704
3744
|
input: ConfluencePurgePageInput;
|
|
3705
3745
|
};
|
|
3746
|
+
export declare type ConfluenceMutationApiReopenInlineCommentArgs = {
|
|
3747
|
+
input: ConfluenceReopenInlineCommentInput;
|
|
3748
|
+
};
|
|
3706
3749
|
export declare type ConfluenceMutationApiReplyToCommentArgs = {
|
|
3707
3750
|
input: ConfluenceReplyToCommentInput;
|
|
3708
3751
|
};
|
|
3752
|
+
export declare type ConfluenceMutationApiResolveInlineCommentArgs = {
|
|
3753
|
+
input: ConfluenceResolveInlineCommentInput;
|
|
3754
|
+
};
|
|
3709
3755
|
export declare type ConfluenceMutationApiTrashBlogPostArgs = {
|
|
3710
3756
|
input: ConfluenceTrashBlogPostInput;
|
|
3711
3757
|
};
|
|
@@ -3784,6 +3830,7 @@ export declare enum ConfluenceOperationTarget {
|
|
|
3784
3830
|
export declare type ConfluencePage = {
|
|
3785
3831
|
__typename?: 'ConfluencePage';
|
|
3786
3832
|
author?: Maybe<ConfluenceUserInfo>;
|
|
3833
|
+
body?: Maybe<ConfluenceBodies>;
|
|
3787
3834
|
comments?: Maybe<Array<Maybe<ConfluenceComment>>>;
|
|
3788
3835
|
id: Scalars['ID'];
|
|
3789
3836
|
latestVersion?: Maybe<ConfluencePageVersion>;
|
|
@@ -3927,6 +3974,15 @@ export declare type ConfluenceQueryApiUserPropertyArgs = {
|
|
|
3927
3974
|
export declare type ConfluenceQueryApiUserPropertiesArgs = {
|
|
3928
3975
|
ids: Array<Scalars['ID']>;
|
|
3929
3976
|
};
|
|
3977
|
+
export declare type ConfluenceReopenInlineCommentInput = {
|
|
3978
|
+
id: Scalars['ID'];
|
|
3979
|
+
};
|
|
3980
|
+
export declare type ConfluenceReopenInlineCommentPayload = {
|
|
3981
|
+
__typename?: 'ConfluenceReopenInlineCommentPayload';
|
|
3982
|
+
comment?: Maybe<ConfluenceInlineComment>;
|
|
3983
|
+
errors?: Maybe<Array<MutationError>>;
|
|
3984
|
+
success: Scalars['Boolean'];
|
|
3985
|
+
};
|
|
3930
3986
|
export declare type ConfluenceReplyToCommentInput = {
|
|
3931
3987
|
body: ConfluenceContentBodyInput;
|
|
3932
3988
|
parentCommentId: Scalars['ID'];
|
|
@@ -3937,6 +3993,15 @@ export declare type ConfluenceReplyToCommentPayload = {
|
|
|
3937
3993
|
errors?: Maybe<Array<MutationError>>;
|
|
3938
3994
|
success: Scalars['Boolean'];
|
|
3939
3995
|
};
|
|
3996
|
+
export declare type ConfluenceResolveInlineCommentInput = {
|
|
3997
|
+
id: Scalars['ID'];
|
|
3998
|
+
};
|
|
3999
|
+
export declare type ConfluenceResolveInlineCommentPayload = {
|
|
4000
|
+
__typename?: 'ConfluenceResolveInlineCommentPayload';
|
|
4001
|
+
comment?: Maybe<ConfluenceInlineComment>;
|
|
4002
|
+
errors?: Maybe<Array<MutationError>>;
|
|
4003
|
+
success: Scalars['Boolean'];
|
|
4004
|
+
};
|
|
3940
4005
|
export declare type ConfluenceSpace = {
|
|
3941
4006
|
__typename?: 'ConfluenceSpace';
|
|
3942
4007
|
createdBy?: Maybe<ConfluenceUserInfo>;
|
|
@@ -6290,6 +6355,12 @@ export declare type ForgeAlertsConfigQueryInput = {
|
|
|
6290
6355
|
environment: Scalars['String'];
|
|
6291
6356
|
};
|
|
6292
6357
|
export declare type ForgeAlertsConfigResult = ForgeAlertsConfigData | QueryError;
|
|
6358
|
+
export declare type ForgeAlertsCreateAlertPayload = Payload & {
|
|
6359
|
+
__typename?: 'ForgeAlertsCreateAlertPayload';
|
|
6360
|
+
alertConfig?: Maybe<ForgeAlertsConfigData>;
|
|
6361
|
+
errors?: Maybe<Array<MutationError>>;
|
|
6362
|
+
success: Scalars['Boolean'];
|
|
6363
|
+
};
|
|
6293
6364
|
export declare type ForgeAlertsCreateConfigInput = {
|
|
6294
6365
|
alertName?: Maybe<Scalars['String']>;
|
|
6295
6366
|
description?: Maybe<Scalars['String']>;
|
|
@@ -6301,12 +6372,16 @@ export declare type ForgeAlertsCreateConfigInput = {
|
|
|
6301
6372
|
export declare type ForgeAlertsMutation = {
|
|
6302
6373
|
__typename?: 'ForgeAlertsMutation';
|
|
6303
6374
|
appId: Scalars['ID'];
|
|
6304
|
-
createAlertConfig?: Maybe<
|
|
6375
|
+
createAlertConfig?: Maybe<ForgeAlertsCreateAlertPayload>;
|
|
6376
|
+
modifyAlertConfig?: Maybe<ForgeAlertsUpdateAlertPayload>;
|
|
6305
6377
|
updateAlertConfig?: Maybe<ForgeAlertsConfigResult>;
|
|
6306
6378
|
};
|
|
6307
6379
|
export declare type ForgeAlertsMutationCreateAlertConfigArgs = {
|
|
6308
6380
|
input: ForgeAlertsCreateConfigInput;
|
|
6309
6381
|
};
|
|
6382
|
+
export declare type ForgeAlertsMutationModifyAlertConfigArgs = {
|
|
6383
|
+
input: ForgeAlertsUpdateConfigInput;
|
|
6384
|
+
};
|
|
6310
6385
|
export declare type ForgeAlertsMutationUpdateAlertConfigArgs = {
|
|
6311
6386
|
input: ForgeAlertsUpdateConfigInput;
|
|
6312
6387
|
};
|
|
@@ -6322,6 +6397,12 @@ export declare enum ForgeAlertsStatus {
|
|
|
6322
6397
|
Firing = "FIRING",
|
|
6323
6398
|
Resolved = "RESOLVED"
|
|
6324
6399
|
}
|
|
6400
|
+
export declare type ForgeAlertsUpdateAlertPayload = Payload & {
|
|
6401
|
+
__typename?: 'ForgeAlertsUpdateAlertPayload';
|
|
6402
|
+
alertConfig?: Maybe<ForgeAlertsConfigData>;
|
|
6403
|
+
errors?: Maybe<Array<MutationError>>;
|
|
6404
|
+
success: Scalars['Boolean'];
|
|
6405
|
+
};
|
|
6325
6406
|
export declare type ForgeAlertsUpdateConfigInput = {
|
|
6326
6407
|
description?: Maybe<Scalars['String']>;
|
|
6327
6408
|
environment: Scalars['String'];
|
|
@@ -17164,6 +17245,8 @@ export declare type SupportRequestCatalogMutationApi = {
|
|
|
17164
17245
|
statusTransition?: Maybe<Scalars['Boolean']>;
|
|
17165
17246
|
removeRequestParticipants?: Maybe<SupportRequestParticipants>;
|
|
17166
17247
|
addRequestParticipants?: Maybe<SupportRequestParticipants>;
|
|
17248
|
+
removeSupportRequestOrganizations: Array<SupportRequestOrganization>;
|
|
17249
|
+
addSupportRequestOrganizations: Array<SupportRequestOrganization>;
|
|
17167
17250
|
createNamedContactOperationRequest?: Maybe<SupportRequestTicket>;
|
|
17168
17251
|
updateSupportRequest?: Maybe<SupportRequest>;
|
|
17169
17252
|
supportRequestContext?: Maybe<SupportRequestContextMutationApi>;
|
|
@@ -17180,6 +17263,12 @@ export declare type SupportRequestCatalogMutationApiRemoveRequestParticipantsArg
|
|
|
17180
17263
|
export declare type SupportRequestCatalogMutationApiAddRequestParticipantsArgs = {
|
|
17181
17264
|
input: SupportRequestParticipantsInput;
|
|
17182
17265
|
};
|
|
17266
|
+
export declare type SupportRequestCatalogMutationApiRemoveSupportRequestOrganizationsArgs = {
|
|
17267
|
+
input: SupportRequestOrganizationsInput;
|
|
17268
|
+
};
|
|
17269
|
+
export declare type SupportRequestCatalogMutationApiAddSupportRequestOrganizationsArgs = {
|
|
17270
|
+
input: SupportRequestOrganizationsInput;
|
|
17271
|
+
};
|
|
17183
17272
|
export declare type SupportRequestCatalogMutationApiCreateNamedContactOperationRequestArgs = {
|
|
17184
17273
|
emails: Array<Scalars['String']>;
|
|
17185
17274
|
organizationId?: Maybe<Scalars['String']>;
|
|
@@ -17305,6 +17394,15 @@ export declare type SupportRequestNotification = {
|
|
|
17305
17394
|
__typename?: 'SupportRequestNotification';
|
|
17306
17395
|
status?: Maybe<Scalars['Boolean']>;
|
|
17307
17396
|
};
|
|
17397
|
+
export declare type SupportRequestOrganization = {
|
|
17398
|
+
__typename?: 'SupportRequestOrganization';
|
|
17399
|
+
id: Scalars['Int'];
|
|
17400
|
+
name: Scalars['String'];
|
|
17401
|
+
};
|
|
17402
|
+
export declare type SupportRequestOrganizationsInput = {
|
|
17403
|
+
requestKey: Scalars['String'];
|
|
17404
|
+
orgIds: Array<Scalars['Int']>;
|
|
17405
|
+
};
|
|
17308
17406
|
export declare type SupportRequestPage = {
|
|
17309
17407
|
__typename?: 'SupportRequestPage';
|
|
17310
17408
|
profile?: Maybe<SupportRequestUser>;
|
|
@@ -17415,11 +17513,16 @@ export declare enum SupportRequestUserType {
|
|
|
17415
17513
|
export declare type SupportRequestUsers = {
|
|
17416
17514
|
__typename?: 'SupportRequestUsers';
|
|
17417
17515
|
searchUsers: Array<SupportRequestUser>;
|
|
17516
|
+
searchOrganizations: Array<SupportRequestOrganization>;
|
|
17418
17517
|
};
|
|
17419
17518
|
export declare type SupportRequestUsersSearchUsersArgs = {
|
|
17420
17519
|
query?: Maybe<Scalars['String']>;
|
|
17421
17520
|
requestKey?: Maybe<Scalars['String']>;
|
|
17422
17521
|
};
|
|
17522
|
+
export declare type SupportRequestUsersSearchOrganizationsArgs = {
|
|
17523
|
+
query?: Maybe<Scalars['String']>;
|
|
17524
|
+
requestKey?: Maybe<Scalars['String']>;
|
|
17525
|
+
};
|
|
17423
17526
|
export declare type SupportRequests = {
|
|
17424
17527
|
__typename?: 'SupportRequests';
|
|
17425
17528
|
total: Scalars['Int'];
|