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

    Interface SupabaseServerErrorOptions

    Optional diagnostics attached to a SupabaseServerError.

    interface SupabaseServerErrorOptions {
        hint?: string;
        details?: Record<string, unknown>;
        docs?: string;
        cause?: unknown;
    }
    Index

    Properties

    hint?: string

    Actionable next step for whoever has to fix this.

    details?: Record<string, unknown>

    Structured, non-sensitive diagnostics. Never contains key values, token payloads, or any other secret material.

    docs?: string

    Override the generated documentation URL.

    cause?: unknown

    Underlying error, when this one wraps another.