@forge/cli-shared 2.6.2-next.2 → 2.6.2-next.3
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
|
@@ -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'];
|