nexus-agents - v2.80.0
    Preparing search index...

    Interface StepResult

    Result of step execution.

    interface StepResult {
        stepId: string;
        output: unknown;
        durationMs: number;
        status: "failed" | "success" | "skipped";
        error?: string;
    }
    Index

    Properties

    stepId: string

    Step ID

    output: unknown

    Step output

    durationMs: number

    Duration in ms

    status: "failed" | "success" | "skipped"

    Status

    error?: string

    Error message if failed