sveltekit-oidc - v3.0.0
    Preparing search index...

    Type Alias OIDCStateCookie

    type OIDCStateCookie = {
        codeVerifier: string;
        createdAt: number;
        nonce: string;
        originalSub?: string;
        prompt?: OIDCLoginOptions["prompt"];
        returnTo: string;
        state: string;
    }
    Index
    codeVerifier: string
    createdAt: number
    nonce: string
    originalSub?: string
    returnTo: string
    state: string

    The bare anti-CSRF token, compared against the decoded state query parameter on callback - not the full value sent to the provider, which additionally carries an encrypted returnTo (see encodeOAuthState/decodeOAuthState in utils.ts).