@supabase/server - v0.2.0
    Preparing search index...

    Interface Credentials

    Raw credentials extracted from an incoming HTTP request.

    Produced by extractCredentials from the Authorization and apikey headers.

    extractCredentials

    interface Credentials {
        token: string | null;
        apikey: string | null;
    }
    Index

    Properties

    Properties

    token: string | null

    Bearer token from the Authorization: Bearer <token> header, or null if absent.

    apikey: string | null

    API key from the apikey header, or null if absent.