@@ -74,7 +74,7 @@ export function createColorizer(enabled: boolean): IColorizer;
7474export function createEngineSink(providedSink ? : IReporterEventSink ): IEngineSinkResolution ;
7575
7676// @beta
77- export function createPluginApiIncompatibleDiagnostic(manifest : IRushPluginManifest ): IRushDiagnostic ;
77+ export function createPluginApiIncompatibleDiagnostic(manifest : IRushPluginManifest , rushVersion : string ): IRushDiagnostic ;
7878
7979// @beta
8080export function createRushDiagnostic(code : RushDiagnosticCodes , options ? : ICreateRushDiagnosticOptions ): IRushDiagnostic ;
@@ -807,8 +807,8 @@ export interface IRushFileDiagnosticSource {
807807
808808// @beta
809809export interface IRushPluginManifest {
810- readonly pluginApiVersion: string ;
811810 readonly pluginName: string ;
811+ readonly rushVersionRange: string ;
812812}
813813
814814// @beta
@@ -895,9 +895,6 @@ export function isLegacyEmergencyFallbackRequested(env: Record<string, string |
895895// @beta
896896export function isMachineReporter(reporter : ReporterName ): boolean ;
897897
898- // @beta
899- export function isPluginApiVersionSupported(declaredApiVersion : string , supportedApiVersion ? : string ): boolean ;
900-
901898// @beta
902899export function isReporterEventRequired(type : ReporterEventType ): boolean ;
903900
@@ -1074,7 +1071,7 @@ export class OldEngineOutputAdapter {
10741071export type OneOrMoreRushDiagnosticCodeSegments <TSegments extends string = string > = string extends TSegments ? ` _${Uppercase <string >} ` : TSegments extends ` _${infer Segments } ` ? Segments extends ' ' ? never : TSegments extends Uppercase <TSegments > ? TSegments : never : never ;
10751072
10761073// @beta
1077- export type OperationStatus = ' ready' | ' executing' | ' success' | ' successWithWarnings' | ' failure' | ' blocked' | ' skipped' | ' fromCache' | ' noOp' ;
1074+ export type OperationStatus = ' ready' | ' waiting ' | ' queued ' | ' executing' | ' success' | ' successWithWarnings' | ' failure' | ' blocked' | ' skipped' | ' fromCache' | ' noOp' | ' aborted ' ;
10781075
10791076// @beta
10801077export class OperationStreamEmitter {
@@ -1320,9 +1317,6 @@ export const RUSH_INTERNAL_ERROR_CODE: 'RUSH_INTERNAL_UNEXPECTED';
13201317// @beta
13211318export const RUSH_LOGS_DIR_NAME: ' rush-logs' ;
13221319
1323- // @beta
1324- export const RUSH_PLUGIN_API_VERSION: ' 1.0.0' ;
1325-
13261320// @beta
13271321export const RUSH_REPORTER_BOOTSTRAP_HANDOFF_ENV_VAR: ' _RUSH_REPORTER_BOOTSTRAP_HANDOFF' ;
13281322
0 commit comments