@forge/cli-shared 2.6.2-next.1 → 2.6.2-next.4

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.4
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [b1684fd]
8
+ - @forge/manifest@4.0.0-next.4
9
+
10
+ ## 2.6.2-next.3
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies [6728c67]
15
+ - @forge/manifest@4.0.0-next.3
16
+
17
+ ## 2.6.2-next.2
18
+
19
+ ### Patch Changes
20
+
21
+ - Updated dependencies [0da5775]
22
+ - @forge/manifest@3.11.0-next.2
23
+
3
24
  ## 2.6.2-next.1
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<DeploymentSummary>;
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>;
@@ -5984,6 +6049,7 @@ export declare type DevOpsToolSort = {
5984
6049
  name?: Maybe<DevOpsToolSortOrder>;
5985
6050
  supportsContainers?: Maybe<DevOpsToolSortOrder>;
5986
6051
  integration?: Maybe<DevOpsToolSortOrder>;
6052
+ recommended?: Maybe<DevOpsToolSortOrder>;
5987
6053
  };
5988
6054
  export declare enum DevOpsToolSortOrder {
5989
6055
  Asc = "ASC",
@@ -6289,6 +6355,12 @@ export declare type ForgeAlertsConfigQueryInput = {
6289
6355
  environment: Scalars['String'];
6290
6356
  };
6291
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
+ };
6292
6364
  export declare type ForgeAlertsCreateConfigInput = {
6293
6365
  alertName?: Maybe<Scalars['String']>;
6294
6366
  description?: Maybe<Scalars['String']>;
@@ -6300,12 +6372,16 @@ export declare type ForgeAlertsCreateConfigInput = {
6300
6372
  export declare type ForgeAlertsMutation = {
6301
6373
  __typename?: 'ForgeAlertsMutation';
6302
6374
  appId: Scalars['ID'];
6303
- createAlertConfig?: Maybe<ForgeAlertsConfigResult>;
6375
+ createAlertConfig?: Maybe<ForgeAlertsCreateAlertPayload>;
6376
+ modifyAlertConfig?: Maybe<ForgeAlertsUpdateAlertPayload>;
6304
6377
  updateAlertConfig?: Maybe<ForgeAlertsConfigResult>;
6305
6378
  };
6306
6379
  export declare type ForgeAlertsMutationCreateAlertConfigArgs = {
6307
6380
  input: ForgeAlertsCreateConfigInput;
6308
6381
  };
6382
+ export declare type ForgeAlertsMutationModifyAlertConfigArgs = {
6383
+ input: ForgeAlertsUpdateConfigInput;
6384
+ };
6309
6385
  export declare type ForgeAlertsMutationUpdateAlertConfigArgs = {
6310
6386
  input: ForgeAlertsUpdateConfigInput;
6311
6387
  };
@@ -6321,6 +6397,12 @@ export declare enum ForgeAlertsStatus {
6321
6397
  Firing = "FIRING",
6322
6398
  Resolved = "RESOLVED"
6323
6399
  }
6400
+ export declare type ForgeAlertsUpdateAlertPayload = Payload & {
6401
+ __typename?: 'ForgeAlertsUpdateAlertPayload';
6402
+ alertConfig?: Maybe<ForgeAlertsConfigData>;
6403
+ errors?: Maybe<Array<MutationError>>;
6404
+ success: Scalars['Boolean'];
6405
+ };
6324
6406
  export declare type ForgeAlertsUpdateConfigInput = {
6325
6407
  description?: Maybe<Scalars['String']>;
6326
6408
  environment: Scalars['String'];
@@ -6672,7 +6754,7 @@ export declare type HelpCenterCollectionItemsArgs = {
6672
6754
  before?: Maybe<Scalars['String']>;
6673
6755
  };
6674
6756
  export declare type HelpCenterCollectionDeleteInput = {
6675
- helpCenterId: Scalars['ID'];
6757
+ productName: Scalars['String'];
6676
6758
  collectionId: Scalars['ID'];
6677
6759
  };
6678
6760
  export declare type HelpCenterCollectionItem = {
@@ -6697,7 +6779,7 @@ export declare type HelpCenterCollectionItemInput = {
6697
6779
  };
6698
6780
  export declare type HelpCenterCollectionResult = HelpCenterCollection | QueryError;
6699
6781
  export declare type HelpCenterCreateCollectionInput = {
6700
- helpCenterId: Scalars['ID'];
6782
+ productName: Scalars['String'];
6701
6783
  items: Array<HelpCenterCollectionItemInput>;
6702
6784
  name: Scalars['String'];
6703
6785
  description?: Maybe<Scalars['String']>;
@@ -6759,7 +6841,7 @@ export declare type HelpCenterSuccessfullyDeletedUpdatedCollectionIds = {
6759
6841
  collectionIds: Scalars['ID'];
6760
6842
  };
6761
6843
  export declare type HelpCenterUpdateCollectionInput = {
6762
- helpCenterId: Scalars['ID'];
6844
+ productName: Scalars['String'];
6763
6845
  collectionId: Scalars['ID'];
6764
6846
  items: Array<HelpCenterCollectionItemInput>;
6765
6847
  name: Scalars['String'];
@@ -6767,7 +6849,7 @@ export declare type HelpCenterUpdateCollectionInput = {
6767
6849
  properties?: Maybe<Scalars['JSON']>;
6768
6850
  };
6769
6851
  export declare type HelpCenterUpdateCollectionsOrderInput = {
6770
- helpCenterId: Scalars['ID'];
6852
+ productName: Scalars['String'];
6771
6853
  collectionIds: Array<Scalars['ID']>;
6772
6854
  };
6773
6855
  export declare type HelpCenterUpdateCollectionsOrderPayload = Payload & {