@forge/cli-shared 2.3.1 → 2.3.2-next.0

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,12 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 2.3.2-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [ba674590]
8
+ - @forge/manifest@3.5.0-next.0
9
+
3
10
  ## 2.3.1
4
11
 
5
12
  ### Patch Changes
@@ -312,7 +312,8 @@ export declare enum ApiGroup {
312
312
  DevopsContainerRelationship = "DEVOPS_CONTAINER_RELATIONSHIP",
313
313
  Teams = "TEAMS",
314
314
  ContentPlatformApi = "CONTENT_PLATFORM_API",
315
- Identity = "IDENTITY"
315
+ Identity = "IDENTITY",
316
+ DevopsAriGraph = "DEVOPS_ARI_GRAPH"
316
317
  }
317
318
  export declare type App = {
318
319
  __typename?: 'App';
@@ -854,6 +855,66 @@ export declare type ArchivePolarisInsightsPayload = Payload & {
854
855
  success: Scalars['Boolean'];
855
856
  errors?: Maybe<Array<MutationError>>;
856
857
  };
858
+ export declare type AriGraph = {
859
+ __typename?: 'AriGraph';
860
+ relationship?: Maybe<AriGraphRelationship>;
861
+ relationships?: Maybe<AriGraphRelationshipConnection>;
862
+ };
863
+ export declare type AriGraphRelationshipArgs = {
864
+ from: Scalars['ID'];
865
+ type: Scalars['ID'];
866
+ to: Scalars['ID'];
867
+ };
868
+ export declare type AriGraphRelationshipsArgs = {
869
+ filter: AriGraphRelationshipsFilter;
870
+ first?: Maybe<Scalars['Int']>;
871
+ after?: Maybe<Scalars['String']>;
872
+ };
873
+ export declare type AriGraphCreateRelationshipInput = {
874
+ from: Scalars['ID'];
875
+ to: Scalars['ID'];
876
+ type: Scalars['ID'];
877
+ };
878
+ export declare type AriGraphCreateRelationshipPayload = Payload & {
879
+ __typename?: 'AriGraphCreateRelationshipPayload';
880
+ success: Scalars['Boolean'];
881
+ errors?: Maybe<Array<MutationError>>;
882
+ };
883
+ export declare type AriGraphMutation = {
884
+ __typename?: 'AriGraphMutation';
885
+ createRelationship?: Maybe<AriGraphCreateRelationshipPayload>;
886
+ };
887
+ export declare type AriGraphMutationCreateRelationshipArgs = {
888
+ input: AriGraphCreateRelationshipInput;
889
+ };
890
+ export declare type AriGraphRelationship = {
891
+ __typename?: 'AriGraphRelationship';
892
+ from: AriGraphRelationshipNode;
893
+ type: Scalars['ID'];
894
+ to: AriGraphRelationshipNode;
895
+ lastUpdated: Scalars['DateTime'];
896
+ };
897
+ export declare type AriGraphRelationshipConnection = {
898
+ __typename?: 'AriGraphRelationshipConnection';
899
+ nodes?: Maybe<Array<Maybe<AriGraphRelationship>>>;
900
+ edges?: Maybe<Array<Maybe<AriGraphRelationshipEdge>>>;
901
+ pageInfo: PageInfo;
902
+ };
903
+ export declare type AriGraphRelationshipEdge = {
904
+ __typename?: 'AriGraphRelationshipEdge';
905
+ cursor: Scalars['String'];
906
+ node: AriGraphRelationship;
907
+ };
908
+ export declare type AriGraphRelationshipNode = {
909
+ __typename?: 'AriGraphRelationshipNode';
910
+ id: Scalars['ID'];
911
+ data?: Maybe<DeploymentSummary>;
912
+ };
913
+ export declare type AriGraphRelationshipsFilter = {
914
+ type: Scalars['ID'];
915
+ from?: Maybe<Scalars['ID']>;
916
+ to?: Maybe<Scalars['ID']>;
917
+ };
857
918
  export declare type ArjConfiguration = {
858
919
  __typename?: 'ArjConfiguration';
859
920
  parentCustomFieldId?: Maybe<Scalars['String']>;
@@ -4536,6 +4597,7 @@ export declare type DetachEventSourcePayload = Payload & {
4536
4597
  export declare type DevOps = {
4537
4598
  __typename?: 'DevOps';
4538
4599
  summarisedDeployments?: Maybe<Array<Maybe<DevOpsSummarisedDeployments>>>;
4600
+ ariGraph?: Maybe<AriGraph>;
4539
4601
  };
4540
4602
  export declare type DevOpsSummarisedDeploymentsArgs = {
4541
4603
  ids: Array<Scalars['ID']>;
@@ -4739,6 +4801,11 @@ export declare type DevOpsMetricsRollupType = {
4739
4801
  type: DevOpsMetricsRollupOption;
4740
4802
  percentile?: Maybe<Scalars['Int']>;
4741
4803
  };
4804
+ export declare type DevOpsMutation = {
4805
+ __typename?: 'DevOpsMutation';
4806
+ _empty?: Maybe<Scalars['String']>;
4807
+ ariGraph?: Maybe<AriGraphMutation>;
4808
+ };
4742
4809
  export declare type DevOpsProvider = {
4743
4810
  __typename?: 'DevOpsProvider';
4744
4811
  name?: Maybe<Scalars['String']>;
@@ -11284,6 +11351,7 @@ export declare type Mutation = {
11284
11351
  toggleBoardFeature?: Maybe<ToggleBoardFeatureOutput>;
11285
11352
  setBoardEstimationType?: Maybe<ToggleBoardFeatureOutput>;
11286
11353
  updateNavbarConnectionStateTabSeen?: Maybe<DevOpsToolUpdateNavbarConnectionStateTabSeenPayload>;
11354
+ devOps?: Maybe<DevOpsMutation>;
11287
11355
  createDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<CreateDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
11288
11356
  updateDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<UpdateDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
11289
11357
  deleteDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<DeleteDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
@@ -13734,6 +13802,10 @@ export declare type RoadmapItemEdge = {
13734
13802
  cursor: Scalars['String'];
13735
13803
  node?: Maybe<RoadmapItem>;
13736
13804
  };
13805
+ export declare type RoadmapItemRankInput = {
13806
+ id: Scalars['ID'];
13807
+ position: RoadmapRankPosition;
13808
+ };
13737
13809
  export declare type RoadmapItemStatus = {
13738
13810
  __typename?: 'RoadmapItemStatus';
13739
13811
  id: Scalars['ID'];
@@ -13846,6 +13918,10 @@ export declare type RoadmapQuickFilter = {
13846
13918
  name: Scalars['String'];
13847
13919
  query: Scalars['String'];
13848
13920
  };
13921
+ export declare enum RoadmapRankPosition {
13922
+ Before = "BEFORE",
13923
+ After = "AFTER"
13924
+ }
13849
13925
  export declare type RoadmapResolveHealthcheckInput = {
13850
13926
  actionId: Scalars['ID'];
13851
13927
  addLevelOneIssueType?: Maybe<RoadmapAddLevelOneIssueTypeHealthcheckResolution>;
@@ -13901,7 +13977,7 @@ export declare type RoadmapUpdateItemInput = {
13901
13977
  dueDate?: Maybe<Scalars['Date']>;
13902
13978
  startDate?: Maybe<Scalars['Date']>;
13903
13979
  color?: Maybe<RoadmapPaletteColor>;
13904
- rank?: Maybe<RoadmapUpdateItemRank>;
13980
+ rank?: Maybe<RoadmapItemRankInput>;
13905
13981
  parentId?: Maybe<Scalars['ID']>;
13906
13982
  sprintId?: Maybe<Scalars['ID']>;
13907
13983
  clearFields?: Maybe<Array<Scalars['String']>>;
@@ -13912,10 +13988,6 @@ export declare type RoadmapUpdateItemPayload = Payload & {
13912
13988
  errors?: Maybe<Array<MutationError>>;
13913
13989
  output?: Maybe<RoadmapUpdateItemResponse>;
13914
13990
  };
13915
- export declare type RoadmapUpdateItemRank = {
13916
- beforeId?: Maybe<Scalars['ID']>;
13917
- afterId?: Maybe<Scalars['ID']>;
13918
- };
13919
13991
  export declare type RoadmapUpdateItemResponse = {
13920
13992
  __typename?: 'RoadmapUpdateItemResponse';
13921
13993
  item?: Maybe<RoadmapItem>;