Member Junction
    Preparing search index...

    Serialized shape of the .mj-install-state.json checkpoint file. This is the on-disk JSON structure read by InstallState.Load and written by InstallState.Save.

    interface InstallStateData {
        Phases: Partial<Record<PhaseId, PhaseState>>;
        StartedAt: string;
        Tag: string;
    }
    Index

    Properties

    Properties

    Phases: Partial<Record<PhaseId, PhaseState>>

    Per-phase status map. Phases not yet reached are absent (treated as 'pending').

    StartedAt: string

    ISO 8601 timestamp when the install was started.

    Tag: string

    Git tag of the version being installed (e.g., "v5.1.0").