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

    Interface VerifyCredentialsOptions

    Options for verifyCredentials.

    interface VerifyCredentialsOptions {
        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 VerifyCredentialsOptions.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).