@forge/cli-shared 2.1.6-next.14 → 2.1.6-next.15

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.1.6-next.15
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [2b7c32b]
8
+ - @forge/manifest@2.6.0-next.14
9
+
3
10
  ## 2.1.6-next.14
4
11
 
5
12
  ### Patch Changes
@@ -9083,6 +9083,13 @@ export declare type JswMutation = {
9083
9083
  export declare type JswMutationDeleteCardArgs = {
9084
9084
  input?: Maybe<DeleteCardInput>;
9085
9085
  };
9086
+ export declare type JswQuery = {
9087
+ __typename?: 'JswQuery';
9088
+ boardScope?: Maybe<BoardScope>;
9089
+ };
9090
+ export declare type JswQueryBoardScopeArgs = {
9091
+ boardId: Scalars['ID'];
9092
+ };
9086
9093
  export declare type LabelUsage = {
9087
9094
  __typename?: 'LabelUsage';
9088
9095
  label: Scalars['String'];
@@ -11207,6 +11214,7 @@ export declare type Query = {
11207
11214
  apps?: Maybe<AppConnection>;
11208
11215
  app?: Maybe<App>;
11209
11216
  appHostServices?: Maybe<Array<AppHostService>>;
11217
+ jsw?: Maybe<JswQuery>;
11210
11218
  boardScope?: Maybe<BoardScope>;
11211
11219
  developmentInformation?: Maybe<IssueDevOpsDevelopmentInformation>;
11212
11220
  devOpsTools?: Maybe<DevOpsTools>;
@@ -11682,6 +11690,11 @@ export declare type RoadmapBoardConfiguration = {
11682
11690
  isBoardJqlFilteringOutEpics?: Maybe<Scalars['Boolean']>;
11683
11691
  isSprintsFeatureEnabled?: Maybe<Scalars['Boolean']>;
11684
11692
  };
11693
+ export declare type RoadmapComponent = {
11694
+ __typename?: 'RoadmapComponent';
11695
+ id: Scalars['ID'];
11696
+ name: Scalars['String'];
11697
+ };
11685
11698
  export declare type RoadmapConfiguration = {
11686
11699
  __typename?: 'RoadmapConfiguration';
11687
11700
  isCrossProject: Scalars['Boolean'];
@@ -11748,6 +11761,7 @@ export declare type RoadmapItem = {
11748
11761
  labels?: Maybe<Array<Scalars['String']>>;
11749
11762
  versionIds?: Maybe<Array<Scalars['ID']>>;
11750
11763
  sprintIds?: Maybe<Array<Scalars['ID']>>;
11764
+ componentIds?: Maybe<Array<Scalars['ID']>>;
11751
11765
  inferredDueDate?: Maybe<Scalars['Date']>;
11752
11766
  inferredStartDate?: Maybe<Scalars['Date']>;
11753
11767
  };
@@ -11844,6 +11858,7 @@ export declare type RoadmapProjectConfiguration = {
11844
11858
  validation?: Maybe<RoadmapProjectValidation>;
11845
11859
  defaultItemTypeId?: Maybe<Scalars['String']>;
11846
11860
  versions?: Maybe<Array<RoadmapVersion>>;
11861
+ components?: Maybe<Array<RoadmapComponent>>;
11847
11862
  };
11848
11863
  export declare type RoadmapProjectPermissions = {
11849
11864
  __typename?: 'RoadmapProjectPermissions';