Member Junction
    Preparing search index...

    Serialized state of a single installer phase within the checkpoint file.

    InstallStateData — the parent object that maps phase IDs to states.

    interface PhaseState {
        CompletedAt?: string;
        Error?: string;
        FailedAt?: string;
        Status: PhaseStatus;
    }
    Index

    Properties

    CompletedAt?: string

    ISO 8601 timestamp when the phase completed (present only if Status === 'completed').

    Error?: string

    Error message from the phase failure (present only if Status === 'failed').

    FailedAt?: string

    ISO 8601 timestamp when the phase failed (present only if Status === 'failed').

    Status: PhaseStatus

    Current lifecycle status of the phase.