Member Junction
    Preparing search index...

    One step of a run, for the detail panel's step list and JSON view.

    The whole entity is kept, not a projection: the JSON view exists precisely so someone can read everything the row holds, and a projection would decide for them what is worth seeing.

    type WorkflowRunStep = {
        CompletedAt: Date | null;
        ID: string;
        Name: string;
        Record: Record<string, unknown>;
        StartedAt: Date | null;
        Status: string;
        StepType: string | null;
    }
    Index

    Properties

    CompletedAt: Date | null
    ID: string
    Name: string
    Record: Record<string, unknown>

    Every column of the row, for the JSON pane.

    StartedAt: Date | null
    Status: string
    StepType: string | null