auth.provider API
    Preparing search index...

    OIDC-standard user claims durably attached to a session. Populated at login. Used as the authoritative source for /userinfo and id_token; independent of the browser session. Per A4 §5.1.

    interface UserSessionClaims {
        email?: string;
        emailVerified?: boolean;
        groups?: readonly string[];
        name?: string;
        picture?: string;
        readonly [customClaim: string]: unknown;
    }

    Indexable

    • readonly [customClaim: string]: unknown
    Index

    Properties

    email?: string
    emailVerified?: boolean
    groups?: readonly string[]
    name?: string
    picture?: string