@pouchy_ai/companion-sdk - v0.1.0
    Preparing search index...

    Interface ControlErrorPayload

    Payload of a control.error event — a typed error on the event stream (surfaced by onError). code is one of CONTROL_ERROR_CODES, the SDK-synthesized stream_unauthorized, or a code newer than this SDK build (the open arm keeps forward compat without losing autocomplete).

    interface ControlErrorPayload {
        code: "agent_error" | "call_mint_failed" | string & {};
        message: string;
    }
    Index
    code: "agent_error" | "call_mint_failed" | string & {}
    message: string