Member Junction
    Preparing search index...

    Lightweight snapshot of a single RSU pipeline stage.

    interface PipelineStepSummary {
        DurationMs: number;
        Message?: string;
        Name: string;
        Status: "success" | "failed" | "skipped";
    }
    Index

    Properties

    DurationMs: number
    Message?: string

    Human-readable message from RuntimeSchemaManager — critical context on failure (e.g. "Migration file not found", "SQL Server error: ..."). Maps directly to RSUPipelineStep.Message.

    Name: string
    Status: "success" | "failed" | "skipped"