@supabase/server - v1.7.0
    Preparing search index...

    Interface ErrorPayload

    Serializable form of a SupabaseServerError — the exact JSON body withSupabase returns on failure.

    interface ErrorPayload {
        source: "@supabase/server";
        code: string;
        message: string;
        hint?: string;
        docs: string;
        details?: Record<string, unknown>;
    }
    Index

    Properties

    source: "@supabase/server"

    Always "@supabase/server". Identifies which library produced the error.

    code: string

    Machine-readable error code, also sent as the x-supabase-server-error header.

    message: string

    Human-readable description, prefixed with [@supabase/server].

    hint?: string

    Actionable next step. Omitted when there isn't a useful one.

    docs: string

    Documentation URL for this specific code.

    details?: Record<string, unknown>

    Structured, non-sensitive diagnostics. Omitted when there are none.