@polargold/pg-frontend-core
    Preparing search index...

    Interface AuthServiceOptions

    interface AuthServiceOptions {
        authority: string;
        clientId: string;
        postLogoutRedirectUri: string;
        redirectUri: string;
        scope?: string;
        userStore?: Storage;
    }
    Index
    authority: string
    clientId: string
    postLogoutRedirectUri: string
    redirectUri: string
    scope?: string

    Defaults to "openid profile email".

    userStore?: Storage

    Where oidc-client-ts persists session state. Defaults to window.localStorage. Pass a wrapper (e.g. a private-browsing-safe storage shim) to override - data-sheet-portal's copy of this class used its own safeLocalStorage here instead of the raw global.