@forge/cli-shared 2.1.6-next.0 → 2.1.6-next.1

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.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [06209fc]
8
+ - @forge/manifest@2.5.1-next.0
9
+
3
10
  ## 2.1.6-next.0
4
11
 
5
12
  ### Patch Changes
@@ -1949,7 +1949,6 @@ export declare type CompassHasMetricValueScorecardCriteria = CompassScorecardCri
1949
1949
  weight: Scalars['Int'];
1950
1950
  comparatorValue: Scalars['Float'];
1951
1951
  metricDefinitionId: Scalars['ID'];
1952
- metricDefinitionName?: Maybe<Scalars['String']>;
1953
1952
  comparator: CompassCriteriaNumberComparatorOptions;
1954
1953
  scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
1955
1954
  };
@@ -2689,7 +2688,6 @@ export declare type CreateCompassHasLinkScorecardCriteriaInput = {
2689
2688
  export declare type CreateCompassHasMetricValueCriteriaInput = {
2690
2689
  weight: Scalars['Int'];
2691
2690
  metricDefinitionId: Scalars['ID'];
2692
- metricDefinitionName?: Maybe<Scalars['String']>;
2693
2691
  comparatorValue: Scalars['Float'];
2694
2692
  comparator: CompassCriteriaNumberComparatorOptions;
2695
2693
  };
@@ -10205,8 +10203,8 @@ export declare type PolarisIssueLinkType = {
10205
10203
  };
10206
10204
  export declare type PolarisMatrixAxis = {
10207
10205
  __typename?: 'PolarisMatrixAxis';
10208
- dimension?: Maybe<Scalars['String']>;
10209
- field?: Maybe<PolarisIdeaField>;
10206
+ dimension: Scalars['String'];
10207
+ field: PolarisIdeaField;
10210
10208
  };
10211
10209
  export declare type PolarisMatrixConfig = {
10212
10210
  __typename?: 'PolarisMatrixConfig';
@@ -10398,7 +10396,7 @@ export declare type PolarisTimelineConfig = {
10398
10396
  __typename?: 'PolarisTimelineConfig';
10399
10397
  startDateField?: Maybe<PolarisIdeaField>;
10400
10398
  dueDateField?: Maybe<PolarisIdeaField>;
10401
- mode?: Maybe<PolarisTimelineMode>;
10399
+ mode: PolarisTimelineMode;
10402
10400
  };
10403
10401
  export declare enum PolarisTimelineMode {
10404
10402
  Months = "MONTHS",
@@ -10936,7 +10934,8 @@ export declare type RankColumnOutput = MutationResponse & {
10936
10934
  };
10937
10935
  export declare enum RateLimitingCurrency {
10938
10936
  TestingService = "TESTING_SERVICE",
10939
- ForgeMetricsCurrency = "FORGE_METRICS_CURRENCY"
10937
+ ForgeMetricsCurrency = "FORGE_METRICS_CURRENCY",
10938
+ CompassInsertMetricValueCurrency = "COMPASS_INSERT_METRIC_VALUE_CURRENCY"
10940
10939
  }
10941
10940
  export declare type RawStatus = {
10942
10941
  __typename?: 'RawStatus';
@@ -12319,7 +12318,6 @@ export declare type UpdateCompassHasMetricValueCriteriaInput = {
12319
12318
  id: Scalars['ID'];
12320
12319
  weight?: Maybe<Scalars['Int']>;
12321
12320
  metricDefinitionId?: Maybe<Scalars['ID']>;
12322
- metricDefinitionName?: Maybe<Scalars['String']>;
12323
12321
  comparatorValue?: Maybe<Scalars['Float']>;
12324
12322
  comparator?: Maybe<CompassCriteriaNumberComparatorOptions>;
12325
12323
  };