Member Junction
    Preparing search index...

    Result of a Runtime action execution — structurally compatible with ActionResultSimple so ActionEngine can return it unchanged to callers.

    interface RuntimeActionExecutionResult {
        executionTimeMs?: number;
        logs?: string[];
        message?: string;
        params: ActionParam[];
        resultCode: string;
        success: boolean;
    }
    Index

    Properties

    executionTimeMs?: number

    Execution time in milliseconds.

    logs?: string[]

    Sandbox console logs. Surfaced for approval-UI review; not agent-visible.

    message?: string

    Optional human-readable message.

    params: ActionParam[]

    The output params that the action produced. If the user code returned an object, its keys become Output ActionParams so downstream action consumers see them via the standard params flow.

    resultCode: string

    Structured result code. See constants below for the canonical values.

    success: boolean

    True if the sandbox ran cleanly and the user code did not signal failure.