Neutrome SDK reference
    Preparing search index...

    Type Alias ExecutionEvent

    One audit record emitted while a request is being served.

    type ExecutionEvent = {
        data?: Record<string, unknown>;
        errorKind?: string;
        executionId: string;
        kind: string;
        parentExecutionId?: string;
        requestId: string;
        target?: { id: string; kind: "provider" | "executor" };
        timestamp: string;
    }
    Index
    data?: Record<string, unknown>

    Free-form payload.

    errorKind?: string

    Error class, for failure events.

    executionId: string

    Id of the execution that emitted the event.

    kind: string

    Event name, such as "executor.start".

    parentExecutionId?: string

    Id of the enclosing execution, when nested.

    requestId: string

    Id shared by every event of one inbound request.

    target?: { id: string; kind: "provider" | "executor" }

    What the execution was talking to.

    timestamp: string

    ISO timestamp of the event.