Skip to content

Commit 4702ee1

Browse files
TheLarkInnCopilot
andcommitted
Regenerate reporter API report after restack
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 1fa3cc2 commit 4702ee1

1 file changed

Lines changed: 3 additions & 9 deletions

File tree

common/reviews/api/rush-reporter.api.md

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ export function createColorizer(enabled: boolean): IColorizer;
7474
export 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
8080
export function createRushDiagnostic(code: RushDiagnosticCodes, options?: ICreateRushDiagnosticOptions): IRushDiagnostic;
@@ -807,8 +807,8 @@ export interface IRushFileDiagnosticSource {
807807

808808
// @beta
809809
export 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
896896
export function isMachineReporter(reporter: ReporterName): boolean;
897897

898-
// @beta
899-
export function isPluginApiVersionSupported(declaredApiVersion: string, supportedApiVersion?: string): boolean;
900-
901898
// @beta
902899
export function isReporterEventRequired(type: ReporterEventType): boolean;
903900

@@ -1074,7 +1071,7 @@ export class OldEngineOutputAdapter {
10741071
export 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
10801077
export class OperationStreamEmitter {
@@ -1320,9 +1317,6 @@ export const RUSH_INTERNAL_ERROR_CODE: 'RUSH_INTERNAL_UNEXPECTED';
13201317
// @beta
13211318
export const RUSH_LOGS_DIR_NAME: 'rush-logs';
13221319

1323-
// @beta
1324-
export const RUSH_PLUGIN_API_VERSION: '1.0.0';
1325-
13261320
// @beta
13271321
export const RUSH_REPORTER_BOOTSTRAP_HANDOFF_ENV_VAR: '_RUSH_REPORTER_BOOTSTRAP_HANDOFF';
13281322

0 commit comments

Comments
 (0)