@forge/cli-shared 6.3.1-next.0 → 6.3.1-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
|
@@ -6128,6 +6128,7 @@ export declare type CompassScorecard = Node & {
|
|
|
6128
6128
|
scorecardScoreStatisticsHistories?: Maybe<CompassScorecardScoreStatisticsHistoryConnection>;
|
|
6129
6129
|
scoringStrategyType?: Maybe<Scalars['String']['output']>;
|
|
6130
6130
|
state?: Maybe<Scalars['String']['output']>;
|
|
6131
|
+
statusConfig?: Maybe<CompassScorecardStatusConfig>;
|
|
6131
6132
|
type: Scalars['String']['output'];
|
|
6132
6133
|
viewerPermissions?: Maybe<CompassScorecardInstancePermissions>;
|
|
6133
6134
|
};
|
|
@@ -6431,6 +6432,7 @@ export declare type CompassScorecardScore = {
|
|
|
6431
6432
|
__typename?: 'CompassScorecardScore';
|
|
6432
6433
|
criteriaScores?: Maybe<Array<CompassScorecardCriteriaScore>>;
|
|
6433
6434
|
maxTotalScore: Scalars['Int']['output'];
|
|
6435
|
+
status?: Maybe<CompassScorecardScoreStatus>;
|
|
6434
6436
|
statusDuration?: Maybe<CompassScorecardScoreStatusDuration>;
|
|
6435
6437
|
totalScore: Scalars['Int']['output'];
|
|
6436
6438
|
};
|
|
@@ -6532,6 +6534,26 @@ export declare enum CompassScorecardScoringStrategyType {
|
|
|
6532
6534
|
PointBased = "POINT_BASED",
|
|
6533
6535
|
WeightBased = "WEIGHT_BASED"
|
|
6534
6536
|
}
|
|
6537
|
+
export declare type CompassScorecardStatusConfig = {
|
|
6538
|
+
__typename?: 'CompassScorecardStatusConfig';
|
|
6539
|
+
failing: CompassScorecardStatusThreshold;
|
|
6540
|
+
needsAttention: CompassScorecardStatusThreshold;
|
|
6541
|
+
passing: CompassScorecardStatusThreshold;
|
|
6542
|
+
};
|
|
6543
|
+
export declare type CompassScorecardStatusConfigInput = {
|
|
6544
|
+
failing: CompassScorecardStatusThresholdInput;
|
|
6545
|
+
needsAttention: CompassScorecardStatusThresholdInput;
|
|
6546
|
+
passing: CompassScorecardStatusThresholdInput;
|
|
6547
|
+
};
|
|
6548
|
+
export declare type CompassScorecardStatusThreshold = {
|
|
6549
|
+
__typename?: 'CompassScorecardStatusThreshold';
|
|
6550
|
+
lowerBound: Scalars['Int']['output'];
|
|
6551
|
+
upperBound: Scalars['Int']['output'];
|
|
6552
|
+
};
|
|
6553
|
+
export declare type CompassScorecardStatusThresholdInput = {
|
|
6554
|
+
lowerBound: Scalars['Int']['input'];
|
|
6555
|
+
upperBound: Scalars['Int']['input'];
|
|
6556
|
+
};
|
|
6535
6557
|
export declare type CompassScorecardTypesFilter = {
|
|
6536
6558
|
in: Array<Scalars['String']['input']>;
|
|
6537
6559
|
};
|
|
@@ -15952,6 +15974,7 @@ export declare type CreateCompassScorecardInput = {
|
|
|
15952
15974
|
repositoryValues?: InputMaybe<CompassRepositoryValueInput>;
|
|
15953
15975
|
scoringStrategyType?: InputMaybe<CompassScorecardScoringStrategyType>;
|
|
15954
15976
|
state?: InputMaybe<Scalars['String']['input']>;
|
|
15977
|
+
statusConfig?: InputMaybe<CompassScorecardStatusConfigInput>;
|
|
15955
15978
|
};
|
|
15956
15979
|
export declare type CreateCompassScorecardPayload = Payload & {
|
|
15957
15980
|
__typename?: 'CreateCompassScorecardPayload';
|
|
@@ -72813,6 +72836,7 @@ export declare type UpdateCompassScorecardInput = {
|
|
|
72813
72836
|
repositoryValues?: InputMaybe<CompassRepositoryValueInput>;
|
|
72814
72837
|
scoringStrategyType?: InputMaybe<CompassScorecardScoringStrategyType>;
|
|
72815
72838
|
state?: InputMaybe<Scalars['String']['input']>;
|
|
72839
|
+
statusConfig?: InputMaybe<CompassScorecardStatusConfigInput>;
|
|
72816
72840
|
updateCriteria?: InputMaybe<Array<UpdateCompassScorecardCriteriaInput>>;
|
|
72817
72841
|
};
|
|
72818
72842
|
export declare type UpdateCompassScorecardPayload = Payload & {
|