diff --git a/.circleci/config.yml b/.circleci/config.yml
index 3d19f3fc9..18d9d0ba4 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -1,6 +1,6 @@
version: 2.1
orbs:
- ship: auth0/ship@0.7.4
+ ship: auth0/ship@0.7.7
jobs:
build:
docker:
@@ -28,7 +28,7 @@ jobs:
name: browserstack
command: |
if [ -z "$CIRCLE_PR_NUMBER" ]; then
- npx start-server-and-test 'start:kitchen-sink-local' http://127.0.0.1:3000 'browserstack-cypress run --build-name $CIRCLE_BRANCH'
+ npx start-server-and-test 'start:kitchen-sink-local' http://localhost:3000 'browserstack-cypress run --build-name $CIRCLE_BRANCH --no-wrap'
fi
- store_test_results:
path: test-results
@@ -43,7 +43,6 @@ workflows:
context:
- browserstack-env
- ship/node-publish:
- publish-command: npm publish --tag beta
requires:
- build
context:
@@ -52,4 +51,4 @@ workflows:
filters:
branches:
only:
- - vNext
+ - main
diff --git a/.gitignore b/.gitignore
index 25e502909..798515a77 100644
--- a/.gitignore
+++ b/.gitignore
@@ -26,6 +26,10 @@ cypress/screenshots
cypress/videos
cypress.env.json
+# Browserstack
+browserstack-cypress-report.*
+build_results.txt
+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 74dc44f31..e03c49b79 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,9 +1,81 @@
# Change Log
+## [v2.0.1](https://github.com/auth0/nextjs-auth0/tree/v2.0.1) (2022-12-09)
+[Full Changelog](https://github.com/auth0/nextjs-auth0/compare/v2.0.0...v2.0.1)
+
+**Fixed**
+- afterCallback return type fix [\#954](https://github.com/auth0/nextjs-auth0/pull/954) ([alexmalev](https://github.com/alexmalev))
+- fix/rerenders: useMemo to avoid unnecessary rerenders [\#945](https://github.com/auth0/nextjs-auth0/pull/945) ([stavros-liaskos](https://github.com/stavros-liaskos))
+
+## [v2.0.0](https://github.com/auth0/nextjs-auth0/tree/v2.0.0) (2022-12-01)
+
+[Full Changelog](https://github.com/auth0/nextjs-auth0/compare/v1.9.2...v2.0.0)
+
+**β οΈ BREAKING CHANGES**
+
+- Refactor session lifecycle [\#787](https://github.com/auth0/nextjs-auth0/pull/787) ([adamjmcgrath](https://github.com/adamjmcgrath))
+- Rearrange exports for RSC and add experimental RSC route to example [\#913](https://github.com/auth0/nextjs-auth0/pull/913) ([adamjmcgrath](https://github.com/adamjmcgrath))
+- Improved callback errors [\#835](https://github.com/auth0/nextjs-auth0/pull/835) ([adamjmcgrath](https://github.com/adamjmcgrath))
+- Prevent mixing named exports and own instances [\#825](https://github.com/auth0/nextjs-auth0/pull/825) ([adamjmcgrath](https://github.com/adamjmcgrath))
+- Allow to override the user prop in server-side rendered pages [\#800](https://github.com/auth0/nextjs-auth0/pull/800) ([Widcket](https://github.com/Widcket))
+- Return 204 from /api/auth/me when logged out [\#791](https://github.com/auth0/nextjs-auth0/pull/791) ([Widcket](https://github.com/Widcket))
+
+ **Added**
+
+- Next.js Middlware support [\#815](https://github.com/auth0/nextjs-auth0/pull/815) ([adamjmcgrath](https://github.com/adamjmcgrath))
+- Add testing utility for generating session cookies [\#816](https://github.com/auth0/nextjs-auth0/pull/816) ([Widcket](https://github.com/Widcket))
+- Add updateUser [\#855](https://github.com/auth0/nextjs-auth0/pull/855) ([adamjmcgrath](https://github.com/adamjmcgrath))
+- Add support for configuring the built-in handlers [\#826](https://github.com/auth0/nextjs-auth0/pull/826) ([Widcket](https://github.com/Widcket))
+- Add support for configuring the default handlers [\#840](https://github.com/auth0/nextjs-auth0/pull/840) ([Widcket](https://github.com/Widcket))
+- Add logout options [\#877](https://github.com/auth0/nextjs-auth0/pull/877) ([adamjmcgrath](https://github.com/adamjmcgrath))
+- At error cause to AT error when it's from a failed grant [\#878](https://github.com/auth0/nextjs-auth0/pull/878) ([adamjmcgrath](https://github.com/adamjmcgrath))
+- Add option to not store ID Token in session [\#809](https://github.com/auth0/nextjs-auth0/pull/809) ([Widcket](https://github.com/Widcket))
+- Default error handler [\#823](https://github.com/auth0/nextjs-auth0/pull/823) ([adamjmcgrath](https://github.com/adamjmcgrath))
+- Allow response customization in afterCallback [\#838](https://github.com/auth0/nextjs-auth0/pull/838) ([adamjmcgrath](https://github.com/adamjmcgrath))
+- Improve API docs [\#796](https://github.com/auth0/nextjs-auth0/pull/796) ([Widcket](https://github.com/Widcket))
+- Improve errors [\#782](https://github.com/auth0/nextjs-auth0/pull/782) ([Widcket](https://github.com/Widcket))
+
+See [V2 Migration Guide](./V2_MIGRATION_GUIDE.md) for full details.
+
+## [v2.0.0-beta.4](https://github.com/auth0/nextjs-auth0/tree/v2.0.0-beta.4) (2022-11-18)
+
+[Full Changelog](https://github.com/auth0/nextjs-auth0/compare/v2.0.0-beta.3...v2.0.0-beta.4)
+
+**β οΈ BREAKING CHANGES**
+
+- Rearrange exports for RSC and add experimental RSC route to example [\#913](https://github.com/auth0/nextjs-auth0/pull/913) ([adamjmcgrath](https://github.com/adamjmcgrath))
+
+**Fixed**
+
+- WithMiddlewareAuthRequired should return 401 for /api routes [\#909](https://github.com/auth0/nextjs-auth0/pull/909) ([adamjmcgrath](https://github.com/adamjmcgrath))
+
+## [v2.0.0-beta.3](https://github.com/auth0/nextjs-auth0/tree/v2.0.0-beta.3) (2022-11-08)
+
+[Full Changelog](https://github.com/auth0/nextjs-auth0/compare/v2.0.0-beta.2...v2.0.0-beta.3)
+
+**Fixed**
+
+- Fix edge cookie support for Next < 13.0.1 [\#900](https://github.com/auth0/nextjs-auth0/pull/900) ([adamjmcgrath](https://github.com/adamjmcgrath))
+
+## [v2.0.0-beta.2](https://github.com/auth0/nextjs-auth0/tree/v2.0.0-beta.2) (2022-11-02)
+
+[Full Changelog](https://github.com/auth0/nextjs-auth0/compare/v2.0.0-beta.1...v2.0.0-beta.2)
+
+**Added**
+
+- At error cause to AT error when it's from a failed grant [\#878](https://github.com/auth0/nextjs-auth0/pull/878) ([adamjmcgrath](https://github.com/adamjmcgrath))
+- Add logout options [\#877](https://github.com/auth0/nextjs-auth0/pull/877) ([adamjmcgrath](https://github.com/adamjmcgrath))
+
+**Fixed**
+
+- Fix for new req.cookie interface [\#894](https://github.com/auth0/nextjs-auth0/pull/894) ([adamjmcgrath](https://github.com/adamjmcgrath))
+
## [v2.0.0-beta.1](https://github.com/auth0/nextjs-auth0/tree/v2.0.0-beta.1) (2022-10-21)
+
[Full Changelog](https://github.com/auth0/nextjs-auth0/compare/v2.0.0-beta.0...v2.0.0-beta.1)
**Fixed**
+
- status getter is not enumerable so needs to be added to NextResponse [\#875](https://github.com/auth0/nextjs-auth0/pull/875) ([adamjmcgrath](https://github.com/adamjmcgrath))
## [v2.0.0-beta.0](https://github.com/auth0/nextjs-auth0/tree/v2.0.0-beta.0) (2022-10-11)
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 97a6286fc..40b23d4b2 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -21,3 +21,21 @@ Please read [Auth0's contribution guidelines](https://github.com/auth0/open-sour
- `npm run start:kitchen-sink`: Run the kitchen sink example
- `npm run test:kitchen-sink`: Run the E2E tests (you will need to populate the `CYPRESS_USER_EMAIL` and `CYPRESS_USER_PASSWORD` env vars)
- `npm run test:kitchen-sink:watch`: Run the E2E tests and watch for changes
+
+## Running examples against a mock openid provider
+
+Your env vars in `/examples/kitchen-sink-example/.env.local` should look like
+
+```bash
+AUTH0_SECRET=#ANY LONG RANDOM VALUE
+AUTH0_ISSUER_BASE_URL=http://localhost:3000/oidc
+AUTH0_BASE_URL=http://localhost:3000
+AUTH0_CLIENT_ID=testing
+AUTH0_CLIENT_SECRET=testing
+```
+
+Then run one of the commands:
+
+- `start:kitchen-sink-local`: "npm run dev:local --prefix=examples/kitchen-sink-example",
+- `test:kitchen-sink-local`: Run the E2E tests against a mock openid provider
+- `test:kitchen-sink-local:watch`: Run the E2E tests against a mock openid provider and watch for changes
diff --git a/EXAMPLES.md b/EXAMPLES.md
index 5d5605a34..bbc58e198 100644
--- a/EXAMPLES.md
+++ b/EXAMPLES.md
@@ -10,6 +10,7 @@
- [Access an External API from an API Route](#access-an-external-api-from-an-api-route)
- [Create your own instance of the SDK](#create-your-own-instance-of-the-sdk)
- [Add a signup handler](#add-a-signup-handler)
+- [Use with Base Path and Internationalized Routing](#use-with-base-path-and-internationalized-routing)
- [Use a custom session store](#use-a-custom-session-store)
All examples can be seen running in the [Kitchen Sink example app](./examples/kitchen-sink-example).
@@ -41,7 +42,7 @@ Wrap your `pages/_app.jsx` component in the `UserProvider` component.
```jsx
// pages/_app.jsx
import React from 'react';
-import { UserProvider } from '@auth0/nextjs-auth0';
+import { UserProvider } from '@auth0/nextjs-auth0/client';
export default function App({ Component, pageProps }) {
// You can optionally pass the `user` prop from pages that require server-side
@@ -60,7 +61,7 @@ Check the user's authentication state and log them in or out from the front end
```jsx
// pages/index.jsx
-import { useUser } from '@auth0/nextjs-auth0';
+import { useUser } from '@auth0/nextjs-auth0/client';
export default () => {
const { user, error, isLoading } = useUser();
@@ -168,7 +169,7 @@ Requests to `/pages/profile` without a valid session cookie will be redirected t
```jsx
// pages/profile.js
-import { withPageAuthRequired } from '@auth0/nextjs-auth0';
+import { withPageAuthRequired } from '@auth0/nextjs-auth0/client';
export default withPageAuthRequired(function Profile({ user }) {
return
Hello {user.name}
;
@@ -186,7 +187,7 @@ Requests to `/pages/api/protected` without a valid session cookie will fail with
import { withApiAuthRequired, getSession } from '@auth0/nextjs-auth0';
export default withApiAuthRequired(async function myApiRoute(req, res) {
- const { user } = getSession(req, res);
+ const { user } = await getSession(req, res);
res.json({ protected: 'My Secret', id: user.sub });
});
```
@@ -196,7 +197,7 @@ Then you can access your API from the frontend with a valid session cookie.
```jsx
// pages/products
import useSWR from 'swr';
-import { withPageAuthRequired } from '@auth0/nextjs-auth0';
+import { withPageAuthRequired } from '@auth0/nextjs-auth0/client';
const fetcher = async (uri) => {
const response = await fetch(uri);
@@ -222,7 +223,7 @@ To protect all your routes:
```js
// middleware.js
-import { withMiddlewareAuthRequired } from '@auth0/nextjs-auth0/middleware';
+import { withMiddlewareAuthRequired } from '@auth0/nextjs-auth0/edge';
export default withMiddlewareAuthRequired();
```
@@ -231,7 +232,7 @@ To protect specific routes:
```js
// middleware.js
-import { withMiddlewareAuthRequired } from '@auth0/nextjs-auth0/middleware';
+import { withMiddlewareAuthRequired } from '@auth0/nextjs-auth0/edge';
export default withMiddlewareAuthRequired();
@@ -246,7 +247,7 @@ To run custom middleware for authenticated users:
```js
// middleware.js
-import { withMiddlewareAuthRequired, getSession } from '@auth0/nextjs-auth0/middleware';
+import { withMiddlewareAuthRequired, getSession } from '@auth0/nextjs-auth0/edge';
export default withMiddlewareAuthRequired(async function middleware(req) {
const res = NextResponse.next();
@@ -263,8 +264,8 @@ For using middleware with your own instance of the SDK:
import {
withMiddlewareAuthRequired,
getSession,
- initAuth0 // note the mw specific `initAuth0`
-} from '@auth0/nextjs-auth0/middleware';
+ initAuth0 // note the edge runtime specific `initAuth0`
+} from '@auth0/nextjs-auth0/edge';
const auth0 = initAuth0({ ... });
@@ -419,6 +420,57 @@ Users can then sign up using the signup handler.
Sign up
```
+## Use with Base Path and Internationalized Routing
+
+With Next.js you can deploy a Next.js application under a sub-path of a domain using [Base Path](https://nextjs.org/docs/api-reference/next.config.js/basepath) and serve internationalized (i18n) routes using [Internationalized Routing](https://nextjs.org/docs/advanced-features/i18n-routing).
+
+If you use these features the urls of your application will change and so the urls to the nextjs-auth0 routes will change. To accommodate this there are various places in the SDK that you can customise the url.
+
+For example if `basePath: '/foo'` you should prepend this to the `loginUrl` and `profileUrl` specified in your `Auth0Provider`
+
+```jsx
+// _app.jsx
+function App({ Component, pageProps }) {
+ return (
+
+
+
+ );
+}
+```
+
+Also, any links to login or logout should include the `basePath`:
+
+```html
+Login
+Logout
+```
+
+You should configure [baseUrl](https://auth0.github.io/nextjs-auth0/interfaces/config.baseconfig.html#baseurl) (or the `AUTH0_BASE_URL` environment variable) eg
+
+```shell
+# .env.local
+AUTH0_BASE_URL=http://localhost:3000/foo
+```
+
+For any pages that are protected with the Server Side [withPageAuthRequired](https://auth0.github.io/nextjs-auth0/modules/helpers_with_page_auth_required.html#withpageauthrequired) you should update the `returnTo` parameter depending on the `basePath` and `locale` if necessary.
+
+```js
+// ./pages/my-ssr-page.jsx
+export default MySsrPage = () => <>>;
+
+const getFullReturnTo = (ctx) => {
+ // TODO: implement getFullReturnTo based on the ctx.resolvedUrl, ctx.locale
+ // and your next.config.js's basePath and i18n settings.
+ return '/foo/en-US/my-ssr-page';
+};
+
+export const getServerSideProps = (ctx) => {
+ const returnTo = getFullReturnTo(ctx.req);
+ return withPageAuthRequired({ returnTo })(ctx);
+};
+```
+
## Use a custom session store
You need to create your owm instance of the SDK in code, so you can pass an instance of your session store to the SDK's configuration.
diff --git a/FAQ.md b/FAQ.md
index 9dac7abc6..fb537f7bb 100644
--- a/FAQ.md
+++ b/FAQ.md
@@ -1,6 +1,7 @@
# Frequently Asked Questions
1. [Why do I get a `state mismatch` error when logging in from different tabs?](#1-why-do-i-get-a-state-mismatch-error-if-i-try-to-log-in-from-different-tabs)
+2. [How can I reduce the cookie size?](#2-how-can-i-reduce-the-cookie-size)
## 1. Why do I get a `state mismatch` error if I try to log in from different tabs?
@@ -13,3 +14,14 @@ For example:
3. Complete login on Tab 1: SDK finds Tab 2 state on the cookies and returns error.
**You should handle the error and prompt the user to log in again.** As they will have an active SSO session, they will not be asked to enter their credentials again and will be redirected back to your application.
+
+## 2. How can I reduce the cookie size?
+
+The SDK stores the session data in cookies. Since browsers reject cookies larger than 4 KB, the SDK breaks up lengthier sessions into multiple cookies. However, by default Node.js limits the header size to 16 KB (Node.js version <14 has a max size of 8kb).
+
+If the session cookies are pushing the header size over the limit, **you have two options**:
+
+- Use `-max-http-header-size` to increase Node's header size.
+- Remove unused data from the session cookies.
+
+For the latter, you can add an [afterCallback](https://auth0.github.io/nextjs-auth0/modules/handlers_callback.html#aftercallback) hook to remove unused claims from the user profile. Or set the [storeIDToken](https://auth0.github.io/nextjs-auth0/interfaces/config.sessionconfig.html#storeidtoken) config to `false`, if you do not require the ID Token.
diff --git a/README.md b/README.md
index 17a008e37..1087aadb6 100644
--- a/README.md
+++ b/README.md
@@ -1,52 +1,41 @@
-# @auth0/nextjs-auth0 (Beta)
+![nextjs-auth0](https://cdn.auth0.com/website/sdks/banners/nextjs-auth0-banner.png)
The Auth0 Next.js SDK is a library for implementing user authentication in Next.js applications.
-> :warning: Please be aware that v2 is currently in [**Beta**](https://auth0.com/docs/troubleshoot/product-lifecycle/product-release-stages). Whilst we encourage you to test the update within your applications, we do no recommend using this version in production yet. Please follow the [migration guide](./V2_MIGRATION_GUIDE.md) when updating your application.
-
-[![CircleCI](https://img.shields.io/circleci/build/github/auth0/nextjs-auth0/main?style=flat-square)](https://circleci.com/gh/auth0/nextjs-auth0/tree/main)
-[![NPM version](https://img.shields.io/npm/v/@auth0/nextjs-auth0.svg?style=flat-square)](https://npmjs.org/package/@auth0/nextjs-auth0)
+![Release](https://img.shields.io/npm/v/@auth0/nextjs-auth0)
+[![Coverage](https://img.shields.io/badge/dynamic/json?color=brightgreen&label=coverage&query=jest.coverageThreshold.global.lines&suffix=%25&url=https%3A%2F%2Fraw.githubusercontent.com%2Fauth0%2Fnextjs-auth0%2Fmain%2Fpackage.json)](https://github.com/auth0/nextjs-auth0/blob/main/package.json#L147)
+![Downloads](https://img.shields.io/npm/dw/@auth0/nextjs-auth0)
[![License](https://img.shields.io/:license-mit-blue.svg?style=flat)](https://opensource.org/licenses/MIT)
+![CircleCI](https://img.shields.io/circleci/build/github/auth0/nextjs-auth0)
+
+π [Documentation](#documentation) - π [Getting Started](#getting-started)- π» [API Reference](#api-reference) - π¬ [Feedback](#feedback)
+
+## Documentation
+
+- [QuickStart](https://auth0.com/docs/quickstart/webapp/nextjs)- our guide for adding Auth0 to your Next.js app.
+- [FAQs](https://github.com/auth0/nextjs-auth0/blob/main/FAQ.md) - Frequently asked questions about nextjs-auth0.
+- [Examples](https://github.com/auth0/nextjs-auth0/blob/main/EXAMPLES.md) - lots of examples for your different use cases.
+- [Security](https://github.com/auth0/nextjs-auth0/blob/main/SECURITY.md) - Some important security notices that you should check.
+- [Architecture](https://github.com/auth0/nextjs-auth0/blob/main/ARCHITECTURE.md) - Architectural overview of the SDK.
+- [Testing](https://github.com/auth0/nextjs-auth0/blob/main/TESTING.md) - Some help with testing your nextjs-auth0 application.
+- [Deploying](https://github.com/auth0/nextjs-auth0/blob/main/examples/README.md) - How we deploy our example app to Vercel.
+- [Docs Site](https://auth0.com/docs) - explore our docs site and learn more about Auth0.
-## Table of Contents
-
-- [Installation](#installation)
-- [Getting Started](#getting-started)
- - [Auth0 Configuration](#auth0-configuration)
- - [Basic Setup](#basic-setup)
-- [Documentation](#documentation)
- - [QuickStart](https://auth0.com/docs/quickstart/webapp/nextjs)
- - [API Reference](#api-reference)
- - [v1 Migration Guide](./V1_MIGRATION_GUIDE.md)
- - [Cookies and Security](#cookies-and-security)
- - [Caching and Security](#caching-and-security)
- - [Error Handling and Security](#error-handling-and-security)
- - [Base Path and Internationalized Routing](#base-path-and-internationalized-routing)
- - [Architecture](./ARCHITECTURE.md)
- - [Comparison with auth0-react](#comparison-with-the-auth0-react-sdk)
- - [Testing](#testing)
- - [Deploying](#deploying)
-- [Contributing](#contributing)
-- [Vulnerability Reporting](#vulnerability-reporting)
-- [What is Auth0?](#what-is-auth0)
-- [License](#license)
-
-## Installation
+## Getting Started
+
+### Installation
Using [npm](https://npmjs.org):
```sh
-npm install @auth0/nextjs-auth0 --tag beta
+npm install @auth0/nextjs-auth0
```
This library supports the following tooling versions:
-- Node.js: `^10.13.0 || >=12.0.0`
-
+- Node.js: 12 LTS and newer LTS releases are supported.
- Next.js: `>=10`
-## Getting Started
-
### Auth0 Configuration
Create a **Regular Web Application** in the [Auth0 Dashboard](https://manage.auth0.com/#/applications).
@@ -113,11 +102,8 @@ export default handleAuth();
Executing `handleAuth()` creates the following route handlers under the hood that perform different parts of the authentication flow:
- `/api/auth/login`: Your Next.js application redirects users to your identity provider for them to log in (you can optionally pass a `returnTo` parameter to return to a custom relative URL after login, for example `/api/auth/login?returnTo=/profile`).
-
- `/api/auth/callback`: Your identity provider redirects users to this route after they successfully log in.
-
- `/api/auth/logout`: Your Next.js application logs out the user.
-
- `/api/auth/me`: You can fetch user profile information in JSON format.
#### Add the UserProvider to Custom App
@@ -127,7 +113,7 @@ Wrap your `pages/_app.js` component with the `UserProvider` component:
```jsx
// pages/_app.js
import React from 'react';
-import { UserProvider } from '@auth0/nextjs-auth0';
+import { UserProvider } from '@auth0/nextjs-auth0/client';
export default function App({ Component, pageProps }) {
return (
@@ -144,7 +130,7 @@ You can now determine if a user is authenticated by checking that the `user` obj
```jsx
// pages/index.js
-import { useUser } from '@auth0/nextjs-auth0';
+import { useUser } from '@auth0/nextjs-auth0/client';
export default function Index() {
const { user, error, isLoading } = useUser();
@@ -168,16 +154,16 @@ export default function Index() {
There are two additional ways to check for an authenticated user; one for Next.js pages using [withPageAuthRequired](https://auth0.github.io/nextjs-auth0/modules/helpers_with_page_auth_required.html#withpageauthrequired) and one for Next.js API routes using [withAPIAuthRequired](https://auth0.github.io/nextjs-auth0/modules/helpers_with_api_auth_required.html#withapiauthrequired).
-For other comprehensive examples, see the [EXAMPLES.md](./EXAMPLES.md) document.
-
-## Documentation
+For other comprehensive examples, see the [EXAMPLES.md](https://github.com/auth0/nextjs-auth0/blob/main/EXAMPLES.md) document.
-### API Reference
+## API Reference
-- [Configuration Options](https://auth0.github.io/nextjs-auth0/modules/config.html)
+### Server (for Node.js)
-**Server-side methods**:
+`import * from @auth0/nextjs-auth0`
+- [Configuration Options and Environment variables](https://auth0.github.io/nextjs-auth0/modules/config.html)
+- [initAuth0](https://auth0.github.io/nextjs-auth0/modules/index.html#initauth0)
- [handleAuth](https://auth0.github.io/nextjs-auth0/modules/handlers_auth.html)
- [handleLogin](https://auth0.github.io/nextjs-auth0/modules/handlers_login.html#handlelogin)
- [handleCallback](https://auth0.github.io/nextjs-auth0/modules/handlers_callback.html)
@@ -185,19 +171,34 @@ For other comprehensive examples, see the [EXAMPLES.md](./EXAMPLES.md) document.
- [handleProfile](https://auth0.github.io/nextjs-auth0/modules/handlers_profile.html)
- [withApiAuthRequired](https://auth0.github.io/nextjs-auth0/modules/helpers_with_api_auth_required.html)
- [withPageAuthRequired](https://auth0.github.io/nextjs-auth0/modules/helpers_with_page_auth_required.html#withpageauthrequired)
-- [withMiddlewareAuthRequired](https://auth0.github.io/nextjs-auth0/modules/helpers_with_middleware_auth_required.html)
- [getSession](https://auth0.github.io/nextjs-auth0/modules/session_get_session.html)
- [updateSession](https://auth0.github.io/nextjs-auth0/modules/session_update_session.html)
- [getAccessToken](https://auth0.github.io/nextjs-auth0/modules/session_get_access_token.html)
-- [initAuth0](https://auth0.github.io/nextjs-auth0/modules/instance.html)
-**Client-side methods/components**:
+### Edge (for Middleware and the Edge runtime)
+
+`import * from @auth0/nextjs-auth0/edge`
+
+- [Configuration Options and Environment variables](https://auth0.github.io/nextjs-auth0/modules/config.html)
+- [initAuth0](https://auth0.github.io/nextjs-auth0/modules/edge.html#initauth0-1)
+- [withMiddlewareAuthRequired](https://auth0.github.io/nextjs-auth0/modules/helpers_with_middleware_auth_required.html)
+- [getSession](https://auth0.github.io/nextjs-auth0/modules/edge.html#getsession-1)
+
+### Client (for the Browser)
-- [UserProvider](https://auth0.github.io/nextjs-auth0/modules/frontend_use_user.html#userprovider)
-- [useUser](https://auth0.github.io/nextjs-auth0/modules/frontend_use_user.html)
-- [withPageAuthRequired](https://auth0.github.io/nextjs-auth0/modules/frontend_with_page_auth_required.html)
+`import * from @auth0/nextjs-auth0/client`
-Visit the auto-generated [API Docs](https://auth0.github.io/nextjs-auth0/) for more details.
+- [UserProvider](https://auth0.github.io/nextjs-auth0/modules/client_use_user.html#userprovider)
+- [useUser](https://auth0.github.io/nextjs-auth0/modules/client_use_user.html)
+- [withPageAuthRequired](https://auth0.github.io/nextjs-auth0/modules/client_with_page_auth_required.html)
+
+### Testing helpers
+
+`import * from @auth0/nextjs-auth0/testing`
+
+- [generateSessionCookie](https://auth0.github.io/nextjs-auth0/modules/helpers_testing.html#generatesessioncookie)
+
+Visit the auto-generated [API Docs](https://auth0.github.io/nextjs-auth0/) for more details
### Cookies and Security
@@ -302,30 +303,9 @@ For deploying, have a look at [how we deploy our example app to Vercel](./exampl
We appreciate feedback and contribution to this repo! Before you get started, please read the following:
-- [Auth0's general contribution guidelines](./CONTRIBUTING.md)
-- [Auth0's code of conduct guidelines](./CODE-OF-CONDUCT.md)
-
-Start by installing the dependencies of this project:
-
-```sh
-npm install
-```
-
-In order to build a release, you can run the following commands, and the output will be stored in the `dist` folder:
-
-```sh
-npm run clean
-npm run lint
-npm run build
-```
-
-Additionally, you can also run tests:
-
-```sh
-npm run build:test # Build the Next.js test app
-npm run test
-npm run test:watch
-```
+- [Auth0's general contribution guidelines](https://github.com/auth0/open-source-template/blob/master/GENERAL-CONTRIBUTING.md)
+- [Auth0's code of conduct guidelines](https://github.com/auth0/express-openid-connect/blob/master/CODE-OF-CONDUCT.md)
+- [This repo's contribution guide](./CONTRIBUTING.md)
## Vulnerability Reporting
@@ -333,17 +313,16 @@ Please do not report security vulnerabilities on the public GitHub issue tracker
## What is Auth0?
-Auth0 helps you to easily:
-
-- Implement authentication with multiple identity providers, including social identity providers such as Google, Facebook, Microsoft, LinkedIn, GitHub, Twitter (amongst others), or enterprise identity systems like Windows Azure AD, Google Apps, Active Directory, ADFS, or any SAML identity provider
-- Log in users with username/password databases, passwordless, or multi-factor authentication
-- Link multiple user accounts together
-- Generate signed JSON Web Tokens to authorize your API calls and flow the user identity securely
-- Access analytics detailing how, when, and where users are logging in
-- Enrich user profiles from other data sources using customizable JavaScript Actions
-
-[Why Auth0?](https://auth0.com/why-auth0) Because you should save time, be happy, and focus on what really matters: building your product.
-
-## License
-
-This project is licensed under the MIT license. See the [LICENSE](LICENSE) file for more info.
+
+
+
+
+
+
+
+
+ Auth0 is an easy to implement, adaptable authentication and authorization platform. To learn more checkout Why Auth0?
+
+
+ This project is licensed under the MIT license. See the LICENSE file for more info.
+
diff --git a/SECURITY.md b/SECURITY.md
new file mode 100644
index 000000000..d0763ec18
--- /dev/null
+++ b/SECURITY.md
@@ -0,0 +1,47 @@
+# Security Considerations
+
+## Cookies and Security
+
+All cookies will be set to `HttpOnly, SameSite=Lax` and will be set to `Secure` if the application's `AUTH0_BASE_URL` is `https`.
+
+The `HttpOnly` setting will make sure that client-side JavaScript is unable to access the cookie to reduce the attack surface of [XSS attacks](https://auth0.com/blog/developers-guide-to-common-vulnerabilities-and-how-to-prevent-them/#Cross-Site-Scripting--XSS-).
+
+The `SameSite=Lax` setting will help mitigate CSRF attacks. Learn more about SameSite by reading the ["Upcoming Browser Behavior Changes: What Developers Need to Know"](https://auth0.com/blog/browser-behavior-changes-what-developers-need-to-know/) blog post.
+
+## Caching and Security
+
+Many hosting providers will offer to cache your content at the edge in order to serve data to your users as fast as possible. For example Vercel will [cache your content on the Vercel Edge Network](https://vercel.com/docs/concepts/edge-network/caching) for all static content and Serverless Functions if you provide the necessary caching headers on your response.
+
+It's generally a bad idea to cache any response that requires authentication, even if the response's content appears safe to cache there may be other data in the response that isn't.
+
+This SDK offers a rolling session by default, which means that any response that reads the session will have a `Set-Cookie` header to update the cookie's expiry. Vercel and potentially other hosting providers include the `Set-Cookie` header in the cached response, so even if you think the response's content can be cached publicly, the responses `Set-Cookie` header cannot.
+
+Check your hosting provider's caching rules, but in general you should **never** cache responses that either require authentication or even touch the session to check authentication (eg when using `withApiAuthRequired`, `withPageAuthRequired` or even just `getSession` or `getAccessToken`).
+
+## Error Handling and Security
+
+The default server side error handler for the `/api/auth/*` routes prints the error message to screen, eg
+
+```js
+try {
+ await handler(req, res);
+} catch (error) {
+ res.status(error.status || 400).end(error.message);
+}
+```
+
+Because the error can come from the OpenID Connect `error` query parameter we do some [basic escaping](https://cheatsheetseries.owasp.org/cheatsheets/Cross_Site_Scripting_Prevention_Cheat_Sheet.html#rule-1-html-encode-before-inserting-untrusted-data-into-html-element-content) which makes sure the default error handler is safe from XSS.
+
+If you write your own error handler, you should **not** render the error `message`, or `error` and `error_description` properties without using a templating engine that will properly escape it for other HTML contexts first.
+
+## Comparison with the Auth0 React SDK
+
+We also provide an Auth0 React SDK, [auth0-react](https://github.com/auth0/auth0-react), which may be suitable for your Next.js application.
+
+The SPA security model used by `auth0-react` is different from the Web Application security model used by this SDK. In short, this SDK protects pages and API routes with a cookie session (see ["Cookies and Security"](#cookies-and-security)). A SPA library like `auth0-react` will store the user's ID Token and Access Token directly in the browser and use them to access external APIs directly.
+
+You should be aware of the security implications of both models. However, [auth0-react](https://github.com/auth0/auth0-react) may be more suitable for your needs if you meet any of the following scenarios:
+
+- You are using [Static HTML Export](https://nextjs.org/docs/advanced-features/static-html-export) with Next.js.
+- You do not need to access user data during server-side rendering.
+- You want to get the access token and call external API's directly from the frontend layer rather than using Next.js API Routes as a proxy to call external APIs
diff --git a/TESTING.md b/TESTING.md
new file mode 100644
index 000000000..78d2efcae
--- /dev/null
+++ b/TESTING.md
@@ -0,0 +1,7 @@
+# Testing
+
+By default, the SDK creates and manages a singleton instance to run for the lifetime of the application. When testing your application, you may need to reset this instance, so its state does not leak between tests.
+
+If you're using Jest, we recommend using `jest.resetModules()` after each test. Alternatively, you can look at [creating your own instance of the SDK](https://github.com/auth0/open-source-template/blob/master/EXAMPLES.md#create-your-own-instance-of-the-sdk), so it can be recreated between tests.
+
+For end to end tests, have a look at how we use a [mock OIDC Provider](https://github.com/auth0/open-source-template/blob/master/scripts/oidc-provider.js).
diff --git a/V2_MIGRATION_GUIDE.md b/V2_MIGRATION_GUIDE.md
index bdcfdac74..e308eae59 100644
--- a/V2_MIGRATION_GUIDE.md
+++ b/V2_MIGRATION_GUIDE.md
@@ -2,15 +2,20 @@
Guide to migrating from `1.x` to `2.x`
+- [Node 10 is no longer supported](#node-10-is-no-longer-supported)
- [`getSession` now returns a `Promise`](#getsession-now-returns-a-promise)
+- [Client methods and components are now exported under /client](#client-methods-and-components-are-now-exported-under-client)
- [`updateSession` has been added](#updatesession-has-been-added)
- [`getServerSidePropsWrapper` has been removed](#getserversidepropswrapper-has-been-removed)
- [Profile API route no longer returns a 401](#profile-api-route-no-longer-returns-a-401)
-- [The ID token is no longer stored by default](#the-id-token-is-no-longer-stored-by-default)
- [Override default error handler](#override-default-error-handler)
- [afterCallback can write to the response](#aftercallback-can-write-to-the-response)
- [Configure default handlers](#configure-default-handlers)
+## Node 10 is no longer supported
+
+Node 12 LTS and newer LTS releases are supported.
+
## `getSession` now returns a `Promise`
### Before
@@ -37,6 +42,92 @@ async function myApiRoute(req, res) {
}
```
+## Client methods and components are now exported under /client
+
+All methods and components for the browser should now be accessed under `/client`.
+
+### Before
+
+```js
+// pages/_app.js
+import React from 'react';
+import { UserProvider } from '@auth0/nextjs-auth0';
+
+export default function App({ Component, pageProps }) {
+ return (
+
+
+
+ );
+}
+```
+
+```js
+// pages/index.js
+import { useUser } from '@auth0/nextjs-auth0';
+
+export default function Index() {
+ const { user, error, isLoading } = useUser();
+
+ if (isLoading) return Loading...
;
+ if (error) return {error.message}
;
+
+ if (user) {
+ return (
+
+ Welcome {user.name}!
Logout
+
+ );
+ }
+
+ return Login ;
+}
+```
+
+### After
+
+```js
+// pages/_app.js
+import React from 'react';
+import { UserProvider } from '@auth0/nextjs-auth0/client';
+
+export default function App({ Component, pageProps }) {
+ return (
+
+
+
+ );
+}
+```
+
+```js
+// pages/index.js
+import { useUser, withPageAuthRequired as withPageAuthRequiredCSR } from '@auth0/nextjs-auth0/client';
+// The SSR version of withPageAuthRequired is still in the root export
+import { withPageAuthRequired as withPageAuthRequiredSSR } from '@auth0/nextjs-auth0';
+
+export default withPageAuthRequiredCSR(function Index() {
+ const { user, error, isLoading } = useUser();
+
+ if (isLoading) return Loading...
;
+ if (error) return {error.message}
;
+
+ if (user) {
+ return (
+
+ Welcome {user.name}!
Logout
+
+ );
+ }
+
+ return Login ;
+});
+
+export const getServerSideProps = withPageAuthRequiredSSR();
+```
+
+### Before
+
## `updateSession` has been added
### Before
@@ -109,14 +200,6 @@ export const getServerSideProps = async (ctx) => {
Previously the profile API route, by default at `/api/auth/me`, would return a 401 error when the user was not authenticated. While it was technically the right status code for the situation, it showed up in the browser console as an error. This API route will now return a 204 instead. Since 204 is a successful status code, it will not produce a console error.
-## The ID token is no longer stored by default
-
-Previously the ID token would be stored in the session cookie, making the cookie unnecessarily large. Removing it required adding an `afterCallback` hook to the callback API route, and an `afterRefresh` hook to `getAccessToken()` βwhen using refresh tokens.
-
-Now the SDK will not store it by default. If you had been using hooks to strip it away, you can safely remove those.
-
-You can choose to store it by setting either the `session.storeIDToken` config property or the `AUTH0_SESSION_STORE_ID_TOKEN` environment variable to `true`.
-
## Override default error handler
You can now set the default error handler for the auth routes in a single place.
diff --git a/browserstack.json b/browserstack.json
index 1f8aebee2..174260b22 100644
--- a/browserstack.json
+++ b/browserstack.json
@@ -1,36 +1,38 @@
{
- "browsers": [
- {
- "browser": "chrome",
- "os": "Windows 10",
- "versions": ["latest"]
- },
- {
- "browser": "firefox",
- "os": "OS X Mojave",
- "versions": ["latest"]
- },
- {
- "browser": "edge",
- "os": "Windows 10",
- "versions": ["latest"]
- }
- ],
- "run_settings": {
- "cypress_config_file": "./cypress-bs.json",
- "cypress-version": "7",
- "project_name": "Auth0 NextJS SDK",
- "exclude": [],
- "parallels": "5",
- "npm_dependencies": {
- "typescript": "^4.1.3"
- },
- "package_config_options": {},
- "headless": true
+ "browsers": [
+ {
+ "browser": "chrome",
+ "os": "Windows 10",
+ "versions": ["latest"]
},
- "connection_settings": {
- "local": true,
- "local_mode": "always-on"
+ {
+ "browser": "firefox",
+ "os": "OS X Mojave",
+ "versions": ["latest"]
},
- "disable_usage_reporting": false
- }
+ {
+ "browser": "edge",
+ "os": "Windows 10",
+ "versions": ["latest"]
+ }
+ ],
+ "run_settings": {
+ "cypress_config_file": "./cypress-local.config.js",
+ "cypress-version": "11",
+ "project_name": "Auth0 NextJS SDK",
+ "exclude": [],
+ "parallels": "3",
+ "npm_dependencies": {
+ "typescript": "^4.1.3",
+ "cypress": "11"
+ },
+ "package_config_options": {},
+ "headless": true
+ },
+ "connection_settings": {
+ "local": true,
+ "local_mode": "always-on"
+ },
+ "disable_usage_reporting": false
+}
+
diff --git a/client.d.ts b/client.d.ts
new file mode 100644
index 000000000..a2fd513e3
--- /dev/null
+++ b/client.d.ts
@@ -0,0 +1 @@
+export type * from './dist/client';
diff --git a/client.js b/client.js
new file mode 100644
index 000000000..c9ae72953
--- /dev/null
+++ b/client.js
@@ -0,0 +1 @@
+module.exports = require('./dist/client');
diff --git a/cypress-bs.json b/cypress-bs.json
deleted file mode 100644
index da2e5b78e..000000000
--- a/cypress-bs.json
+++ /dev/null
@@ -1,15 +0,0 @@
-{
- "baseUrl": "http://127.0.0.1:3000",
- "chromeWebSecurity": false,
- "viewportWidth": 1000,
- "viewportHeight": 1000,
- "fixturesFolder": false,
- "pluginsFile": false,
- "reporter": "junit",
- "reporterOptions": {
- "mochaFile": "test-results/cypress/junit-[hash].xml"
- },
- "retries": {
- "runMode": 3
- }
-}
diff --git a/cypress-local.config.js b/cypress-local.config.js
new file mode 100644
index 000000000..f936e9e90
--- /dev/null
+++ b/cypress-local.config.js
@@ -0,0 +1,22 @@
+const { defineConfig } = require('cypress');
+
+export default defineConfig({
+ chromeWebSecurity: false,
+ viewportWidth: 1000,
+ viewportHeight: 1000,
+ fixturesFolder: false,
+ reporter: 'junit',
+
+ reporterOptions: {
+ mochaFile: 'test-results/cypress/junit-[hash].xml'
+ },
+
+ retries: {
+ runMode: 3
+ },
+
+ e2e: {
+ baseUrl: 'http://localhost:3000',
+ supportFile: false
+ }
+});
diff --git a/cypress.config.js b/cypress.config.js
new file mode 100644
index 000000000..9f21bdbaa
--- /dev/null
+++ b/cypress.config.js
@@ -0,0 +1,25 @@
+const { defineConfig } = require('cypress');
+
+export default defineConfig({
+ chromeWebSecurity: false,
+ viewportWidth: 1000,
+ viewportHeight: 1000,
+ fixturesFolder: false,
+ reporter: 'junit',
+ reporterOptions: {
+ mochaFile: 'test-results/cypress/junit-[hash].xml'
+ },
+ retries: {
+ runMode: 3
+ },
+ env: {
+ USE_AUTH0: true
+ },
+
+ e2e: {
+ setupNodeEvents() {},
+ baseUrl: 'http://localhost:3000',
+ experimentalSessionAndOrigin: true,
+ supportFile: false
+ }
+});
diff --git a/cypress.json b/cypress.json
deleted file mode 100644
index cef72494d..000000000
--- a/cypress.json
+++ /dev/null
@@ -1,18 +0,0 @@
-{
- "baseUrl": "http://localhost:3000",
- "chromeWebSecurity": false,
- "viewportWidth": 1000,
- "viewportHeight": 1000,
- "fixturesFolder": false,
- "pluginsFile": false,
- "reporter": "junit",
- "reporterOptions": {
- "mochaFile": "test-results/cypress/junit-[hash].xml"
- },
- "retries": {
- "runMode": 3
- },
- "env": {
- "USE_AUTH0": true
- }
-}
diff --git a/cypress/integration/smoke.test.ts b/cypress/e2e/smoke.cy.ts
similarity index 90%
rename from cypress/integration/smoke.test.ts
rename to cypress/e2e/smoke.cy.ts
index 9555da7be..8aae248a8 100644
--- a/cypress/integration/smoke.test.ts
+++ b/cypress/e2e/smoke.cy.ts
@@ -22,14 +22,11 @@ const loginToNodeOidc = () => {
const login = useAuth0 ? loginToAuth0 : loginToNodeOidc;
describe('smoke tests', () => {
- before(() => {
+ it('should do basic login and show user', () => {
cy.visit('/');
cy.window().its('__DEV_PAGES_MANIFEST'); // wait for pages to load so FF doesn't fail
cy.get('[data-testid=login]').click();
login();
- });
-
- it('should do basic login and show user', () => {
cy.url().should('eq', `${Cypress.config().baseUrl}/`);
cy.get('[data-testid=profile]').contains(EMAIL);
cy.get('[data-testid=logout]').should('exist');
@@ -37,23 +34,31 @@ describe('smoke tests', () => {
it('should protect a client-side rendered page', () => {
cy.visit('/profile');
+ login();
cy.url().should('eq', `${Cypress.config().baseUrl}/profile`);
cy.get('[data-testid=profile]').contains(EMAIL);
});
it('should protect a server-side rendered page', () => {
cy.visit('/profile-ssr');
+ login();
+
cy.url().should('eq', `${Cypress.config().baseUrl}/profile-ssr`);
cy.get('[data-testid=profile]').contains(EMAIL);
});
it('should protect a page with middleware', () => {
cy.visit('/profile-mw');
+ login();
cy.url().should('eq', `${Cypress.config().baseUrl}/profile-mw`);
cy.get('[data-testid=profile]').contains(EMAIL);
});
it('should logout and return to the index page', () => {
+ cy.visit('/profile');
+ login();
+ cy.url().should('eq', `${Cypress.config().baseUrl}/profile`);
+ cy.window().its('__DEV_PAGES_MANIFEST'); // wait for pages to load so FF doesn't fail
cy.get('[data-testid=logout]').click();
if (!useAuth0) {
cy.get('[name=logout]').click();
diff --git a/cypress/support/index.js b/cypress/support/index.js
deleted file mode 100644
index 92ed78408..000000000
--- a/cypress/support/index.js
+++ /dev/null
@@ -1,3 +0,0 @@
-Cypress.Cookies.defaults({
- preserve: () => true
-});
diff --git a/docs/assets/js/search.js b/docs/assets/js/search.js
index d203cdb10..666375ce6 100644
--- a/docs/assets/js/search.js
+++ b/docs/assets/js/search.js
@@ -1 +1 @@
-window.searchData = {"kinds":{"1":"Module","4":"Enumeration","16":"Enumeration member","64":"Function","128":"Class","256":"Interface","512":"Constructor","1024":"Property","2048":"Method","65536":"Type literal","4194304":"Type alias","16777216":"Reference"},"rows":[{"id":0,"kind":1,"name":"config","url":"modules/config.html","classes":"tsd-kind-module"},{"id":1,"kind":256,"name":"BaseConfig","url":"interfaces/config.baseconfig.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"config"},{"id":2,"kind":1024,"name":"secret","url":"interfaces/config.baseconfig.html#secret","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.BaseConfig"},{"id":3,"kind":1024,"name":"session","url":"interfaces/config.baseconfig.html#session","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.BaseConfig"},{"id":4,"kind":1024,"name":"auth0Logout","url":"interfaces/config.baseconfig.html#auth0logout","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.BaseConfig"},{"id":5,"kind":1024,"name":"authorizationParams","url":"interfaces/config.baseconfig.html#authorizationparams","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.BaseConfig"},{"id":6,"kind":1024,"name":"baseURL","url":"interfaces/config.baseconfig.html#baseurl","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.BaseConfig"},{"id":7,"kind":1024,"name":"clientID","url":"interfaces/config.baseconfig.html#clientid","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.BaseConfig"},{"id":8,"kind":1024,"name":"clientSecret","url":"interfaces/config.baseconfig.html#clientsecret","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.BaseConfig"},{"id":9,"kind":1024,"name":"clockTolerance","url":"interfaces/config.baseconfig.html#clocktolerance","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.BaseConfig"},{"id":10,"kind":1024,"name":"httpTimeout","url":"interfaces/config.baseconfig.html#httptimeout","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.BaseConfig"},{"id":11,"kind":1024,"name":"enableTelemetry","url":"interfaces/config.baseconfig.html#enabletelemetry","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.BaseConfig"},{"id":12,"kind":1024,"name":"getLoginState","url":"interfaces/config.baseconfig.html#getloginstate","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.BaseConfig"},{"id":13,"kind":65536,"name":"__type","url":"interfaces/config.baseconfig.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"config.BaseConfig"},{"id":14,"kind":1024,"name":"identityClaimFilter","url":"interfaces/config.baseconfig.html#identityclaimfilter","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.BaseConfig"},{"id":15,"kind":1024,"name":"idpLogout","url":"interfaces/config.baseconfig.html#idplogout","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.BaseConfig"},{"id":16,"kind":1024,"name":"idTokenSigningAlg","url":"interfaces/config.baseconfig.html#idtokensigningalg","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.BaseConfig"},{"id":17,"kind":1024,"name":"issuerBaseURL","url":"interfaces/config.baseconfig.html#issuerbaseurl","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.BaseConfig"},{"id":18,"kind":1024,"name":"legacySameSiteCookie","url":"interfaces/config.baseconfig.html#legacysamesitecookie","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.BaseConfig"},{"id":19,"kind":1024,"name":"routes","url":"interfaces/config.baseconfig.html#routes","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.BaseConfig"},{"id":20,"kind":65536,"name":"__type","url":"interfaces/config.baseconfig.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"config.BaseConfig"},{"id":21,"kind":1024,"name":"postLogoutRedirect","url":"interfaces/config.baseconfig.html#__type-1.postlogoutredirect","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"config.BaseConfig.__type"},{"id":22,"kind":1024,"name":"callback","url":"interfaces/config.baseconfig.html#__type-1.callback","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"config.BaseConfig.__type"},{"id":23,"kind":256,"name":"SessionConfig","url":"interfaces/config.sessionconfig.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"config"},{"id":24,"kind":1024,"name":"name","url":"interfaces/config.sessionconfig.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.SessionConfig"},{"id":25,"kind":1024,"name":"rolling","url":"interfaces/config.sessionconfig.html#rolling","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.SessionConfig"},{"id":26,"kind":1024,"name":"rollingDuration","url":"interfaces/config.sessionconfig.html#rollingduration","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.SessionConfig"},{"id":27,"kind":1024,"name":"absoluteDuration","url":"interfaces/config.sessionconfig.html#absoluteduration","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.SessionConfig"},{"id":28,"kind":1024,"name":"storeIDToken","url":"interfaces/config.sessionconfig.html#storeidtoken","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.SessionConfig"},{"id":29,"kind":1024,"name":"cookie","url":"interfaces/config.sessionconfig.html#cookie","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.SessionConfig"},{"id":30,"kind":256,"name":"CookieConfig","url":"interfaces/config.cookieconfig.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"config"},{"id":31,"kind":1024,"name":"domain","url":"interfaces/config.cookieconfig.html#domain","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.CookieConfig"},{"id":32,"kind":1024,"name":"path","url":"interfaces/config.cookieconfig.html#path","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.CookieConfig"},{"id":33,"kind":1024,"name":"transient","url":"interfaces/config.cookieconfig.html#transient","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.CookieConfig"},{"id":34,"kind":1024,"name":"httpOnly","url":"interfaces/config.cookieconfig.html#httponly","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.CookieConfig"},{"id":35,"kind":1024,"name":"secure","url":"interfaces/config.cookieconfig.html#secure","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.CookieConfig"},{"id":36,"kind":1024,"name":"sameSite","url":"interfaces/config.cookieconfig.html#samesite","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.CookieConfig"},{"id":37,"kind":256,"name":"AuthorizationParameters","url":"interfaces/config.authorizationparameters.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"config"},{"id":38,"kind":1024,"name":"scope","url":"interfaces/config.authorizationparameters.html#scope","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite","parent":"config.AuthorizationParameters"},{"id":39,"kind":1024,"name":"response_mode","url":"interfaces/config.authorizationparameters.html#response_mode","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite","parent":"config.AuthorizationParameters"},{"id":40,"kind":1024,"name":"response_type","url":"interfaces/config.authorizationparameters.html#response_type","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite","parent":"config.AuthorizationParameters"},{"id":41,"kind":256,"name":"NextConfig","url":"interfaces/config.nextconfig.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"config"},{"id":42,"kind":1024,"name":"organization","url":"interfaces/config.nextconfig.html#organization","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.NextConfig"},{"id":43,"kind":1024,"name":"routes","url":"interfaces/config.nextconfig.html#routes","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.NextConfig"},{"id":44,"kind":65536,"name":"__type","url":"interfaces/config.nextconfig.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"config.NextConfig"},{"id":45,"kind":1024,"name":"callback","url":"interfaces/config.nextconfig.html#__type.callback","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"config.NextConfig.__type"},{"id":46,"kind":1024,"name":"login","url":"interfaces/config.nextconfig.html#__type.login","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"config.NextConfig.__type"},{"id":47,"kind":1024,"name":"identityClaimFilter","url":"interfaces/config.nextconfig.html#identityclaimfilter","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"config.NextConfig"},{"id":48,"kind":4194304,"name":"ConfigParameters","url":"modules/config.html#configparameters","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"config"},{"id":49,"kind":1,"name":"frontend","url":"modules/frontend.html","classes":"tsd-kind-module"},{"id":50,"kind":1,"name":"frontend/use-user","url":"modules/frontend_use_user.html","classes":"tsd-kind-module"},{"id":51,"kind":256,"name":"UserProfile","url":"interfaces/frontend_use_user.userprofile.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"frontend/use-user"},{"id":52,"kind":1024,"name":"email","url":"interfaces/frontend_use_user.userprofile.html#email","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"frontend/use-user.UserProfile"},{"id":53,"kind":1024,"name":"email_verified","url":"interfaces/frontend_use_user.userprofile.html#email_verified","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"frontend/use-user.UserProfile"},{"id":54,"kind":1024,"name":"name","url":"interfaces/frontend_use_user.userprofile.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"frontend/use-user.UserProfile"},{"id":55,"kind":1024,"name":"nickname","url":"interfaces/frontend_use_user.userprofile.html#nickname","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"frontend/use-user.UserProfile"},{"id":56,"kind":1024,"name":"picture","url":"interfaces/frontend_use_user.userprofile.html#picture","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"frontend/use-user.UserProfile"},{"id":57,"kind":1024,"name":"sub","url":"interfaces/frontend_use_user.userprofile.html#sub","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"frontend/use-user.UserProfile"},{"id":58,"kind":1024,"name":"updated_at","url":"interfaces/frontend_use_user.userprofile.html#updated_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"frontend/use-user.UserProfile"},{"id":59,"kind":1024,"name":"org_id","url":"interfaces/frontend_use_user.userprofile.html#org_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"frontend/use-user.UserProfile"},{"id":60,"kind":4194304,"name":"UserContext","url":"modules/frontend_use_user.html#usercontext","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"frontend/use-user"},{"id":61,"kind":65536,"name":"__type","url":"modules/frontend_use_user.html#usercontext.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"frontend/use-user.UserContext"},{"id":62,"kind":1024,"name":"user","url":"modules/frontend_use_user.html#usercontext.__type.user","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"frontend/use-user.UserContext.__type"},{"id":63,"kind":1024,"name":"error","url":"modules/frontend_use_user.html#usercontext.__type.error","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"frontend/use-user.UserContext.__type"},{"id":64,"kind":1024,"name":"isLoading","url":"modules/frontend_use_user.html#usercontext.__type.isloading","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"frontend/use-user.UserContext.__type"},{"id":65,"kind":1024,"name":"checkSession","url":"modules/frontend_use_user.html#usercontext.__type.checksession","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"frontend/use-user.UserContext.__type"},{"id":66,"kind":65536,"name":"__type","url":"modules/frontend_use_user.html#usercontext.__type.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"frontend/use-user.UserContext.__type"},{"id":67,"kind":128,"name":"RequestError","url":"classes/frontend_use_user.requesterror.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"frontend/use-user"},{"id":68,"kind":512,"name":"constructor","url":"classes/frontend_use_user.requesterror.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"frontend/use-user.RequestError"},{"id":69,"kind":1024,"name":"status","url":"classes/frontend_use_user.requesterror.html#status","classes":"tsd-kind-property tsd-parent-kind-class","parent":"frontend/use-user.RequestError"},{"id":70,"kind":4194304,"name":"UserProviderProps","url":"modules/frontend_use_user.html#userproviderprops","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"frontend/use-user"},{"id":71,"kind":64,"name":"useUser","url":"modules/frontend_use_user.html#useuser","classes":"tsd-kind-function tsd-parent-kind-module","parent":"frontend/use-user"},{"id":72,"kind":4194304,"name":"UserProvider","url":"modules/frontend_use_user.html#userprovider","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"frontend/use-user"},{"id":73,"kind":65536,"name":"__type","url":"modules/frontend_use_user.html#userprovider.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"frontend/use-user.UserProvider"},{"id":74,"kind":1024,"name":"default","url":"modules/frontend_use_user.html#default","classes":"tsd-kind-property tsd-parent-kind-module","parent":"frontend/use-user"},{"id":75,"kind":65536,"name":"__type","url":"modules/frontend_use_user.html#__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-module","parent":"frontend/use-user"},{"id":76,"kind":1,"name":"frontend/with-page-auth-required","url":"modules/frontend_with_page_auth_required.html","classes":"tsd-kind-module"},{"id":77,"kind":256,"name":"WithPageAuthRequiredOptions","url":"interfaces/frontend_with_page_auth_required.withpageauthrequiredoptions.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"frontend/with-page-auth-required"},{"id":78,"kind":1024,"name":"returnTo","url":"interfaces/frontend_with_page_auth_required.withpageauthrequiredoptions.html#returnto","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"frontend/with-page-auth-required.WithPageAuthRequiredOptions"},{"id":79,"kind":1024,"name":"onRedirecting","url":"interfaces/frontend_with_page_auth_required.withpageauthrequiredoptions.html#onredirecting","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"frontend/with-page-auth-required.WithPageAuthRequiredOptions"},{"id":80,"kind":65536,"name":"__type","url":"interfaces/frontend_with_page_auth_required.withpageauthrequiredoptions.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"frontend/with-page-auth-required.WithPageAuthRequiredOptions"},{"id":81,"kind":1024,"name":"onError","url":"interfaces/frontend_with_page_auth_required.withpageauthrequiredoptions.html#onerror","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"frontend/with-page-auth-required.WithPageAuthRequiredOptions"},{"id":82,"kind":65536,"name":"__type","url":"interfaces/frontend_with_page_auth_required.withpageauthrequiredoptions.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"frontend/with-page-auth-required.WithPageAuthRequiredOptions"},{"id":83,"kind":256,"name":"UserProps","url":"interfaces/frontend_with_page_auth_required.userprops.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"frontend/with-page-auth-required"},{"id":84,"kind":1024,"name":"user","url":"interfaces/frontend_with_page_auth_required.userprops.html#user","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"frontend/with-page-auth-required.UserProps"},{"id":85,"kind":4194304,"name":"WithPageAuthRequired","url":"modules/frontend_with_page_auth_required.html#withpageauthrequired","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"frontend/with-page-auth-required"},{"id":86,"kind":65536,"name":"__type","url":"modules/frontend_with_page_auth_required.html#withpageauthrequired.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias tsd-has-type-parameter","parent":"frontend/with-page-auth-required.WithPageAuthRequired"},{"id":87,"kind":1,"name":"handlers/auth","url":"modules/handlers_auth.html","classes":"tsd-kind-module"},{"id":88,"kind":4194304,"name":"Handlers","url":"modules/handlers_auth.html#handlers","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"handlers/auth"},{"id":89,"kind":4194304,"name":"HandleAuth","url":"modules/handlers_auth.html#handleauth","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"handlers/auth"},{"id":90,"kind":65536,"name":"__type","url":"modules/handlers_auth.html#handleauth.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"handlers/auth.HandleAuth"},{"id":91,"kind":4194304,"name":"OnError","url":"modules/handlers_auth.html#onerror","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"handlers/auth"},{"id":92,"kind":65536,"name":"__type","url":"modules/handlers_auth.html#onerror.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"handlers/auth.OnError"},{"id":93,"kind":1,"name":"handlers/callback","url":"modules/handlers_callback.html","classes":"tsd-kind-module"},{"id":94,"kind":4194304,"name":"AfterCallback","url":"modules/handlers_callback.html#aftercallback","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"handlers/callback"},{"id":95,"kind":65536,"name":"__type","url":"modules/handlers_callback.html#aftercallback.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"handlers/callback.AfterCallback"},{"id":96,"kind":256,"name":"CallbackOptions","url":"interfaces/handlers_callback.callbackoptions.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"handlers/callback"},{"id":97,"kind":1024,"name":"afterCallback","url":"interfaces/handlers_callback.callbackoptions.html#aftercallback","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"handlers/callback.CallbackOptions"},{"id":98,"kind":1024,"name":"redirectUri","url":"interfaces/handlers_callback.callbackoptions.html#redirecturi","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"handlers/callback.CallbackOptions"},{"id":99,"kind":1024,"name":"organization","url":"interfaces/handlers_callback.callbackoptions.html#organization","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"handlers/callback.CallbackOptions"},{"id":100,"kind":1024,"name":"authorizationParams","url":"interfaces/handlers_callback.callbackoptions.html#authorizationparams","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"handlers/callback.CallbackOptions"},{"id":101,"kind":4194304,"name":"CallbackOptionsProvider","url":"modules/handlers_callback.html#callbackoptionsprovider","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"handlers/callback"},{"id":102,"kind":65536,"name":"__type","url":"modules/handlers_callback.html#callbackoptionsprovider.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"handlers/callback.CallbackOptionsProvider"},{"id":103,"kind":4194304,"name":"HandleCallback","url":"modules/handlers_callback.html#handlecallback","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"handlers/callback"},{"id":104,"kind":65536,"name":"__type","url":"modules/handlers_callback.html#handlecallback.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"handlers/callback.HandleCallback"},{"id":105,"kind":4194304,"name":"CallbackHandler","url":"modules/handlers_callback.html#callbackhandler","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"handlers/callback"},{"id":106,"kind":65536,"name":"__type","url":"modules/handlers_callback.html#callbackhandler.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"handlers/callback.CallbackHandler"},{"id":107,"kind":1,"name":"handlers","url":"modules/handlers.html","classes":"tsd-kind-module"},{"id":108,"kind":1,"name":"handlers/login","url":"modules/handlers_login.html","classes":"tsd-kind-module"},{"id":109,"kind":4194304,"name":"GetLoginState","url":"modules/handlers_login.html#getloginstate","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"handlers/login"},{"id":110,"kind":65536,"name":"__type","url":"modules/handlers_login.html#getloginstate.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"handlers/login.GetLoginState"},{"id":111,"kind":256,"name":"AuthorizationParams","url":"interfaces/handlers_login.authorizationparams.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"handlers/login"},{"id":112,"kind":1024,"name":"connection","url":"interfaces/handlers_login.authorizationparams.html#connection","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"handlers/login.AuthorizationParams"},{"id":113,"kind":1024,"name":"connection_scope","url":"interfaces/handlers_login.authorizationparams.html#connection_scope","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"handlers/login.AuthorizationParams"},{"id":114,"kind":1024,"name":"invitation","url":"interfaces/handlers_login.authorizationparams.html#invitation","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"handlers/login.AuthorizationParams"},{"id":115,"kind":1024,"name":"organization","url":"interfaces/handlers_login.authorizationparams.html#organization","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"handlers/login.AuthorizationParams"},{"id":116,"kind":1024,"name":"screen_hint","url":"interfaces/handlers_login.authorizationparams.html#screen_hint","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"handlers/login.AuthorizationParams"},{"id":117,"kind":1024,"name":"scope","url":"interfaces/handlers_login.authorizationparams.html#scope","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"handlers/login.AuthorizationParams"},{"id":118,"kind":1024,"name":"response_mode","url":"interfaces/handlers_login.authorizationparams.html#response_mode","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"handlers/login.AuthorizationParams"},{"id":119,"kind":1024,"name":"response_type","url":"interfaces/handlers_login.authorizationparams.html#response_type","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"handlers/login.AuthorizationParams"},{"id":120,"kind":256,"name":"LoginOptions","url":"interfaces/handlers_login.loginoptions.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"handlers/login"},{"id":121,"kind":1024,"name":"authorizationParams","url":"interfaces/handlers_login.loginoptions.html#authorizationparams","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"handlers/login.LoginOptions"},{"id":122,"kind":1024,"name":"returnTo","url":"interfaces/handlers_login.loginoptions.html#returnto","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"handlers/login.LoginOptions"},{"id":123,"kind":1024,"name":"getLoginState","url":"interfaces/handlers_login.loginoptions.html#getloginstate","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"handlers/login.LoginOptions"},{"id":124,"kind":4194304,"name":"LoginOptionsProvider","url":"modules/handlers_login.html#loginoptionsprovider","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"handlers/login"},{"id":125,"kind":65536,"name":"__type","url":"modules/handlers_login.html#loginoptionsprovider.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"handlers/login.LoginOptionsProvider"},{"id":126,"kind":4194304,"name":"HandleLogin","url":"modules/handlers_login.html#handlelogin","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"handlers/login"},{"id":127,"kind":65536,"name":"__type","url":"modules/handlers_login.html#handlelogin.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"handlers/login.HandleLogin"},{"id":128,"kind":4194304,"name":"LoginHandler","url":"modules/handlers_login.html#loginhandler","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"handlers/login"},{"id":129,"kind":65536,"name":"__type","url":"modules/handlers_login.html#loginhandler.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"handlers/login.LoginHandler"},{"id":130,"kind":1,"name":"handlers/logout","url":"modules/handlers_logout.html","classes":"tsd-kind-module"},{"id":131,"kind":256,"name":"LogoutOptions","url":"interfaces/handlers_logout.logoutoptions.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"handlers/logout"},{"id":132,"kind":1024,"name":"returnTo","url":"interfaces/handlers_logout.logoutoptions.html#returnto","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"handlers/logout.LogoutOptions"},{"id":133,"kind":4194304,"name":"LogoutOptionsProvider","url":"modules/handlers_logout.html#logoutoptionsprovider","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"handlers/logout"},{"id":134,"kind":65536,"name":"__type","url":"modules/handlers_logout.html#logoutoptionsprovider.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"handlers/logout.LogoutOptionsProvider"},{"id":135,"kind":4194304,"name":"HandleLogout","url":"modules/handlers_logout.html#handlelogout","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"handlers/logout"},{"id":136,"kind":65536,"name":"__type","url":"modules/handlers_logout.html#handlelogout.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"handlers/logout.HandleLogout"},{"id":137,"kind":4194304,"name":"LogoutHandler","url":"modules/handlers_logout.html#logouthandler","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"handlers/logout"},{"id":138,"kind":65536,"name":"__type","url":"modules/handlers_logout.html#logouthandler.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"handlers/logout.LogoutHandler"},{"id":139,"kind":1,"name":"handlers/profile","url":"modules/handlers_profile.html","classes":"tsd-kind-module"},{"id":140,"kind":4194304,"name":"AfterRefetch","url":"modules/handlers_profile.html#afterrefetch","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"handlers/profile"},{"id":141,"kind":65536,"name":"__type","url":"modules/handlers_profile.html#afterrefetch.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"handlers/profile.AfterRefetch"},{"id":142,"kind":4194304,"name":"ProfileOptions","url":"modules/handlers_profile.html#profileoptions","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"handlers/profile"},{"id":143,"kind":65536,"name":"__type","url":"modules/handlers_profile.html#profileoptions.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"handlers/profile.ProfileOptions"},{"id":144,"kind":1024,"name":"refetch","url":"modules/handlers_profile.html#profileoptions.__type-3.refetch","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"handlers/profile.ProfileOptions.__type"},{"id":145,"kind":1024,"name":"afterRefetch","url":"modules/handlers_profile.html#profileoptions.__type-3.afterrefetch-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"handlers/profile.ProfileOptions.__type"},{"id":146,"kind":4194304,"name":"ProfileOptionsProvider","url":"modules/handlers_profile.html#profileoptionsprovider","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"handlers/profile"},{"id":147,"kind":65536,"name":"__type","url":"modules/handlers_profile.html#profileoptionsprovider.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"handlers/profile.ProfileOptionsProvider"},{"id":148,"kind":4194304,"name":"HandleProfile","url":"modules/handlers_profile.html#handleprofile","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"handlers/profile"},{"id":149,"kind":65536,"name":"__type","url":"modules/handlers_profile.html#handleprofile.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"handlers/profile.HandleProfile"},{"id":150,"kind":4194304,"name":"ProfileHandler","url":"modules/handlers_profile.html#profilehandler","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"handlers/profile"},{"id":151,"kind":65536,"name":"__type","url":"modules/handlers_profile.html#profilehandler.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"handlers/profile.ProfileHandler"},{"id":152,"kind":1,"name":"helpers","url":"modules/helpers.html","classes":"tsd-kind-module"},{"id":153,"kind":1,"name":"helpers/testing","url":"modules/helpers_testing.html","classes":"tsd-kind-module"},{"id":154,"kind":64,"name":"generateSessionCookie","url":"modules/helpers_testing.html#generatesessioncookie","classes":"tsd-kind-function tsd-parent-kind-module","parent":"helpers/testing"},{"id":155,"kind":1,"name":"helpers/with-api-auth-required","url":"modules/helpers_with_api_auth_required.html","classes":"tsd-kind-module"},{"id":156,"kind":4194304,"name":"WithApiAuthRequired","url":"modules/helpers_with_api_auth_required.html#withapiauthrequired","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"helpers/with-api-auth-required"},{"id":157,"kind":65536,"name":"__type","url":"modules/helpers_with_api_auth_required.html#withapiauthrequired.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"helpers/with-api-auth-required.WithApiAuthRequired"},{"id":158,"kind":1,"name":"helpers/with-middleware-auth-required","url":"modules/helpers_with_middleware_auth_required.html","classes":"tsd-kind-module"},{"id":159,"kind":4194304,"name":"WithMiddlewareAuthRequired","url":"modules/helpers_with_middleware_auth_required.html#withmiddlewareauthrequired","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"helpers/with-middleware-auth-required"},{"id":160,"kind":65536,"name":"__type","url":"modules/helpers_with_middleware_auth_required.html#withmiddlewareauthrequired.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"helpers/with-middleware-auth-required.WithMiddlewareAuthRequired"},{"id":161,"kind":1,"name":"helpers/with-page-auth-required","url":"modules/helpers_with_page_auth_required.html","classes":"tsd-kind-module"},{"id":162,"kind":4194304,"name":"GetServerSidePropsResultWithSession","url":"modules/helpers_with_page_auth_required.html#getserversidepropsresultwithsession","classes":"tsd-kind-type-alias tsd-parent-kind-module tsd-has-type-parameter","parent":"helpers/with-page-auth-required"},{"id":163,"kind":4194304,"name":"PageRoute","url":"modules/helpers_with_page_auth_required.html#pageroute","classes":"tsd-kind-type-alias tsd-parent-kind-module tsd-has-type-parameter","parent":"helpers/with-page-auth-required"},{"id":164,"kind":65536,"name":"__type","url":"modules/helpers_with_page_auth_required.html#pageroute.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"helpers/with-page-auth-required.PageRoute"},{"id":165,"kind":4194304,"name":"WithPageAuthRequiredOptions","url":"modules/helpers_with_page_auth_required.html#withpageauthrequiredoptions","classes":"tsd-kind-type-alias tsd-parent-kind-module tsd-has-type-parameter","parent":"helpers/with-page-auth-required"},{"id":166,"kind":65536,"name":"__type","url":"modules/helpers_with_page_auth_required.html#withpageauthrequiredoptions.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"helpers/with-page-auth-required.WithPageAuthRequiredOptions"},{"id":167,"kind":1024,"name":"getServerSideProps","url":"modules/helpers_with_page_auth_required.html#withpageauthrequiredoptions.__type-2.getserversideprops","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"helpers/with-page-auth-required.WithPageAuthRequiredOptions.__type"},{"id":168,"kind":1024,"name":"returnTo","url":"modules/helpers_with_page_auth_required.html#withpageauthrequiredoptions.__type-2.returnto","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"helpers/with-page-auth-required.WithPageAuthRequiredOptions.__type"},{"id":169,"kind":4194304,"name":"WithPageAuthRequired","url":"modules/helpers_with_page_auth_required.html#withpageauthrequired","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"helpers/with-page-auth-required"},{"id":170,"kind":65536,"name":"__type","url":"modules/helpers_with_page_auth_required.html#withpageauthrequired.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias tsd-has-type-parameter","parent":"helpers/with-page-auth-required.WithPageAuthRequired"},{"id":171,"kind":1,"name":"instance","url":"modules/instance.html","classes":"tsd-kind-module"},{"id":172,"kind":256,"name":"SignInWithAuth0","url":"interfaces/instance.signinwithauth0.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"instance"},{"id":173,"kind":1024,"name":"getSession","url":"interfaces/instance.signinwithauth0.html#getsession","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"instance.SignInWithAuth0"},{"id":174,"kind":1024,"name":"updateSession","url":"interfaces/instance.signinwithauth0.html#updatesession","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"instance.SignInWithAuth0"},{"id":175,"kind":1024,"name":"getAccessToken","url":"interfaces/instance.signinwithauth0.html#getaccesstoken","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"instance.SignInWithAuth0"},{"id":176,"kind":1024,"name":"handleLogin","url":"interfaces/instance.signinwithauth0.html#handlelogin","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"instance.SignInWithAuth0"},{"id":177,"kind":1024,"name":"handleCallback","url":"interfaces/instance.signinwithauth0.html#handlecallback","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"instance.SignInWithAuth0"},{"id":178,"kind":1024,"name":"handleLogout","url":"interfaces/instance.signinwithauth0.html#handlelogout","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"instance.SignInWithAuth0"},{"id":179,"kind":1024,"name":"handleProfile","url":"interfaces/instance.signinwithauth0.html#handleprofile","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"instance.SignInWithAuth0"},{"id":180,"kind":1024,"name":"withApiAuthRequired","url":"interfaces/instance.signinwithauth0.html#withapiauthrequired","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"instance.SignInWithAuth0"},{"id":181,"kind":1024,"name":"withPageAuthRequired","url":"interfaces/instance.signinwithauth0.html#withpageauthrequired","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"instance.SignInWithAuth0"},{"id":182,"kind":1024,"name":"handleAuth","url":"interfaces/instance.signinwithauth0.html#handleauth","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"instance.SignInWithAuth0"},{"id":183,"kind":4194304,"name":"InitAuth0","url":"modules/instance.html#initauth0","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"instance"},{"id":184,"kind":65536,"name":"__type","url":"modules/instance.html#initauth0.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"instance.InitAuth0"},{"id":185,"kind":1,"name":"middleware","url":"modules/middleware.html","classes":"tsd-kind-module"},{"id":186,"kind":4194304,"name":"Instance","url":"modules/middleware.html#instance","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"middleware"},{"id":187,"kind":65536,"name":"__type","url":"modules/middleware.html#instance.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"middleware.Instance"},{"id":188,"kind":1024,"name":"withMiddlewareAuthRequired","url":"modules/middleware.html#instance.__type-2.withmiddlewareauthrequired-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"middleware.Instance.__type"},{"id":189,"kind":1024,"name":"getSession","url":"modules/middleware.html#instance.__type-2.getsession-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"middleware.Instance.__type"},{"id":190,"kind":4194304,"name":"GetSession","url":"modules/middleware.html#getsession","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"middleware"},{"id":191,"kind":65536,"name":"__type","url":"modules/middleware.html#getsession.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"middleware.GetSession"},{"id":192,"kind":4194304,"name":"InitAuth0","url":"modules/middleware.html#initauth0","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"middleware"},{"id":193,"kind":65536,"name":"__type","url":"modules/middleware.html#initauth0.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"middleware.InitAuth0"},{"id":194,"kind":64,"name":"initAuth0","url":"modules/middleware.html#initauth0-1","classes":"tsd-kind-function tsd-parent-kind-module","parent":"middleware"},{"id":195,"kind":64,"name":"getSession","url":"modules/middleware.html#getsession-2","classes":"tsd-kind-function tsd-parent-kind-module","parent":"middleware"},{"id":196,"kind":64,"name":"withMiddlewareAuthRequired","url":"modules/middleware.html#withmiddlewareauthrequired-2","classes":"tsd-kind-function tsd-parent-kind-module","parent":"middleware"},{"id":197,"kind":1,"name":"session/get-access-token","url":"modules/session_get_access_token.html","classes":"tsd-kind-module"},{"id":198,"kind":4194304,"name":"AfterRefresh","url":"modules/session_get_access_token.html#afterrefresh","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"session/get-access-token"},{"id":199,"kind":65536,"name":"__type","url":"modules/session_get_access_token.html#afterrefresh.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"session/get-access-token.AfterRefresh"},{"id":200,"kind":256,"name":"AccessTokenRequest","url":"interfaces/session_get_access_token.accesstokenrequest.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"session/get-access-token"},{"id":201,"kind":1024,"name":"scopes","url":"interfaces/session_get_access_token.accesstokenrequest.html#scopes","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"session/get-access-token.AccessTokenRequest"},{"id":202,"kind":1024,"name":"refresh","url":"interfaces/session_get_access_token.accesstokenrequest.html#refresh","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"session/get-access-token.AccessTokenRequest"},{"id":203,"kind":1024,"name":"afterRefresh","url":"interfaces/session_get_access_token.accesstokenrequest.html#afterrefresh","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"session/get-access-token.AccessTokenRequest"},{"id":204,"kind":1024,"name":"authorizationParams","url":"interfaces/session_get_access_token.accesstokenrequest.html#authorizationparams","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"session/get-access-token.AccessTokenRequest"},{"id":205,"kind":256,"name":"GetAccessTokenResult","url":"interfaces/session_get_access_token.getaccesstokenresult.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"session/get-access-token"},{"id":206,"kind":1024,"name":"accessToken","url":"interfaces/session_get_access_token.getaccesstokenresult.html#accesstoken","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"session/get-access-token.GetAccessTokenResult"},{"id":207,"kind":4194304,"name":"GetAccessToken","url":"modules/session_get_access_token.html#getaccesstoken","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"session/get-access-token"},{"id":208,"kind":65536,"name":"__type","url":"modules/session_get_access_token.html#getaccesstoken.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"session/get-access-token.GetAccessToken"},{"id":209,"kind":1,"name":"session/get-session","url":"modules/session_get_session.html","classes":"tsd-kind-module"},{"id":210,"kind":4194304,"name":"GetSession","url":"modules/session_get_session.html#getsession","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"session/get-session"},{"id":211,"kind":65536,"name":"__type","url":"modules/session_get_session.html#getsession.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"session/get-session.GetSession"},{"id":212,"kind":1,"name":"session","url":"modules/session.html","classes":"tsd-kind-module"},{"id":213,"kind":1,"name":"session/session","url":"modules/session_session.html","classes":"tsd-kind-module"},{"id":214,"kind":256,"name":"Claims","url":"interfaces/session_session.claims.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"session/session"},{"id":215,"kind":128,"name":"default","url":"classes/session_session.default.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"session/session"},{"id":216,"kind":512,"name":"constructor","url":"classes/session_session.default.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"session/session.default"},{"id":217,"kind":1024,"name":"user","url":"classes/session_session.default.html#user","classes":"tsd-kind-property tsd-parent-kind-class","parent":"session/session.default"},{"id":218,"kind":1024,"name":"idToken","url":"classes/session_session.default.html#idtoken","classes":"tsd-kind-property tsd-parent-kind-class","parent":"session/session.default"},{"id":219,"kind":1024,"name":"accessToken","url":"classes/session_session.default.html#accesstoken","classes":"tsd-kind-property tsd-parent-kind-class","parent":"session/session.default"},{"id":220,"kind":1024,"name":"accessTokenScope","url":"classes/session_session.default.html#accesstokenscope","classes":"tsd-kind-property tsd-parent-kind-class","parent":"session/session.default"},{"id":221,"kind":1024,"name":"accessTokenExpiresAt","url":"classes/session_session.default.html#accesstokenexpiresat","classes":"tsd-kind-property tsd-parent-kind-class","parent":"session/session.default"},{"id":222,"kind":1024,"name":"refreshToken","url":"classes/session_session.default.html#refreshtoken","classes":"tsd-kind-property tsd-parent-kind-class","parent":"session/session.default"},{"id":223,"kind":1,"name":"session/update-session","url":"modules/session_update_session.html","classes":"tsd-kind-module"},{"id":224,"kind":4194304,"name":"UpdateSession","url":"modules/session_update_session.html#updatesession","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"session/update-session"},{"id":225,"kind":65536,"name":"__type","url":"modules/session_update_session.html#updatesession.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"session/update-session.UpdateSession"},{"id":226,"kind":1,"name":"utils/errors","url":"modules/utils_errors.html","classes":"tsd-kind-module"},{"id":227,"kind":128,"name":"AuthError","url":"classes/utils_errors.autherror.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"utils/errors"},{"id":228,"kind":512,"name":"constructor","url":"classes/utils_errors.autherror.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"utils/errors.AuthError"},{"id":229,"kind":1024,"name":"code","url":"classes/utils_errors.autherror.html#code","classes":"tsd-kind-property tsd-parent-kind-class","parent":"utils/errors.AuthError"},{"id":230,"kind":1024,"name":"name","url":"classes/utils_errors.autherror.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"utils/errors.AuthError"},{"id":231,"kind":1024,"name":"cause","url":"classes/utils_errors.autherror.html#cause","classes":"tsd-kind-property tsd-parent-kind-class","parent":"utils/errors.AuthError"},{"id":232,"kind":1024,"name":"status","url":"classes/utils_errors.autherror.html#status","classes":"tsd-kind-property tsd-parent-kind-class","parent":"utils/errors.AuthError"},{"id":233,"kind":4,"name":"AccessTokenErrorCode","url":"enums/utils_errors.accesstokenerrorcode.html","classes":"tsd-kind-enum tsd-parent-kind-module","parent":"utils/errors"},{"id":234,"kind":16,"name":"MISSING_SESSION","url":"enums/utils_errors.accesstokenerrorcode.html#missing_session","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"utils/errors.AccessTokenErrorCode"},{"id":235,"kind":16,"name":"MISSING_ACCESS_TOKEN","url":"enums/utils_errors.accesstokenerrorcode.html#missing_access_token","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"utils/errors.AccessTokenErrorCode"},{"id":236,"kind":16,"name":"MISSING_REFRESH_TOKEN","url":"enums/utils_errors.accesstokenerrorcode.html#missing_refresh_token","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"utils/errors.AccessTokenErrorCode"},{"id":237,"kind":16,"name":"EXPIRED_ACCESS_TOKEN","url":"enums/utils_errors.accesstokenerrorcode.html#expired_access_token","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"utils/errors.AccessTokenErrorCode"},{"id":238,"kind":16,"name":"INSUFFICIENT_SCOPE","url":"enums/utils_errors.accesstokenerrorcode.html#insufficient_scope","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"utils/errors.AccessTokenErrorCode"},{"id":239,"kind":128,"name":"AccessTokenError","url":"classes/utils_errors.accesstokenerror.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"utils/errors"},{"id":240,"kind":512,"name":"constructor","url":"classes/utils_errors.accesstokenerror.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"utils/errors.AccessTokenError"},{"id":241,"kind":1024,"name":"code","url":"classes/utils_errors.accesstokenerror.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"utils/errors.AccessTokenError"},{"id":242,"kind":1024,"name":"name","url":"classes/utils_errors.accesstokenerror.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"utils/errors.AccessTokenError"},{"id":243,"kind":1024,"name":"cause","url":"classes/utils_errors.accesstokenerror.html#cause","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"utils/errors.AccessTokenError"},{"id":244,"kind":1024,"name":"status","url":"classes/utils_errors.accesstokenerror.html#status","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"utils/errors.AccessTokenError"},{"id":245,"kind":128,"name":"HandlerError","url":"classes/utils_errors.handlererror.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"utils/errors"},{"id":246,"kind":512,"name":"constructor","url":"classes/utils_errors.handlererror.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"utils/errors.HandlerError"},{"id":247,"kind":1024,"name":"code","url":"classes/utils_errors.handlererror.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"utils/errors.HandlerError"},{"id":248,"kind":1024,"name":"name","url":"classes/utils_errors.handlererror.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"utils/errors.HandlerError"},{"id":249,"kind":1024,"name":"cause","url":"classes/utils_errors.handlererror.html#cause","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"utils/errors.HandlerError"},{"id":250,"kind":1024,"name":"status","url":"classes/utils_errors.handlererror.html#status","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"utils/errors.HandlerError"},{"id":251,"kind":128,"name":"CallbackHandlerError","url":"classes/utils_errors.callbackhandlererror.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"utils/errors"},{"id":252,"kind":1024,"name":"code","url":"classes/utils_errors.callbackhandlererror.html#code-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"utils/errors.CallbackHandlerError"},{"id":253,"kind":512,"name":"constructor","url":"classes/utils_errors.callbackhandlererror.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"utils/errors.CallbackHandlerError"},{"id":254,"kind":1024,"name":"code","url":"classes/utils_errors.callbackhandlererror.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"utils/errors.CallbackHandlerError"},{"id":255,"kind":1024,"name":"name","url":"classes/utils_errors.callbackhandlererror.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"utils/errors.CallbackHandlerError"},{"id":256,"kind":1024,"name":"cause","url":"classes/utils_errors.callbackhandlererror.html#cause","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"utils/errors.CallbackHandlerError"},{"id":257,"kind":1024,"name":"status","url":"classes/utils_errors.callbackhandlererror.html#status","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"utils/errors.CallbackHandlerError"},{"id":258,"kind":128,"name":"LoginHandlerError","url":"classes/utils_errors.loginhandlererror.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"utils/errors"},{"id":259,"kind":1024,"name":"code","url":"classes/utils_errors.loginhandlererror.html#code-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"utils/errors.LoginHandlerError"},{"id":260,"kind":512,"name":"constructor","url":"classes/utils_errors.loginhandlererror.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"utils/errors.LoginHandlerError"},{"id":261,"kind":1024,"name":"code","url":"classes/utils_errors.loginhandlererror.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"utils/errors.LoginHandlerError"},{"id":262,"kind":1024,"name":"name","url":"classes/utils_errors.loginhandlererror.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"utils/errors.LoginHandlerError"},{"id":263,"kind":1024,"name":"cause","url":"classes/utils_errors.loginhandlererror.html#cause","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"utils/errors.LoginHandlerError"},{"id":264,"kind":1024,"name":"status","url":"classes/utils_errors.loginhandlererror.html#status","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"utils/errors.LoginHandlerError"},{"id":265,"kind":128,"name":"LogoutHandlerError","url":"classes/utils_errors.logouthandlererror.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"utils/errors"},{"id":266,"kind":1024,"name":"code","url":"classes/utils_errors.logouthandlererror.html#code-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"utils/errors.LogoutHandlerError"},{"id":267,"kind":512,"name":"constructor","url":"classes/utils_errors.logouthandlererror.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"utils/errors.LogoutHandlerError"},{"id":268,"kind":1024,"name":"code","url":"classes/utils_errors.logouthandlererror.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"utils/errors.LogoutHandlerError"},{"id":269,"kind":1024,"name":"name","url":"classes/utils_errors.logouthandlererror.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"utils/errors.LogoutHandlerError"},{"id":270,"kind":1024,"name":"cause","url":"classes/utils_errors.logouthandlererror.html#cause","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"utils/errors.LogoutHandlerError"},{"id":271,"kind":1024,"name":"status","url":"classes/utils_errors.logouthandlererror.html#status","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"utils/errors.LogoutHandlerError"},{"id":272,"kind":128,"name":"ProfileHandlerError","url":"classes/utils_errors.profilehandlererror.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"utils/errors"},{"id":273,"kind":1024,"name":"code","url":"classes/utils_errors.profilehandlererror.html#code-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"utils/errors.ProfileHandlerError"},{"id":274,"kind":512,"name":"constructor","url":"classes/utils_errors.profilehandlererror.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"utils/errors.ProfileHandlerError"},{"id":275,"kind":1024,"name":"code","url":"classes/utils_errors.profilehandlererror.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"utils/errors.ProfileHandlerError"},{"id":276,"kind":1024,"name":"name","url":"classes/utils_errors.profilehandlererror.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"utils/errors.ProfileHandlerError"},{"id":277,"kind":1024,"name":"cause","url":"classes/utils_errors.profilehandlererror.html#cause","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"utils/errors.ProfileHandlerError"},{"id":278,"kind":1024,"name":"status","url":"classes/utils_errors.profilehandlererror.html#status","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"utils/errors.ProfileHandlerError"},{"id":279,"kind":1,"name":"version","url":"modules/version.html","classes":"tsd-kind-module"},{"id":280,"kind":1024,"name":"default","url":"modules/version.html#default","classes":"tsd-kind-property tsd-parent-kind-module","parent":"version"},{"id":281,"kind":1024,"name":"ConfigProvider","url":"modules/frontend.html#configprovider","classes":"tsd-kind-property tsd-parent-kind-module","parent":"frontend"},{"id":282,"kind":65536,"name":"__type","url":"modules/frontend.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-module","parent":"frontend"},{"id":283,"kind":4194304,"name":"ConfigProviderProps","url":"modules/frontend.html#configproviderprops","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"frontend"},{"id":284,"kind":64,"name":"useConfig","url":"modules/frontend.html#useconfig","classes":"tsd-kind-function tsd-parent-kind-module","parent":"frontend"},{"id":285,"kind":16777216,"name":"UserProvider","url":"modules/frontend.html#userprovider","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"frontend"},{"id":286,"kind":16777216,"name":"UserProviderProps","url":"modules/frontend.html#userproviderprops","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"frontend"},{"id":287,"kind":16777216,"name":"UserProfile","url":"modules/frontend.html#userprofile","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"frontend"},{"id":288,"kind":16777216,"name":"RequestError","url":"modules/frontend.html#requesterror","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"frontend"},{"id":289,"kind":16777216,"name":"useUser","url":"modules/frontend.html#useuser","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"frontend"},{"id":290,"kind":16777216,"name":"WithPageAuthRequired","url":"modules/frontend.html#withpageauthrequired","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"frontend"},{"id":291,"kind":16777216,"name":"WithPageAuthRequiredOptions","url":"modules/frontend.html#withpageauthrequiredoptions","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"frontend"},{"id":292,"kind":16777216,"name":"HandleCallback","url":"modules/handlers.html#handlecallback","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"handlers"},{"id":293,"kind":16777216,"name":"CallbackOptions","url":"modules/handlers.html#callbackoptions","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"handlers"},{"id":294,"kind":16777216,"name":"AfterCallback","url":"modules/handlers.html#aftercallback","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"handlers"},{"id":295,"kind":16777216,"name":"HandleLogin","url":"modules/handlers.html#handlelogin","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"handlers"},{"id":296,"kind":16777216,"name":"LoginOptions","url":"modules/handlers.html#loginoptions","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"handlers"},{"id":297,"kind":16777216,"name":"GetLoginState","url":"modules/handlers.html#getloginstate","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"handlers"},{"id":298,"kind":16777216,"name":"HandleLogout","url":"modules/handlers.html#handlelogout","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"handlers"},{"id":299,"kind":16777216,"name":"LogoutOptions","url":"modules/handlers.html#logoutoptions","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"handlers"},{"id":300,"kind":16777216,"name":"HandleProfile","url":"modules/handlers.html#handleprofile","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"handlers"},{"id":301,"kind":16777216,"name":"ProfileOptions","url":"modules/handlers.html#profileoptions","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"handlers"},{"id":302,"kind":16777216,"name":"AfterRefetch","url":"modules/handlers.html#afterrefetch","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"handlers"},{"id":303,"kind":16777216,"name":"Handlers","url":"modules/handlers.html#handlers-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"handlers"},{"id":304,"kind":16777216,"name":"HandleAuth","url":"modules/handlers.html#handleauth","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"handlers"},{"id":305,"kind":16777216,"name":"OnError","url":"modules/handlers.html#onerror","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"handlers"},{"id":306,"kind":16777216,"name":"WithApiAuthRequired","url":"modules/helpers.html#withapiauthrequired","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":307,"kind":16777216,"name":"GetServerSidePropsResultWithSession","url":"modules/helpers.html#getserversidepropsresultwithsession","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":308,"kind":16777216,"name":"WithPageAuthRequired","url":"modules/helpers.html#withpageauthrequired","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":309,"kind":16777216,"name":"WithPageAuthRequiredOptions","url":"modules/helpers.html#withpageauthrequiredoptions","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":310,"kind":16777216,"name":"PageRoute","url":"modules/helpers.html#pageroute","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":311,"kind":16777216,"name":"WithMiddlewareAuthRequired","url":"modules/middleware.html#withmiddlewareauthrequired","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"middleware"},{"id":312,"kind":16777216,"name":"Session","url":"modules/session.html#session-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"session"},{"id":313,"kind":16777216,"name":"Claims","url":"modules/session.html#claims","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"session"},{"id":314,"kind":16777216,"name":"GetSession","url":"modules/session.html#getsession","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"session"},{"id":315,"kind":16777216,"name":"GetAccessToken","url":"modules/session.html#getaccesstoken","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"session"},{"id":316,"kind":16777216,"name":"AccessTokenRequest","url":"modules/session.html#accesstokenrequest","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"session"},{"id":317,"kind":16777216,"name":"GetAccessTokenResult","url":"modules/session.html#getaccesstokenresult","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"session"},{"id":318,"kind":128,"name":"SessionCache","url":"classes/session.sessioncache.html","classes":"tsd-kind-class tsd-parent-kind-module tsd-has-type-parameter","parent":"session"},{"id":319,"kind":512,"name":"constructor","url":"classes/session.sessioncache.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-has-type-parameter","parent":"session.SessionCache"},{"id":320,"kind":2048,"name":"save","url":"classes/session.sessioncache.html#save","classes":"tsd-kind-method tsd-parent-kind-class","parent":"session.SessionCache"},{"id":321,"kind":2048,"name":"create","url":"classes/session.sessioncache.html#create","classes":"tsd-kind-method tsd-parent-kind-class","parent":"session.SessionCache"},{"id":322,"kind":2048,"name":"delete","url":"classes/session.sessioncache.html#delete","classes":"tsd-kind-method tsd-parent-kind-class","parent":"session.SessionCache"},{"id":323,"kind":2048,"name":"isAuthenticated","url":"classes/session.sessioncache.html#isauthenticated","classes":"tsd-kind-method tsd-parent-kind-class","parent":"session.SessionCache"},{"id":324,"kind":2048,"name":"getIdToken","url":"classes/session.sessioncache.html#getidtoken","classes":"tsd-kind-method tsd-parent-kind-class","parent":"session.SessionCache"},{"id":325,"kind":2048,"name":"set","url":"classes/session.sessioncache.html#set","classes":"tsd-kind-method tsd-parent-kind-class","parent":"session.SessionCache"},{"id":326,"kind":2048,"name":"get","url":"classes/session.sessioncache.html#get","classes":"tsd-kind-method tsd-parent-kind-class","parent":"session.SessionCache"},{"id":327,"kind":2048,"name":"fromTokenSet","url":"classes/session.sessioncache.html#fromtokenset","classes":"tsd-kind-method tsd-parent-kind-class","parent":"session.SessionCache"},{"id":328,"kind":16777216,"name":"UpdateSession","url":"modules/session.html#updatesession","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"session"}],"index":{"version":"2.3.9","fields":["name","parent"],"fieldVectors":[["name/0",[0,38.618]],["parent/0",[]],["name/1",[1,55.043]],["parent/1",[0,4.169]],["name/2",[2,55.043]],["parent/2",[3,3.117]],["name/3",[4,31.21]],["parent/3",[3,3.117]],["name/4",[5,55.043]],["parent/4",[3,3.117]],["name/5",[6,41.783]],["parent/5",[3,3.117]],["name/6",[7,55.043]],["parent/6",[3,3.117]],["name/7",[8,55.043]],["parent/7",[3,3.117]],["name/8",[9,55.043]],["parent/8",[3,3.117]],["name/9",[10,55.043]],["parent/9",[3,3.117]],["name/10",[11,55.043]],["parent/10",[3,3.117]],["name/11",[12,55.043]],["parent/11",[3,3.117]],["name/12",[13,43.831]],["parent/12",[3,3.117]],["name/13",[14,20.916]],["parent/13",[3,3.117]],["name/14",[15,49.83]],["parent/14",[3,3.117]],["name/15",[16,55.043]],["parent/15",[3,3.117]],["name/16",[17,55.043]],["parent/16",[3,3.117]],["name/17",[18,55.043]],["parent/17",[3,3.117]],["name/18",[19,55.043]],["parent/18",[3,3.117]],["name/19",[20,49.83]],["parent/19",[3,3.117]],["name/20",[14,20.916]],["parent/20",[3,3.117]],["name/21",[21,55.043]],["parent/21",[22,5.38]],["name/22",[23,49.83]],["parent/22",[22,5.38]],["name/23",[24,55.043]],["parent/23",[0,4.169]],["name/24",[25,36.206]],["parent/24",[26,4.327]],["name/25",[27,55.043]],["parent/25",[26,4.327]],["name/26",[28,55.043]],["parent/26",[26,4.327]],["name/27",[29,55.043]],["parent/27",[26,4.327]],["name/28",[30,55.043]],["parent/28",[26,4.327]],["name/29",[31,55.043]],["parent/29",[26,4.327]],["name/30",[32,55.043]],["parent/30",[0,4.169]],["name/31",[33,55.043]],["parent/31",[34,4.327]],["name/32",[35,55.043]],["parent/32",[34,4.327]],["name/33",[36,55.043]],["parent/33",[34,4.327]],["name/34",[37,55.043]],["parent/34",[34,4.327]],["name/35",[38,55.043]],["parent/35",[34,4.327]],["name/36",[39,55.043]],["parent/36",[34,4.327]],["name/37",[40,55.043]],["parent/37",[0,4.169]],["name/38",[41,49.83]],["parent/38",[42,5.009]],["name/39",[43,49.83]],["parent/39",[42,5.009]],["name/40",[44,49.83]],["parent/40",[42,5.009]],["name/41",[45,55.043]],["parent/41",[0,4.169]],["name/42",[46,46.396]],["parent/42",[47,4.732]],["name/43",[20,49.83]],["parent/43",[47,4.732]],["name/44",[14,20.916]],["parent/44",[47,4.732]],["name/45",[23,49.83]],["parent/45",[48,5.38]],["name/46",[49,55.043]],["parent/46",[48,5.38]],["name/47",[15,49.83]],["parent/47",[47,4.732]],["name/48",[50,55.043]],["parent/48",[0,4.169]],["name/49",[51,33.405]],["parent/49",[]],["name/50",[52,18.423,53,23.913]],["parent/50",[]],["name/51",[54,49.83]],["parent/51",[52,2.06,53,2.674]],["name/52",[55,55.043]],["parent/52",[52,2.06,56,2.989]],["name/53",[57,55.043]],["parent/53",[52,2.06,56,2.989]],["name/54",[25,36.206]],["parent/54",[52,2.06,56,2.989]],["name/55",[58,55.043]],["parent/55",[52,2.06,56,2.989]],["name/56",[59,55.043]],["parent/56",[52,2.06,56,2.989]],["name/57",[60,55.043]],["parent/57",[52,2.06,56,2.989]],["name/58",[61,55.043]],["parent/58",[52,2.06,56,2.989]],["name/59",[62,55.043]],["parent/59",[52,2.06,56,2.989]],["name/60",[63,55.043]],["parent/60",[52,2.06,53,2.674]],["name/61",[14,20.916]],["parent/61",[52,2.06,64,4.406]],["name/62",[53,33.405]],["parent/62",[52,2.06,65,3.344]],["name/63",[66,55.043]],["parent/63",[52,2.06,65,3.344]],["name/64",[67,55.043]],["parent/64",[52,2.06,65,3.344]],["name/65",[68,55.043]],["parent/65",[52,2.06,65,3.344]],["name/66",[14,20.916]],["parent/66",[52,2.06,65,3.344]],["name/67",[69,49.83]],["parent/67",[52,2.06,53,2.674]],["name/68",[70,35.184]],["parent/68",[52,2.06,71,3.988]],["name/69",[72,37.341]],["parent/69",[52,2.06,71,3.988]],["name/70",[73,49.83]],["parent/70",[52,2.06,53,2.674]],["name/71",[74,49.83]],["parent/71",[52,2.06,53,2.674]],["name/72",[75,49.83]],["parent/72",[52,2.06,53,2.674]],["name/73",[14,20.916]],["parent/73",[52,2.06,76,4.406]],["name/74",[77,46.396]],["parent/74",[52,2.06,53,2.674]],["name/75",[14,20.916]],["parent/75",[52,2.06,53,2.674]],["name/76",[78,15.636,79,12.721,80,11.575,81,14.889]],["parent/76",[]],["name/77",[82,43.831]],["parent/77",[78,1.807,79,1.47,80,1.338,81,1.721]],["name/78",[83,43.831]],["parent/78",[78,1.807,79,1.47,80,1.338,84,2.114]],["name/79",[85,55.043]],["parent/79",[78,1.807,79,1.47,80,1.338,84,2.114]],["name/80",[14,20.916]],["parent/80",[78,1.807,79,1.47,80,1.338,84,2.114]],["name/81",[86,46.396]],["parent/81",[78,1.807,79,1.47,80,1.338,84,2.114]],["name/82",[14,20.916]],["parent/82",[78,1.807,79,1.47,80,1.338,84,2.114]],["name/83",[87,55.043]],["parent/83",[78,1.807,79,1.47,80,1.338,81,1.721]],["name/84",[53,33.405]],["parent/84",[78,1.807,79,1.47,80,1.338,88,2.903]],["name/85",[89,41.783]],["parent/85",[78,1.807,79,1.47,80,1.338,81,1.721]],["name/86",[14,20.916]],["parent/86",[78,1.807,79,1.47,80,1.338,90,2.628]],["name/87",[91,43.831]],["parent/87",[]],["name/88",[92,29.971]],["parent/88",[91,4.732]],["name/89",[93,46.396]],["parent/89",[91,4.732]],["name/90",[14,20.916]],["parent/90",[94,5.943]],["name/91",[86,46.396]],["parent/91",[91,4.732]],["name/92",[14,20.916]],["parent/92",[95,5.943]],["name/93",[96,40.078]],["parent/93",[]],["name/94",[97,46.396]],["parent/94",[96,4.327]],["name/95",[14,20.916]],["parent/95",[98,5.943]],["name/96",[99,49.83]],["parent/96",[96,4.327]],["name/97",[97,46.396]],["parent/97",[100,4.732]],["name/98",[101,55.043]],["parent/98",[100,4.732]],["name/99",[46,46.396]],["parent/99",[100,4.732]],["name/100",[6,41.783]],["parent/100",[100,4.732]],["name/101",[102,55.043]],["parent/101",[96,4.327]],["name/102",[14,20.916]],["parent/102",[103,5.943]],["name/103",[104,46.396]],["parent/103",[96,4.327]],["name/104",[14,20.916]],["parent/104",[105,5.943]],["name/105",[106,55.043]],["parent/105",[96,4.327]],["name/106",[14,20.916]],["parent/106",[107,5.943]],["name/107",[92,29.971]],["parent/107",[]],["name/108",[108,38.618]],["parent/108",[]],["name/109",[13,43.831]],["parent/109",[108,4.169]],["name/110",[14,20.916]],["parent/110",[109,5.943]],["name/111",[6,41.783]],["parent/111",[108,4.169]],["name/112",[110,55.043]],["parent/112",[111,4.032]],["name/113",[112,55.043]],["parent/113",[111,4.032]],["name/114",[113,55.043]],["parent/114",[111,4.032]],["name/115",[46,46.396]],["parent/115",[111,4.032]],["name/116",[114,55.043]],["parent/116",[111,4.032]],["name/117",[41,49.83]],["parent/117",[111,4.032]],["name/118",[43,49.83]],["parent/118",[111,4.032]],["name/119",[44,49.83]],["parent/119",[111,4.032]],["name/120",[115,49.83]],["parent/120",[108,4.169]],["name/121",[6,41.783]],["parent/121",[116,5.009]],["name/122",[83,43.831]],["parent/122",[116,5.009]],["name/123",[13,43.831]],["parent/123",[116,5.009]],["name/124",[117,55.043]],["parent/124",[108,4.169]],["name/125",[14,20.916]],["parent/125",[118,5.943]],["name/126",[119,46.396]],["parent/126",[108,4.169]],["name/127",[14,20.916]],["parent/127",[120,5.943]],["name/128",[121,55.043]],["parent/128",[108,4.169]],["name/129",[14,20.916]],["parent/129",[122,5.943]],["name/130",[123,41.783]],["parent/130",[]],["name/131",[124,49.83]],["parent/131",[123,4.511]],["name/132",[83,43.831]],["parent/132",[125,5.943]],["name/133",[126,55.043]],["parent/133",[123,4.511]],["name/134",[14,20.916]],["parent/134",[127,5.943]],["name/135",[128,46.396]],["parent/135",[123,4.511]],["name/136",[14,20.916]],["parent/136",[129,5.943]],["name/137",[130,55.043]],["parent/137",[123,4.511]],["name/138",[14,20.916]],["parent/138",[131,5.943]],["name/139",[132,40.078]],["parent/139",[]],["name/140",[133,46.396]],["parent/140",[132,4.327]],["name/141",[14,20.916]],["parent/141",[134,5.943]],["name/142",[135,49.83]],["parent/142",[132,4.327]],["name/143",[14,20.916]],["parent/143",[136,5.943]],["name/144",[137,55.043]],["parent/144",[138,5.38]],["name/145",[133,46.396]],["parent/145",[138,5.38]],["name/146",[139,55.043]],["parent/146",[132,4.327]],["name/147",[14,20.916]],["parent/147",[140,5.943]],["name/148",[141,46.396]],["parent/148",[132,4.327]],["name/149",[14,20.916]],["parent/149",[142,5.943]],["name/150",[143,55.043]],["parent/150",[132,4.327]],["name/151",[14,20.916]],["parent/151",[144,5.943]],["name/152",[145,40.078]],["parent/152",[]],["name/153",[146,49.83]],["parent/153",[]],["name/154",[147,55.043]],["parent/154",[146,5.38]],["name/155",[80,11.575,81,14.889,148,13.954,149,21.177]],["parent/155",[]],["name/156",[150,46.396]],["parent/156",[80,1.338,81,1.721,148,1.613,149,2.447]],["name/157",[14,20.916]],["parent/157",[80,1.338,148,1.613,149,2.447,151,2.903]],["name/158",[80,11.575,81,14.889,148,13.954,152,15.636]],["parent/158",[]],["name/159",[153,43.831]],["parent/159",[80,1.338,81,1.721,148,1.613,152,1.807]],["name/160",[14,20.916]],["parent/160",[80,1.338,148,1.613,152,1.807,154,2.903]],["name/161",[79,12.721,80,11.575,81,14.889,148,13.954]],["parent/161",[]],["name/162",[155,49.83]],["parent/162",[79,1.47,80,1.338,81,1.721,148,1.613]],["name/163",[156,49.83]],["parent/163",[79,1.47,80,1.338,81,1.721,148,1.613]],["name/164",[14,20.916]],["parent/164",[79,1.47,80,1.338,148,1.613,157,2.903]],["name/165",[82,43.831]],["parent/165",[79,1.47,80,1.338,81,1.721,148,1.613]],["name/166",[14,20.916]],["parent/166",[79,1.47,80,1.338,84,2.114,148,1.613]],["name/167",[158,55.043]],["parent/167",[79,1.47,80,1.338,148,1.613,159,2.628]],["name/168",[83,43.831]],["parent/168",[79,1.47,80,1.338,148,1.613,159,2.628]],["name/169",[89,41.783]],["parent/169",[79,1.47,80,1.338,81,1.721,148,1.613]],["name/170",[14,20.916]],["parent/170",[79,1.47,80,1.338,90,2.628,148,1.613]],["name/171",[160,43.831]],["parent/171",[]],["name/172",[161,55.043]],["parent/172",[160,4.732]],["name/173",[162,40.078]],["parent/173",[163,3.799]],["name/174",[164,46.396]],["parent/174",[163,3.799]],["name/175",[165,46.396]],["parent/175",[163,3.799]],["name/176",[119,46.396]],["parent/176",[163,3.799]],["name/177",[104,46.396]],["parent/177",[163,3.799]],["name/178",[128,46.396]],["parent/178",[163,3.799]],["name/179",[141,46.396]],["parent/179",[163,3.799]],["name/180",[150,46.396]],["parent/180",[163,3.799]],["name/181",[89,41.783]],["parent/181",[163,3.799]],["name/182",[93,46.396]],["parent/182",[163,3.799]],["name/183",[166,46.396]],["parent/183",[160,4.732]],["name/184",[14,20.916]],["parent/184",[167,5.943]],["name/185",[152,34.256]],["parent/185",[]],["name/186",[160,43.831]],["parent/186",[152,3.699]],["name/187",[14,20.916]],["parent/187",[168,5.943]],["name/188",[153,43.831]],["parent/188",[169,5.38]],["name/189",[162,40.078]],["parent/189",[169,5.38]],["name/190",[162,40.078]],["parent/190",[152,3.699]],["name/191",[14,20.916]],["parent/191",[170,5.943]],["name/192",[166,46.396]],["parent/192",[152,3.699]],["name/193",[14,20.916]],["parent/193",[171,5.943]],["name/194",[166,46.396]],["parent/194",[152,3.699]],["name/195",[162,40.078]],["parent/195",[152,3.699]],["name/196",[153,43.831]],["parent/196",[152,3.699]],["name/197",[172,17.397,173,18.621,174,23.291]],["parent/197",[]],["name/198",[175,49.83]],["parent/198",[172,1.985,173,2.124,174,2.657]],["name/199",[14,20.916]],["parent/199",[172,1.985,173,2.124,176,3.5]],["name/200",[177,49.83]],["parent/200",[172,1.985,173,2.124,174,2.657]],["name/201",[178,55.043]],["parent/201",[172,1.985,173,2.124,179,2.787]],["name/202",[180,55.043]],["parent/202",[172,1.985,173,2.124,179,2.787]],["name/203",[175,49.83]],["parent/203",[172,1.985,173,2.124,179,2.787]],["name/204",[6,41.783]],["parent/204",[172,1.985,173,2.124,179,2.787]],["name/205",[181,49.83]],["parent/205",[172,1.985,173,2.124,174,2.657]],["name/206",[182,49.83]],["parent/206",[172,1.985,173,2.124,183,3.5]],["name/207",[165,46.396]],["parent/207",[172,1.985,173,2.124,174,2.657]],["name/208",[14,20.916]],["parent/208",[172,1.985,173,2.124,184,3.5]],["name/209",[4,22.341,172,22.341]],["parent/209",[]],["name/210",[162,40.078]],["parent/210",[4,2.498,172,2.498]],["name/211",[14,20.916]],["parent/211",[172,2.498,185,4.406]],["name/212",[4,31.21]],["parent/212",[]],["name/213",[186,46.396]],["parent/213",[]],["name/214",[187,49.83]],["parent/214",[186,5.009]],["name/215",[77,46.396]],["parent/215",[186,5.009]],["name/216",[70,35.184]],["parent/216",[188,4.169]],["name/217",[53,33.405]],["parent/217",[188,4.169]],["name/218",[189,55.043]],["parent/218",[188,4.169]],["name/219",[182,49.83]],["parent/219",[188,4.169]],["name/220",[190,55.043]],["parent/220",[188,4.169]],["name/221",[191,55.043]],["parent/221",[188,4.169]],["name/222",[192,55.043]],["parent/222",[188,4.169]],["name/223",[4,22.341,193,33.212]],["parent/223",[]],["name/224",[164,46.396]],["parent/224",[4,2.498,193,3.713]],["name/225",[14,20.916]],["parent/225",[193,3.713,194,4.406]],["name/226",[195,36.206]],["parent/226",[]],["name/227",[196,55.043]],["parent/227",[195,3.909]],["name/228",[70,35.184]],["parent/228",[197,4.511]],["name/229",[198,34.256]],["parent/229",[197,4.511]],["name/230",[25,36.206]],["parent/230",[197,4.511]],["name/231",[199,38.618]],["parent/231",[197,4.511]],["name/232",[72,37.341]],["parent/232",[197,4.511]],["name/233",[200,55.043]],["parent/233",[195,3.909]],["name/234",[201,55.043]],["parent/234",[202,4.511]],["name/235",[203,55.043]],["parent/235",[202,4.511]],["name/236",[204,55.043]],["parent/236",[202,4.511]],["name/237",[205,55.043]],["parent/237",[202,4.511]],["name/238",[206,55.043]],["parent/238",[202,4.511]],["name/239",[207,55.043]],["parent/239",[195,3.909]],["name/240",[70,35.184]],["parent/240",[208,4.511]],["name/241",[198,34.256]],["parent/241",[208,4.511]],["name/242",[25,36.206]],["parent/242",[208,4.511]],["name/243",[199,38.618]],["parent/243",[208,4.511]],["name/244",[72,37.341]],["parent/244",[208,4.511]],["name/245",[209,55.043]],["parent/245",[195,3.909]],["name/246",[70,35.184]],["parent/246",[210,4.511]],["name/247",[198,34.256]],["parent/247",[210,4.511]],["name/248",[25,36.206]],["parent/248",[210,4.511]],["name/249",[199,38.618]],["parent/249",[210,4.511]],["name/250",[72,37.341]],["parent/250",[210,4.511]],["name/251",[211,55.043]],["parent/251",[195,3.909]],["name/252",[198,34.256]],["parent/252",[212,4.327]],["name/253",[70,35.184]],["parent/253",[212,4.327]],["name/254",[198,34.256]],["parent/254",[212,4.327]],["name/255",[25,36.206]],["parent/255",[212,4.327]],["name/256",[199,38.618]],["parent/256",[212,4.327]],["name/257",[72,37.341]],["parent/257",[212,4.327]],["name/258",[213,55.043]],["parent/258",[195,3.909]],["name/259",[198,34.256]],["parent/259",[214,4.327]],["name/260",[70,35.184]],["parent/260",[214,4.327]],["name/261",[198,34.256]],["parent/261",[214,4.327]],["name/262",[25,36.206]],["parent/262",[214,4.327]],["name/263",[199,38.618]],["parent/263",[214,4.327]],["name/264",[72,37.341]],["parent/264",[214,4.327]],["name/265",[215,55.043]],["parent/265",[195,3.909]],["name/266",[198,34.256]],["parent/266",[216,4.327]],["name/267",[70,35.184]],["parent/267",[216,4.327]],["name/268",[198,34.256]],["parent/268",[216,4.327]],["name/269",[25,36.206]],["parent/269",[216,4.327]],["name/270",[199,38.618]],["parent/270",[216,4.327]],["name/271",[72,37.341]],["parent/271",[216,4.327]],["name/272",[217,55.043]],["parent/272",[195,3.909]],["name/273",[198,34.256]],["parent/273",[218,4.327]],["name/274",[70,35.184]],["parent/274",[218,4.327]],["name/275",[198,34.256]],["parent/275",[218,4.327]],["name/276",[25,36.206]],["parent/276",[218,4.327]],["name/277",[199,38.618]],["parent/277",[218,4.327]],["name/278",[72,37.341]],["parent/278",[218,4.327]],["name/279",[219,49.83]],["parent/279",[]],["name/280",[77,46.396]],["parent/280",[219,5.38]],["name/281",[220,55.043]],["parent/281",[51,3.607]],["name/282",[14,20.916]],["parent/282",[51,3.607]],["name/283",[221,55.043]],["parent/283",[51,3.607]],["name/284",[222,55.043]],["parent/284",[51,3.607]],["name/285",[75,49.83]],["parent/285",[51,3.607]],["name/286",[73,49.83]],["parent/286",[51,3.607]],["name/287",[54,49.83]],["parent/287",[51,3.607]],["name/288",[69,49.83]],["parent/288",[51,3.607]],["name/289",[74,49.83]],["parent/289",[51,3.607]],["name/290",[89,41.783]],["parent/290",[51,3.607]],["name/291",[82,43.831]],["parent/291",[51,3.607]],["name/292",[104,46.396]],["parent/292",[92,3.236]],["name/293",[99,49.83]],["parent/293",[92,3.236]],["name/294",[97,46.396]],["parent/294",[92,3.236]],["name/295",[119,46.396]],["parent/295",[92,3.236]],["name/296",[115,49.83]],["parent/296",[92,3.236]],["name/297",[13,43.831]],["parent/297",[92,3.236]],["name/298",[128,46.396]],["parent/298",[92,3.236]],["name/299",[124,49.83]],["parent/299",[92,3.236]],["name/300",[141,46.396]],["parent/300",[92,3.236]],["name/301",[135,49.83]],["parent/301",[92,3.236]],["name/302",[133,46.396]],["parent/302",[92,3.236]],["name/303",[92,29.971]],["parent/303",[92,3.236]],["name/304",[93,46.396]],["parent/304",[92,3.236]],["name/305",[86,46.396]],["parent/305",[92,3.236]],["name/306",[150,46.396]],["parent/306",[145,4.327]],["name/307",[155,49.83]],["parent/307",[145,4.327]],["name/308",[89,41.783]],["parent/308",[145,4.327]],["name/309",[82,43.831]],["parent/309",[145,4.327]],["name/310",[156,49.83]],["parent/310",[145,4.327]],["name/311",[153,43.831]],["parent/311",[152,3.699]],["name/312",[4,31.21]],["parent/312",[4,3.37]],["name/313",[187,49.83]],["parent/313",[4,3.37]],["name/314",[162,40.078]],["parent/314",[4,3.37]],["name/315",[165,46.396]],["parent/315",[4,3.37]],["name/316",[177,49.83]],["parent/316",[4,3.37]],["name/317",[181,49.83]],["parent/317",[4,3.37]],["name/318",[223,55.043]],["parent/318",[4,3.37]],["name/319",[70,35.184]],["parent/319",[224,3.909]],["name/320",[225,55.043]],["parent/320",[224,3.909]],["name/321",[226,55.043]],["parent/321",[224,3.909]],["name/322",[227,55.043]],["parent/322",[224,3.909]],["name/323",[228,55.043]],["parent/323",[224,3.909]],["name/324",[229,55.043]],["parent/324",[224,3.909]],["name/325",[230,55.043]],["parent/325",[224,3.909]],["name/326",[231,55.043]],["parent/326",[224,3.909]],["name/327",[232,55.043]],["parent/327",[224,3.909]],["name/328",[164,46.396]],["parent/328",[4,3.37]]],"invertedIndex":[["__type",{"_index":14,"name":{"13":{},"20":{},"44":{},"61":{},"66":{},"73":{},"75":{},"80":{},"82":{},"86":{},"90":{},"92":{},"95":{},"102":{},"104":{},"106":{},"110":{},"125":{},"127":{},"129":{},"134":{},"136":{},"138":{},"141":{},"143":{},"147":{},"149":{},"151":{},"157":{},"160":{},"164":{},"166":{},"170":{},"184":{},"187":{},"191":{},"193":{},"199":{},"208":{},"211":{},"225":{},"282":{}},"parent":{}}],["absoluteduration",{"_index":29,"name":{"27":{}},"parent":{}}],["access",{"_index":173,"name":{"197":{}},"parent":{"198":{},"199":{},"200":{},"201":{},"202":{},"203":{},"204":{},"205":{},"206":{},"207":{},"208":{}}}],["accesstoken",{"_index":182,"name":{"206":{},"219":{}},"parent":{}}],["accesstokenerror",{"_index":207,"name":{"239":{}},"parent":{}}],["accesstokenerrorcode",{"_index":200,"name":{"233":{}},"parent":{}}],["accesstokenexpiresat",{"_index":191,"name":{"221":{}},"parent":{}}],["accesstokenrequest",{"_index":177,"name":{"200":{},"316":{}},"parent":{}}],["accesstokenscope",{"_index":190,"name":{"220":{}},"parent":{}}],["aftercallback",{"_index":97,"name":{"94":{},"97":{},"294":{}},"parent":{}}],["afterrefetch",{"_index":133,"name":{"140":{},"145":{},"302":{}},"parent":{}}],["afterrefresh",{"_index":175,"name":{"198":{},"203":{}},"parent":{}}],["api",{"_index":149,"name":{"155":{}},"parent":{"156":{},"157":{}}}],["auth",{"_index":80,"name":{"76":{},"155":{},"158":{},"161":{}},"parent":{"77":{},"78":{},"79":{},"80":{},"81":{},"82":{},"83":{},"84":{},"85":{},"86":{},"156":{},"157":{},"159":{},"160":{},"162":{},"163":{},"164":{},"165":{},"166":{},"167":{},"168":{},"169":{},"170":{}}}],["auth0logout",{"_index":5,"name":{"4":{}},"parent":{}}],["autherror",{"_index":196,"name":{"227":{}},"parent":{}}],["authorizationparameters",{"_index":40,"name":{"37":{}},"parent":{}}],["authorizationparams",{"_index":6,"name":{"5":{},"100":{},"111":{},"121":{},"204":{}},"parent":{}}],["baseconfig",{"_index":1,"name":{"1":{}},"parent":{}}],["baseurl",{"_index":7,"name":{"6":{}},"parent":{}}],["callback",{"_index":23,"name":{"22":{},"45":{}},"parent":{}}],["callbackhandler",{"_index":106,"name":{"105":{}},"parent":{}}],["callbackhandlererror",{"_index":211,"name":{"251":{}},"parent":{}}],["callbackoptions",{"_index":99,"name":{"96":{},"293":{}},"parent":{}}],["callbackoptionsprovider",{"_index":102,"name":{"101":{}},"parent":{}}],["cause",{"_index":199,"name":{"231":{},"243":{},"249":{},"256":{},"263":{},"270":{},"277":{}},"parent":{}}],["checksession",{"_index":68,"name":{"65":{}},"parent":{}}],["claims",{"_index":187,"name":{"214":{},"313":{}},"parent":{}}],["clientid",{"_index":8,"name":{"7":{}},"parent":{}}],["clientsecret",{"_index":9,"name":{"8":{}},"parent":{}}],["clocktolerance",{"_index":10,"name":{"9":{}},"parent":{}}],["code",{"_index":198,"name":{"229":{},"241":{},"247":{},"252":{},"254":{},"259":{},"261":{},"266":{},"268":{},"273":{},"275":{}},"parent":{}}],["config",{"_index":0,"name":{"0":{}},"parent":{"1":{},"23":{},"30":{},"37":{},"41":{},"48":{}}}],["config.authorizationparameters",{"_index":42,"name":{},"parent":{"38":{},"39":{},"40":{}}}],["config.baseconfig",{"_index":3,"name":{},"parent":{"2":{},"3":{},"4":{},"5":{},"6":{},"7":{},"8":{},"9":{},"10":{},"11":{},"12":{},"13":{},"14":{},"15":{},"16":{},"17":{},"18":{},"19":{},"20":{}}}],["config.baseconfig.__type",{"_index":22,"name":{},"parent":{"21":{},"22":{}}}],["config.cookieconfig",{"_index":34,"name":{},"parent":{"31":{},"32":{},"33":{},"34":{},"35":{},"36":{}}}],["config.nextconfig",{"_index":47,"name":{},"parent":{"42":{},"43":{},"44":{},"47":{}}}],["config.nextconfig.__type",{"_index":48,"name":{},"parent":{"45":{},"46":{}}}],["config.sessionconfig",{"_index":26,"name":{},"parent":{"24":{},"25":{},"26":{},"27":{},"28":{},"29":{}}}],["configparameters",{"_index":50,"name":{"48":{}},"parent":{}}],["configprovider",{"_index":220,"name":{"281":{}},"parent":{}}],["configproviderprops",{"_index":221,"name":{"283":{}},"parent":{}}],["connection",{"_index":110,"name":{"112":{}},"parent":{}}],["connection_scope",{"_index":112,"name":{"113":{}},"parent":{}}],["constructor",{"_index":70,"name":{"68":{},"216":{},"228":{},"240":{},"246":{},"253":{},"260":{},"267":{},"274":{},"319":{}},"parent":{}}],["cookie",{"_index":31,"name":{"29":{}},"parent":{}}],["cookieconfig",{"_index":32,"name":{"30":{}},"parent":{}}],["create",{"_index":226,"name":{"321":{}},"parent":{}}],["default",{"_index":77,"name":{"74":{},"215":{},"280":{}},"parent":{}}],["delete",{"_index":227,"name":{"322":{}},"parent":{}}],["domain",{"_index":33,"name":{"31":{}},"parent":{}}],["email",{"_index":55,"name":{"52":{}},"parent":{}}],["email_verified",{"_index":57,"name":{"53":{}},"parent":{}}],["enabletelemetry",{"_index":12,"name":{"11":{}},"parent":{}}],["error",{"_index":66,"name":{"63":{}},"parent":{}}],["expired_access_token",{"_index":205,"name":{"237":{}},"parent":{}}],["fromtokenset",{"_index":232,"name":{"327":{}},"parent":{}}],["frontend",{"_index":51,"name":{"49":{}},"parent":{"281":{},"282":{},"283":{},"284":{},"285":{},"286":{},"287":{},"288":{},"289":{},"290":{},"291":{}}}],["frontend/use",{"_index":52,"name":{"50":{}},"parent":{"51":{},"52":{},"53":{},"54":{},"55":{},"56":{},"57":{},"58":{},"59":{},"60":{},"61":{},"62":{},"63":{},"64":{},"65":{},"66":{},"67":{},"68":{},"69":{},"70":{},"71":{},"72":{},"73":{},"74":{},"75":{}}}],["frontend/with",{"_index":78,"name":{"76":{}},"parent":{"77":{},"78":{},"79":{},"80":{},"81":{},"82":{},"83":{},"84":{},"85":{},"86":{}}}],["generatesessioncookie",{"_index":147,"name":{"154":{}},"parent":{}}],["get",{"_index":231,"name":{"326":{}},"parent":{}}],["getaccesstoken",{"_index":165,"name":{"175":{},"207":{},"315":{}},"parent":{}}],["getaccesstokenresult",{"_index":181,"name":{"205":{},"317":{}},"parent":{}}],["getidtoken",{"_index":229,"name":{"324":{}},"parent":{}}],["getloginstate",{"_index":13,"name":{"12":{},"109":{},"123":{},"297":{}},"parent":{}}],["getserversideprops",{"_index":158,"name":{"167":{}},"parent":{}}],["getserversidepropsresultwithsession",{"_index":155,"name":{"162":{},"307":{}},"parent":{}}],["getsession",{"_index":162,"name":{"173":{},"189":{},"190":{},"195":{},"210":{},"314":{}},"parent":{}}],["handleauth",{"_index":93,"name":{"89":{},"182":{},"304":{}},"parent":{}}],["handlecallback",{"_index":104,"name":{"103":{},"177":{},"292":{}},"parent":{}}],["handlelogin",{"_index":119,"name":{"126":{},"176":{},"295":{}},"parent":{}}],["handlelogout",{"_index":128,"name":{"135":{},"178":{},"298":{}},"parent":{}}],["handleprofile",{"_index":141,"name":{"148":{},"179":{},"300":{}},"parent":{}}],["handlererror",{"_index":209,"name":{"245":{}},"parent":{}}],["handlers",{"_index":92,"name":{"88":{},"107":{},"303":{}},"parent":{"292":{},"293":{},"294":{},"295":{},"296":{},"297":{},"298":{},"299":{},"300":{},"301":{},"302":{},"303":{},"304":{},"305":{}}}],["handlers/auth",{"_index":91,"name":{"87":{}},"parent":{"88":{},"89":{},"91":{}}}],["handlers/auth.handleauth",{"_index":94,"name":{},"parent":{"90":{}}}],["handlers/auth.onerror",{"_index":95,"name":{},"parent":{"92":{}}}],["handlers/callback",{"_index":96,"name":{"93":{}},"parent":{"94":{},"96":{},"101":{},"103":{},"105":{}}}],["handlers/callback.aftercallback",{"_index":98,"name":{},"parent":{"95":{}}}],["handlers/callback.callbackhandler",{"_index":107,"name":{},"parent":{"106":{}}}],["handlers/callback.callbackoptions",{"_index":100,"name":{},"parent":{"97":{},"98":{},"99":{},"100":{}}}],["handlers/callback.callbackoptionsprovider",{"_index":103,"name":{},"parent":{"102":{}}}],["handlers/callback.handlecallback",{"_index":105,"name":{},"parent":{"104":{}}}],["handlers/login",{"_index":108,"name":{"108":{}},"parent":{"109":{},"111":{},"120":{},"124":{},"126":{},"128":{}}}],["handlers/login.authorizationparams",{"_index":111,"name":{},"parent":{"112":{},"113":{},"114":{},"115":{},"116":{},"117":{},"118":{},"119":{}}}],["handlers/login.getloginstate",{"_index":109,"name":{},"parent":{"110":{}}}],["handlers/login.handlelogin",{"_index":120,"name":{},"parent":{"127":{}}}],["handlers/login.loginhandler",{"_index":122,"name":{},"parent":{"129":{}}}],["handlers/login.loginoptions",{"_index":116,"name":{},"parent":{"121":{},"122":{},"123":{}}}],["handlers/login.loginoptionsprovider",{"_index":118,"name":{},"parent":{"125":{}}}],["handlers/logout",{"_index":123,"name":{"130":{}},"parent":{"131":{},"133":{},"135":{},"137":{}}}],["handlers/logout.handlelogout",{"_index":129,"name":{},"parent":{"136":{}}}],["handlers/logout.logouthandler",{"_index":131,"name":{},"parent":{"138":{}}}],["handlers/logout.logoutoptions",{"_index":125,"name":{},"parent":{"132":{}}}],["handlers/logout.logoutoptionsprovider",{"_index":127,"name":{},"parent":{"134":{}}}],["handlers/profile",{"_index":132,"name":{"139":{}},"parent":{"140":{},"142":{},"146":{},"148":{},"150":{}}}],["handlers/profile.afterrefetch",{"_index":134,"name":{},"parent":{"141":{}}}],["handlers/profile.handleprofile",{"_index":142,"name":{},"parent":{"149":{}}}],["handlers/profile.profilehandler",{"_index":144,"name":{},"parent":{"151":{}}}],["handlers/profile.profileoptions",{"_index":136,"name":{},"parent":{"143":{}}}],["handlers/profile.profileoptions.__type",{"_index":138,"name":{},"parent":{"144":{},"145":{}}}],["handlers/profile.profileoptionsprovider",{"_index":140,"name":{},"parent":{"147":{}}}],["helpers",{"_index":145,"name":{"152":{}},"parent":{"306":{},"307":{},"308":{},"309":{},"310":{}}}],["helpers/testing",{"_index":146,"name":{"153":{}},"parent":{"154":{}}}],["helpers/with",{"_index":148,"name":{"155":{},"158":{},"161":{}},"parent":{"156":{},"157":{},"159":{},"160":{},"162":{},"163":{},"164":{},"165":{},"166":{},"167":{},"168":{},"169":{},"170":{}}}],["httponly",{"_index":37,"name":{"34":{}},"parent":{}}],["httptimeout",{"_index":11,"name":{"10":{}},"parent":{}}],["identityclaimfilter",{"_index":15,"name":{"14":{},"47":{}},"parent":{}}],["idplogout",{"_index":16,"name":{"15":{}},"parent":{}}],["idtoken",{"_index":189,"name":{"218":{}},"parent":{}}],["idtokensigningalg",{"_index":17,"name":{"16":{}},"parent":{}}],["initauth0",{"_index":166,"name":{"183":{},"192":{},"194":{}},"parent":{}}],["instance",{"_index":160,"name":{"171":{},"186":{}},"parent":{"172":{},"183":{}}}],["instance.initauth0",{"_index":167,"name":{},"parent":{"184":{}}}],["instance.signinwithauth0",{"_index":163,"name":{},"parent":{"173":{},"174":{},"175":{},"176":{},"177":{},"178":{},"179":{},"180":{},"181":{},"182":{}}}],["insufficient_scope",{"_index":206,"name":{"238":{}},"parent":{}}],["invitation",{"_index":113,"name":{"114":{}},"parent":{}}],["isauthenticated",{"_index":228,"name":{"323":{}},"parent":{}}],["isloading",{"_index":67,"name":{"64":{}},"parent":{}}],["issuerbaseurl",{"_index":18,"name":{"17":{}},"parent":{}}],["legacysamesitecookie",{"_index":19,"name":{"18":{}},"parent":{}}],["login",{"_index":49,"name":{"46":{}},"parent":{}}],["loginhandler",{"_index":121,"name":{"128":{}},"parent":{}}],["loginhandlererror",{"_index":213,"name":{"258":{}},"parent":{}}],["loginoptions",{"_index":115,"name":{"120":{},"296":{}},"parent":{}}],["loginoptionsprovider",{"_index":117,"name":{"124":{}},"parent":{}}],["logouthandler",{"_index":130,"name":{"137":{}},"parent":{}}],["logouthandlererror",{"_index":215,"name":{"265":{}},"parent":{}}],["logoutoptions",{"_index":124,"name":{"131":{},"299":{}},"parent":{}}],["logoutoptionsprovider",{"_index":126,"name":{"133":{}},"parent":{}}],["middleware",{"_index":152,"name":{"158":{},"185":{}},"parent":{"159":{},"160":{},"186":{},"190":{},"192":{},"194":{},"195":{},"196":{},"311":{}}}],["middleware.getsession",{"_index":170,"name":{},"parent":{"191":{}}}],["middleware.initauth0",{"_index":171,"name":{},"parent":{"193":{}}}],["middleware.instance",{"_index":168,"name":{},"parent":{"187":{}}}],["middleware.instance.__type",{"_index":169,"name":{},"parent":{"188":{},"189":{}}}],["missing_access_token",{"_index":203,"name":{"235":{}},"parent":{}}],["missing_refresh_token",{"_index":204,"name":{"236":{}},"parent":{}}],["missing_session",{"_index":201,"name":{"234":{}},"parent":{}}],["name",{"_index":25,"name":{"24":{},"54":{},"230":{},"242":{},"248":{},"255":{},"262":{},"269":{},"276":{}},"parent":{}}],["nextconfig",{"_index":45,"name":{"41":{}},"parent":{}}],["nickname",{"_index":58,"name":{"55":{}},"parent":{}}],["onerror",{"_index":86,"name":{"81":{},"91":{},"305":{}},"parent":{}}],["onredirecting",{"_index":85,"name":{"79":{}},"parent":{}}],["org_id",{"_index":62,"name":{"59":{}},"parent":{}}],["organization",{"_index":46,"name":{"42":{},"99":{},"115":{}},"parent":{}}],["page",{"_index":79,"name":{"76":{},"161":{}},"parent":{"77":{},"78":{},"79":{},"80":{},"81":{},"82":{},"83":{},"84":{},"85":{},"86":{},"162":{},"163":{},"164":{},"165":{},"166":{},"167":{},"168":{},"169":{},"170":{}}}],["pageroute",{"_index":156,"name":{"163":{},"310":{}},"parent":{}}],["path",{"_index":35,"name":{"32":{}},"parent":{}}],["picture",{"_index":59,"name":{"56":{}},"parent":{}}],["postlogoutredirect",{"_index":21,"name":{"21":{}},"parent":{}}],["profilehandler",{"_index":143,"name":{"150":{}},"parent":{}}],["profilehandlererror",{"_index":217,"name":{"272":{}},"parent":{}}],["profileoptions",{"_index":135,"name":{"142":{},"301":{}},"parent":{}}],["profileoptionsprovider",{"_index":139,"name":{"146":{}},"parent":{}}],["redirecturi",{"_index":101,"name":{"98":{}},"parent":{}}],["refetch",{"_index":137,"name":{"144":{}},"parent":{}}],["refresh",{"_index":180,"name":{"202":{}},"parent":{}}],["refreshtoken",{"_index":192,"name":{"222":{}},"parent":{}}],["requesterror",{"_index":69,"name":{"67":{},"288":{}},"parent":{}}],["required",{"_index":81,"name":{"76":{},"155":{},"158":{},"161":{}},"parent":{"77":{},"83":{},"85":{},"156":{},"159":{},"162":{},"163":{},"165":{},"169":{}}}],["required.pageroute",{"_index":157,"name":{},"parent":{"164":{}}}],["required.userprops",{"_index":88,"name":{},"parent":{"84":{}}}],["required.withapiauthrequired",{"_index":151,"name":{},"parent":{"157":{}}}],["required.withmiddlewareauthrequired",{"_index":154,"name":{},"parent":{"160":{}}}],["required.withpageauthrequired",{"_index":90,"name":{},"parent":{"86":{},"170":{}}}],["required.withpageauthrequiredoptions",{"_index":84,"name":{},"parent":{"78":{},"79":{},"80":{},"81":{},"82":{},"166":{}}}],["required.withpageauthrequiredoptions.__type",{"_index":159,"name":{},"parent":{"167":{},"168":{}}}],["response_mode",{"_index":43,"name":{"39":{},"118":{}},"parent":{}}],["response_type",{"_index":44,"name":{"40":{},"119":{}},"parent":{}}],["returnto",{"_index":83,"name":{"78":{},"122":{},"132":{},"168":{}},"parent":{}}],["rolling",{"_index":27,"name":{"25":{}},"parent":{}}],["rollingduration",{"_index":28,"name":{"26":{}},"parent":{}}],["routes",{"_index":20,"name":{"19":{},"43":{}},"parent":{}}],["samesite",{"_index":39,"name":{"36":{}},"parent":{}}],["save",{"_index":225,"name":{"320":{}},"parent":{}}],["scope",{"_index":41,"name":{"38":{},"117":{}},"parent":{}}],["scopes",{"_index":178,"name":{"201":{}},"parent":{}}],["screen_hint",{"_index":114,"name":{"116":{}},"parent":{}}],["secret",{"_index":2,"name":{"2":{}},"parent":{}}],["secure",{"_index":38,"name":{"35":{}},"parent":{}}],["session",{"_index":4,"name":{"3":{},"209":{},"212":{},"223":{},"312":{}},"parent":{"210":{},"224":{},"312":{},"313":{},"314":{},"315":{},"316":{},"317":{},"318":{},"328":{}}}],["session.getsession",{"_index":185,"name":{},"parent":{"211":{}}}],["session.sessioncache",{"_index":224,"name":{},"parent":{"319":{},"320":{},"321":{},"322":{},"323":{},"324":{},"325":{},"326":{},"327":{}}}],["session.updatesession",{"_index":194,"name":{},"parent":{"225":{}}}],["session/get",{"_index":172,"name":{"197":{},"209":{}},"parent":{"198":{},"199":{},"200":{},"201":{},"202":{},"203":{},"204":{},"205":{},"206":{},"207":{},"208":{},"210":{},"211":{}}}],["session/session",{"_index":186,"name":{"213":{}},"parent":{"214":{},"215":{}}}],["session/session.default",{"_index":188,"name":{},"parent":{"216":{},"217":{},"218":{},"219":{},"220":{},"221":{},"222":{}}}],["session/update",{"_index":193,"name":{"223":{}},"parent":{"224":{},"225":{}}}],["sessioncache",{"_index":223,"name":{"318":{}},"parent":{}}],["sessionconfig",{"_index":24,"name":{"23":{}},"parent":{}}],["set",{"_index":230,"name":{"325":{}},"parent":{}}],["signinwithauth0",{"_index":161,"name":{"172":{}},"parent":{}}],["status",{"_index":72,"name":{"69":{},"232":{},"244":{},"250":{},"257":{},"264":{},"271":{},"278":{}},"parent":{}}],["storeidtoken",{"_index":30,"name":{"28":{}},"parent":{}}],["sub",{"_index":60,"name":{"57":{}},"parent":{}}],["token",{"_index":174,"name":{"197":{}},"parent":{"198":{},"200":{},"205":{},"207":{}}}],["token.accesstokenrequest",{"_index":179,"name":{},"parent":{"201":{},"202":{},"203":{},"204":{}}}],["token.afterrefresh",{"_index":176,"name":{},"parent":{"199":{}}}],["token.getaccesstoken",{"_index":184,"name":{},"parent":{"208":{}}}],["token.getaccesstokenresult",{"_index":183,"name":{},"parent":{"206":{}}}],["transient",{"_index":36,"name":{"33":{}},"parent":{}}],["updated_at",{"_index":61,"name":{"58":{}},"parent":{}}],["updatesession",{"_index":164,"name":{"174":{},"224":{},"328":{}},"parent":{}}],["useconfig",{"_index":222,"name":{"284":{}},"parent":{}}],["user",{"_index":53,"name":{"50":{},"62":{},"84":{},"217":{}},"parent":{"51":{},"60":{},"67":{},"70":{},"71":{},"72":{},"74":{},"75":{}}}],["user.requesterror",{"_index":71,"name":{},"parent":{"68":{},"69":{}}}],["user.usercontext",{"_index":64,"name":{},"parent":{"61":{}}}],["user.usercontext.__type",{"_index":65,"name":{},"parent":{"62":{},"63":{},"64":{},"65":{},"66":{}}}],["user.userprofile",{"_index":56,"name":{},"parent":{"52":{},"53":{},"54":{},"55":{},"56":{},"57":{},"58":{},"59":{}}}],["user.userprovider",{"_index":76,"name":{},"parent":{"73":{}}}],["usercontext",{"_index":63,"name":{"60":{}},"parent":{}}],["userprofile",{"_index":54,"name":{"51":{},"287":{}},"parent":{}}],["userprops",{"_index":87,"name":{"83":{}},"parent":{}}],["userprovider",{"_index":75,"name":{"72":{},"285":{}},"parent":{}}],["userproviderprops",{"_index":73,"name":{"70":{},"286":{}},"parent":{}}],["useuser",{"_index":74,"name":{"71":{},"289":{}},"parent":{}}],["utils/errors",{"_index":195,"name":{"226":{}},"parent":{"227":{},"233":{},"239":{},"245":{},"251":{},"258":{},"265":{},"272":{}}}],["utils/errors.accesstokenerror",{"_index":208,"name":{},"parent":{"240":{},"241":{},"242":{},"243":{},"244":{}}}],["utils/errors.accesstokenerrorcode",{"_index":202,"name":{},"parent":{"234":{},"235":{},"236":{},"237":{},"238":{}}}],["utils/errors.autherror",{"_index":197,"name":{},"parent":{"228":{},"229":{},"230":{},"231":{},"232":{}}}],["utils/errors.callbackhandlererror",{"_index":212,"name":{},"parent":{"252":{},"253":{},"254":{},"255":{},"256":{},"257":{}}}],["utils/errors.handlererror",{"_index":210,"name":{},"parent":{"246":{},"247":{},"248":{},"249":{},"250":{}}}],["utils/errors.loginhandlererror",{"_index":214,"name":{},"parent":{"259":{},"260":{},"261":{},"262":{},"263":{},"264":{}}}],["utils/errors.logouthandlererror",{"_index":216,"name":{},"parent":{"266":{},"267":{},"268":{},"269":{},"270":{},"271":{}}}],["utils/errors.profilehandlererror",{"_index":218,"name":{},"parent":{"273":{},"274":{},"275":{},"276":{},"277":{},"278":{}}}],["version",{"_index":219,"name":{"279":{}},"parent":{"280":{}}}],["withapiauthrequired",{"_index":150,"name":{"156":{},"180":{},"306":{}},"parent":{}}],["withmiddlewareauthrequired",{"_index":153,"name":{"159":{},"188":{},"196":{},"311":{}},"parent":{}}],["withpageauthrequired",{"_index":89,"name":{"85":{},"169":{},"181":{},"290":{},"308":{}},"parent":{}}],["withpageauthrequiredoptions",{"_index":82,"name":{"77":{},"165":{},"291":{},"309":{}},"parent":{}}]],"pipeline":[]}}
\ No newline at end of file
+window.searchData = {"kinds":{"1":"Module","4":"Enumeration","16":"Enumeration member","64":"Function","128":"Class","256":"Interface","512":"Constructor","1024":"Property","2048":"Method","65536":"Type literal","4194304":"Type alias","16777216":"Reference"},"rows":[{"id":0,"kind":1,"name":"client","url":"modules/client.html","classes":"tsd-kind-module"},{"id":1,"kind":1,"name":"client/use-user","url":"modules/client_use_user.html","classes":"tsd-kind-module"},{"id":2,"kind":256,"name":"UserProfile","url":"interfaces/client_use_user.userprofile.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"client/use-user"},{"id":3,"kind":1024,"name":"email","url":"interfaces/client_use_user.userprofile.html#email","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"client/use-user.UserProfile"},{"id":4,"kind":1024,"name":"email_verified","url":"interfaces/client_use_user.userprofile.html#email_verified","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"client/use-user.UserProfile"},{"id":5,"kind":1024,"name":"name","url":"interfaces/client_use_user.userprofile.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"client/use-user.UserProfile"},{"id":6,"kind":1024,"name":"nickname","url":"interfaces/client_use_user.userprofile.html#nickname","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"client/use-user.UserProfile"},{"id":7,"kind":1024,"name":"picture","url":"interfaces/client_use_user.userprofile.html#picture","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"client/use-user.UserProfile"},{"id":8,"kind":1024,"name":"sub","url":"interfaces/client_use_user.userprofile.html#sub","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"client/use-user.UserProfile"},{"id":9,"kind":1024,"name":"updated_at","url":"interfaces/client_use_user.userprofile.html#updated_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"client/use-user.UserProfile"},{"id":10,"kind":1024,"name":"org_id","url":"interfaces/client_use_user.userprofile.html#org_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"client/use-user.UserProfile"},{"id":11,"kind":4194304,"name":"UserContext","url":"modules/client_use_user.html#usercontext","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"client/use-user"},{"id":12,"kind":65536,"name":"__type","url":"modules/client_use_user.html#usercontext.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"client/use-user.UserContext"},{"id":13,"kind":1024,"name":"user","url":"modules/client_use_user.html#usercontext.__type.user","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"client/use-user.UserContext.__type"},{"id":14,"kind":1024,"name":"error","url":"modules/client_use_user.html#usercontext.__type.error","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"client/use-user.UserContext.__type"},{"id":15,"kind":1024,"name":"isLoading","url":"modules/client_use_user.html#usercontext.__type.isloading","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"client/use-user.UserContext.__type"},{"id":16,"kind":1024,"name":"checkSession","url":"modules/client_use_user.html#usercontext.__type.checksession","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"client/use-user.UserContext.__type"},{"id":17,"kind":65536,"name":"__type","url":"modules/client_use_user.html#usercontext.__type.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"client/use-user.UserContext.__type"},{"id":18,"kind":128,"name":"RequestError","url":"classes/client_use_user.requesterror.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"client/use-user"},{"id":19,"kind":512,"name":"constructor","url":"classes/client_use_user.requesterror.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"client/use-user.RequestError"},{"id":20,"kind":1024,"name":"status","url":"classes/client_use_user.requesterror.html#status","classes":"tsd-kind-property tsd-parent-kind-class","parent":"client/use-user.RequestError"},{"id":21,"kind":4194304,"name":"UserProviderProps","url":"modules/client_use_user.html#userproviderprops","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"client/use-user"},{"id":22,"kind":64,"name":"useUser","url":"modules/client_use_user.html#useuser","classes":"tsd-kind-function tsd-parent-kind-module","parent":"client/use-user"},{"id":23,"kind":4194304,"name":"UserProvider","url":"modules/client_use_user.html#userprovider","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"client/use-user"},{"id":24,"kind":65536,"name":"__type","url":"modules/client_use_user.html#userprovider.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"client/use-user.UserProvider"},{"id":25,"kind":1024,"name":"default","url":"modules/client_use_user.html#default","classes":"tsd-kind-property tsd-parent-kind-module","parent":"client/use-user"},{"id":26,"kind":65536,"name":"__type","url":"modules/client_use_user.html#__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-module","parent":"client/use-user"},{"id":27,"kind":1,"name":"client/with-page-auth-required","url":"modules/client_with_page_auth_required.html","classes":"tsd-kind-module"},{"id":28,"kind":256,"name":"WithPageAuthRequiredOptions","url":"interfaces/client_with_page_auth_required.withpageauthrequiredoptions.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"client/with-page-auth-required"},{"id":29,"kind":1024,"name":"returnTo","url":"interfaces/client_with_page_auth_required.withpageauthrequiredoptions.html#returnto","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"client/with-page-auth-required.WithPageAuthRequiredOptions"},{"id":30,"kind":1024,"name":"onRedirecting","url":"interfaces/client_with_page_auth_required.withpageauthrequiredoptions.html#onredirecting","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"client/with-page-auth-required.WithPageAuthRequiredOptions"},{"id":31,"kind":65536,"name":"__type","url":"interfaces/client_with_page_auth_required.withpageauthrequiredoptions.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"client/with-page-auth-required.WithPageAuthRequiredOptions"},{"id":32,"kind":1024,"name":"onError","url":"interfaces/client_with_page_auth_required.withpageauthrequiredoptions.html#onerror","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"client/with-page-auth-required.WithPageAuthRequiredOptions"},{"id":33,"kind":65536,"name":"__type","url":"interfaces/client_with_page_auth_required.withpageauthrequiredoptions.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"client/with-page-auth-required.WithPageAuthRequiredOptions"},{"id":34,"kind":256,"name":"UserProps","url":"interfaces/client_with_page_auth_required.userprops.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"client/with-page-auth-required"},{"id":35,"kind":1024,"name":"user","url":"interfaces/client_with_page_auth_required.userprops.html#user","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"client/with-page-auth-required.UserProps"},{"id":36,"kind":4194304,"name":"WithPageAuthRequired","url":"modules/client_with_page_auth_required.html#withpageauthrequired","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"client/with-page-auth-required"},{"id":37,"kind":65536,"name":"__type","url":"modules/client_with_page_auth_required.html#withpageauthrequired.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias tsd-has-type-parameter","parent":"client/with-page-auth-required.WithPageAuthRequired"},{"id":38,"kind":1,"name":"config","url":"modules/config.html","classes":"tsd-kind-module"},{"id":39,"kind":256,"name":"BaseConfig","url":"interfaces/config.baseconfig.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"config"},{"id":40,"kind":1024,"name":"secret","url":"interfaces/config.baseconfig.html#secret","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.BaseConfig"},{"id":41,"kind":1024,"name":"session","url":"interfaces/config.baseconfig.html#session","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.BaseConfig"},{"id":42,"kind":1024,"name":"auth0Logout","url":"interfaces/config.baseconfig.html#auth0logout","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.BaseConfig"},{"id":43,"kind":1024,"name":"authorizationParams","url":"interfaces/config.baseconfig.html#authorizationparams","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.BaseConfig"},{"id":44,"kind":1024,"name":"baseURL","url":"interfaces/config.baseconfig.html#baseurl","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.BaseConfig"},{"id":45,"kind":1024,"name":"clientID","url":"interfaces/config.baseconfig.html#clientid","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.BaseConfig"},{"id":46,"kind":1024,"name":"clientSecret","url":"interfaces/config.baseconfig.html#clientsecret","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.BaseConfig"},{"id":47,"kind":1024,"name":"clockTolerance","url":"interfaces/config.baseconfig.html#clocktolerance","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.BaseConfig"},{"id":48,"kind":1024,"name":"httpTimeout","url":"interfaces/config.baseconfig.html#httptimeout","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.BaseConfig"},{"id":49,"kind":1024,"name":"enableTelemetry","url":"interfaces/config.baseconfig.html#enabletelemetry","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.BaseConfig"},{"id":50,"kind":1024,"name":"getLoginState","url":"interfaces/config.baseconfig.html#getloginstate","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.BaseConfig"},{"id":51,"kind":65536,"name":"__type","url":"interfaces/config.baseconfig.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"config.BaseConfig"},{"id":52,"kind":1024,"name":"identityClaimFilter","url":"interfaces/config.baseconfig.html#identityclaimfilter","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.BaseConfig"},{"id":53,"kind":1024,"name":"idpLogout","url":"interfaces/config.baseconfig.html#idplogout","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.BaseConfig"},{"id":54,"kind":1024,"name":"idTokenSigningAlg","url":"interfaces/config.baseconfig.html#idtokensigningalg","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.BaseConfig"},{"id":55,"kind":1024,"name":"issuerBaseURL","url":"interfaces/config.baseconfig.html#issuerbaseurl","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.BaseConfig"},{"id":56,"kind":1024,"name":"legacySameSiteCookie","url":"interfaces/config.baseconfig.html#legacysamesitecookie","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.BaseConfig"},{"id":57,"kind":1024,"name":"routes","url":"interfaces/config.baseconfig.html#routes","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.BaseConfig"},{"id":58,"kind":65536,"name":"__type","url":"interfaces/config.baseconfig.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"config.BaseConfig"},{"id":59,"kind":1024,"name":"postLogoutRedirect","url":"interfaces/config.baseconfig.html#__type-1.postlogoutredirect","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"config.BaseConfig.__type"},{"id":60,"kind":1024,"name":"callback","url":"interfaces/config.baseconfig.html#__type-1.callback","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"config.BaseConfig.__type"},{"id":61,"kind":256,"name":"SessionConfig","url":"interfaces/config.sessionconfig.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"config"},{"id":62,"kind":1024,"name":"name","url":"interfaces/config.sessionconfig.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.SessionConfig"},{"id":63,"kind":1024,"name":"rolling","url":"interfaces/config.sessionconfig.html#rolling","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.SessionConfig"},{"id":64,"kind":1024,"name":"rollingDuration","url":"interfaces/config.sessionconfig.html#rollingduration","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.SessionConfig"},{"id":65,"kind":1024,"name":"absoluteDuration","url":"interfaces/config.sessionconfig.html#absoluteduration","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.SessionConfig"},{"id":66,"kind":1024,"name":"storeIDToken","url":"interfaces/config.sessionconfig.html#storeidtoken","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.SessionConfig"},{"id":67,"kind":1024,"name":"cookie","url":"interfaces/config.sessionconfig.html#cookie","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.SessionConfig"},{"id":68,"kind":256,"name":"CookieConfig","url":"interfaces/config.cookieconfig.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"config"},{"id":69,"kind":1024,"name":"domain","url":"interfaces/config.cookieconfig.html#domain","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.CookieConfig"},{"id":70,"kind":1024,"name":"path","url":"interfaces/config.cookieconfig.html#path","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.CookieConfig"},{"id":71,"kind":1024,"name":"transient","url":"interfaces/config.cookieconfig.html#transient","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.CookieConfig"},{"id":72,"kind":1024,"name":"httpOnly","url":"interfaces/config.cookieconfig.html#httponly","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.CookieConfig"},{"id":73,"kind":1024,"name":"secure","url":"interfaces/config.cookieconfig.html#secure","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.CookieConfig"},{"id":74,"kind":1024,"name":"sameSite","url":"interfaces/config.cookieconfig.html#samesite","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.CookieConfig"},{"id":75,"kind":256,"name":"AuthorizationParameters","url":"interfaces/config.authorizationparameters.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"config"},{"id":76,"kind":1024,"name":"scope","url":"interfaces/config.authorizationparameters.html#scope","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite","parent":"config.AuthorizationParameters"},{"id":77,"kind":1024,"name":"response_mode","url":"interfaces/config.authorizationparameters.html#response_mode","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite","parent":"config.AuthorizationParameters"},{"id":78,"kind":1024,"name":"response_type","url":"interfaces/config.authorizationparameters.html#response_type","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite","parent":"config.AuthorizationParameters"},{"id":79,"kind":256,"name":"NextConfig","url":"interfaces/config.nextconfig.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"config"},{"id":80,"kind":1024,"name":"organization","url":"interfaces/config.nextconfig.html#organization","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.NextConfig"},{"id":81,"kind":1024,"name":"routes","url":"interfaces/config.nextconfig.html#routes","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.NextConfig"},{"id":82,"kind":65536,"name":"__type","url":"interfaces/config.nextconfig.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"config.NextConfig"},{"id":83,"kind":1024,"name":"callback","url":"interfaces/config.nextconfig.html#__type.callback","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"config.NextConfig.__type"},{"id":84,"kind":1024,"name":"login","url":"interfaces/config.nextconfig.html#__type.login","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"config.NextConfig.__type"},{"id":85,"kind":1024,"name":"unauthorized","url":"interfaces/config.nextconfig.html#__type.unauthorized","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"config.NextConfig.__type"},{"id":86,"kind":1024,"name":"identityClaimFilter","url":"interfaces/config.nextconfig.html#identityclaimfilter","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"config.NextConfig"},{"id":87,"kind":4194304,"name":"ConfigParameters","url":"modules/config.html#configparameters","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"config"},{"id":88,"kind":1,"name":"edge","url":"modules/edge.html","classes":"tsd-kind-module"},{"id":89,"kind":4194304,"name":"Auth0Edge","url":"modules/edge.html#auth0edge","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"edge"},{"id":90,"kind":65536,"name":"__type","url":"modules/edge.html#auth0edge.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"edge.Auth0Edge"},{"id":91,"kind":1024,"name":"withMiddlewareAuthRequired","url":"modules/edge.html#auth0edge.__type.withmiddlewareauthrequired-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"edge.Auth0Edge.__type"},{"id":92,"kind":1024,"name":"getSession","url":"modules/edge.html#auth0edge.__type.getsession","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"edge.Auth0Edge.__type"},{"id":93,"kind":4194304,"name":"GetSession","url":"modules/edge.html#getsession-1","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"edge"},{"id":94,"kind":65536,"name":"__type","url":"modules/edge.html#getsession-1.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"edge.GetSession"},{"id":95,"kind":4194304,"name":"InitAuth0","url":"modules/edge.html#initauth0","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"edge"},{"id":96,"kind":65536,"name":"__type","url":"modules/edge.html#initauth0.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"edge.InitAuth0"},{"id":97,"kind":64,"name":"initAuth0","url":"modules/edge.html#initauth0-1","classes":"tsd-kind-function tsd-parent-kind-module","parent":"edge"},{"id":98,"kind":64,"name":"getSession","url":"modules/edge.html#getsession-2","classes":"tsd-kind-function tsd-parent-kind-module","parent":"edge"},{"id":99,"kind":64,"name":"withMiddlewareAuthRequired","url":"modules/edge.html#withmiddlewareauthrequired-2","classes":"tsd-kind-function tsd-parent-kind-module","parent":"edge"},{"id":100,"kind":1,"name":"handlers/auth","url":"modules/handlers_auth.html","classes":"tsd-kind-module"},{"id":101,"kind":4194304,"name":"Handlers","url":"modules/handlers_auth.html#handlers","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"handlers/auth"},{"id":102,"kind":4194304,"name":"HandleAuth","url":"modules/handlers_auth.html#handleauth","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"handlers/auth"},{"id":103,"kind":65536,"name":"__type","url":"modules/handlers_auth.html#handleauth.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"handlers/auth.HandleAuth"},{"id":104,"kind":4194304,"name":"OnError","url":"modules/handlers_auth.html#onerror","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"handlers/auth"},{"id":105,"kind":65536,"name":"__type","url":"modules/handlers_auth.html#onerror.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"handlers/auth.OnError"},{"id":106,"kind":1,"name":"handlers/callback","url":"modules/handlers_callback.html","classes":"tsd-kind-module"},{"id":107,"kind":4194304,"name":"AfterCallback","url":"modules/handlers_callback.html#aftercallback","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"handlers/callback"},{"id":108,"kind":65536,"name":"__type","url":"modules/handlers_callback.html#aftercallback.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"handlers/callback.AfterCallback"},{"id":109,"kind":256,"name":"CallbackOptions","url":"interfaces/handlers_callback.callbackoptions.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"handlers/callback"},{"id":110,"kind":1024,"name":"afterCallback","url":"interfaces/handlers_callback.callbackoptions.html#aftercallback","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"handlers/callback.CallbackOptions"},{"id":111,"kind":1024,"name":"redirectUri","url":"interfaces/handlers_callback.callbackoptions.html#redirecturi","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"handlers/callback.CallbackOptions"},{"id":112,"kind":1024,"name":"organization","url":"interfaces/handlers_callback.callbackoptions.html#organization","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"handlers/callback.CallbackOptions"},{"id":113,"kind":1024,"name":"authorizationParams","url":"interfaces/handlers_callback.callbackoptions.html#authorizationparams","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"handlers/callback.CallbackOptions"},{"id":114,"kind":4194304,"name":"CallbackOptionsProvider","url":"modules/handlers_callback.html#callbackoptionsprovider","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"handlers/callback"},{"id":115,"kind":65536,"name":"__type","url":"modules/handlers_callback.html#callbackoptionsprovider.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"handlers/callback.CallbackOptionsProvider"},{"id":116,"kind":4194304,"name":"HandleCallback","url":"modules/handlers_callback.html#handlecallback","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"handlers/callback"},{"id":117,"kind":65536,"name":"__type","url":"modules/handlers_callback.html#handlecallback.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"handlers/callback.HandleCallback"},{"id":118,"kind":4194304,"name":"CallbackHandler","url":"modules/handlers_callback.html#callbackhandler","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"handlers/callback"},{"id":119,"kind":65536,"name":"__type","url":"modules/handlers_callback.html#callbackhandler.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"handlers/callback.CallbackHandler"},{"id":120,"kind":1,"name":"handlers","url":"modules/handlers.html","classes":"tsd-kind-module"},{"id":121,"kind":1,"name":"handlers/login","url":"modules/handlers_login.html","classes":"tsd-kind-module"},{"id":122,"kind":4194304,"name":"GetLoginState","url":"modules/handlers_login.html#getloginstate","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"handlers/login"},{"id":123,"kind":65536,"name":"__type","url":"modules/handlers_login.html#getloginstate.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"handlers/login.GetLoginState"},{"id":124,"kind":256,"name":"AuthorizationParams","url":"interfaces/handlers_login.authorizationparams.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"handlers/login"},{"id":125,"kind":1024,"name":"connection","url":"interfaces/handlers_login.authorizationparams.html#connection","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"handlers/login.AuthorizationParams"},{"id":126,"kind":1024,"name":"connection_scope","url":"interfaces/handlers_login.authorizationparams.html#connection_scope","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"handlers/login.AuthorizationParams"},{"id":127,"kind":1024,"name":"invitation","url":"interfaces/handlers_login.authorizationparams.html#invitation","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"handlers/login.AuthorizationParams"},{"id":128,"kind":1024,"name":"organization","url":"interfaces/handlers_login.authorizationparams.html#organization","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"handlers/login.AuthorizationParams"},{"id":129,"kind":1024,"name":"screen_hint","url":"interfaces/handlers_login.authorizationparams.html#screen_hint","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"handlers/login.AuthorizationParams"},{"id":130,"kind":1024,"name":"scope","url":"interfaces/handlers_login.authorizationparams.html#scope","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"handlers/login.AuthorizationParams"},{"id":131,"kind":1024,"name":"response_mode","url":"interfaces/handlers_login.authorizationparams.html#response_mode","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"handlers/login.AuthorizationParams"},{"id":132,"kind":1024,"name":"response_type","url":"interfaces/handlers_login.authorizationparams.html#response_type","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"handlers/login.AuthorizationParams"},{"id":133,"kind":256,"name":"LoginOptions","url":"interfaces/handlers_login.loginoptions.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"handlers/login"},{"id":134,"kind":1024,"name":"authorizationParams","url":"interfaces/handlers_login.loginoptions.html#authorizationparams","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"handlers/login.LoginOptions"},{"id":135,"kind":1024,"name":"returnTo","url":"interfaces/handlers_login.loginoptions.html#returnto","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"handlers/login.LoginOptions"},{"id":136,"kind":1024,"name":"getLoginState","url":"interfaces/handlers_login.loginoptions.html#getloginstate","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"handlers/login.LoginOptions"},{"id":137,"kind":4194304,"name":"LoginOptionsProvider","url":"modules/handlers_login.html#loginoptionsprovider","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"handlers/login"},{"id":138,"kind":65536,"name":"__type","url":"modules/handlers_login.html#loginoptionsprovider.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"handlers/login.LoginOptionsProvider"},{"id":139,"kind":4194304,"name":"HandleLogin","url":"modules/handlers_login.html#handlelogin","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"handlers/login"},{"id":140,"kind":65536,"name":"__type","url":"modules/handlers_login.html#handlelogin.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"handlers/login.HandleLogin"},{"id":141,"kind":4194304,"name":"LoginHandler","url":"modules/handlers_login.html#loginhandler","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"handlers/login"},{"id":142,"kind":65536,"name":"__type","url":"modules/handlers_login.html#loginhandler.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"handlers/login.LoginHandler"},{"id":143,"kind":1,"name":"handlers/logout","url":"modules/handlers_logout.html","classes":"tsd-kind-module"},{"id":144,"kind":256,"name":"LogoutOptions","url":"interfaces/handlers_logout.logoutoptions.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"handlers/logout"},{"id":145,"kind":1024,"name":"returnTo","url":"interfaces/handlers_logout.logoutoptions.html#returnto","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"handlers/logout.LogoutOptions"},{"id":146,"kind":1024,"name":"logoutParams","url":"interfaces/handlers_logout.logoutoptions.html#logoutparams","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"handlers/logout.LogoutOptions"},{"id":147,"kind":65536,"name":"__type","url":"interfaces/handlers_logout.logoutoptions.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"handlers/logout.LogoutOptions"},{"id":148,"kind":4194304,"name":"LogoutOptionsProvider","url":"modules/handlers_logout.html#logoutoptionsprovider","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"handlers/logout"},{"id":149,"kind":65536,"name":"__type","url":"modules/handlers_logout.html#logoutoptionsprovider.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"handlers/logout.LogoutOptionsProvider"},{"id":150,"kind":4194304,"name":"HandleLogout","url":"modules/handlers_logout.html#handlelogout","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"handlers/logout"},{"id":151,"kind":65536,"name":"__type","url":"modules/handlers_logout.html#handlelogout.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"handlers/logout.HandleLogout"},{"id":152,"kind":4194304,"name":"LogoutHandler","url":"modules/handlers_logout.html#logouthandler","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"handlers/logout"},{"id":153,"kind":65536,"name":"__type","url":"modules/handlers_logout.html#logouthandler.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"handlers/logout.LogoutHandler"},{"id":154,"kind":1,"name":"handlers/profile","url":"modules/handlers_profile.html","classes":"tsd-kind-module"},{"id":155,"kind":4194304,"name":"AfterRefetch","url":"modules/handlers_profile.html#afterrefetch","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"handlers/profile"},{"id":156,"kind":65536,"name":"__type","url":"modules/handlers_profile.html#afterrefetch.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"handlers/profile.AfterRefetch"},{"id":157,"kind":4194304,"name":"ProfileOptions","url":"modules/handlers_profile.html#profileoptions","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"handlers/profile"},{"id":158,"kind":65536,"name":"__type","url":"modules/handlers_profile.html#profileoptions.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"handlers/profile.ProfileOptions"},{"id":159,"kind":1024,"name":"refetch","url":"modules/handlers_profile.html#profileoptions.__type-3.refetch","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"handlers/profile.ProfileOptions.__type"},{"id":160,"kind":1024,"name":"afterRefetch","url":"modules/handlers_profile.html#profileoptions.__type-3.afterrefetch-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"handlers/profile.ProfileOptions.__type"},{"id":161,"kind":4194304,"name":"ProfileOptionsProvider","url":"modules/handlers_profile.html#profileoptionsprovider","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"handlers/profile"},{"id":162,"kind":65536,"name":"__type","url":"modules/handlers_profile.html#profileoptionsprovider.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"handlers/profile.ProfileOptionsProvider"},{"id":163,"kind":4194304,"name":"HandleProfile","url":"modules/handlers_profile.html#handleprofile","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"handlers/profile"},{"id":164,"kind":65536,"name":"__type","url":"modules/handlers_profile.html#handleprofile.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"handlers/profile.HandleProfile"},{"id":165,"kind":4194304,"name":"ProfileHandler","url":"modules/handlers_profile.html#profilehandler","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"handlers/profile"},{"id":166,"kind":65536,"name":"__type","url":"modules/handlers_profile.html#profilehandler.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"handlers/profile.ProfileHandler"},{"id":167,"kind":1,"name":"helpers","url":"modules/helpers.html","classes":"tsd-kind-module"},{"id":168,"kind":1,"name":"helpers/testing","url":"modules/helpers_testing.html","classes":"tsd-kind-module"},{"id":169,"kind":4194304,"name":"GenerateSessionCookieConfig","url":"modules/helpers_testing.html#generatesessioncookieconfig","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"helpers/testing"},{"id":170,"kind":64,"name":"generateSessionCookie","url":"modules/helpers_testing.html#generatesessioncookie","classes":"tsd-kind-function tsd-parent-kind-module","parent":"helpers/testing"},{"id":171,"kind":1,"name":"helpers/with-api-auth-required","url":"modules/helpers_with_api_auth_required.html","classes":"tsd-kind-module"},{"id":172,"kind":4194304,"name":"WithApiAuthRequired","url":"modules/helpers_with_api_auth_required.html#withapiauthrequired","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"helpers/with-api-auth-required"},{"id":173,"kind":65536,"name":"__type","url":"modules/helpers_with_api_auth_required.html#withapiauthrequired.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"helpers/with-api-auth-required.WithApiAuthRequired"},{"id":174,"kind":1,"name":"helpers/with-middleware-auth-required","url":"modules/helpers_with_middleware_auth_required.html","classes":"tsd-kind-module"},{"id":175,"kind":4194304,"name":"WithMiddlewareAuthRequired","url":"modules/helpers_with_middleware_auth_required.html#withmiddlewareauthrequired","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"helpers/with-middleware-auth-required"},{"id":176,"kind":65536,"name":"__type","url":"modules/helpers_with_middleware_auth_required.html#withmiddlewareauthrequired.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"helpers/with-middleware-auth-required.WithMiddlewareAuthRequired"},{"id":177,"kind":1,"name":"helpers/with-page-auth-required","url":"modules/helpers_with_page_auth_required.html","classes":"tsd-kind-module"},{"id":178,"kind":4194304,"name":"GetServerSidePropsResultWithSession","url":"modules/helpers_with_page_auth_required.html#getserversidepropsresultwithsession","classes":"tsd-kind-type-alias tsd-parent-kind-module tsd-has-type-parameter","parent":"helpers/with-page-auth-required"},{"id":179,"kind":4194304,"name":"PageRoute","url":"modules/helpers_with_page_auth_required.html#pageroute","classes":"tsd-kind-type-alias tsd-parent-kind-module tsd-has-type-parameter","parent":"helpers/with-page-auth-required"},{"id":180,"kind":65536,"name":"__type","url":"modules/helpers_with_page_auth_required.html#pageroute.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"helpers/with-page-auth-required.PageRoute"},{"id":181,"kind":4194304,"name":"WithPageAuthRequiredOptions","url":"modules/helpers_with_page_auth_required.html#withpageauthrequiredoptions","classes":"tsd-kind-type-alias tsd-parent-kind-module tsd-has-type-parameter","parent":"helpers/with-page-auth-required"},{"id":182,"kind":65536,"name":"__type","url":"modules/helpers_with_page_auth_required.html#withpageauthrequiredoptions.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"helpers/with-page-auth-required.WithPageAuthRequiredOptions"},{"id":183,"kind":1024,"name":"getServerSideProps","url":"modules/helpers_with_page_auth_required.html#withpageauthrequiredoptions.__type-2.getserversideprops","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"helpers/with-page-auth-required.WithPageAuthRequiredOptions.__type"},{"id":184,"kind":1024,"name":"returnTo","url":"modules/helpers_with_page_auth_required.html#withpageauthrequiredoptions.__type-2.returnto","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"helpers/with-page-auth-required.WithPageAuthRequiredOptions.__type"},{"id":185,"kind":4194304,"name":"WithPageAuthRequired","url":"modules/helpers_with_page_auth_required.html#withpageauthrequired","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"helpers/with-page-auth-required"},{"id":186,"kind":65536,"name":"__type","url":"modules/helpers_with_page_auth_required.html#withpageauthrequired.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias tsd-has-type-parameter","parent":"helpers/with-page-auth-required.WithPageAuthRequired"},{"id":187,"kind":1,"name":"index","url":"modules/index.html","classes":"tsd-kind-module"},{"id":188,"kind":256,"name":"Auth0Server","url":"interfaces/index.auth0server.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"index"},{"id":189,"kind":1024,"name":"getSession","url":"interfaces/index.auth0server.html#getsession","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"index.Auth0Server"},{"id":190,"kind":1024,"name":"updateSession","url":"interfaces/index.auth0server.html#updatesession","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"index.Auth0Server"},{"id":191,"kind":1024,"name":"getAccessToken","url":"interfaces/index.auth0server.html#getaccesstoken","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"index.Auth0Server"},{"id":192,"kind":1024,"name":"handleLogin","url":"interfaces/index.auth0server.html#handlelogin","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"index.Auth0Server"},{"id":193,"kind":1024,"name":"handleCallback","url":"interfaces/index.auth0server.html#handlecallback","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"index.Auth0Server"},{"id":194,"kind":1024,"name":"handleLogout","url":"interfaces/index.auth0server.html#handlelogout","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"index.Auth0Server"},{"id":195,"kind":1024,"name":"handleProfile","url":"interfaces/index.auth0server.html#handleprofile","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"index.Auth0Server"},{"id":196,"kind":1024,"name":"withApiAuthRequired","url":"interfaces/index.auth0server.html#withapiauthrequired","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"index.Auth0Server"},{"id":197,"kind":1024,"name":"withPageAuthRequired","url":"interfaces/index.auth0server.html#withpageauthrequired","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"index.Auth0Server"},{"id":198,"kind":1024,"name":"handleAuth","url":"interfaces/index.auth0server.html#handleauth","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"index.Auth0Server"},{"id":199,"kind":4194304,"name":"InitAuth0","url":"modules/index.html#initauth0","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"index"},{"id":200,"kind":65536,"name":"__type","url":"modules/index.html#initauth0.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"index.InitAuth0"},{"id":201,"kind":64,"name":"initAuth0","url":"modules/index.html#initauth0-1","classes":"tsd-kind-function tsd-parent-kind-module","parent":"index"},{"id":202,"kind":64,"name":"_initAuth","url":"modules/index.html#_initauth","classes":"tsd-kind-function tsd-parent-kind-module","parent":"index"},{"id":203,"kind":64,"name":"getSession","url":"modules/index.html#getsession-1","classes":"tsd-kind-function tsd-parent-kind-module","parent":"index"},{"id":204,"kind":64,"name":"updateSession","url":"modules/index.html#updatesession-1","classes":"tsd-kind-function tsd-parent-kind-module","parent":"index"},{"id":205,"kind":64,"name":"getAccessToken","url":"modules/index.html#getaccesstoken-1","classes":"tsd-kind-function tsd-parent-kind-module","parent":"index"},{"id":206,"kind":64,"name":"withApiAuthRequired","url":"modules/index.html#withapiauthrequired-1","classes":"tsd-kind-function tsd-parent-kind-module","parent":"index"},{"id":207,"kind":64,"name":"withPageAuthRequired","url":"modules/index.html#withpageauthrequired-1","classes":"tsd-kind-function tsd-parent-kind-module tsd-has-type-parameter","parent":"index"},{"id":208,"kind":64,"name":"handleLogin","url":"modules/index.html#handlelogin-1","classes":"tsd-kind-function tsd-parent-kind-module","parent":"index"},{"id":209,"kind":64,"name":"handleLogout","url":"modules/index.html#handlelogout-1","classes":"tsd-kind-function tsd-parent-kind-module","parent":"index"},{"id":210,"kind":64,"name":"handleCallback","url":"modules/index.html#handlecallback-1","classes":"tsd-kind-function tsd-parent-kind-module","parent":"index"},{"id":211,"kind":64,"name":"handleProfile","url":"modules/index.html#handleprofile-1","classes":"tsd-kind-function tsd-parent-kind-module","parent":"index"},{"id":212,"kind":64,"name":"handleAuth","url":"modules/index.html#handleauth-1","classes":"tsd-kind-function tsd-parent-kind-module","parent":"index"},{"id":213,"kind":1,"name":"session/get-access-token","url":"modules/session_get_access_token.html","classes":"tsd-kind-module"},{"id":214,"kind":4194304,"name":"AfterRefresh","url":"modules/session_get_access_token.html#afterrefresh","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"session/get-access-token"},{"id":215,"kind":65536,"name":"__type","url":"modules/session_get_access_token.html#afterrefresh.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"session/get-access-token.AfterRefresh"},{"id":216,"kind":256,"name":"AccessTokenRequest","url":"interfaces/session_get_access_token.accesstokenrequest.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"session/get-access-token"},{"id":217,"kind":1024,"name":"scopes","url":"interfaces/session_get_access_token.accesstokenrequest.html#scopes","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"session/get-access-token.AccessTokenRequest"},{"id":218,"kind":1024,"name":"refresh","url":"interfaces/session_get_access_token.accesstokenrequest.html#refresh","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"session/get-access-token.AccessTokenRequest"},{"id":219,"kind":1024,"name":"afterRefresh","url":"interfaces/session_get_access_token.accesstokenrequest.html#afterrefresh","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"session/get-access-token.AccessTokenRequest"},{"id":220,"kind":1024,"name":"authorizationParams","url":"interfaces/session_get_access_token.accesstokenrequest.html#authorizationparams","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"session/get-access-token.AccessTokenRequest"},{"id":221,"kind":256,"name":"GetAccessTokenResult","url":"interfaces/session_get_access_token.getaccesstokenresult.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"session/get-access-token"},{"id":222,"kind":1024,"name":"accessToken","url":"interfaces/session_get_access_token.getaccesstokenresult.html#accesstoken","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"session/get-access-token.GetAccessTokenResult"},{"id":223,"kind":4194304,"name":"GetAccessToken","url":"modules/session_get_access_token.html#getaccesstoken","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"session/get-access-token"},{"id":224,"kind":65536,"name":"__type","url":"modules/session_get_access_token.html#getaccesstoken.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"session/get-access-token.GetAccessToken"},{"id":225,"kind":1,"name":"session/get-session","url":"modules/session_get_session.html","classes":"tsd-kind-module"},{"id":226,"kind":4194304,"name":"GetSession","url":"modules/session_get_session.html#getsession","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"session/get-session"},{"id":227,"kind":65536,"name":"__type","url":"modules/session_get_session.html#getsession.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"session/get-session.GetSession"},{"id":228,"kind":1,"name":"session","url":"modules/session.html","classes":"tsd-kind-module"},{"id":229,"kind":1,"name":"session/session","url":"modules/session_session.html","classes":"tsd-kind-module"},{"id":230,"kind":256,"name":"Claims","url":"interfaces/session_session.claims.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"session/session"},{"id":231,"kind":128,"name":"default","url":"classes/session_session.default.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"session/session"},{"id":232,"kind":512,"name":"constructor","url":"classes/session_session.default.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"session/session.default"},{"id":233,"kind":1024,"name":"user","url":"classes/session_session.default.html#user","classes":"tsd-kind-property tsd-parent-kind-class","parent":"session/session.default"},{"id":234,"kind":1024,"name":"idToken","url":"classes/session_session.default.html#idtoken","classes":"tsd-kind-property tsd-parent-kind-class","parent":"session/session.default"},{"id":235,"kind":1024,"name":"accessToken","url":"classes/session_session.default.html#accesstoken","classes":"tsd-kind-property tsd-parent-kind-class","parent":"session/session.default"},{"id":236,"kind":1024,"name":"accessTokenScope","url":"classes/session_session.default.html#accesstokenscope","classes":"tsd-kind-property tsd-parent-kind-class","parent":"session/session.default"},{"id":237,"kind":1024,"name":"accessTokenExpiresAt","url":"classes/session_session.default.html#accesstokenexpiresat","classes":"tsd-kind-property tsd-parent-kind-class","parent":"session/session.default"},{"id":238,"kind":1024,"name":"refreshToken","url":"classes/session_session.default.html#refreshtoken","classes":"tsd-kind-property tsd-parent-kind-class","parent":"session/session.default"},{"id":239,"kind":1,"name":"session/update-session","url":"modules/session_update_session.html","classes":"tsd-kind-module"},{"id":240,"kind":4194304,"name":"UpdateSession","url":"modules/session_update_session.html#updatesession","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"session/update-session"},{"id":241,"kind":65536,"name":"__type","url":"modules/session_update_session.html#updatesession.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"session/update-session.UpdateSession"},{"id":242,"kind":1,"name":"utils/errors","url":"modules/utils_errors.html","classes":"tsd-kind-module"},{"id":243,"kind":128,"name":"AuthError","url":"classes/utils_errors.autherror.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"utils/errors"},{"id":244,"kind":512,"name":"constructor","url":"classes/utils_errors.autherror.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"utils/errors.AuthError"},{"id":245,"kind":1024,"name":"code","url":"classes/utils_errors.autherror.html#code","classes":"tsd-kind-property tsd-parent-kind-class","parent":"utils/errors.AuthError"},{"id":246,"kind":1024,"name":"name","url":"classes/utils_errors.autherror.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"utils/errors.AuthError"},{"id":247,"kind":1024,"name":"cause","url":"classes/utils_errors.autherror.html#cause","classes":"tsd-kind-property tsd-parent-kind-class","parent":"utils/errors.AuthError"},{"id":248,"kind":1024,"name":"status","url":"classes/utils_errors.autherror.html#status","classes":"tsd-kind-property tsd-parent-kind-class","parent":"utils/errors.AuthError"},{"id":249,"kind":4,"name":"AccessTokenErrorCode","url":"enums/utils_errors.accesstokenerrorcode.html","classes":"tsd-kind-enum tsd-parent-kind-module","parent":"utils/errors"},{"id":250,"kind":16,"name":"MISSING_SESSION","url":"enums/utils_errors.accesstokenerrorcode.html#missing_session","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"utils/errors.AccessTokenErrorCode"},{"id":251,"kind":16,"name":"MISSING_ACCESS_TOKEN","url":"enums/utils_errors.accesstokenerrorcode.html#missing_access_token","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"utils/errors.AccessTokenErrorCode"},{"id":252,"kind":16,"name":"MISSING_REFRESH_TOKEN","url":"enums/utils_errors.accesstokenerrorcode.html#missing_refresh_token","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"utils/errors.AccessTokenErrorCode"},{"id":253,"kind":16,"name":"EXPIRED_ACCESS_TOKEN","url":"enums/utils_errors.accesstokenerrorcode.html#expired_access_token","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"utils/errors.AccessTokenErrorCode"},{"id":254,"kind":16,"name":"INSUFFICIENT_SCOPE","url":"enums/utils_errors.accesstokenerrorcode.html#insufficient_scope","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"utils/errors.AccessTokenErrorCode"},{"id":255,"kind":16,"name":"FAILED_REFRESH_GRANT","url":"enums/utils_errors.accesstokenerrorcode.html#failed_refresh_grant","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"utils/errors.AccessTokenErrorCode"},{"id":256,"kind":128,"name":"AccessTokenError","url":"classes/utils_errors.accesstokenerror.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"utils/errors"},{"id":257,"kind":512,"name":"constructor","url":"classes/utils_errors.accesstokenerror.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"utils/errors.AccessTokenError"},{"id":258,"kind":1024,"name":"code","url":"classes/utils_errors.accesstokenerror.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"utils/errors.AccessTokenError"},{"id":259,"kind":1024,"name":"name","url":"classes/utils_errors.accesstokenerror.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"utils/errors.AccessTokenError"},{"id":260,"kind":1024,"name":"cause","url":"classes/utils_errors.accesstokenerror.html#cause","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"utils/errors.AccessTokenError"},{"id":261,"kind":1024,"name":"status","url":"classes/utils_errors.accesstokenerror.html#status","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"utils/errors.AccessTokenError"},{"id":262,"kind":128,"name":"HandlerError","url":"classes/utils_errors.handlererror.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"utils/errors"},{"id":263,"kind":512,"name":"constructor","url":"classes/utils_errors.handlererror.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"utils/errors.HandlerError"},{"id":264,"kind":1024,"name":"code","url":"classes/utils_errors.handlererror.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"utils/errors.HandlerError"},{"id":265,"kind":1024,"name":"name","url":"classes/utils_errors.handlererror.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"utils/errors.HandlerError"},{"id":266,"kind":1024,"name":"cause","url":"classes/utils_errors.handlererror.html#cause","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"utils/errors.HandlerError"},{"id":267,"kind":1024,"name":"status","url":"classes/utils_errors.handlererror.html#status","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"utils/errors.HandlerError"},{"id":268,"kind":128,"name":"CallbackHandlerError","url":"classes/utils_errors.callbackhandlererror.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"utils/errors"},{"id":269,"kind":1024,"name":"code","url":"classes/utils_errors.callbackhandlererror.html#code-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"utils/errors.CallbackHandlerError"},{"id":270,"kind":512,"name":"constructor","url":"classes/utils_errors.callbackhandlererror.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"utils/errors.CallbackHandlerError"},{"id":271,"kind":1024,"name":"code","url":"classes/utils_errors.callbackhandlererror.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"utils/errors.CallbackHandlerError"},{"id":272,"kind":1024,"name":"name","url":"classes/utils_errors.callbackhandlererror.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"utils/errors.CallbackHandlerError"},{"id":273,"kind":1024,"name":"cause","url":"classes/utils_errors.callbackhandlererror.html#cause","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"utils/errors.CallbackHandlerError"},{"id":274,"kind":1024,"name":"status","url":"classes/utils_errors.callbackhandlererror.html#status","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"utils/errors.CallbackHandlerError"},{"id":275,"kind":128,"name":"LoginHandlerError","url":"classes/utils_errors.loginhandlererror.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"utils/errors"},{"id":276,"kind":1024,"name":"code","url":"classes/utils_errors.loginhandlererror.html#code-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"utils/errors.LoginHandlerError"},{"id":277,"kind":512,"name":"constructor","url":"classes/utils_errors.loginhandlererror.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"utils/errors.LoginHandlerError"},{"id":278,"kind":1024,"name":"code","url":"classes/utils_errors.loginhandlererror.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"utils/errors.LoginHandlerError"},{"id":279,"kind":1024,"name":"name","url":"classes/utils_errors.loginhandlererror.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"utils/errors.LoginHandlerError"},{"id":280,"kind":1024,"name":"cause","url":"classes/utils_errors.loginhandlererror.html#cause","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"utils/errors.LoginHandlerError"},{"id":281,"kind":1024,"name":"status","url":"classes/utils_errors.loginhandlererror.html#status","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"utils/errors.LoginHandlerError"},{"id":282,"kind":128,"name":"LogoutHandlerError","url":"classes/utils_errors.logouthandlererror.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"utils/errors"},{"id":283,"kind":1024,"name":"code","url":"classes/utils_errors.logouthandlererror.html#code-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"utils/errors.LogoutHandlerError"},{"id":284,"kind":512,"name":"constructor","url":"classes/utils_errors.logouthandlererror.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"utils/errors.LogoutHandlerError"},{"id":285,"kind":1024,"name":"code","url":"classes/utils_errors.logouthandlererror.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"utils/errors.LogoutHandlerError"},{"id":286,"kind":1024,"name":"name","url":"classes/utils_errors.logouthandlererror.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"utils/errors.LogoutHandlerError"},{"id":287,"kind":1024,"name":"cause","url":"classes/utils_errors.logouthandlererror.html#cause","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"utils/errors.LogoutHandlerError"},{"id":288,"kind":1024,"name":"status","url":"classes/utils_errors.logouthandlererror.html#status","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"utils/errors.LogoutHandlerError"},{"id":289,"kind":128,"name":"ProfileHandlerError","url":"classes/utils_errors.profilehandlererror.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"utils/errors"},{"id":290,"kind":1024,"name":"code","url":"classes/utils_errors.profilehandlererror.html#code-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"utils/errors.ProfileHandlerError"},{"id":291,"kind":512,"name":"constructor","url":"classes/utils_errors.profilehandlererror.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"utils/errors.ProfileHandlerError"},{"id":292,"kind":1024,"name":"code","url":"classes/utils_errors.profilehandlererror.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"utils/errors.ProfileHandlerError"},{"id":293,"kind":1024,"name":"name","url":"classes/utils_errors.profilehandlererror.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"utils/errors.ProfileHandlerError"},{"id":294,"kind":1024,"name":"cause","url":"classes/utils_errors.profilehandlererror.html#cause","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"utils/errors.ProfileHandlerError"},{"id":295,"kind":1024,"name":"status","url":"classes/utils_errors.profilehandlererror.html#status","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"utils/errors.ProfileHandlerError"},{"id":296,"kind":1,"name":"version","url":"modules/version.html","classes":"tsd-kind-module"},{"id":297,"kind":1024,"name":"default","url":"modules/version.html#default","classes":"tsd-kind-property tsd-parent-kind-module","parent":"version"},{"id":298,"kind":16777216,"name":"UserProvider","url":"modules/client.html#userprovider","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"client"},{"id":299,"kind":16777216,"name":"UserProviderProps","url":"modules/client.html#userproviderprops","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"client"},{"id":300,"kind":16777216,"name":"UserProfile","url":"modules/client.html#userprofile","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"client"},{"id":301,"kind":16777216,"name":"RequestError","url":"modules/client.html#requesterror","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"client"},{"id":302,"kind":16777216,"name":"useUser","url":"modules/client.html#useuser","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"client"},{"id":303,"kind":16777216,"name":"WithPageAuthRequired","url":"modules/client.html#withpageauthrequired","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"client"},{"id":304,"kind":16777216,"name":"WithPageAuthRequiredOptions","url":"modules/client.html#withpageauthrequiredoptions","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"client"},{"id":305,"kind":16777216,"name":"WithMiddlewareAuthRequired","url":"modules/edge.html#withmiddlewareauthrequired","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"edge"},{"id":306,"kind":16777216,"name":"HandleCallback","url":"modules/handlers.html#handlecallback","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"handlers"},{"id":307,"kind":16777216,"name":"CallbackOptions","url":"modules/handlers.html#callbackoptions","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"handlers"},{"id":308,"kind":16777216,"name":"AfterCallback","url":"modules/handlers.html#aftercallback","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"handlers"},{"id":309,"kind":16777216,"name":"HandleLogin","url":"modules/handlers.html#handlelogin","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"handlers"},{"id":310,"kind":16777216,"name":"LoginOptions","url":"modules/handlers.html#loginoptions","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"handlers"},{"id":311,"kind":16777216,"name":"GetLoginState","url":"modules/handlers.html#getloginstate","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"handlers"},{"id":312,"kind":16777216,"name":"HandleLogout","url":"modules/handlers.html#handlelogout","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"handlers"},{"id":313,"kind":16777216,"name":"LogoutOptions","url":"modules/handlers.html#logoutoptions","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"handlers"},{"id":314,"kind":16777216,"name":"HandleProfile","url":"modules/handlers.html#handleprofile","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"handlers"},{"id":315,"kind":16777216,"name":"ProfileOptions","url":"modules/handlers.html#profileoptions","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"handlers"},{"id":316,"kind":16777216,"name":"AfterRefetch","url":"modules/handlers.html#afterrefetch","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"handlers"},{"id":317,"kind":16777216,"name":"Handlers","url":"modules/handlers.html#handlers-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"handlers"},{"id":318,"kind":16777216,"name":"HandleAuth","url":"modules/handlers.html#handleauth","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"handlers"},{"id":319,"kind":16777216,"name":"OnError","url":"modules/handlers.html#onerror","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"handlers"},{"id":320,"kind":16777216,"name":"WithApiAuthRequired","url":"modules/helpers.html#withapiauthrequired","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":321,"kind":16777216,"name":"GetServerSidePropsResultWithSession","url":"modules/helpers.html#getserversidepropsresultwithsession","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":322,"kind":16777216,"name":"WithPageAuthRequired","url":"modules/helpers.html#withpageauthrequired","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":323,"kind":16777216,"name":"WithPageAuthRequiredOptions","url":"modules/helpers.html#withpageauthrequiredoptions","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":324,"kind":16777216,"name":"PageRoute","url":"modules/helpers.html#pageroute","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":325,"kind":16777216,"name":"AuthError","url":"modules/index.html#autherror","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"index"},{"id":326,"kind":16777216,"name":"AccessTokenErrorCode","url":"modules/index.html#accesstokenerrorcode","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"index"},{"id":327,"kind":16777216,"name":"AccessTokenError","url":"modules/index.html#accesstokenerror","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"index"},{"id":328,"kind":16777216,"name":"HandlerError","url":"modules/index.html#handlererror","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"index"},{"id":329,"kind":16777216,"name":"CallbackHandlerError","url":"modules/index.html#callbackhandlererror","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"index"},{"id":330,"kind":16777216,"name":"LoginHandlerError","url":"modules/index.html#loginhandlererror","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"index"},{"id":331,"kind":16777216,"name":"LogoutHandlerError","url":"modules/index.html#logouthandlererror","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"index"},{"id":332,"kind":16777216,"name":"ProfileHandlerError","url":"modules/index.html#profilehandlererror","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"index"},{"id":333,"kind":128,"name":"MissingStateCookieError","url":"classes/index.missingstatecookieerror.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"index"},{"id":334,"kind":1024,"name":"message","url":"classes/index.missingstatecookieerror.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"index.MissingStateCookieError"},{"id":335,"kind":512,"name":"constructor","url":"classes/index.missingstatecookieerror.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"index.MissingStateCookieError"},{"id":336,"kind":128,"name":"MissingStateParamError","url":"classes/index.missingstateparamerror.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"index"},{"id":337,"kind":1024,"name":"message","url":"classes/index.missingstateparamerror.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"index.MissingStateParamError"},{"id":338,"kind":512,"name":"constructor","url":"classes/index.missingstateparamerror.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"index.MissingStateParamError"},{"id":339,"kind":128,"name":"IdentityProviderError","url":"classes/index.identityprovidererror.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"index"},{"id":340,"kind":512,"name":"constructor","url":"classes/index.identityprovidererror.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"index.IdentityProviderError"},{"id":341,"kind":1024,"name":"errorDescription","url":"classes/index.identityprovidererror.html#errordescription","classes":"tsd-kind-property tsd-parent-kind-class","parent":"index.IdentityProviderError"},{"id":342,"kind":1024,"name":"error","url":"classes/index.identityprovidererror.html#error","classes":"tsd-kind-property tsd-parent-kind-class","parent":"index.IdentityProviderError"},{"id":343,"kind":128,"name":"ApplicationError","url":"classes/index.applicationerror.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"index"},{"id":344,"kind":512,"name":"constructor","url":"classes/index.applicationerror.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"index.ApplicationError"},{"id":345,"kind":16777216,"name":"ConfigParameters","url":"modules/index.html#configparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"index"},{"id":346,"kind":16777216,"name":"HandleAuth","url":"modules/index.html#handleauth","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"index"},{"id":347,"kind":16777216,"name":"HandleLogin","url":"modules/index.html#handlelogin","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"index"},{"id":348,"kind":16777216,"name":"HandleProfile","url":"modules/index.html#handleprofile","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"index"},{"id":349,"kind":16777216,"name":"HandleLogout","url":"modules/index.html#handlelogout","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"index"},{"id":350,"kind":16777216,"name":"HandleCallback","url":"modules/index.html#handlecallback","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"index"},{"id":351,"kind":16777216,"name":"ProfileOptions","url":"modules/index.html#profileoptions","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"index"},{"id":352,"kind":16777216,"name":"Handlers","url":"modules/index.html#handlers","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"index"},{"id":353,"kind":16777216,"name":"GetServerSidePropsResultWithSession","url":"modules/index.html#getserversidepropsresultwithsession","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"index"},{"id":354,"kind":16777216,"name":"WithPageAuthRequiredOptions","url":"modules/index.html#withpageauthrequiredoptions","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"index"},{"id":355,"kind":16777216,"name":"PageRoute","url":"modules/index.html#pageroute","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"index"},{"id":356,"kind":16777216,"name":"WithApiAuthRequired","url":"modules/index.html#withapiauthrequired","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"index"},{"id":357,"kind":16777216,"name":"WithPageAuthRequired","url":"modules/index.html#withpageauthrequired","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"index"},{"id":358,"kind":128,"name":"SessionCache","url":"classes/index.sessioncache.html","classes":"tsd-kind-class tsd-parent-kind-module tsd-has-type-parameter","parent":"index"},{"id":359,"kind":512,"name":"constructor","url":"classes/index.sessioncache.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-has-type-parameter","parent":"index.SessionCache"},{"id":360,"kind":2048,"name":"save","url":"classes/index.sessioncache.html#save","classes":"tsd-kind-method tsd-parent-kind-class","parent":"index.SessionCache"},{"id":361,"kind":2048,"name":"create","url":"classes/index.sessioncache.html#create","classes":"tsd-kind-method tsd-parent-kind-class","parent":"index.SessionCache"},{"id":362,"kind":2048,"name":"delete","url":"classes/index.sessioncache.html#delete","classes":"tsd-kind-method tsd-parent-kind-class","parent":"index.SessionCache"},{"id":363,"kind":2048,"name":"isAuthenticated","url":"classes/index.sessioncache.html#isauthenticated","classes":"tsd-kind-method tsd-parent-kind-class","parent":"index.SessionCache"},{"id":364,"kind":2048,"name":"getIdToken","url":"classes/index.sessioncache.html#getidtoken","classes":"tsd-kind-method tsd-parent-kind-class","parent":"index.SessionCache"},{"id":365,"kind":2048,"name":"set","url":"classes/index.sessioncache.html#set","classes":"tsd-kind-method tsd-parent-kind-class","parent":"index.SessionCache"},{"id":366,"kind":2048,"name":"get","url":"classes/index.sessioncache.html#get","classes":"tsd-kind-method tsd-parent-kind-class","parent":"index.SessionCache"},{"id":367,"kind":2048,"name":"fromTokenSet","url":"classes/index.sessioncache.html#fromtokenset","classes":"tsd-kind-method tsd-parent-kind-class","parent":"index.SessionCache"},{"id":368,"kind":16777216,"name":"GetSession","url":"modules/index.html#getsession","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"index"},{"id":369,"kind":16777216,"name":"UpdateSession","url":"modules/index.html#updatesession","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"index"},{"id":370,"kind":16777216,"name":"GetAccessToken","url":"modules/index.html#getaccesstoken","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"index"},{"id":371,"kind":16777216,"name":"Session","url":"modules/index.html#session","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"index"},{"id":372,"kind":16777216,"name":"Claims","url":"modules/index.html#claims","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"index"},{"id":373,"kind":16777216,"name":"AccessTokenRequest","url":"modules/index.html#accesstokenrequest","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"index"},{"id":374,"kind":16777216,"name":"GetAccessTokenResult","url":"modules/index.html#getaccesstokenresult","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"index"},{"id":375,"kind":16777216,"name":"CallbackOptions","url":"modules/index.html#callbackoptions","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"index"},{"id":376,"kind":16777216,"name":"AfterCallback","url":"modules/index.html#aftercallback","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"index"},{"id":377,"kind":16777216,"name":"AfterRefetch","url":"modules/index.html#afterrefetch","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"index"},{"id":378,"kind":16777216,"name":"LoginOptions","url":"modules/index.html#loginoptions","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"index"},{"id":379,"kind":16777216,"name":"LogoutOptions","url":"modules/index.html#logoutoptions","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"index"},{"id":380,"kind":16777216,"name":"GetLoginState","url":"modules/index.html#getloginstate","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"index"},{"id":381,"kind":16777216,"name":"OnError","url":"modules/index.html#onerror","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"index"},{"id":382,"kind":16777216,"name":"Session","url":"modules/session.html#session-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"session"},{"id":383,"kind":16777216,"name":"Claims","url":"modules/session.html#claims","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"session"},{"id":384,"kind":16777216,"name":"GetSession","url":"modules/session.html#getsession","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"session"},{"id":385,"kind":16777216,"name":"GetAccessToken","url":"modules/session.html#getaccesstoken","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"session"},{"id":386,"kind":16777216,"name":"AccessTokenRequest","url":"modules/session.html#accesstokenrequest","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"session"},{"id":387,"kind":16777216,"name":"GetAccessTokenResult","url":"modules/session.html#getaccesstokenresult","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"session"},{"id":388,"kind":16777216,"name":"SessionCache","url":"modules/session.html#sessioncache","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"session"},{"id":389,"kind":16777216,"name":"UpdateSession","url":"modules/session.html#updatesession","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"session"}],"index":{"version":"2.3.9","fields":["name","parent"],"fieldVectors":[["name/0",[0,38.952]],["parent/0",[]],["name/1",[1,19.576,2,25.041]],["parent/1",[]],["name/2",[3,51.403]],["parent/2",[1,2.158,2,2.76]],["name/3",[4,56.6]],["parent/3",[1,2.158,5,3.069]],["name/4",[6,56.6]],["parent/4",[1,2.158,5,3.069]],["name/5",[7,37.82]],["parent/5",[1,2.158,5,3.069]],["name/6",[8,56.6]],["parent/6",[1,2.158,5,3.069]],["name/7",[9,56.6]],["parent/7",[1,2.158,5,3.069]],["name/8",[10,56.6]],["parent/8",[1,2.158,5,3.069]],["name/9",[11,56.6]],["parent/9",[1,2.158,5,3.069]],["name/10",[12,56.6]],["parent/10",[1,2.158,5,3.069]],["name/11",[13,56.6]],["parent/11",[1,2.158,2,2.76]],["name/12",[14,22.578]],["parent/12",[1,2.158,15,4.46]],["name/13",[2,35.028]],["parent/13",[1,2.158,16,3.418]],["name/14",[17,51.403]],["parent/14",[1,2.158,16,3.418]],["name/15",[18,56.6]],["parent/15",[1,2.158,16,3.418]],["name/16",[19,56.6]],["parent/16",[1,2.158,16,3.418]],["name/17",[14,22.578]],["parent/17",[1,2.158,16,3.418]],["name/18",[20,51.403]],["parent/18",[1,2.158,2,2.76]],["name/19",[21,33.518]],["parent/19",[1,2.158,22,4.05]],["name/20",[23,38.952]],["parent/20",[1,2.158,22,4.05]],["name/21",[24,51.403]],["parent/21",[1,2.158,2,2.76]],["name/22",[25,51.403]],["parent/22",[1,2.158,2,2.76]],["name/23",[26,51.403]],["parent/23",[1,2.158,2,2.76]],["name/24",[14,22.578]],["parent/24",[1,2.158,27,4.46]],["name/25",[28,47.979]],["parent/25",[1,2.158,2,2.76]],["name/26",[14,22.578]],["parent/26",[1,2.158,2,2.76]],["name/27",[29,16.334,30,13.436,31,12.296,32,15.591]],["parent/27",[]],["name/28",[33,43.381]],["parent/28",[29,1.852,30,1.523,31,1.394,32,1.768]],["name/29",[34,45.422]],["parent/29",[29,1.852,30,1.523,31,1.394,35,2.152]],["name/30",[36,56.6]],["parent/30",[29,1.852,30,1.523,31,1.394,35,2.152]],["name/31",[14,22.578]],["parent/31",[29,1.852,30,1.523,31,1.394,35,2.152]],["name/32",[37,45.422]],["parent/32",[29,1.852,30,1.523,31,1.394,35,2.152]],["name/33",[14,22.578]],["parent/33",[29,1.852,30,1.523,31,1.394,35,2.152]],["name/34",[38,56.6]],["parent/34",[29,1.852,30,1.523,31,1.394,32,1.768]],["name/35",[2,35.028]],["parent/35",[29,1.852,30,1.523,31,1.394,39,2.922]],["name/36",[40,40.225]],["parent/36",[29,1.852,30,1.523,31,1.394,32,1.768]],["name/37",[14,22.578]],["parent/37",[29,1.852,30,1.523,31,1.394,41,2.654]],["name/38",[42,40.225]],["parent/38",[]],["name/39",[43,56.6]],["parent/39",[42,4.301]],["name/40",[44,56.6]],["parent/40",[45,3.262]],["name/41",[46,32.204]],["parent/41",[45,3.262]],["name/42",[47,56.6]],["parent/42",[45,3.262]],["name/43",[48,43.381]],["parent/43",[45,3.262]],["name/44",[49,56.6]],["parent/44",[45,3.262]],["name/45",[50,56.6]],["parent/45",[45,3.262]],["name/46",[51,56.6]],["parent/46",[45,3.262]],["name/47",[52,56.6]],["parent/47",[45,3.262]],["name/48",[53,56.6]],["parent/48",[45,3.262]],["name/49",[54,56.6]],["parent/49",[45,3.262]],["name/50",[55,43.381]],["parent/50",[45,3.262]],["name/51",[14,22.578]],["parent/51",[45,3.262]],["name/52",[56,51.403]],["parent/52",[45,3.262]],["name/53",[57,56.6]],["parent/53",[45,3.262]],["name/54",[58,56.6]],["parent/54",[45,3.262]],["name/55",[59,56.6]],["parent/55",[45,3.262]],["name/56",[60,56.6]],["parent/56",[45,3.262]],["name/57",[61,51.403]],["parent/57",[45,3.262]],["name/58",[14,22.578]],["parent/58",[45,3.262]],["name/59",[62,56.6]],["parent/59",[63,5.497]],["name/60",[64,51.403]],["parent/60",[63,5.497]],["name/61",[65,56.6]],["parent/61",[42,4.301]],["name/62",[7,37.82]],["parent/62",[66,4.457]],["name/63",[67,56.6]],["parent/63",[66,4.457]],["name/64",[68,56.6]],["parent/64",[66,4.457]],["name/65",[69,56.6]],["parent/65",[66,4.457]],["name/66",[70,56.6]],["parent/66",[66,4.457]],["name/67",[71,56.6]],["parent/67",[66,4.457]],["name/68",[72,56.6]],["parent/68",[42,4.301]],["name/69",[73,56.6]],["parent/69",[74,4.457]],["name/70",[75,56.6]],["parent/70",[74,4.457]],["name/71",[76,56.6]],["parent/71",[74,4.457]],["name/72",[77,56.6]],["parent/72",[74,4.457]],["name/73",[78,56.6]],["parent/73",[74,4.457]],["name/74",[79,56.6]],["parent/74",[74,4.457]],["name/75",[80,56.6]],["parent/75",[42,4.301]],["name/76",[81,51.403]],["parent/76",[82,5.131]],["name/77",[83,51.403]],["parent/77",[82,5.131]],["name/78",[84,51.403]],["parent/78",[82,5.131]],["name/79",[85,56.6]],["parent/79",[42,4.301]],["name/80",[86,47.979]],["parent/80",[87,4.857]],["name/81",[61,51.403]],["parent/81",[87,4.857]],["name/82",[14,22.578]],["parent/82",[87,4.857]],["name/83",[64,51.403]],["parent/83",[88,5.131]],["name/84",[89,56.6]],["parent/84",[88,5.131]],["name/85",[90,56.6]],["parent/85",[88,5.131]],["name/86",[56,51.403]],["parent/86",[87,4.857]],["name/87",[91,51.403]],["parent/87",[42,4.301]],["name/88",[92,38.952]],["parent/88",[]],["name/89",[93,56.6]],["parent/89",[92,4.165]],["name/90",[14,22.578]],["parent/90",[94,6.052]],["name/91",[95,45.422]],["parent/91",[96,5.497]],["name/92",[97,38.952]],["parent/92",[96,5.497]],["name/93",[97,38.952]],["parent/93",[92,4.165]],["name/94",[14,22.578]],["parent/94",[98,6.052]],["name/95",[99,45.422]],["parent/95",[92,4.165]],["name/96",[14,22.578]],["parent/96",[100,6.052]],["name/97",[99,45.422]],["parent/97",[92,4.165]],["name/98",[97,38.952]],["parent/98",[92,4.165]],["name/99",[95,45.422]],["parent/99",[92,4.165]],["name/100",[101,45.422]],["parent/100",[]],["name/101",[102,31.04]],["parent/101",[101,4.857]],["name/102",[103,43.381]],["parent/102",[101,4.857]],["name/103",[14,22.578]],["parent/103",[104,6.052]],["name/104",[37,45.422]],["parent/104",[101,4.857]],["name/105",[14,22.578]],["parent/105",[105,6.052]],["name/106",[106,41.681]],["parent/106",[]],["name/107",[107,45.422]],["parent/107",[106,4.457]],["name/108",[14,22.578]],["parent/108",[108,6.052]],["name/109",[109,47.979]],["parent/109",[106,4.457]],["name/110",[107,45.422]],["parent/110",[110,4.857]],["name/111",[111,56.6]],["parent/111",[110,4.857]],["name/112",[86,47.979]],["parent/112",[110,4.857]],["name/113",[48,43.381]],["parent/113",[110,4.857]],["name/114",[112,56.6]],["parent/114",[106,4.457]],["name/115",[14,22.578]],["parent/115",[113,6.052]],["name/116",[114,43.381]],["parent/116",[106,4.457]],["name/117",[14,22.578]],["parent/117",[115,6.052]],["name/118",[116,56.6]],["parent/118",[106,4.457]],["name/119",[14,22.578]],["parent/119",[117,6.052]],["name/120",[102,31.04]],["parent/120",[]],["name/121",[118,40.225]],["parent/121",[]],["name/122",[55,43.381]],["parent/122",[118,4.301]],["name/123",[14,22.578]],["parent/123",[119,6.052]],["name/124",[48,43.381]],["parent/124",[118,4.301]],["name/125",[120,56.6]],["parent/125",[121,4.165]],["name/126",[122,56.6]],["parent/126",[121,4.165]],["name/127",[123,56.6]],["parent/127",[121,4.165]],["name/128",[86,47.979]],["parent/128",[121,4.165]],["name/129",[124,56.6]],["parent/129",[121,4.165]],["name/130",[81,51.403]],["parent/130",[121,4.165]],["name/131",[83,51.403]],["parent/131",[121,4.165]],["name/132",[84,51.403]],["parent/132",[121,4.165]],["name/133",[125,47.979]],["parent/133",[118,4.301]],["name/134",[48,43.381]],["parent/134",[126,5.131]],["name/135",[34,45.422]],["parent/135",[126,5.131]],["name/136",[55,43.381]],["parent/136",[126,5.131]],["name/137",[127,56.6]],["parent/137",[118,4.301]],["name/138",[14,22.578]],["parent/138",[128,6.052]],["name/139",[129,43.381]],["parent/139",[118,4.301]],["name/140",[14,22.578]],["parent/140",[130,6.052]],["name/141",[131,56.6]],["parent/141",[118,4.301]],["name/142",[14,22.578]],["parent/142",[132,6.052]],["name/143",[133,43.381]],["parent/143",[]],["name/144",[134,47.979]],["parent/144",[133,4.639]],["name/145",[34,45.422]],["parent/145",[135,5.131]],["name/146",[136,56.6]],["parent/146",[135,5.131]],["name/147",[14,22.578]],["parent/147",[135,5.131]],["name/148",[137,56.6]],["parent/148",[133,4.639]],["name/149",[14,22.578]],["parent/149",[138,6.052]],["name/150",[139,43.381]],["parent/150",[133,4.639]],["name/151",[14,22.578]],["parent/151",[140,6.052]],["name/152",[141,56.6]],["parent/152",[133,4.639]],["name/153",[14,22.578]],["parent/153",[142,6.052]],["name/154",[143,41.681]],["parent/154",[]],["name/155",[144,45.422]],["parent/155",[143,4.457]],["name/156",[14,22.578]],["parent/156",[145,6.052]],["name/157",[146,47.979]],["parent/157",[143,4.457]],["name/158",[14,22.578]],["parent/158",[147,6.052]],["name/159",[148,56.6]],["parent/159",[149,5.497]],["name/160",[144,45.422]],["parent/160",[149,5.497]],["name/161",[150,56.6]],["parent/161",[143,4.457]],["name/162",[14,22.578]],["parent/162",[151,6.052]],["name/163",[152,43.381]],["parent/163",[143,4.457]],["name/164",[14,22.578]],["parent/164",[153,6.052]],["name/165",[154,56.6]],["parent/165",[143,4.457]],["name/166",[14,22.578]],["parent/166",[155,6.052]],["name/167",[156,41.681]],["parent/167",[]],["name/168",[157,47.979]],["parent/168",[]],["name/169",[158,56.6]],["parent/169",[157,5.131]],["name/170",[159,56.6]],["parent/170",[157,5.131]],["name/171",[31,12.296,32,15.591,160,14.662,161,21.844]],["parent/171",[]],["name/172",[162,43.381]],["parent/172",[31,1.394,32,1.768,160,1.662,161,2.477]],["name/173",[14,22.578]],["parent/173",[31,1.394,160,1.662,161,2.477,163,2.922]],["name/174",[31,12.296,32,15.591,160,14.662,164,21.844]],["parent/174",[]],["name/175",[95,45.422]],["parent/175",[31,1.394,32,1.768,160,1.662,164,2.477]],["name/176",[14,22.578]],["parent/176",[31,1.394,160,1.662,164,2.477,165,2.922]],["name/177",[30,13.436,31,12.296,32,15.591,160,14.662]],["parent/177",[]],["name/178",[166,47.979]],["parent/178",[30,1.523,31,1.394,32,1.768,160,1.662]],["name/179",[167,47.979]],["parent/179",[30,1.523,31,1.394,32,1.768,160,1.662]],["name/180",[14,22.578]],["parent/180",[30,1.523,31,1.394,160,1.662,168,2.922]],["name/181",[33,43.381]],["parent/181",[30,1.523,31,1.394,32,1.768,160,1.662]],["name/182",[14,22.578]],["parent/182",[30,1.523,31,1.394,35,2.152,160,1.662]],["name/183",[169,56.6]],["parent/183",[30,1.523,31,1.394,160,1.662,170,2.654]],["name/184",[34,45.422]],["parent/184",[30,1.523,31,1.394,160,1.662,170,2.654]],["name/185",[40,40.225]],["parent/185",[30,1.523,31,1.394,32,1.768,160,1.662]],["name/186",[14,22.578]],["parent/186",[30,1.523,31,1.394,41,2.654,160,1.662]],["name/187",[171,19.863]],["parent/187",[]],["name/188",[172,56.6]],["parent/188",[171,2.124]],["name/189",[97,38.952]],["parent/189",[173,3.935]],["name/190",[174,43.381]],["parent/190",[173,3.935]],["name/191",[175,43.381]],["parent/191",[173,3.935]],["name/192",[129,43.381]],["parent/192",[173,3.935]],["name/193",[114,43.381]],["parent/193",[173,3.935]],["name/194",[139,43.381]],["parent/194",[173,3.935]],["name/195",[152,43.381]],["parent/195",[173,3.935]],["name/196",[162,43.381]],["parent/196",[173,3.935]],["name/197",[40,40.225]],["parent/197",[173,3.935]],["name/198",[103,43.381]],["parent/198",[173,3.935]],["name/199",[99,45.422]],["parent/199",[171,2.124]],["name/200",[14,22.578]],["parent/200",[176,6.052]],["name/201",[99,45.422]],["parent/201",[171,2.124]],["name/202",[177,56.6]],["parent/202",[171,2.124]],["name/203",[97,38.952]],["parent/203",[171,2.124]],["name/204",[174,43.381]],["parent/204",[171,2.124]],["name/205",[175,43.381]],["parent/205",[171,2.124]],["name/206",[162,43.381]],["parent/206",[171,2.124]],["name/207",[40,40.225]],["parent/207",[171,2.124]],["name/208",[129,43.381]],["parent/208",[171,2.124]],["name/209",[139,43.381]],["parent/209",[171,2.124]],["name/210",[114,43.381]],["parent/210",[171,2.124]],["name/211",[152,43.381]],["parent/211",[171,2.124]],["name/212",[103,43.381]],["parent/212",[171,2.124]],["name/213",[178,18.268,179,19.486,180,24.132]],["parent/213",[]],["name/214",[181,51.403]],["parent/214",[178,2.048,179,2.185,180,2.706]],["name/215",[14,22.578]],["parent/215",[178,2.048,179,2.185,182,3.531]],["name/216",[183,47.979]],["parent/216",[178,2.048,179,2.185,180,2.706]],["name/217",[184,56.6]],["parent/217",[178,2.048,179,2.185,185,2.833]],["name/218",[186,56.6]],["parent/218",[178,2.048,179,2.185,185,2.833]],["name/219",[181,51.403]],["parent/219",[178,2.048,179,2.185,185,2.833]],["name/220",[48,43.381]],["parent/220",[178,2.048,179,2.185,185,2.833]],["name/221",[187,47.979]],["parent/221",[178,2.048,179,2.185,180,2.706]],["name/222",[188,51.403]],["parent/222",[178,2.048,179,2.185,189,3.531]],["name/223",[175,43.381]],["parent/223",[178,2.048,179,2.185,180,2.706]],["name/224",[14,22.578]],["parent/224",[178,2.048,179,2.185,190,3.531]],["name/225",[46,23.022,178,23.477]],["parent/225",[]],["name/226",[97,38.952]],["parent/226",[46,2.537,178,2.588]],["name/227",[14,22.578]],["parent/227",[178,2.588,191,4.46]],["name/228",[46,32.204]],["parent/228",[]],["name/229",[192,47.979]],["parent/229",[]],["name/230",[193,47.979]],["parent/230",[192,5.131]],["name/231",[28,47.979]],["parent/231",[192,5.131]],["name/232",[21,33.518]],["parent/232",[194,4.301]],["name/233",[2,35.028]],["parent/233",[194,4.301]],["name/234",[195,56.6]],["parent/234",[194,4.301]],["name/235",[188,51.403]],["parent/235",[194,4.301]],["name/236",[196,56.6]],["parent/236",[194,4.301]],["name/237",[197,56.6]],["parent/237",[194,4.301]],["name/238",[198,56.6]],["parent/238",[194,4.301]],["name/239",[46,23.022,199,34.3]],["parent/239",[]],["name/240",[174,43.381]],["parent/240",[46,2.537,199,3.78]],["name/241",[14,22.578]],["parent/241",[199,3.78,200,4.46]],["name/242",[201,37.82]],["parent/242",[]],["name/243",[202,51.403]],["parent/243",[201,4.044]],["name/244",[21,33.518]],["parent/244",[203,4.639]],["name/245",[204,35.877]],["parent/245",[203,4.639]],["name/246",[7,37.82]],["parent/246",[203,4.639]],["name/247",[205,40.225]],["parent/247",[203,4.639]],["name/248",[23,38.952]],["parent/248",[203,4.639]],["name/249",[206,51.403]],["parent/249",[201,4.044]],["name/250",[207,56.6]],["parent/250",[208,4.457]],["name/251",[209,56.6]],["parent/251",[208,4.457]],["name/252",[210,56.6]],["parent/252",[208,4.457]],["name/253",[211,56.6]],["parent/253",[208,4.457]],["name/254",[212,56.6]],["parent/254",[208,4.457]],["name/255",[213,56.6]],["parent/255",[208,4.457]],["name/256",[214,51.403]],["parent/256",[201,4.044]],["name/257",[21,33.518]],["parent/257",[215,4.639]],["name/258",[204,35.877]],["parent/258",[215,4.639]],["name/259",[7,37.82]],["parent/259",[215,4.639]],["name/260",[205,40.225]],["parent/260",[215,4.639]],["name/261",[23,38.952]],["parent/261",[215,4.639]],["name/262",[216,51.403]],["parent/262",[201,4.044]],["name/263",[21,33.518]],["parent/263",[217,4.639]],["name/264",[204,35.877]],["parent/264",[217,4.639]],["name/265",[7,37.82]],["parent/265",[217,4.639]],["name/266",[205,40.225]],["parent/266",[217,4.639]],["name/267",[23,38.952]],["parent/267",[217,4.639]],["name/268",[218,51.403]],["parent/268",[201,4.044]],["name/269",[204,35.877]],["parent/269",[219,4.457]],["name/270",[21,33.518]],["parent/270",[219,4.457]],["name/271",[204,35.877]],["parent/271",[219,4.457]],["name/272",[7,37.82]],["parent/272",[219,4.457]],["name/273",[205,40.225]],["parent/273",[219,4.457]],["name/274",[23,38.952]],["parent/274",[219,4.457]],["name/275",[220,51.403]],["parent/275",[201,4.044]],["name/276",[204,35.877]],["parent/276",[221,4.457]],["name/277",[21,33.518]],["parent/277",[221,4.457]],["name/278",[204,35.877]],["parent/278",[221,4.457]],["name/279",[7,37.82]],["parent/279",[221,4.457]],["name/280",[205,40.225]],["parent/280",[221,4.457]],["name/281",[23,38.952]],["parent/281",[221,4.457]],["name/282",[222,51.403]],["parent/282",[201,4.044]],["name/283",[204,35.877]],["parent/283",[223,4.457]],["name/284",[21,33.518]],["parent/284",[223,4.457]],["name/285",[204,35.877]],["parent/285",[223,4.457]],["name/286",[7,37.82]],["parent/286",[223,4.457]],["name/287",[205,40.225]],["parent/287",[223,4.457]],["name/288",[23,38.952]],["parent/288",[223,4.457]],["name/289",[224,51.403]],["parent/289",[201,4.044]],["name/290",[204,35.877]],["parent/290",[225,4.457]],["name/291",[21,33.518]],["parent/291",[225,4.457]],["name/292",[204,35.877]],["parent/292",[225,4.457]],["name/293",[7,37.82]],["parent/293",[225,4.457]],["name/294",[205,40.225]],["parent/294",[225,4.457]],["name/295",[23,38.952]],["parent/295",[225,4.457]],["name/296",[226,51.403]],["parent/296",[]],["name/297",[28,47.979]],["parent/297",[226,5.497]],["name/298",[26,51.403]],["parent/298",[0,4.165]],["name/299",[24,51.403]],["parent/299",[0,4.165]],["name/300",[3,51.403]],["parent/300",[0,4.165]],["name/301",[20,51.403]],["parent/301",[0,4.165]],["name/302",[25,51.403]],["parent/302",[0,4.165]],["name/303",[40,40.225]],["parent/303",[0,4.165]],["name/304",[33,43.381]],["parent/304",[0,4.165]],["name/305",[95,45.422]],["parent/305",[92,4.165]],["name/306",[114,43.381]],["parent/306",[102,3.319]],["name/307",[109,47.979]],["parent/307",[102,3.319]],["name/308",[107,45.422]],["parent/308",[102,3.319]],["name/309",[129,43.381]],["parent/309",[102,3.319]],["name/310",[125,47.979]],["parent/310",[102,3.319]],["name/311",[55,43.381]],["parent/311",[102,3.319]],["name/312",[139,43.381]],["parent/312",[102,3.319]],["name/313",[134,47.979]],["parent/313",[102,3.319]],["name/314",[152,43.381]],["parent/314",[102,3.319]],["name/315",[146,47.979]],["parent/315",[102,3.319]],["name/316",[144,45.422]],["parent/316",[102,3.319]],["name/317",[102,31.04]],["parent/317",[102,3.319]],["name/318",[103,43.381]],["parent/318",[102,3.319]],["name/319",[37,45.422]],["parent/319",[102,3.319]],["name/320",[162,43.381]],["parent/320",[156,4.457]],["name/321",[166,47.979]],["parent/321",[156,4.457]],["name/322",[40,40.225]],["parent/322",[156,4.457]],["name/323",[33,43.381]],["parent/323",[156,4.457]],["name/324",[167,47.979]],["parent/324",[156,4.457]],["name/325",[202,51.403]],["parent/325",[171,2.124]],["name/326",[206,51.403]],["parent/326",[171,2.124]],["name/327",[214,51.403]],["parent/327",[171,2.124]],["name/328",[216,51.403]],["parent/328",[171,2.124]],["name/329",[218,51.403]],["parent/329",[171,2.124]],["name/330",[220,51.403]],["parent/330",[171,2.124]],["name/331",[222,51.403]],["parent/331",[171,2.124]],["name/332",[224,51.403]],["parent/332",[171,2.124]],["name/333",[227,56.6]],["parent/333",[171,2.124]],["name/334",[228,51.403]],["parent/334",[229,5.497]],["name/335",[21,33.518]],["parent/335",[229,5.497]],["name/336",[230,56.6]],["parent/336",[171,2.124]],["name/337",[228,51.403]],["parent/337",[231,5.497]],["name/338",[21,33.518]],["parent/338",[231,5.497]],["name/339",[232,56.6]],["parent/339",[171,2.124]],["name/340",[21,33.518]],["parent/340",[233,5.131]],["name/341",[234,56.6]],["parent/341",[233,5.131]],["name/342",[17,51.403]],["parent/342",[233,5.131]],["name/343",[235,56.6]],["parent/343",[171,2.124]],["name/344",[21,33.518]],["parent/344",[236,6.052]],["name/345",[91,51.403]],["parent/345",[171,2.124]],["name/346",[103,43.381]],["parent/346",[171,2.124]],["name/347",[129,43.381]],["parent/347",[171,2.124]],["name/348",[152,43.381]],["parent/348",[171,2.124]],["name/349",[139,43.381]],["parent/349",[171,2.124]],["name/350",[114,43.381]],["parent/350",[171,2.124]],["name/351",[146,47.979]],["parent/351",[171,2.124]],["name/352",[102,31.04]],["parent/352",[171,2.124]],["name/353",[166,47.979]],["parent/353",[171,2.124]],["name/354",[33,43.381]],["parent/354",[171,2.124]],["name/355",[167,47.979]],["parent/355",[171,2.124]],["name/356",[162,43.381]],["parent/356",[171,2.124]],["name/357",[40,40.225]],["parent/357",[171,2.124]],["name/358",[237,51.403]],["parent/358",[171,2.124]],["name/359",[21,33.518]],["parent/359",[238,4.044]],["name/360",[239,56.6]],["parent/360",[238,4.044]],["name/361",[240,56.6]],["parent/361",[238,4.044]],["name/362",[241,56.6]],["parent/362",[238,4.044]],["name/363",[242,56.6]],["parent/363",[238,4.044]],["name/364",[243,56.6]],["parent/364",[238,4.044]],["name/365",[244,56.6]],["parent/365",[238,4.044]],["name/366",[245,56.6]],["parent/366",[238,4.044]],["name/367",[246,56.6]],["parent/367",[238,4.044]],["name/368",[97,38.952]],["parent/368",[171,2.124]],["name/369",[174,43.381]],["parent/369",[171,2.124]],["name/370",[175,43.381]],["parent/370",[171,2.124]],["name/371",[46,32.204]],["parent/371",[171,2.124]],["name/372",[193,47.979]],["parent/372",[171,2.124]],["name/373",[183,47.979]],["parent/373",[171,2.124]],["name/374",[187,47.979]],["parent/374",[171,2.124]],["name/375",[109,47.979]],["parent/375",[171,2.124]],["name/376",[107,45.422]],["parent/376",[171,2.124]],["name/377",[144,45.422]],["parent/377",[171,2.124]],["name/378",[125,47.979]],["parent/378",[171,2.124]],["name/379",[134,47.979]],["parent/379",[171,2.124]],["name/380",[55,43.381]],["parent/380",[171,2.124]],["name/381",[37,45.422]],["parent/381",[171,2.124]],["name/382",[46,32.204]],["parent/382",[46,3.444]],["name/383",[193,47.979]],["parent/383",[46,3.444]],["name/384",[97,38.952]],["parent/384",[46,3.444]],["name/385",[175,43.381]],["parent/385",[46,3.444]],["name/386",[183,47.979]],["parent/386",[46,3.444]],["name/387",[187,47.979]],["parent/387",[46,3.444]],["name/388",[237,51.403]],["parent/388",[46,3.444]],["name/389",[174,43.381]],["parent/389",[46,3.444]]],"invertedIndex":[["__type",{"_index":14,"name":{"12":{},"17":{},"24":{},"26":{},"31":{},"33":{},"37":{},"51":{},"58":{},"82":{},"90":{},"94":{},"96":{},"103":{},"105":{},"108":{},"115":{},"117":{},"119":{},"123":{},"138":{},"140":{},"142":{},"147":{},"149":{},"151":{},"153":{},"156":{},"158":{},"162":{},"164":{},"166":{},"173":{},"176":{},"180":{},"182":{},"186":{},"200":{},"215":{},"224":{},"227":{},"241":{}},"parent":{}}],["_initauth",{"_index":177,"name":{"202":{}},"parent":{}}],["absoluteduration",{"_index":69,"name":{"65":{}},"parent":{}}],["access",{"_index":179,"name":{"213":{}},"parent":{"214":{},"215":{},"216":{},"217":{},"218":{},"219":{},"220":{},"221":{},"222":{},"223":{},"224":{}}}],["accesstoken",{"_index":188,"name":{"222":{},"235":{}},"parent":{}}],["accesstokenerror",{"_index":214,"name":{"256":{},"327":{}},"parent":{}}],["accesstokenerrorcode",{"_index":206,"name":{"249":{},"326":{}},"parent":{}}],["accesstokenexpiresat",{"_index":197,"name":{"237":{}},"parent":{}}],["accesstokenrequest",{"_index":183,"name":{"216":{},"373":{},"386":{}},"parent":{}}],["accesstokenscope",{"_index":196,"name":{"236":{}},"parent":{}}],["aftercallback",{"_index":107,"name":{"107":{},"110":{},"308":{},"376":{}},"parent":{}}],["afterrefetch",{"_index":144,"name":{"155":{},"160":{},"316":{},"377":{}},"parent":{}}],["afterrefresh",{"_index":181,"name":{"214":{},"219":{}},"parent":{}}],["api",{"_index":161,"name":{"171":{}},"parent":{"172":{},"173":{}}}],["applicationerror",{"_index":235,"name":{"343":{}},"parent":{}}],["auth",{"_index":31,"name":{"27":{},"171":{},"174":{},"177":{}},"parent":{"28":{},"29":{},"30":{},"31":{},"32":{},"33":{},"34":{},"35":{},"36":{},"37":{},"172":{},"173":{},"175":{},"176":{},"178":{},"179":{},"180":{},"181":{},"182":{},"183":{},"184":{},"185":{},"186":{}}}],["auth0edge",{"_index":93,"name":{"89":{}},"parent":{}}],["auth0logout",{"_index":47,"name":{"42":{}},"parent":{}}],["auth0server",{"_index":172,"name":{"188":{}},"parent":{}}],["autherror",{"_index":202,"name":{"243":{},"325":{}},"parent":{}}],["authorizationparameters",{"_index":80,"name":{"75":{}},"parent":{}}],["authorizationparams",{"_index":48,"name":{"43":{},"113":{},"124":{},"134":{},"220":{}},"parent":{}}],["baseconfig",{"_index":43,"name":{"39":{}},"parent":{}}],["baseurl",{"_index":49,"name":{"44":{}},"parent":{}}],["callback",{"_index":64,"name":{"60":{},"83":{}},"parent":{}}],["callbackhandler",{"_index":116,"name":{"118":{}},"parent":{}}],["callbackhandlererror",{"_index":218,"name":{"268":{},"329":{}},"parent":{}}],["callbackoptions",{"_index":109,"name":{"109":{},"307":{},"375":{}},"parent":{}}],["callbackoptionsprovider",{"_index":112,"name":{"114":{}},"parent":{}}],["cause",{"_index":205,"name":{"247":{},"260":{},"266":{},"273":{},"280":{},"287":{},"294":{}},"parent":{}}],["checksession",{"_index":19,"name":{"16":{}},"parent":{}}],["claims",{"_index":193,"name":{"230":{},"372":{},"383":{}},"parent":{}}],["client",{"_index":0,"name":{"0":{}},"parent":{"298":{},"299":{},"300":{},"301":{},"302":{},"303":{},"304":{}}}],["client/use",{"_index":1,"name":{"1":{}},"parent":{"2":{},"3":{},"4":{},"5":{},"6":{},"7":{},"8":{},"9":{},"10":{},"11":{},"12":{},"13":{},"14":{},"15":{},"16":{},"17":{},"18":{},"19":{},"20":{},"21":{},"22":{},"23":{},"24":{},"25":{},"26":{}}}],["client/with",{"_index":29,"name":{"27":{}},"parent":{"28":{},"29":{},"30":{},"31":{},"32":{},"33":{},"34":{},"35":{},"36":{},"37":{}}}],["clientid",{"_index":50,"name":{"45":{}},"parent":{}}],["clientsecret",{"_index":51,"name":{"46":{}},"parent":{}}],["clocktolerance",{"_index":52,"name":{"47":{}},"parent":{}}],["code",{"_index":204,"name":{"245":{},"258":{},"264":{},"269":{},"271":{},"276":{},"278":{},"283":{},"285":{},"290":{},"292":{}},"parent":{}}],["config",{"_index":42,"name":{"38":{}},"parent":{"39":{},"61":{},"68":{},"75":{},"79":{},"87":{}}}],["config.authorizationparameters",{"_index":82,"name":{},"parent":{"76":{},"77":{},"78":{}}}],["config.baseconfig",{"_index":45,"name":{},"parent":{"40":{},"41":{},"42":{},"43":{},"44":{},"45":{},"46":{},"47":{},"48":{},"49":{},"50":{},"51":{},"52":{},"53":{},"54":{},"55":{},"56":{},"57":{},"58":{}}}],["config.baseconfig.__type",{"_index":63,"name":{},"parent":{"59":{},"60":{}}}],["config.cookieconfig",{"_index":74,"name":{},"parent":{"69":{},"70":{},"71":{},"72":{},"73":{},"74":{}}}],["config.nextconfig",{"_index":87,"name":{},"parent":{"80":{},"81":{},"82":{},"86":{}}}],["config.nextconfig.__type",{"_index":88,"name":{},"parent":{"83":{},"84":{},"85":{}}}],["config.sessionconfig",{"_index":66,"name":{},"parent":{"62":{},"63":{},"64":{},"65":{},"66":{},"67":{}}}],["configparameters",{"_index":91,"name":{"87":{},"345":{}},"parent":{}}],["connection",{"_index":120,"name":{"125":{}},"parent":{}}],["connection_scope",{"_index":122,"name":{"126":{}},"parent":{}}],["constructor",{"_index":21,"name":{"19":{},"232":{},"244":{},"257":{},"263":{},"270":{},"277":{},"284":{},"291":{},"335":{},"338":{},"340":{},"344":{},"359":{}},"parent":{}}],["cookie",{"_index":71,"name":{"67":{}},"parent":{}}],["cookieconfig",{"_index":72,"name":{"68":{}},"parent":{}}],["create",{"_index":240,"name":{"361":{}},"parent":{}}],["default",{"_index":28,"name":{"25":{},"231":{},"297":{}},"parent":{}}],["delete",{"_index":241,"name":{"362":{}},"parent":{}}],["domain",{"_index":73,"name":{"69":{}},"parent":{}}],["edge",{"_index":92,"name":{"88":{}},"parent":{"89":{},"93":{},"95":{},"97":{},"98":{},"99":{},"305":{}}}],["edge.auth0edge",{"_index":94,"name":{},"parent":{"90":{}}}],["edge.auth0edge.__type",{"_index":96,"name":{},"parent":{"91":{},"92":{}}}],["edge.getsession",{"_index":98,"name":{},"parent":{"94":{}}}],["edge.initauth0",{"_index":100,"name":{},"parent":{"96":{}}}],["email",{"_index":4,"name":{"3":{}},"parent":{}}],["email_verified",{"_index":6,"name":{"4":{}},"parent":{}}],["enabletelemetry",{"_index":54,"name":{"49":{}},"parent":{}}],["error",{"_index":17,"name":{"14":{},"342":{}},"parent":{}}],["errordescription",{"_index":234,"name":{"341":{}},"parent":{}}],["expired_access_token",{"_index":211,"name":{"253":{}},"parent":{}}],["failed_refresh_grant",{"_index":213,"name":{"255":{}},"parent":{}}],["fromtokenset",{"_index":246,"name":{"367":{}},"parent":{}}],["generatesessioncookie",{"_index":159,"name":{"170":{}},"parent":{}}],["generatesessioncookieconfig",{"_index":158,"name":{"169":{}},"parent":{}}],["get",{"_index":245,"name":{"366":{}},"parent":{}}],["getaccesstoken",{"_index":175,"name":{"191":{},"205":{},"223":{},"370":{},"385":{}},"parent":{}}],["getaccesstokenresult",{"_index":187,"name":{"221":{},"374":{},"387":{}},"parent":{}}],["getidtoken",{"_index":243,"name":{"364":{}},"parent":{}}],["getloginstate",{"_index":55,"name":{"50":{},"122":{},"136":{},"311":{},"380":{}},"parent":{}}],["getserversideprops",{"_index":169,"name":{"183":{}},"parent":{}}],["getserversidepropsresultwithsession",{"_index":166,"name":{"178":{},"321":{},"353":{}},"parent":{}}],["getsession",{"_index":97,"name":{"92":{},"93":{},"98":{},"189":{},"203":{},"226":{},"368":{},"384":{}},"parent":{}}],["handleauth",{"_index":103,"name":{"102":{},"198":{},"212":{},"318":{},"346":{}},"parent":{}}],["handlecallback",{"_index":114,"name":{"116":{},"193":{},"210":{},"306":{},"350":{}},"parent":{}}],["handlelogin",{"_index":129,"name":{"139":{},"192":{},"208":{},"309":{},"347":{}},"parent":{}}],["handlelogout",{"_index":139,"name":{"150":{},"194":{},"209":{},"312":{},"349":{}},"parent":{}}],["handleprofile",{"_index":152,"name":{"163":{},"195":{},"211":{},"314":{},"348":{}},"parent":{}}],["handlererror",{"_index":216,"name":{"262":{},"328":{}},"parent":{}}],["handlers",{"_index":102,"name":{"101":{},"120":{},"317":{},"352":{}},"parent":{"306":{},"307":{},"308":{},"309":{},"310":{},"311":{},"312":{},"313":{},"314":{},"315":{},"316":{},"317":{},"318":{},"319":{}}}],["handlers/auth",{"_index":101,"name":{"100":{}},"parent":{"101":{},"102":{},"104":{}}}],["handlers/auth.handleauth",{"_index":104,"name":{},"parent":{"103":{}}}],["handlers/auth.onerror",{"_index":105,"name":{},"parent":{"105":{}}}],["handlers/callback",{"_index":106,"name":{"106":{}},"parent":{"107":{},"109":{},"114":{},"116":{},"118":{}}}],["handlers/callback.aftercallback",{"_index":108,"name":{},"parent":{"108":{}}}],["handlers/callback.callbackhandler",{"_index":117,"name":{},"parent":{"119":{}}}],["handlers/callback.callbackoptions",{"_index":110,"name":{},"parent":{"110":{},"111":{},"112":{},"113":{}}}],["handlers/callback.callbackoptionsprovider",{"_index":113,"name":{},"parent":{"115":{}}}],["handlers/callback.handlecallback",{"_index":115,"name":{},"parent":{"117":{}}}],["handlers/login",{"_index":118,"name":{"121":{}},"parent":{"122":{},"124":{},"133":{},"137":{},"139":{},"141":{}}}],["handlers/login.authorizationparams",{"_index":121,"name":{},"parent":{"125":{},"126":{},"127":{},"128":{},"129":{},"130":{},"131":{},"132":{}}}],["handlers/login.getloginstate",{"_index":119,"name":{},"parent":{"123":{}}}],["handlers/login.handlelogin",{"_index":130,"name":{},"parent":{"140":{}}}],["handlers/login.loginhandler",{"_index":132,"name":{},"parent":{"142":{}}}],["handlers/login.loginoptions",{"_index":126,"name":{},"parent":{"134":{},"135":{},"136":{}}}],["handlers/login.loginoptionsprovider",{"_index":128,"name":{},"parent":{"138":{}}}],["handlers/logout",{"_index":133,"name":{"143":{}},"parent":{"144":{},"148":{},"150":{},"152":{}}}],["handlers/logout.handlelogout",{"_index":140,"name":{},"parent":{"151":{}}}],["handlers/logout.logouthandler",{"_index":142,"name":{},"parent":{"153":{}}}],["handlers/logout.logoutoptions",{"_index":135,"name":{},"parent":{"145":{},"146":{},"147":{}}}],["handlers/logout.logoutoptionsprovider",{"_index":138,"name":{},"parent":{"149":{}}}],["handlers/profile",{"_index":143,"name":{"154":{}},"parent":{"155":{},"157":{},"161":{},"163":{},"165":{}}}],["handlers/profile.afterrefetch",{"_index":145,"name":{},"parent":{"156":{}}}],["handlers/profile.handleprofile",{"_index":153,"name":{},"parent":{"164":{}}}],["handlers/profile.profilehandler",{"_index":155,"name":{},"parent":{"166":{}}}],["handlers/profile.profileoptions",{"_index":147,"name":{},"parent":{"158":{}}}],["handlers/profile.profileoptions.__type",{"_index":149,"name":{},"parent":{"159":{},"160":{}}}],["handlers/profile.profileoptionsprovider",{"_index":151,"name":{},"parent":{"162":{}}}],["helpers",{"_index":156,"name":{"167":{}},"parent":{"320":{},"321":{},"322":{},"323":{},"324":{}}}],["helpers/testing",{"_index":157,"name":{"168":{}},"parent":{"169":{},"170":{}}}],["helpers/with",{"_index":160,"name":{"171":{},"174":{},"177":{}},"parent":{"172":{},"173":{},"175":{},"176":{},"178":{},"179":{},"180":{},"181":{},"182":{},"183":{},"184":{},"185":{},"186":{}}}],["httponly",{"_index":77,"name":{"72":{}},"parent":{}}],["httptimeout",{"_index":53,"name":{"48":{}},"parent":{}}],["identityclaimfilter",{"_index":56,"name":{"52":{},"86":{}},"parent":{}}],["identityprovidererror",{"_index":232,"name":{"339":{}},"parent":{}}],["idplogout",{"_index":57,"name":{"53":{}},"parent":{}}],["idtoken",{"_index":195,"name":{"234":{}},"parent":{}}],["idtokensigningalg",{"_index":58,"name":{"54":{}},"parent":{}}],["index",{"_index":171,"name":{"187":{}},"parent":{"188":{},"199":{},"201":{},"202":{},"203":{},"204":{},"205":{},"206":{},"207":{},"208":{},"209":{},"210":{},"211":{},"212":{},"325":{},"326":{},"327":{},"328":{},"329":{},"330":{},"331":{},"332":{},"333":{},"336":{},"339":{},"343":{},"345":{},"346":{},"347":{},"348":{},"349":{},"350":{},"351":{},"352":{},"353":{},"354":{},"355":{},"356":{},"357":{},"358":{},"368":{},"369":{},"370":{},"371":{},"372":{},"373":{},"374":{},"375":{},"376":{},"377":{},"378":{},"379":{},"380":{},"381":{}}}],["index.applicationerror",{"_index":236,"name":{},"parent":{"344":{}}}],["index.auth0server",{"_index":173,"name":{},"parent":{"189":{},"190":{},"191":{},"192":{},"193":{},"194":{},"195":{},"196":{},"197":{},"198":{}}}],["index.identityprovidererror",{"_index":233,"name":{},"parent":{"340":{},"341":{},"342":{}}}],["index.initauth0",{"_index":176,"name":{},"parent":{"200":{}}}],["index.missingstatecookieerror",{"_index":229,"name":{},"parent":{"334":{},"335":{}}}],["index.missingstateparamerror",{"_index":231,"name":{},"parent":{"337":{},"338":{}}}],["index.sessioncache",{"_index":238,"name":{},"parent":{"359":{},"360":{},"361":{},"362":{},"363":{},"364":{},"365":{},"366":{},"367":{}}}],["initauth0",{"_index":99,"name":{"95":{},"97":{},"199":{},"201":{}},"parent":{}}],["insufficient_scope",{"_index":212,"name":{"254":{}},"parent":{}}],["invitation",{"_index":123,"name":{"127":{}},"parent":{}}],["isauthenticated",{"_index":242,"name":{"363":{}},"parent":{}}],["isloading",{"_index":18,"name":{"15":{}},"parent":{}}],["issuerbaseurl",{"_index":59,"name":{"55":{}},"parent":{}}],["legacysamesitecookie",{"_index":60,"name":{"56":{}},"parent":{}}],["login",{"_index":89,"name":{"84":{}},"parent":{}}],["loginhandler",{"_index":131,"name":{"141":{}},"parent":{}}],["loginhandlererror",{"_index":220,"name":{"275":{},"330":{}},"parent":{}}],["loginoptions",{"_index":125,"name":{"133":{},"310":{},"378":{}},"parent":{}}],["loginoptionsprovider",{"_index":127,"name":{"137":{}},"parent":{}}],["logouthandler",{"_index":141,"name":{"152":{}},"parent":{}}],["logouthandlererror",{"_index":222,"name":{"282":{},"331":{}},"parent":{}}],["logoutoptions",{"_index":134,"name":{"144":{},"313":{},"379":{}},"parent":{}}],["logoutoptionsprovider",{"_index":137,"name":{"148":{}},"parent":{}}],["logoutparams",{"_index":136,"name":{"146":{}},"parent":{}}],["message",{"_index":228,"name":{"334":{},"337":{}},"parent":{}}],["middleware",{"_index":164,"name":{"174":{}},"parent":{"175":{},"176":{}}}],["missing_access_token",{"_index":209,"name":{"251":{}},"parent":{}}],["missing_refresh_token",{"_index":210,"name":{"252":{}},"parent":{}}],["missing_session",{"_index":207,"name":{"250":{}},"parent":{}}],["missingstatecookieerror",{"_index":227,"name":{"333":{}},"parent":{}}],["missingstateparamerror",{"_index":230,"name":{"336":{}},"parent":{}}],["name",{"_index":7,"name":{"5":{},"62":{},"246":{},"259":{},"265":{},"272":{},"279":{},"286":{},"293":{}},"parent":{}}],["nextconfig",{"_index":85,"name":{"79":{}},"parent":{}}],["nickname",{"_index":8,"name":{"6":{}},"parent":{}}],["onerror",{"_index":37,"name":{"32":{},"104":{},"319":{},"381":{}},"parent":{}}],["onredirecting",{"_index":36,"name":{"30":{}},"parent":{}}],["org_id",{"_index":12,"name":{"10":{}},"parent":{}}],["organization",{"_index":86,"name":{"80":{},"112":{},"128":{}},"parent":{}}],["page",{"_index":30,"name":{"27":{},"177":{}},"parent":{"28":{},"29":{},"30":{},"31":{},"32":{},"33":{},"34":{},"35":{},"36":{},"37":{},"178":{},"179":{},"180":{},"181":{},"182":{},"183":{},"184":{},"185":{},"186":{}}}],["pageroute",{"_index":167,"name":{"179":{},"324":{},"355":{}},"parent":{}}],["path",{"_index":75,"name":{"70":{}},"parent":{}}],["picture",{"_index":9,"name":{"7":{}},"parent":{}}],["postlogoutredirect",{"_index":62,"name":{"59":{}},"parent":{}}],["profilehandler",{"_index":154,"name":{"165":{}},"parent":{}}],["profilehandlererror",{"_index":224,"name":{"289":{},"332":{}},"parent":{}}],["profileoptions",{"_index":146,"name":{"157":{},"315":{},"351":{}},"parent":{}}],["profileoptionsprovider",{"_index":150,"name":{"161":{}},"parent":{}}],["redirecturi",{"_index":111,"name":{"111":{}},"parent":{}}],["refetch",{"_index":148,"name":{"159":{}},"parent":{}}],["refresh",{"_index":186,"name":{"218":{}},"parent":{}}],["refreshtoken",{"_index":198,"name":{"238":{}},"parent":{}}],["requesterror",{"_index":20,"name":{"18":{},"301":{}},"parent":{}}],["required",{"_index":32,"name":{"27":{},"171":{},"174":{},"177":{}},"parent":{"28":{},"34":{},"36":{},"172":{},"175":{},"178":{},"179":{},"181":{},"185":{}}}],["required.pageroute",{"_index":168,"name":{},"parent":{"180":{}}}],["required.userprops",{"_index":39,"name":{},"parent":{"35":{}}}],["required.withapiauthrequired",{"_index":163,"name":{},"parent":{"173":{}}}],["required.withmiddlewareauthrequired",{"_index":165,"name":{},"parent":{"176":{}}}],["required.withpageauthrequired",{"_index":41,"name":{},"parent":{"37":{},"186":{}}}],["required.withpageauthrequiredoptions",{"_index":35,"name":{},"parent":{"29":{},"30":{},"31":{},"32":{},"33":{},"182":{}}}],["required.withpageauthrequiredoptions.__type",{"_index":170,"name":{},"parent":{"183":{},"184":{}}}],["response_mode",{"_index":83,"name":{"77":{},"131":{}},"parent":{}}],["response_type",{"_index":84,"name":{"78":{},"132":{}},"parent":{}}],["returnto",{"_index":34,"name":{"29":{},"135":{},"145":{},"184":{}},"parent":{}}],["rolling",{"_index":67,"name":{"63":{}},"parent":{}}],["rollingduration",{"_index":68,"name":{"64":{}},"parent":{}}],["routes",{"_index":61,"name":{"57":{},"81":{}},"parent":{}}],["samesite",{"_index":79,"name":{"74":{}},"parent":{}}],["save",{"_index":239,"name":{"360":{}},"parent":{}}],["scope",{"_index":81,"name":{"76":{},"130":{}},"parent":{}}],["scopes",{"_index":184,"name":{"217":{}},"parent":{}}],["screen_hint",{"_index":124,"name":{"129":{}},"parent":{}}],["secret",{"_index":44,"name":{"40":{}},"parent":{}}],["secure",{"_index":78,"name":{"73":{}},"parent":{}}],["session",{"_index":46,"name":{"41":{},"225":{},"228":{},"239":{},"371":{},"382":{}},"parent":{"226":{},"240":{},"382":{},"383":{},"384":{},"385":{},"386":{},"387":{},"388":{},"389":{}}}],["session.getsession",{"_index":191,"name":{},"parent":{"227":{}}}],["session.updatesession",{"_index":200,"name":{},"parent":{"241":{}}}],["session/get",{"_index":178,"name":{"213":{},"225":{}},"parent":{"214":{},"215":{},"216":{},"217":{},"218":{},"219":{},"220":{},"221":{},"222":{},"223":{},"224":{},"226":{},"227":{}}}],["session/session",{"_index":192,"name":{"229":{}},"parent":{"230":{},"231":{}}}],["session/session.default",{"_index":194,"name":{},"parent":{"232":{},"233":{},"234":{},"235":{},"236":{},"237":{},"238":{}}}],["session/update",{"_index":199,"name":{"239":{}},"parent":{"240":{},"241":{}}}],["sessioncache",{"_index":237,"name":{"358":{},"388":{}},"parent":{}}],["sessionconfig",{"_index":65,"name":{"61":{}},"parent":{}}],["set",{"_index":244,"name":{"365":{}},"parent":{}}],["status",{"_index":23,"name":{"20":{},"248":{},"261":{},"267":{},"274":{},"281":{},"288":{},"295":{}},"parent":{}}],["storeidtoken",{"_index":70,"name":{"66":{}},"parent":{}}],["sub",{"_index":10,"name":{"8":{}},"parent":{}}],["token",{"_index":180,"name":{"213":{}},"parent":{"214":{},"216":{},"221":{},"223":{}}}],["token.accesstokenrequest",{"_index":185,"name":{},"parent":{"217":{},"218":{},"219":{},"220":{}}}],["token.afterrefresh",{"_index":182,"name":{},"parent":{"215":{}}}],["token.getaccesstoken",{"_index":190,"name":{},"parent":{"224":{}}}],["token.getaccesstokenresult",{"_index":189,"name":{},"parent":{"222":{}}}],["transient",{"_index":76,"name":{"71":{}},"parent":{}}],["unauthorized",{"_index":90,"name":{"85":{}},"parent":{}}],["updated_at",{"_index":11,"name":{"9":{}},"parent":{}}],["updatesession",{"_index":174,"name":{"190":{},"204":{},"240":{},"369":{},"389":{}},"parent":{}}],["user",{"_index":2,"name":{"1":{},"13":{},"35":{},"233":{}},"parent":{"2":{},"11":{},"18":{},"21":{},"22":{},"23":{},"25":{},"26":{}}}],["user.requesterror",{"_index":22,"name":{},"parent":{"19":{},"20":{}}}],["user.usercontext",{"_index":15,"name":{},"parent":{"12":{}}}],["user.usercontext.__type",{"_index":16,"name":{},"parent":{"13":{},"14":{},"15":{},"16":{},"17":{}}}],["user.userprofile",{"_index":5,"name":{},"parent":{"3":{},"4":{},"5":{},"6":{},"7":{},"8":{},"9":{},"10":{}}}],["user.userprovider",{"_index":27,"name":{},"parent":{"24":{}}}],["usercontext",{"_index":13,"name":{"11":{}},"parent":{}}],["userprofile",{"_index":3,"name":{"2":{},"300":{}},"parent":{}}],["userprops",{"_index":38,"name":{"34":{}},"parent":{}}],["userprovider",{"_index":26,"name":{"23":{},"298":{}},"parent":{}}],["userproviderprops",{"_index":24,"name":{"21":{},"299":{}},"parent":{}}],["useuser",{"_index":25,"name":{"22":{},"302":{}},"parent":{}}],["utils/errors",{"_index":201,"name":{"242":{}},"parent":{"243":{},"249":{},"256":{},"262":{},"268":{},"275":{},"282":{},"289":{}}}],["utils/errors.accesstokenerror",{"_index":215,"name":{},"parent":{"257":{},"258":{},"259":{},"260":{},"261":{}}}],["utils/errors.accesstokenerrorcode",{"_index":208,"name":{},"parent":{"250":{},"251":{},"252":{},"253":{},"254":{},"255":{}}}],["utils/errors.autherror",{"_index":203,"name":{},"parent":{"244":{},"245":{},"246":{},"247":{},"248":{}}}],["utils/errors.callbackhandlererror",{"_index":219,"name":{},"parent":{"269":{},"270":{},"271":{},"272":{},"273":{},"274":{}}}],["utils/errors.handlererror",{"_index":217,"name":{},"parent":{"263":{},"264":{},"265":{},"266":{},"267":{}}}],["utils/errors.loginhandlererror",{"_index":221,"name":{},"parent":{"276":{},"277":{},"278":{},"279":{},"280":{},"281":{}}}],["utils/errors.logouthandlererror",{"_index":223,"name":{},"parent":{"283":{},"284":{},"285":{},"286":{},"287":{},"288":{}}}],["utils/errors.profilehandlererror",{"_index":225,"name":{},"parent":{"290":{},"291":{},"292":{},"293":{},"294":{},"295":{}}}],["version",{"_index":226,"name":{"296":{}},"parent":{"297":{}}}],["withapiauthrequired",{"_index":162,"name":{"172":{},"196":{},"206":{},"320":{},"356":{}},"parent":{}}],["withmiddlewareauthrequired",{"_index":95,"name":{"91":{},"99":{},"175":{},"305":{}},"parent":{}}],["withpageauthrequired",{"_index":40,"name":{"36":{},"185":{},"197":{},"207":{},"303":{},"322":{},"357":{}},"parent":{}}],["withpageauthrequiredoptions",{"_index":33,"name":{"28":{},"181":{},"304":{},"323":{},"354":{}},"parent":{}}]],"pipeline":[]}}
\ No newline at end of file
diff --git a/docs/classes/frontend_use_user.requesterror.html b/docs/classes/client_use_user.requesterror.html
similarity index 82%
rename from docs/classes/frontend_use_user.requesterror.html
rename to docs/classes/client_use_user.requesterror.html
index c4ad353f4..59f7e3277 100644
--- a/docs/classes/frontend_use_user.requesterror.html
+++ b/docs/classes/client_use_user.requesterror.html
@@ -53,10 +53,10 @@
@auth0/nextjs-auth0
- frontend/use-user
+ client/use-user
- RequestError
+ RequestError
Class RequestError
@@ -97,13 +97,13 @@ Index
@@ -115,14 +115,14 @@ Constructors
constructor
Parameters
@@ -131,7 +131,7 @@ Parameters
status: number
-
+
@@ -144,7 +144,7 @@ status
status: number
@@ -157,16 +157,19 @@ status
Exports
- config
+ client
+
+
+ client/use-user
- frontend
+ client/with-page-auth-required
-
- frontend/use-user
+
+ config
- frontend/with-page-auth-required
+ edge
handlers
@@ -202,10 +205,7 @@ status
helpers/with-page-auth-required
- instance
-
-
- middleware
+ index
session
@@ -235,35 +235,35 @@ status
@@ -274,17 +274,18 @@ status
Legend
+
+ Function
+ Function with type parameter
+ Type alias
+ Type alias with type parameter
+
Class
Class with type parameter
Constructor
Property
-
- Function
- Type alias
- Type alias with type parameter
-
diff --git a/docs/classes/index.applicationerror.html b/docs/classes/index.applicationerror.html
new file mode 100644
index 000000000..c7884d135
--- /dev/null
+++ b/docs/classes/index.applicationerror.html
@@ -0,0 +1,255 @@
+
+
+
+
+
+
ApplicationError | @auth0/nextjs-auth0
+
+
+
+
+
+
+
+
+
+
+
+
+ Search
+
+
+
+ Preparing search index...
+ The search index is not available
+
+
@auth0/nextjs-auth0
+
+
+
+
+
+
+
+
+
Class ApplicationError
+
+
+
+
+
+
+
+
+
+ Constructors
+
+
+ constructor
+
+
+
+
+
+ Parameters
+
+
+
+
+
+
+
+
+
+
+
+
+
Legend
+
+
+ Function
+ Function with type parameter
+ Type alias
+ Type alias with type parameter
+
+
+ Class
+ Class with type parameter
+ Constructor
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/classes/index.identityprovidererror.html b/docs/classes/index.identityprovidererror.html
new file mode 100644
index 000000000..538539d9a
--- /dev/null
+++ b/docs/classes/index.identityprovidererror.html
@@ -0,0 +1,306 @@
+
+
+
+
+
+
IdentityProviderError | @auth0/nextjs-auth0
+
+
+
+
+
+
+
+
+
+
+
+
+ Search
+
+
+
+ Preparing search index...
+ The search index is not available
+
+
@auth0/nextjs-auth0
+
+
+
+
+
+
+
+
+
Class IdentityProviderError
+
+
+
+
+
+
+
+ Hierarchy
+
+
+ EscapedError
+
+
+ IdentityProviderError
+
+
+
+
+
+
+
+ Constructors
+
+
+ constructor
+
+
+
+
+
+ Parameters
+
+
+
+
+
+
+
+ Properties
+
+
+ Optional error
+ error: string
+
+
+
+
+
+ Optional errorDescription
+ errorDescription: string
+
+
+
+
+
+
+
+
+
+
+
Legend
+
+
+ Function
+ Function with type parameter
+ Type alias
+ Type alias with type parameter
+
+
+ Class
+ Class with type parameter
+ Constructor
+ Property
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/classes/index.missingstatecookieerror.html b/docs/classes/index.missingstatecookieerror.html
new file mode 100644
index 000000000..935d390db
--- /dev/null
+++ b/docs/classes/index.missingstatecookieerror.html
@@ -0,0 +1,268 @@
+
+
+
+
+
+
MissingStateCookieError | @auth0/nextjs-auth0
+
+
+
+
+
+
+
+
+
+
+
+
+ Search
+
+
+
+ Preparing search index...
+ The search index is not available
+
+
@auth0/nextjs-auth0
+
+
+
+
+
+
+
+
+
Class MissingStateCookieError
+
+
+
+
+
+
+
+ Hierarchy
+
+
+ Error
+
+
+ MissingStateCookieError
+
+
+
+
+
+
+
+
+ Properties
+
+
+ Static message
+ message: string = 'Missing state cookie from login request (check login URL, callback URL and cookie config).'
+
+
+
+
+
+
+
+
+
+
Legend
+
+
+ Function
+ Function with type parameter
+ Type alias
+ Type alias with type parameter
+
+
+ Class
+ Class with type parameter
+ Constructor
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/classes/index.missingstateparamerror.html b/docs/classes/index.missingstateparamerror.html
new file mode 100644
index 000000000..a723f12a7
--- /dev/null
+++ b/docs/classes/index.missingstateparamerror.html
@@ -0,0 +1,268 @@
+
+
+
+
+
+
MissingStateParamError | @auth0/nextjs-auth0
+
+
+
+
+
+
+
+
+
+
+
+
+ Search
+
+
+
+ Preparing search index...
+ The search index is not available
+
+
@auth0/nextjs-auth0
+
+
+
+
+
+
+
+
+
Class MissingStateParamError
+
+
+
+
+
+
+
+ Hierarchy
+
+
+ Error
+
+
+ MissingStateParamError
+
+
+
+
+
+
+
+
+ Properties
+
+
+ Static message
+ message: string = 'Missing state parameter in Authorization Response.'
+
+
+
+
+
+
+
+
+
+
Legend
+
+
+ Function
+ Function with type parameter
+ Type alias
+ Type alias with type parameter
+
+
+ Class
+ Class with type parameter
+ Constructor
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/classes/session.sessioncache.html b/docs/classes/index.sessioncache.html
similarity index 85%
rename from docs/classes/session.sessioncache.html
rename to docs/classes/index.sessioncache.html
index dee097a4a..159b60526 100644
--- a/docs/classes/session.sessioncache.html
+++ b/docs/classes/index.sessioncache.html
@@ -53,10 +53,10 @@
@auth0/nextjs-auth0
- session
+ index
- SessionCache
+ SessionCache
Class SessionCache<Req, Res>
@@ -98,20 +98,20 @@
Index
@@ -123,13 +123,13 @@
Constructors
constructor
- new SessionCache<Req, Res>( config: Config , cookieStore: default < Req , Res > ) : SessionCache < Req , Res >
+ new SessionCache<Req, Res>( config: Config , cookieStore: default < Req , Res > ) : SessionCache < Req , Res >
Type parameters
@@ -150,7 +150,7 @@ config: Config
cookieStore: default < Req , Res >
-
+
@@ -168,7 +168,7 @@
create
Parameters
@@ -198,7 +198,7 @@
delete
Parameters
@@ -225,7 +225,7 @@
fromTokenSet
Parameters
@@ -248,7 +248,7 @@
get
Parameters
@@ -275,7 +275,7 @@ getIdToken
Parameters
@@ -302,7 +302,7 @@ isAuthenticated
Parameters
@@ -328,7 +328,7 @@ save
Parameters
@@ -354,7 +354,7 @@ set
Parameters
@@ -382,16 +382,19 @@ Returns Promise
Exports
- config
+ client
+
+
+ client/use-user
- frontend
+ client/with-page-auth-required
- frontend/use-user
+ config
- frontend/with-page-auth-required
+ edge
handlers
@@ -426,13 +429,10 @@
WARNING The message can contain user input and is only escaped using basic escaping for putting untrusted data + directly into the HTML body
+