Sporades SDK API
    Preparing search index...

    Type Alias AuthContext

    Current Sporades user identity for a handler invocation.

    Every visitor has a real Anonymous session. isAuthenticated means the request has a valid session; isGuest tells you whether that session is still anonymous rather than linked to email, Google, or another provider.

    type AuthContext = {
        displayName: string;
        email: string | null;
        isAuthenticated: boolean;
        isGuest: boolean;
        picture: string | null;
        provider: string;
        userId: string;
    }
    Index
    displayName: string
    email: string | null
    isAuthenticated: boolean
    isGuest: boolean
    picture: string | null
    provider: string
    userId: string