Saxonberg Server API
    Preparing search index...

    Outcome of a driven script.

    interface DriveResult {
        aborted?:
            | "cancelled"
            | "host-destroyed"
            | "barge-in"
            | "step-declined"
            | "resource-limit";
        detail?: string;
        notes: Note[];
        value: ScriptValue;
    }
    Index

    Properties

    aborted?:
        | "cancelled"
        | "host-destroyed"
        | "barge-in"
        | "step-declined"
        | "resource-limit"

    Set when the run stopped early; partial effects stand.

    detail?: string

    Human-facing detail for an abort / limit.

    notes: Note[]

    Notes accumulated across every dispatched command.

    The script's value (its last statement's value).