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

    Interface VerifyAuthOptions

    Options for verifyAuth.

    interface VerifyAuthOptions {
        auth?: AuthModeWithKey | AuthModeWithKey[];
        allow?: AuthModeWithKey | AuthModeWithKey[];
        env?: Partial<SupabaseEnv>;
    }
    Index

    Properties

    Properties

    Auth mode(s) to try. Modes are attempted in order — the first match wins.

    AuthModeWithKey for the full syntax including named keys.

    "user"

    Use VerifyAuthOptions.auth instead. Kept for backward compatibility; will be removed in a future major release. When both are provided, auth wins.

    env?: Partial<SupabaseEnv>

    Optional environment overrides (passed through to resolveEnv).