diff --git a/CHANGELOG.md b/CHANGELOG.md index 15ca65020..9a005e206 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## [v1.9.2](https://github.com/auth0/nextjs-auth0/tree/v1.9.2) (2022-10-07) +[Full Changelog](https://github.com/auth0/nextjs-auth0/compare/v1.9.1...v1.9.2) + +**Added** +- Fix updates to session not reflected in async `getServerSideProps` [\#843](https://github.com/auth0/nextjs-auth0/pull/843) ([adamjmcgrath](https://github.com/adamjmcgrath)) + ## [v1.9.1](https://github.com/auth0/nextjs-auth0/tree/v1.9.1) (2022-06-16) [Full Changelog](https://github.com/auth0/nextjs-auth0/compare/v1.9.0...v1.9.1) diff --git a/docs/assets/css/main.css b/docs/assets/css/main.css index ca83efe46..46571c27c 100644 --- a/docs/assets/css/main.css +++ b/docs/assets/css/main.css @@ -1,3 +1,25 @@ +:root { + --color-background: #fdfdfd; + --color-text: #222; + --color-text-aside: #707070; + --color-link: #4da6ff; + --color-menu-divider: #eee; + --color-menu-divider-focus: #000; + --color-menu-label: #707070; + --color-panel: #fff; + --color-panel-divider: #eee; + --color-comment-tag: #707070; + --color-comment-tag-text: #fff; + --color-code-background: rgba(0, 0, 0, 0.04); + --color-ts: #9600ff; + --color-ts-interface: #647f1b; + --color-ts-enum: #937210; + --color-ts-class: #0672de; + --color-ts-private: #707070; + --color-toolbar: #fff; + --color-toolbar-text: #333; +} + /*! normalize.css v1.1.3 | MIT License | git.io/normalize */ /* ========================================================================== * * HTML5 display definitions @@ -1585,14 +1607,14 @@ ul.tsd-descriptions > li > :last-child > :last-child > :last-child, } } body { - background: #fdfdfd; + background: var(--color-background); font-family: "Segoe UI", sans-serif; font-size: 16px; - color: #222; + color: var(--color-text); } a { - color: #4da6ff; + color: var(--color-link); text-decoration: none; } a:hover { @@ -1604,7 +1626,7 @@ code, pre { padding: 0.2em; margin: 0; font-size: 14px; - background-color: rgba(0, 0, 0, 0.04); + background-color: var(--color-code-background); } pre { @@ -1670,7 +1692,7 @@ blockquote { padding: 20px 20px 0 0; max-width: 450px; visibility: hidden; - background-color: #fff; + background-color: var(--color-panel); transform: translate(100%, 0); } html.default .col-menu > *:last-child { @@ -1730,7 +1752,7 @@ html.default.has-menu .col-content { .tsd-page-title { padding: 70px 0 20px 0; margin: 0 0 40px 0; - background: #fff; + background: var(--color-panel); box-shadow: 0 0 5px rgba(0, 0, 0, 0.35); } .tsd-page-title h1 { @@ -1740,10 +1762,10 @@ html.default.has-menu .col-content { .tsd-breadcrumb { margin: 0; padding: 0; - color: #707070; + color: var(--color-text-aside); } .tsd-breadcrumb a { - color: #707070; + color: var(--color-text-aside); text-decoration: none; } .tsd-breadcrumb a:hover { @@ -1816,8 +1838,8 @@ dl.tsd-comment-tags dt { padding: 1px 5px; margin: 0 10px 0 0; border-radius: 4px; - border: 1px solid #707070; - color: #707070; + border: 1px solid var(--color-comment-tag); + color: var(--color-comment-tag); font-size: 0.8em; font-weight: normal; } @@ -1887,7 +1909,7 @@ dl.tsd-comment-tags p { top: 40px; right: 20px; height: auto; - background-color: #fff; + background-color: var(--color-panel); visibility: hidden; transform: translate(50%, 0); box-shadow: 0 0 4px rgba(0, 0, 0, 0.25); @@ -1909,11 +1931,11 @@ dl.tsd-comment-tags p { } footer { - border-top: 1px solid #eee; - background-color: #fff; + border-top: 1px solid var(--color-panel-divider); + background-color: var(--color-panel); } footer.with-border-bottom { - border-bottom: 1px solid #eee; + border-bottom: 1px solid var(--color-panel-divider); } footer .tsd-legend-group { font-size: 0; @@ -1951,7 +1973,7 @@ footer .tsd-legend { .tsd-index-panel h3 { margin: 0 -20px 10px -20px; padding: 0 20px 10px 20px; - border-bottom: 1px solid #eee; + border-bottom: 1px solid var(--color-panel-divider); } .tsd-index-panel ul.tsd-index-list { -webkit-column-count: 3; @@ -1995,39 +2017,39 @@ footer .tsd-legend { } .tsd-index-panel a, .tsd-index-panel .tsd-parent-kind-module a { - color: #9600ff; + color: var(--color-ts); } .tsd-index-panel .tsd-parent-kind-interface a { - color: #647F1B; + color: var(--color-ts-interface); } .tsd-index-panel .tsd-parent-kind-enum a { - color: #937210; + color: var(--color-ts-enum); } .tsd-index-panel .tsd-parent-kind-class a { - color: #0672DE; + color: var(--color-ts-class); } .tsd-index-panel .tsd-kind-module a { - color: #9600ff; + color: var(--color-ts); } .tsd-index-panel .tsd-kind-interface a { - color: #647F1B; + color: var(--color-ts-interface); } .tsd-index-panel .tsd-kind-enum a { - color: #937210; + color: var(--color-ts-enum); } .tsd-index-panel .tsd-kind-class a { - color: #0672DE; + color: var(--color-ts-class); } .tsd-index-panel .tsd-is-private a { - color: #707070; + color: var(--color-ts-private); } .tsd-flag { display: inline-block; padding: 1px 5px; border-radius: 4px; - color: #fff; - background-color: #707070; + color: var(--color-comment-tag-text); + background-color: var(--color-comment-tag); text-indent: 0; font-size: 14px; font-weight: normal; @@ -2047,19 +2069,19 @@ footer .tsd-legend { border-bottom: none; } .tsd-member a[data-tsd-kind] { - color: #9600ff; + color: var(--color-ts); } .tsd-member a[data-tsd-kind=Interface] { - color: #647F1B; + color: var(--color-ts-interface); } .tsd-member a[data-tsd-kind=Enum] { - color: #937210; + color: var(--color-ts-enum); } .tsd-member a[data-tsd-kind=Class] { - color: #0672DE; + color: var(--color-ts-class); } .tsd-member a[data-tsd-kind=Private] { - color: #707070; + color: var(--color-ts-private); } .tsd-navigation { @@ -2070,7 +2092,7 @@ footer .tsd-legend { padding-top: 2px; padding-bottom: 2px; border-left: 2px solid transparent; - color: #222; + color: var(--color-text); text-decoration: none; transition: border-left-color 0.1s; } @@ -2113,10 +2135,10 @@ footer .tsd-legend { padding-left: 105px; } .tsd-navigation.primary > ul { - border-bottom: 1px solid #eee; + border-bottom: 1px solid var(--color-panel-divider); } .tsd-navigation.primary li { - border-top: 1px solid #eee; + border-top: 1px solid var(--color-panel-divider); } .tsd-navigation.primary li.current > a { font-weight: bold; @@ -2124,7 +2146,7 @@ footer .tsd-legend { .tsd-navigation.primary li.label span { display: block; padding: 20px 0 6px 5px; - color: #707070; + color: var(--color-menu-label); } .tsd-navigation.primary li.globals + li > span, .tsd-navigation.primary li.globals + li > a { padding-top: 20px; @@ -2164,16 +2186,16 @@ footer .tsd-legend { padding-left: 125px; } .tsd-navigation.secondary ul.current a { - border-left-color: #eee; + border-left-color: var(--color-panel-divider); } .tsd-navigation.secondary li.focus > a, .tsd-navigation.secondary ul.current li.focus > a { - border-left-color: #000; + border-left-color: var(--color-menu-divider-focus); } .tsd-navigation.secondary li.current { margin-top: 20px; margin-bottom: 20px; - border-left-color: #eee; + border-left-color: var(--color-panel-divider); } .tsd-navigation.secondary li.current > a { font-weight: bold; @@ -2188,7 +2210,7 @@ footer .tsd-legend { .tsd-panel { margin: 20px 0; padding: 20px; - background-color: #fff; + background-color: var(--color-panel); box-shadow: 0 0 4px rgba(0, 0, 0, 0.25); } .tsd-panel:empty { @@ -2197,7 +2219,7 @@ footer .tsd-legend { .tsd-panel > h1, .tsd-panel > h2, .tsd-panel > h3 { margin: 1.5em -20px 10px -20px; padding: 0 20px 10px 20px; - border-bottom: 1px solid #eee; + border-bottom: 1px solid var(--color-panel-divider); } .tsd-panel > h1.tsd-before-signature, .tsd-panel > h2.tsd-before-signature, .tsd-panel > h3.tsd-before-signature { margin-bottom: 0; @@ -2259,7 +2281,7 @@ footer .tsd-legend { outline: 0; border: 0; background: transparent; - color: #222; + color: var(--color-text); } #tsd-search .field label { position: absolute; @@ -2282,17 +2304,17 @@ footer .tsd-legend { } #tsd-search .results li { padding: 0 10px; - background-color: #fdfdfd; + background-color: var(--color-background); } #tsd-search .results li:nth-child(even) { - background-color: #fff; + background-color: var(--color-panel); } #tsd-search .results li.state { display: none; } #tsd-search .results li.current, #tsd-search .results li:hover { - background-color: #eee; + background-color: var(--color-panel-divider); } #tsd-search .results a { display: block; @@ -2301,11 +2323,11 @@ footer .tsd-legend { top: 10px; } #tsd-search .results span.parent { - color: #707070; + color: var(--color-text-aside); font-weight: normal; } #tsd-search.has-focus { - background-color: #eee; + background-color: var(--color-panel-divider); } #tsd-search.has-focus .field input { top: 0; @@ -2328,7 +2350,7 @@ footer .tsd-legend { .tsd-signature { margin: 0 0 1em 0; padding: 10px; - border: 1px solid #eee; + border: 1px solid var(--color-panel-divider); font-family: Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 14px; overflow-x: auto; @@ -2353,7 +2375,7 @@ footer .tsd-legend { } .tsd-signature-symbol { - color: #707070; + color: var(--color-text-aside); font-weight: normal; } @@ -2365,7 +2387,7 @@ footer .tsd-legend { .tsd-signatures { padding: 0; margin: 0 0 1em 0; - border: 1px solid #eee; + border: 1px solid var(--color-panel-divider); } .tsd-signatures .tsd-signature { margin: 0; @@ -2376,7 +2398,7 @@ footer .tsd-legend { border-top-width: 0; } .tsd-signatures .tsd-signature.current { - background-color: #eee; + background-color: var(--color-panel-divider); } .tsd-signatures.active > .tsd-signature { cursor: pointer; @@ -2450,11 +2472,11 @@ ul.tsd-type-parameters .tsd-comment { .tsd-sources { font-size: 14px; - color: #707070; + color: var(--color-text-aside); margin: 0 0 1em 0; } .tsd-sources a { - color: #707070; + color: var(--color-text-aside); text-decoration: underline; } .tsd-sources ul, .tsd-sources p { @@ -2472,13 +2494,13 @@ ul.tsd-type-parameters .tsd-comment { left: 0; width: 100%; height: 40px; - color: #333; - background: #fff; - border-bottom: 1px solid #eee; + color: var(--color-toolbar-text); + background: var(--color-toolbar); + border-bottom: 1px solid var(--color-panel-divider); transition: transform 0.3s linear; } .tsd-page-toolbar a { - color: #333; + color: var(--color-toolbar-text); text-decoration: none; } .tsd-page-toolbar a.title { @@ -2538,7 +2560,7 @@ ul.tsd-type-parameters .tsd-comment { } .tsd-widget.active { opacity: 1; - background-color: #eee; + background-color: var(--color-panel-divider); } .tsd-widget.no-caption { width: 40px; @@ -2607,16 +2629,16 @@ input[type=checkbox]:checked + .tsd-widget:before { } .tsd-select .tsd-select-list li { padding: 0 20px 0 0; - background-color: #fdfdfd; + background-color: var(--color-background); } .tsd-select .tsd-select-list li:before { background-position: 40px 0; } .tsd-select .tsd-select-list li:nth-child(even) { - background-color: #fff; + background-color: var(--color-panel); } .tsd-select .tsd-select-list li:hover { - background-color: #eee; + background-color: var(--color-panel-divider); } .tsd-select .tsd-select-list li.selected:before { background-position: -200px 0; diff --git a/docs/assets/js/main.js b/docs/assets/js/main.js index 715fdab07..dc257a868 100644 --- a/docs/assets/js/main.js +++ b/docs/assets/js/main.js @@ -136,7 +136,7 @@ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpac /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"Viewport\": () => /* binding */ Viewport\n/* harmony export */ });\n/* harmony import */ var _EventTarget__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../EventTarget */ \"./default/assets/js/src/typedoc/EventTarget.ts\");\n/* harmony import */ var _utils_trottle__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../utils/trottle */ \"./default/assets/js/src/typedoc/utils/trottle.ts\");\nvar __extends = (undefined && undefined.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n\n\n/**\n * A global service that monitors the window size and scroll position.\n */\nvar Viewport = /** @class */ (function (_super) {\n __extends(Viewport, _super);\n /**\n * Create new Viewport instance.\n */\n function Viewport() {\n var _this = _super.call(this) || this;\n /**\n * The current scroll position.\n */\n _this.scrollTop = 0;\n /**\n * The previous scrollTop.\n */\n _this.lastY = 0;\n /**\n * The width of the window.\n */\n _this.width = 0;\n /**\n * The height of the window.\n */\n _this.height = 0;\n /**\n * Boolean indicating whether the toolbar is shown.\n */\n _this.showToolbar = true;\n _this.toolbar = (document.querySelector(\".tsd-page-toolbar\"));\n _this.secondaryNav = (document.querySelector(\".tsd-navigation.secondary\"));\n window.addEventListener(\"scroll\", (0,_utils_trottle__WEBPACK_IMPORTED_MODULE_1__.throttle)(function () { return _this.onScroll(); }, 10));\n window.addEventListener(\"resize\", (0,_utils_trottle__WEBPACK_IMPORTED_MODULE_1__.throttle)(function () { return _this.onResize(); }, 10));\n _this.onResize();\n _this.onScroll();\n return _this;\n }\n /**\n * Trigger a resize event.\n */\n Viewport.prototype.triggerResize = function () {\n var event = new CustomEvent(\"resize\", {\n detail: {\n width: this.width,\n height: this.height,\n },\n });\n this.dispatchEvent(event);\n };\n /**\n * Triggered when the size of the window has changed.\n */\n Viewport.prototype.onResize = function () {\n this.width = window.innerWidth || 0;\n this.height = window.innerHeight || 0;\n var event = new CustomEvent(\"resize\", {\n detail: {\n width: this.width,\n height: this.height,\n },\n });\n this.dispatchEvent(event);\n };\n /**\n * Triggered when the user scrolled the viewport.\n */\n Viewport.prototype.onScroll = function () {\n this.scrollTop = window.scrollY || 0;\n var event = new CustomEvent(\"scroll\", {\n detail: {\n scrollTop: this.scrollTop,\n },\n });\n this.dispatchEvent(event);\n this.hideShowToolbar();\n };\n /**\n * Handle hiding/showing of the toolbar.\n */\n Viewport.prototype.hideShowToolbar = function () {\n var isShown = this.showToolbar;\n this.showToolbar = this.lastY >= this.scrollTop || this.scrollTop === 0;\n if (isShown !== this.showToolbar) {\n this.toolbar.classList.toggle(\"tsd-page-toolbar--hide\");\n this.secondaryNav.classList.toggle(\"tsd-navigation--toolbar-hide\");\n }\n this.lastY = this.scrollTop;\n };\n Viewport.instance = new Viewport();\n return Viewport;\n}(_EventTarget__WEBPACK_IMPORTED_MODULE_0__.EventTarget));\n\n\n\n//# sourceURL=webpack:///./default/assets/js/src/typedoc/services/Viewport.ts?"); +eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"Viewport\": () => /* binding */ Viewport\n/* harmony export */ });\n/* harmony import */ var _EventTarget__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../EventTarget */ \"./default/assets/js/src/typedoc/EventTarget.ts\");\n/* harmony import */ var _utils_trottle__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../utils/trottle */ \"./default/assets/js/src/typedoc/utils/trottle.ts\");\nvar __extends = (undefined && undefined.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n\n\n/**\n * A global service that monitors the window size and scroll position.\n */\nvar Viewport = /** @class */ (function (_super) {\n __extends(Viewport, _super);\n /**\n * Create new Viewport instance.\n */\n function Viewport() {\n var _this = _super.call(this) || this;\n /**\n * The current scroll position.\n */\n _this.scrollTop = 0;\n /**\n * The previous scrollTop.\n */\n _this.lastY = 0;\n /**\n * The width of the window.\n */\n _this.width = 0;\n /**\n * The height of the window.\n */\n _this.height = 0;\n /**\n * Boolean indicating whether the toolbar is shown.\n */\n _this.showToolbar = true;\n _this.toolbar = (document.querySelector(\".tsd-page-toolbar\"));\n _this.secondaryNav = (document.querySelector(\".tsd-navigation.secondary\"));\n window.addEventListener(\"scroll\", (0,_utils_trottle__WEBPACK_IMPORTED_MODULE_1__.throttle)(function () { return _this.onScroll(); }, 10));\n window.addEventListener(\"resize\", (0,_utils_trottle__WEBPACK_IMPORTED_MODULE_1__.throttle)(function () { return _this.onResize(); }, 10));\n _this.onResize();\n _this.onScroll();\n return _this;\n }\n /**\n * Trigger a resize event.\n */\n Viewport.prototype.triggerResize = function () {\n var event = new CustomEvent(\"resize\", {\n detail: {\n width: this.width,\n height: this.height,\n },\n });\n this.dispatchEvent(event);\n };\n /**\n * Triggered when the size of the window has changed.\n */\n Viewport.prototype.onResize = function () {\n this.width = window.innerWidth || 0;\n this.height = window.innerHeight || 0;\n var event = new CustomEvent(\"resize\", {\n detail: {\n width: this.width,\n height: this.height,\n },\n });\n this.dispatchEvent(event);\n };\n /**\n * Triggered when the user scrolled the viewport.\n */\n Viewport.prototype.onScroll = function () {\n this.scrollTop = window.scrollY || 0;\n var event = new CustomEvent(\"scroll\", {\n detail: {\n scrollTop: this.scrollTop,\n },\n });\n this.dispatchEvent(event);\n this.hideShowToolbar();\n };\n /**\n * Handle hiding/showing of the toolbar.\n */\n Viewport.prototype.hideShowToolbar = function () {\n var isShown = this.showToolbar;\n this.showToolbar = this.lastY >= this.scrollTop || this.scrollTop <= 0;\n if (isShown !== this.showToolbar) {\n this.toolbar.classList.toggle(\"tsd-page-toolbar--hide\");\n this.secondaryNav.classList.toggle(\"tsd-navigation--toolbar-hide\");\n }\n this.lastY = this.scrollTop;\n };\n Viewport.instance = new Viewport();\n return Viewport;\n}(_EventTarget__WEBPACK_IMPORTED_MODULE_0__.EventTarget));\n\n\n\n//# sourceURL=webpack:///./default/assets/js/src/typedoc/services/Viewport.ts?"); /***/ }), diff --git a/docs/assets/js/search.js b/docs/assets/js/search.js index 150de5da4..d9924cbbc 100644 --- a/docs/assets/js/search.js +++ b/docs/assets/js/search.js @@ -1 +1 @@ -window.searchData = {"kinds":{"1":"Module","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":"cookie","url":"interfaces/config.sessionconfig.html#cookie","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.SessionConfig"},{"id":29,"kind":256,"name":"CookieConfig","url":"interfaces/config.cookieconfig.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"config"},{"id":30,"kind":1024,"name":"domain","url":"interfaces/config.cookieconfig.html#domain","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.CookieConfig"},{"id":31,"kind":1024,"name":"path","url":"interfaces/config.cookieconfig.html#path","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.CookieConfig"},{"id":32,"kind":1024,"name":"transient","url":"interfaces/config.cookieconfig.html#transient","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.CookieConfig"},{"id":33,"kind":1024,"name":"httpOnly","url":"interfaces/config.cookieconfig.html#httponly","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.CookieConfig"},{"id":34,"kind":1024,"name":"secure","url":"interfaces/config.cookieconfig.html#secure","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.CookieConfig"},{"id":35,"kind":1024,"name":"sameSite","url":"interfaces/config.cookieconfig.html#samesite","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.CookieConfig"},{"id":36,"kind":256,"name":"AuthorizationParameters","url":"interfaces/config.authorizationparameters.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"config"},{"id":37,"kind":1024,"name":"scope","url":"interfaces/config.authorizationparameters.html#scope","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.AuthorizationParameters"},{"id":38,"kind":1024,"name":"response_mode","url":"interfaces/config.authorizationparameters.html#response_mode","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.AuthorizationParameters"},{"id":39,"kind":1024,"name":"response_type","url":"interfaces/config.authorizationparameters.html#response_type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.AuthorizationParameters"},{"id":40,"kind":256,"name":"NextConfig","url":"interfaces/config.nextconfig.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"config"},{"id":41,"kind":1024,"name":"organization","url":"interfaces/config.nextconfig.html#organization","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.NextConfig"},{"id":42,"kind":1024,"name":"routes","url":"interfaces/config.nextconfig.html#routes","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.NextConfig"},{"id":43,"kind":65536,"name":"__type","url":"interfaces/config.nextconfig.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"config.NextConfig"},{"id":44,"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":45,"kind":1024,"name":"identityClaimFilter","url":"interfaces/config.nextconfig.html#identityclaimfilter","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.NextConfig"},{"id":46,"kind":4194304,"name":"ConfigParameters","url":"modules/config.html#configparameters","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"config"},{"id":47,"kind":1,"name":"frontend","url":"modules/frontend.html","classes":"tsd-kind-module"},{"id":48,"kind":1,"name":"frontend/use-user","url":"modules/frontend_use_user.html","classes":"tsd-kind-module"},{"id":49,"kind":256,"name":"UserProfile","url":"interfaces/frontend_use_user.userprofile.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"frontend/use-user"},{"id":50,"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":51,"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":52,"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":53,"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":54,"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":55,"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":56,"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":57,"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":58,"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":59,"kind":65536,"name":"__type","url":"modules/frontend_use_user.html#usercontext.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"frontend/use-user.UserContext"},{"id":60,"kind":1024,"name":"user","url":"modules/frontend_use_user.html#usercontext.__type-1.user","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"frontend/use-user.UserContext.__type"},{"id":61,"kind":1024,"name":"error","url":"modules/frontend_use_user.html#usercontext.__type-1.error","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"frontend/use-user.UserContext.__type"},{"id":62,"kind":1024,"name":"isLoading","url":"modules/frontend_use_user.html#usercontext.__type-1.isloading","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"frontend/use-user.UserContext.__type"},{"id":63,"kind":1024,"name":"checkSession","url":"modules/frontend_use_user.html#usercontext.__type-1.checksession","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"frontend/use-user.UserContext.__type"},{"id":64,"kind":65536,"name":"__type","url":"modules/frontend_use_user.html#usercontext.__type-1.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"frontend/use-user.UserContext.__type"},{"id":65,"kind":128,"name":"RequestError","url":"classes/frontend_use_user.requesterror.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"frontend/use-user"},{"id":66,"kind":512,"name":"constructor","url":"classes/frontend_use_user.requesterror.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"frontend/use-user.RequestError"},{"id":67,"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":68,"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":69,"kind":4194304,"name":"UseUser","url":"modules/frontend_use_user.html#useuser","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"frontend/use-user"},{"id":70,"kind":65536,"name":"__type","url":"modules/frontend_use_user.html#useuser.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"frontend/use-user.UseUser"},{"id":71,"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":72,"kind":65536,"name":"__type","url":"modules/frontend_use_user.html#userprovider.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"frontend/use-user.UserProvider"},{"id":73,"kind":1024,"name":"default","url":"modules/frontend_use_user.html#default","classes":"tsd-kind-property tsd-parent-kind-module","parent":"frontend/use-user"},{"id":74,"kind":65536,"name":"__type","url":"modules/frontend_use_user.html#__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-module","parent":"frontend/use-user"},{"id":75,"kind":1,"name":"frontend/with-page-auth-required","url":"modules/frontend_with_page_auth_required.html","classes":"tsd-kind-module"},{"id":76,"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":77,"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":78,"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":79,"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":80,"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":81,"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":82,"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":83,"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":84,"kind":1,"name":"handlers/auth","url":"modules/handlers_auth.html","classes":"tsd-kind-module"},{"id":85,"kind":256,"name":"Handlers","url":"interfaces/handlers_auth.handlers.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"handlers/auth"},{"id":86,"kind":1024,"name":"login","url":"interfaces/handlers_auth.handlers.html#login","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"handlers/auth.Handlers"},{"id":87,"kind":1024,"name":"logout","url":"interfaces/handlers_auth.handlers.html#logout","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"handlers/auth.Handlers"},{"id":88,"kind":1024,"name":"callback","url":"interfaces/handlers_auth.handlers.html#callback","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"handlers/auth.Handlers"},{"id":89,"kind":1024,"name":"profile","url":"interfaces/handlers_auth.handlers.html#profile","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"handlers/auth.Handlers"},{"id":90,"kind":4194304,"name":"HandleAuth","url":"modules/handlers_auth.html#handleauth","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"handlers/auth"},{"id":91,"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":92,"kind":1,"name":"handlers/callback","url":"modules/handlers_callback.html","classes":"tsd-kind-module"},{"id":93,"kind":4194304,"name":"AfterCallback","url":"modules/handlers_callback.html#aftercallback","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"handlers/callback"},{"id":94,"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":95,"kind":256,"name":"CallbackOptions","url":"interfaces/handlers_callback.callbackoptions.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"handlers/callback"},{"id":96,"kind":1024,"name":"afterCallback","url":"interfaces/handlers_callback.callbackoptions.html#aftercallback","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"handlers/callback.CallbackOptions"},{"id":97,"kind":1024,"name":"redirectUri","url":"interfaces/handlers_callback.callbackoptions.html#redirecturi","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"handlers/callback.CallbackOptions"},{"id":98,"kind":1024,"name":"organization","url":"interfaces/handlers_callback.callbackoptions.html#organization","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"handlers/callback.CallbackOptions"},{"id":99,"kind":1024,"name":"authorizationParams","url":"interfaces/handlers_callback.callbackoptions.html#authorizationparams","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"handlers/callback.CallbackOptions"},{"id":100,"kind":4194304,"name":"HandleCallback","url":"modules/handlers_callback.html#handlecallback","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"handlers/callback"},{"id":101,"kind":65536,"name":"__type","url":"modules/handlers_callback.html#handlecallback.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"handlers/callback.HandleCallback"},{"id":102,"kind":1,"name":"handlers","url":"modules/handlers.html","classes":"tsd-kind-module"},{"id":103,"kind":1,"name":"handlers/login","url":"modules/handlers_login.html","classes":"tsd-kind-module"},{"id":104,"kind":4194304,"name":"GetLoginState","url":"modules/handlers_login.html#getloginstate","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"handlers/login"},{"id":105,"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":106,"kind":256,"name":"AuthorizationParams","url":"interfaces/handlers_login.authorizationparams.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"handlers/login"},{"id":107,"kind":1024,"name":"invitation","url":"interfaces/handlers_login.authorizationparams.html#invitation","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"handlers/login.AuthorizationParams"},{"id":108,"kind":1024,"name":"organization","url":"interfaces/handlers_login.authorizationparams.html#organization","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"handlers/login.AuthorizationParams"},{"id":109,"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":110,"kind":1024,"name":"scope","url":"interfaces/handlers_login.authorizationparams.html#scope","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"handlers/login.AuthorizationParams"},{"id":111,"kind":1024,"name":"response_mode","url":"interfaces/handlers_login.authorizationparams.html#response_mode","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"handlers/login.AuthorizationParams"},{"id":112,"kind":1024,"name":"response_type","url":"interfaces/handlers_login.authorizationparams.html#response_type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"handlers/login.AuthorizationParams"},{"id":113,"kind":256,"name":"LoginOptions","url":"interfaces/handlers_login.loginoptions.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"handlers/login"},{"id":114,"kind":1024,"name":"authorizationParams","url":"interfaces/handlers_login.loginoptions.html#authorizationparams","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"handlers/login.LoginOptions"},{"id":115,"kind":1024,"name":"returnTo","url":"interfaces/handlers_login.loginoptions.html#returnto","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"handlers/login.LoginOptions"},{"id":116,"kind":1024,"name":"getLoginState","url":"interfaces/handlers_login.loginoptions.html#getloginstate","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"handlers/login.LoginOptions"},{"id":117,"kind":4194304,"name":"HandleLogin","url":"modules/handlers_login.html#handlelogin","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"handlers/login"},{"id":118,"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":119,"kind":1,"name":"handlers/logout","url":"modules/handlers_logout.html","classes":"tsd-kind-module"},{"id":120,"kind":256,"name":"LogoutOptions","url":"interfaces/handlers_logout.logoutoptions.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"handlers/logout"},{"id":121,"kind":1024,"name":"returnTo","url":"interfaces/handlers_logout.logoutoptions.html#returnto","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"handlers/logout.LogoutOptions"},{"id":122,"kind":4194304,"name":"HandleLogout","url":"modules/handlers_logout.html#handlelogout","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"handlers/logout"},{"id":123,"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":124,"kind":1,"name":"handlers/profile","url":"modules/handlers_profile.html","classes":"tsd-kind-module"},{"id":125,"kind":4194304,"name":"AfterRefetch","url":"modules/handlers_profile.html#afterrefetch","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"handlers/profile"},{"id":126,"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":127,"kind":4194304,"name":"ProfileOptions","url":"modules/handlers_profile.html#profileoptions","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"handlers/profile"},{"id":128,"kind":65536,"name":"__type","url":"modules/handlers_profile.html#profileoptions.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"handlers/profile.ProfileOptions"},{"id":129,"kind":1024,"name":"refetch","url":"modules/handlers_profile.html#profileoptions.__type-2.refetch","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"handlers/profile.ProfileOptions.__type"},{"id":130,"kind":1024,"name":"afterRefetch","url":"modules/handlers_profile.html#profileoptions.__type-2.afterrefetch-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"handlers/profile.ProfileOptions.__type"},{"id":131,"kind":4194304,"name":"HandleProfile","url":"modules/handlers_profile.html#handleprofile","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"handlers/profile"},{"id":132,"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":133,"kind":1,"name":"helpers/get-server-side-props-wrapper","url":"modules/helpers_get_server_side_props_wrapper.html","classes":"tsd-kind-module"},{"id":134,"kind":4194304,"name":"GetServerSidePropsWrapper","url":"modules/helpers_get_server_side_props_wrapper.html#getserversidepropswrapper","classes":"tsd-kind-type-alias tsd-parent-kind-module tsd-has-type-parameter","parent":"helpers/get-server-side-props-wrapper"},{"id":135,"kind":65536,"name":"__type","url":"modules/helpers_get_server_side_props_wrapper.html#getserversidepropswrapper.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"helpers/get-server-side-props-wrapper.GetServerSidePropsWrapper"},{"id":136,"kind":1,"name":"helpers","url":"modules/helpers.html","classes":"tsd-kind-module"},{"id":137,"kind":1,"name":"helpers/with-api-auth-required","url":"modules/helpers_with_api_auth_required.html","classes":"tsd-kind-module"},{"id":138,"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":139,"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":140,"kind":1,"name":"helpers/with-page-auth-required","url":"modules/helpers_with_page_auth_required.html","classes":"tsd-kind-module"},{"id":141,"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":142,"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":143,"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":144,"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":145,"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":146,"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":147,"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":148,"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":149,"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":150,"kind":1,"name":"instance","url":"modules/instance.html","classes":"tsd-kind-module"},{"id":151,"kind":256,"name":"SignInWithAuth0","url":"interfaces/instance.signinwithauth0.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"instance"},{"id":152,"kind":1024,"name":"getSession","url":"interfaces/instance.signinwithauth0.html#getsession","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"instance.SignInWithAuth0"},{"id":153,"kind":1024,"name":"getAccessToken","url":"interfaces/instance.signinwithauth0.html#getaccesstoken","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"instance.SignInWithAuth0"},{"id":154,"kind":1024,"name":"handleLogin","url":"interfaces/instance.signinwithauth0.html#handlelogin","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"instance.SignInWithAuth0"},{"id":155,"kind":1024,"name":"handleCallback","url":"interfaces/instance.signinwithauth0.html#handlecallback","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"instance.SignInWithAuth0"},{"id":156,"kind":1024,"name":"handleLogout","url":"interfaces/instance.signinwithauth0.html#handlelogout","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"instance.SignInWithAuth0"},{"id":157,"kind":1024,"name":"handleProfile","url":"interfaces/instance.signinwithauth0.html#handleprofile","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"instance.SignInWithAuth0"},{"id":158,"kind":1024,"name":"withApiAuthRequired","url":"interfaces/instance.signinwithauth0.html#withapiauthrequired","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"instance.SignInWithAuth0"},{"id":159,"kind":1024,"name":"withPageAuthRequired","url":"interfaces/instance.signinwithauth0.html#withpageauthrequired","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"instance.SignInWithAuth0"},{"id":160,"kind":1024,"name":"getServerSidePropsWrapper","url":"interfaces/instance.signinwithauth0.html#getserversidepropswrapper","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"instance.SignInWithAuth0"},{"id":161,"kind":1024,"name":"handleAuth","url":"interfaces/instance.signinwithauth0.html#handleauth","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"instance.SignInWithAuth0"},{"id":162,"kind":4194304,"name":"InitAuth0","url":"modules/instance.html#initauth0","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"instance"},{"id":163,"kind":65536,"name":"__type","url":"modules/instance.html#initauth0.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"instance.InitAuth0"},{"id":164,"kind":1,"name":"session/get-access-token","url":"modules/session_get_access_token.html","classes":"tsd-kind-module"},{"id":165,"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":166,"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":167,"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":168,"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":169,"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":170,"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":171,"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":172,"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":173,"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":174,"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":175,"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":176,"kind":1,"name":"session/get-session","url":"modules/session_get_session.html","classes":"tsd-kind-module"},{"id":177,"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":178,"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":179,"kind":1,"name":"session","url":"modules/session.html","classes":"tsd-kind-module"},{"id":180,"kind":1,"name":"session/session","url":"modules/session_session.html","classes":"tsd-kind-module"},{"id":181,"kind":256,"name":"Claims","url":"interfaces/session_session.claims.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"session/session"},{"id":182,"kind":128,"name":"default","url":"classes/session_session.default.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"session/session"},{"id":183,"kind":512,"name":"constructor","url":"classes/session_session.default.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"session/session.default"},{"id":184,"kind":1024,"name":"user","url":"classes/session_session.default.html#user","classes":"tsd-kind-property tsd-parent-kind-class","parent":"session/session.default"},{"id":185,"kind":1024,"name":"idToken","url":"classes/session_session.default.html#idtoken","classes":"tsd-kind-property tsd-parent-kind-class","parent":"session/session.default"},{"id":186,"kind":1024,"name":"accessToken","url":"classes/session_session.default.html#accesstoken","classes":"tsd-kind-property tsd-parent-kind-class","parent":"session/session.default"},{"id":187,"kind":1024,"name":"accessTokenScope","url":"classes/session_session.default.html#accesstokenscope","classes":"tsd-kind-property tsd-parent-kind-class","parent":"session/session.default"},{"id":188,"kind":1024,"name":"accessTokenExpiresAt","url":"classes/session_session.default.html#accesstokenexpiresat","classes":"tsd-kind-property tsd-parent-kind-class","parent":"session/session.default"},{"id":189,"kind":1024,"name":"refreshToken","url":"classes/session_session.default.html#refreshtoken","classes":"tsd-kind-property tsd-parent-kind-class","parent":"session/session.default"},{"id":190,"kind":1,"name":"utils/errors","url":"modules/utils_errors.html","classes":"tsd-kind-module"},{"id":191,"kind":64,"name":"htmlSafe","url":"modules/utils_errors.html#htmlsafe","classes":"tsd-kind-function tsd-parent-kind-module","parent":"utils/errors"},{"id":192,"kind":128,"name":"AccessTokenError","url":"classes/utils_errors.accesstokenerror.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"utils/errors"},{"id":193,"kind":512,"name":"constructor","url":"classes/utils_errors.accesstokenerror.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"utils/errors.AccessTokenError"},{"id":194,"kind":1024,"name":"code","url":"classes/utils_errors.accesstokenerror.html#code","classes":"tsd-kind-property tsd-parent-kind-class","parent":"utils/errors.AccessTokenError"},{"id":195,"kind":128,"name":"HandlerError","url":"classes/utils_errors.handlererror.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"utils/errors"},{"id":196,"kind":512,"name":"constructor","url":"classes/utils_errors.handlererror.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"utils/errors.HandlerError"},{"id":197,"kind":1024,"name":"status","url":"classes/utils_errors.handlererror.html#status","classes":"tsd-kind-property tsd-parent-kind-class","parent":"utils/errors.HandlerError"},{"id":198,"kind":1024,"name":"code","url":"classes/utils_errors.handlererror.html#code","classes":"tsd-kind-property tsd-parent-kind-class","parent":"utils/errors.HandlerError"},{"id":199,"kind":1,"name":"version","url":"modules/version.html","classes":"tsd-kind-module"},{"id":200,"kind":1024,"name":"default","url":"modules/version.html#default","classes":"tsd-kind-property tsd-parent-kind-module","parent":"version"},{"id":201,"kind":1024,"name":"ConfigProvider","url":"modules/frontend.html#configprovider","classes":"tsd-kind-property tsd-parent-kind-module","parent":"frontend"},{"id":202,"kind":65536,"name":"__type","url":"modules/frontend.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-module","parent":"frontend"},{"id":203,"kind":4194304,"name":"ConfigProviderProps","url":"modules/frontend.html#configproviderprops","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"frontend"},{"id":204,"kind":64,"name":"useConfig","url":"modules/frontend.html#useconfig","classes":"tsd-kind-function tsd-parent-kind-module","parent":"frontend"},{"id":205,"kind":16777216,"name":"UserProvider","url":"modules/frontend.html#userprovider","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"frontend"},{"id":206,"kind":16777216,"name":"UserProviderProps","url":"modules/frontend.html#userproviderprops","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"frontend"},{"id":207,"kind":16777216,"name":"UserProfile","url":"modules/frontend.html#userprofile","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"frontend"},{"id":208,"kind":16777216,"name":"RequestError","url":"modules/frontend.html#requesterror","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"frontend"},{"id":209,"kind":16777216,"name":"WithPageAuthRequired","url":"modules/frontend.html#withpageauthrequired","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"frontend"},{"id":210,"kind":16777216,"name":"WithPageAuthRequiredOptions","url":"modules/frontend.html#withpageauthrequiredoptions","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"frontend"},{"id":211,"kind":16777216,"name":"HandleCallback","url":"modules/handlers.html#handlecallback","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"handlers"},{"id":212,"kind":16777216,"name":"CallbackOptions","url":"modules/handlers.html#callbackoptions","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"handlers"},{"id":213,"kind":16777216,"name":"AfterCallback","url":"modules/handlers.html#aftercallback","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"handlers"},{"id":214,"kind":16777216,"name":"HandleLogin","url":"modules/handlers.html#handlelogin","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"handlers"},{"id":215,"kind":16777216,"name":"LoginOptions","url":"modules/handlers.html#loginoptions","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"handlers"},{"id":216,"kind":16777216,"name":"GetLoginState","url":"modules/handlers.html#getloginstate","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"handlers"},{"id":217,"kind":16777216,"name":"HandleLogout","url":"modules/handlers.html#handlelogout","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"handlers"},{"id":218,"kind":16777216,"name":"LogoutOptions","url":"modules/handlers.html#logoutoptions","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"handlers"},{"id":219,"kind":16777216,"name":"HandleProfile","url":"modules/handlers.html#handleprofile","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"handlers"},{"id":220,"kind":16777216,"name":"ProfileOptions","url":"modules/handlers.html#profileoptions","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"handlers"},{"id":221,"kind":16777216,"name":"AfterRefetch","url":"modules/handlers.html#afterrefetch","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"handlers"},{"id":222,"kind":16777216,"name":"Handlers","url":"modules/handlers.html#handlers-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"handlers"},{"id":223,"kind":16777216,"name":"HandleAuth","url":"modules/handlers.html#handleauth","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"handlers"},{"id":224,"kind":16777216,"name":"WithApiAuthRequired","url":"modules/helpers.html#withapiauthrequired","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":225,"kind":16777216,"name":"GetServerSidePropsResultWithSession","url":"modules/helpers.html#getserversidepropsresultwithsession","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":226,"kind":16777216,"name":"WithPageAuthRequired","url":"modules/helpers.html#withpageauthrequired","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":227,"kind":16777216,"name":"WithPageAuthRequiredOptions","url":"modules/helpers.html#withpageauthrequiredoptions","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":228,"kind":16777216,"name":"PageRoute","url":"modules/helpers.html#pageroute","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":229,"kind":16777216,"name":"GetServerSidePropsWrapper","url":"modules/helpers.html#getserversidepropswrapper","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":230,"kind":16777216,"name":"Session","url":"modules/session.html#session-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"session"},{"id":231,"kind":16777216,"name":"Claims","url":"modules/session.html#claims","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"session"},{"id":232,"kind":16777216,"name":"GetSession","url":"modules/session.html#getsession","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"session"},{"id":233,"kind":16777216,"name":"GetAccessToken","url":"modules/session.html#getaccesstoken","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"session"},{"id":234,"kind":16777216,"name":"AccessTokenRequest","url":"modules/session.html#accesstokenrequest","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"session"},{"id":235,"kind":16777216,"name":"GetAccessTokenResult","url":"modules/session.html#getaccesstokenresult","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"session"},{"id":236,"kind":128,"name":"SessionCache","url":"classes/session.sessioncache.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"session"},{"id":237,"kind":512,"name":"constructor","url":"classes/session.sessioncache.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"session.SessionCache"},{"id":238,"kind":2048,"name":"init","url":"classes/session.sessioncache.html#init","classes":"tsd-kind-method tsd-parent-kind-class","parent":"session.SessionCache"},{"id":239,"kind":2048,"name":"save","url":"classes/session.sessioncache.html#save","classes":"tsd-kind-method tsd-parent-kind-class","parent":"session.SessionCache"},{"id":240,"kind":2048,"name":"create","url":"classes/session.sessioncache.html#create","classes":"tsd-kind-method tsd-parent-kind-class","parent":"session.SessionCache"},{"id":241,"kind":2048,"name":"delete","url":"classes/session.sessioncache.html#delete","classes":"tsd-kind-method tsd-parent-kind-class","parent":"session.SessionCache"},{"id":242,"kind":2048,"name":"isAuthenticated","url":"classes/session.sessioncache.html#isauthenticated","classes":"tsd-kind-method tsd-parent-kind-class","parent":"session.SessionCache"},{"id":243,"kind":2048,"name":"getIdToken","url":"classes/session.sessioncache.html#getidtoken","classes":"tsd-kind-method tsd-parent-kind-class","parent":"session.SessionCache"},{"id":244,"kind":2048,"name":"set","url":"classes/session.sessioncache.html#set","classes":"tsd-kind-method tsd-parent-kind-class","parent":"session.SessionCache"},{"id":245,"kind":2048,"name":"get","url":"classes/session.sessioncache.html#get","classes":"tsd-kind-method tsd-parent-kind-class","parent":"session.SessionCache"},{"id":246,"kind":2048,"name":"fromTokenSet","url":"classes/session.sessioncache.html#fromtokenset","classes":"tsd-kind-method tsd-parent-kind-class","parent":"session.SessionCache"}],"index":{"version":"2.3.9","fields":["name","parent"],"fieldVectors":[["name/0",[0,35.932]],["parent/0",[]],["name/1",[1,52.462]],["parent/1",[0,3.943]],["name/2",[2,52.462]],["parent/2",[3,2.866]],["name/3",[4,30.685]],["parent/3",[3,2.866]],["name/4",[5,52.462]],["parent/4",[3,2.866]],["name/5",[6,39.117]],["parent/5",[3,2.866]],["name/6",[7,52.462]],["parent/6",[3,2.866]],["name/7",[8,52.462]],["parent/7",[3,2.866]],["name/8",[9,52.462]],["parent/8",[3,2.866]],["name/9",[10,52.462]],["parent/9",[3,2.866]],["name/10",[11,52.462]],["parent/10",[3,2.866]],["name/11",[12,52.462]],["parent/11",[3,2.866]],["name/12",[13,41.178]],["parent/12",[3,2.866]],["name/13",[14,22.221]],["parent/13",[3,2.866]],["name/14",[15,47.215]],["parent/14",[3,2.866]],["name/15",[16,52.462]],["parent/15",[3,2.866]],["name/16",[17,52.462]],["parent/16",[3,2.866]],["name/17",[18,52.462]],["parent/17",[3,2.866]],["name/18",[19,52.462]],["parent/18",[3,2.866]],["name/19",[20,47.215]],["parent/19",[3,2.866]],["name/20",[14,22.221]],["parent/20",[3,2.866]],["name/21",[21,52.462]],["parent/21",[22,5.181]],["name/22",[23,47.215]],["parent/22",[22,5.181]],["name/23",[24,52.462]],["parent/23",[0,3.943]],["name/24",[25,47.215]],["parent/24",[26,4.293]],["name/25",[27,52.462]],["parent/25",[26,4.293]],["name/26",[28,52.462]],["parent/26",[26,4.293]],["name/27",[29,52.462]],["parent/27",[26,4.293]],["name/28",[30,52.462]],["parent/28",[26,4.293]],["name/29",[31,52.462]],["parent/29",[0,3.943]],["name/30",[32,52.462]],["parent/30",[33,4.104]],["name/31",[34,52.462]],["parent/31",[33,4.104]],["name/32",[35,52.462]],["parent/32",[33,4.104]],["name/33",[36,52.462]],["parent/33",[33,4.104]],["name/34",[37,52.462]],["parent/34",[33,4.104]],["name/35",[38,52.462]],["parent/35",[33,4.104]],["name/36",[39,52.462]],["parent/36",[0,3.943]],["name/37",[40,47.215]],["parent/37",[41,4.802]],["name/38",[42,47.215]],["parent/38",[41,4.802]],["name/39",[43,47.215]],["parent/39",[41,4.802]],["name/40",[44,52.462]],["parent/40",[0,3.943]],["name/41",[45,43.759]],["parent/41",[46,4.519]],["name/42",[20,47.215]],["parent/42",[46,4.519]],["name/43",[14,22.221]],["parent/43",[46,4.519]],["name/44",[47,47.215]],["parent/44",[48,5.757]],["name/45",[15,47.215]],["parent/45",[46,4.519]],["name/46",[49,52.462]],["parent/46",[0,3.943]],["name/47",[50,31.542]],["parent/47",[]],["name/48",[51,16.214,52,22.027]],["parent/48",[]],["name/49",[53,47.215]],["parent/49",[51,1.858,52,2.524]],["name/50",[54,52.462]],["parent/50",[51,1.858,55,2.85]],["name/51",[56,52.462]],["parent/51",[51,1.858,55,2.85]],["name/52",[25,47.215]],["parent/52",[51,1.858,55,2.85]],["name/53",[57,52.462]],["parent/53",[51,1.858,55,2.85]],["name/54",[58,52.462]],["parent/54",[51,1.858,55,2.85]],["name/55",[59,52.462]],["parent/55",[51,1.858,55,2.85]],["name/56",[60,52.462]],["parent/56",[51,1.858,55,2.85]],["name/57",[61,52.462]],["parent/57",[51,1.858,55,2.85]],["name/58",[62,52.462]],["parent/58",[51,1.858,52,2.524]],["name/59",[14,22.221]],["parent/59",[51,1.858,63,4.316]],["name/60",[52,30.685]],["parent/60",[51,1.858,64,3.218]],["name/61",[65,52.462]],["parent/61",[51,1.858,64,3.218]],["name/62",[66,52.462]],["parent/62",[51,1.858,64,3.218]],["name/63",[67,52.462]],["parent/63",[51,1.858,64,3.218]],["name/64",[14,22.221]],["parent/64",[51,1.858,64,3.218]],["name/65",[68,47.215]],["parent/65",[51,1.858,52,2.524]],["name/66",[69,39.117]],["parent/66",[51,1.858,70,3.884]],["name/67",[71,47.215]],["parent/67",[51,1.858,70,3.884]],["name/68",[72,47.215]],["parent/68",[51,1.858,52,2.524]],["name/69",[73,52.462]],["parent/69",[51,1.858,52,2.524]],["name/70",[14,22.221]],["parent/70",[51,1.858,74,4.316]],["name/71",[75,47.215]],["parent/71",[51,1.858,52,2.524]],["name/72",[14,22.221]],["parent/72",[51,1.858,76,4.316]],["name/73",[77,43.759]],["parent/73",[51,1.858,52,2.524]],["name/74",[14,22.221]],["parent/74",[51,1.858,52,2.524]],["name/75",[78,15.374,79,11.985,80,11.31,81,14.473]],["parent/75",[]],["name/76",[82,41.178]],["parent/76",[78,1.837,79,1.432,80,1.351,81,1.729]],["name/77",[83,41.178]],["parent/77",[78,1.837,79,1.432,80,1.351,84,2.257]],["name/78",[85,52.462]],["parent/78",[78,1.837,79,1.432,80,1.351,84,2.257]],["name/79",[86,52.462]],["parent/79",[78,1.837,79,1.432,80,1.351,84,2.257]],["name/80",[87,52.462]],["parent/80",[78,1.837,79,1.432,80,1.351,81,1.729]],["name/81",[52,30.685]],["parent/81",[78,1.837,79,1.432,80,1.351,88,2.876]],["name/82",[89,39.117]],["parent/82",[78,1.837,79,1.432,80,1.351,81,1.729]],["name/83",[14,22.221]],["parent/83",[78,1.837,79,1.432,80,1.351,90,2.588]],["name/84",[91,43.759]],["parent/84",[]],["name/85",[92,27.834]],["parent/85",[91,4.802]],["name/86",[47,47.215]],["parent/86",[93,4.519]],["name/87",[94,52.462]],["parent/87",[93,4.519]],["name/88",[23,47.215]],["parent/88",[93,4.519]],["name/89",[95,52.462]],["parent/89",[93,4.519]],["name/90",[96,43.759]],["parent/90",[91,4.802]],["name/91",[14,22.221]],["parent/91",[97,5.757]],["name/92",[98,41.178]],["parent/92",[]],["name/93",[99,43.759]],["parent/93",[98,4.519]],["name/94",[14,22.221]],["parent/94",[100,5.757]],["name/95",[101,47.215]],["parent/95",[98,4.519]],["name/96",[99,43.759]],["parent/96",[102,4.519]],["name/97",[103,52.462]],["parent/97",[102,4.519]],["name/98",[45,43.759]],["parent/98",[102,4.519]],["name/99",[6,39.117]],["parent/99",[102,4.519]],["name/100",[104,43.759]],["parent/100",[98,4.519]],["name/101",[14,22.221]],["parent/101",[105,5.757]],["name/102",[92,27.834]],["parent/102",[]],["name/103",[106,39.117]],["parent/103",[]],["name/104",[13,41.178]],["parent/104",[106,4.293]],["name/105",[14,22.221]],["parent/105",[107,5.757]],["name/106",[6,39.117]],["parent/106",[106,4.293]],["name/107",[108,52.462]],["parent/107",[109,4.104]],["name/108",[45,43.759]],["parent/108",[109,4.104]],["name/109",[110,52.462]],["parent/109",[109,4.104]],["name/110",[40,47.215]],["parent/110",[109,4.104]],["name/111",[42,47.215]],["parent/111",[109,4.104]],["name/112",[43,47.215]],["parent/112",[109,4.104]],["name/113",[111,47.215]],["parent/113",[106,4.293]],["name/114",[6,39.117]],["parent/114",[112,4.802]],["name/115",[83,41.178]],["parent/115",[112,4.802]],["name/116",[13,41.178]],["parent/116",[112,4.802]],["name/117",[113,43.759]],["parent/117",[106,4.293]],["name/118",[14,22.221]],["parent/118",[114,5.757]],["name/119",[115,43.759]],["parent/119",[]],["name/120",[116,47.215]],["parent/120",[115,4.802]],["name/121",[83,41.178]],["parent/121",[117,5.757]],["name/122",[118,43.759]],["parent/122",[115,4.802]],["name/123",[14,22.221]],["parent/123",[119,5.757]],["name/124",[120,41.178]],["parent/124",[]],["name/125",[121,43.759]],["parent/125",[120,4.519]],["name/126",[14,22.221]],["parent/126",[122,5.757]],["name/127",[123,47.215]],["parent/127",[120,4.519]],["name/128",[14,22.221]],["parent/128",[124,5.757]],["name/129",[125,52.462]],["parent/129",[126,5.181]],["name/130",[121,43.759]],["parent/130",[126,5.181]],["name/131",[127,43.759]],["parent/131",[120,4.519]],["name/132",[14,22.221]],["parent/132",[128,5.757]],["name/133",[129,17.011,130,17.011,131,17.011,132,17.011,133,18.354]],["parent/133",[]],["name/134",[134,43.759]],["parent/134",[129,2.056,130,2.056,131,2.056,132,2.056,133,2.218]],["name/135",[14,22.221]],["parent/135",[129,2.056,130,2.056,131,2.056,132,2.056,135,2.465]],["name/136",[136,35.932]],["parent/136",[]],["name/137",[80,11.31,81,14.473,137,13.718,138,20.079]],["parent/137",[]],["name/138",[139,43.759]],["parent/138",[80,1.351,81,1.729,137,1.639,138,2.399]],["name/139",[14,22.221]],["parent/139",[80,1.351,137,1.639,138,2.399,140,2.876]],["name/140",[79,11.985,80,11.31,81,14.473,137,13.718]],["parent/140",[]],["name/141",[141,47.215]],["parent/141",[79,1.432,80,1.351,81,1.729,137,1.639]],["name/142",[142,47.215]],["parent/142",[79,1.432,80,1.351,81,1.729,137,1.639]],["name/143",[14,22.221]],["parent/143",[79,1.432,80,1.351,137,1.639,143,2.876]],["name/144",[82,41.178]],["parent/144",[79,1.432,80,1.351,81,1.729,137,1.639]],["name/145",[14,22.221]],["parent/145",[79,1.432,80,1.351,84,2.257,137,1.639]],["name/146",[144,52.462]],["parent/146",[79,1.432,80,1.351,137,1.639,145,2.588]],["name/147",[83,41.178]],["parent/147",[79,1.432,80,1.351,137,1.639,145,2.588]],["name/148",[89,39.117]],["parent/148",[79,1.432,80,1.351,81,1.729,137,1.639]],["name/149",[14,22.221]],["parent/149",[79,1.432,80,1.351,90,2.588,137,1.639]],["name/150",[146,43.759]],["parent/150",[]],["name/151",[147,52.462]],["parent/151",[146,4.802]],["name/152",[148,43.759]],["parent/152",[149,3.564]],["name/153",[150,43.759]],["parent/153",[149,3.564]],["name/154",[113,43.759]],["parent/154",[149,3.564]],["name/155",[104,43.759]],["parent/155",[149,3.564]],["name/156",[118,43.759]],["parent/156",[149,3.564]],["name/157",[127,43.759]],["parent/157",[149,3.564]],["name/158",[139,43.759]],["parent/158",[149,3.564]],["name/159",[89,39.117]],["parent/159",[149,3.564]],["name/160",[134,43.759]],["parent/160",[149,3.564]],["name/161",[96,43.759]],["parent/161",[149,3.564]],["name/162",[151,52.462]],["parent/162",[146,4.802]],["name/163",[14,22.221]],["parent/163",[152,5.757]],["name/164",[153,15.942,154,17.179,155,21.9]],["parent/164",[]],["name/165",[156,47.215]],["parent/165",[153,1.874,154,2.019,155,2.574]],["name/166",[14,22.221]],["parent/166",[153,1.874,154,2.019,157,3.452]],["name/167",[158,47.215]],["parent/167",[153,1.874,154,2.019,155,2.574]],["name/168",[159,52.462]],["parent/168",[153,1.874,154,2.019,160,2.709]],["name/169",[161,52.462]],["parent/169",[153,1.874,154,2.019,160,2.709]],["name/170",[156,47.215]],["parent/170",[153,1.874,154,2.019,160,2.709]],["name/171",[6,39.117]],["parent/171",[153,1.874,154,2.019,160,2.709]],["name/172",[162,47.215]],["parent/172",[153,1.874,154,2.019,155,2.574]],["name/173",[163,47.215]],["parent/173",[153,1.874,154,2.019,164,3.452]],["name/174",[150,43.759]],["parent/174",[153,1.874,154,2.019,155,2.574]],["name/175",[14,22.221]],["parent/175",[153,1.874,154,2.019,165,3.452]],["name/176",[4,22.027,153,20.441]],["parent/176",[]],["name/177",[148,43.759]],["parent/177",[4,2.524,153,2.343]],["name/178",[14,22.221]],["parent/178",[153,2.343,166,4.316]],["name/179",[4,30.685]],["parent/179",[]],["name/180",[167,43.759]],["parent/180",[]],["name/181",[168,47.215]],["parent/181",[167,4.802]],["name/182",[77,43.759]],["parent/182",[167,4.802]],["name/183",[69,39.117]],["parent/183",[169,3.943]],["name/184",[52,30.685]],["parent/184",[169,3.943]],["name/185",[170,52.462]],["parent/185",[169,3.943]],["name/186",[163,47.215]],["parent/186",[169,3.943]],["name/187",[171,52.462]],["parent/187",[169,3.943]],["name/188",[172,52.462]],["parent/188",[169,3.943]],["name/189",[173,52.462]],["parent/189",[169,3.943]],["name/190",[174,41.178]],["parent/190",[]],["name/191",[175,52.462]],["parent/191",[174,4.519]],["name/192",[176,52.462]],["parent/192",[174,4.519]],["name/193",[69,39.117]],["parent/193",[177,5.181]],["name/194",[178,47.215]],["parent/194",[177,5.181]],["name/195",[179,52.462]],["parent/195",[174,4.519]],["name/196",[69,39.117]],["parent/196",[180,4.802]],["name/197",[71,47.215]],["parent/197",[180,4.802]],["name/198",[178,47.215]],["parent/198",[180,4.802]],["name/199",[181,47.215]],["parent/199",[]],["name/200",[77,43.759]],["parent/200",[181,5.181]],["name/201",[182,52.462]],["parent/201",[50,3.461]],["name/202",[14,22.221]],["parent/202",[50,3.461]],["name/203",[183,52.462]],["parent/203",[50,3.461]],["name/204",[184,52.462]],["parent/204",[50,3.461]],["name/205",[75,47.215]],["parent/205",[50,3.461]],["name/206",[72,47.215]],["parent/206",[50,3.461]],["name/207",[53,47.215]],["parent/207",[50,3.461]],["name/208",[68,47.215]],["parent/208",[50,3.461]],["name/209",[89,39.117]],["parent/209",[50,3.461]],["name/210",[82,41.178]],["parent/210",[50,3.461]],["name/211",[104,43.759]],["parent/211",[92,3.055]],["name/212",[101,47.215]],["parent/212",[92,3.055]],["name/213",[99,43.759]],["parent/213",[92,3.055]],["name/214",[113,43.759]],["parent/214",[92,3.055]],["name/215",[111,47.215]],["parent/215",[92,3.055]],["name/216",[13,41.178]],["parent/216",[92,3.055]],["name/217",[118,43.759]],["parent/217",[92,3.055]],["name/218",[116,47.215]],["parent/218",[92,3.055]],["name/219",[127,43.759]],["parent/219",[92,3.055]],["name/220",[123,47.215]],["parent/220",[92,3.055]],["name/221",[121,43.759]],["parent/221",[92,3.055]],["name/222",[92,27.834]],["parent/222",[92,3.055]],["name/223",[96,43.759]],["parent/223",[92,3.055]],["name/224",[139,43.759]],["parent/224",[136,3.943]],["name/225",[141,47.215]],["parent/225",[136,3.943]],["name/226",[89,39.117]],["parent/226",[136,3.943]],["name/227",[82,41.178]],["parent/227",[136,3.943]],["name/228",[142,47.215]],["parent/228",[136,3.943]],["name/229",[134,43.759]],["parent/229",[136,3.943]],["name/230",[4,30.685]],["parent/230",[4,3.367]],["name/231",[168,47.215]],["parent/231",[4,3.367]],["name/232",[148,43.759]],["parent/232",[4,3.367]],["name/233",[150,43.759]],["parent/233",[4,3.367]],["name/234",[158,47.215]],["parent/234",[4,3.367]],["name/235",[162,47.215]],["parent/235",[4,3.367]],["name/236",[185,52.462]],["parent/236",[4,3.367]],["name/237",[69,39.117]],["parent/237",[186,3.564]],["name/238",[187,52.462]],["parent/238",[186,3.564]],["name/239",[188,52.462]],["parent/239",[186,3.564]],["name/240",[189,52.462]],["parent/240",[186,3.564]],["name/241",[190,52.462]],["parent/241",[186,3.564]],["name/242",[191,52.462]],["parent/242",[186,3.564]],["name/243",[192,52.462]],["parent/243",[186,3.564]],["name/244",[193,52.462]],["parent/244",[186,3.564]],["name/245",[194,52.462]],["parent/245",[186,3.564]],["name/246",[195,52.462]],["parent/246",[186,3.564]]],"invertedIndex":[["__type",{"_index":14,"name":{"13":{},"20":{},"43":{},"59":{},"64":{},"70":{},"72":{},"74":{},"83":{},"91":{},"94":{},"101":{},"105":{},"118":{},"123":{},"126":{},"128":{},"132":{},"135":{},"139":{},"143":{},"145":{},"149":{},"163":{},"166":{},"175":{},"178":{},"202":{}},"parent":{}}],["absoluteduration",{"_index":29,"name":{"27":{}},"parent":{}}],["access",{"_index":154,"name":{"164":{}},"parent":{"165":{},"166":{},"167":{},"168":{},"169":{},"170":{},"171":{},"172":{},"173":{},"174":{},"175":{}}}],["accesstoken",{"_index":163,"name":{"173":{},"186":{}},"parent":{}}],["accesstokenerror",{"_index":176,"name":{"192":{}},"parent":{}}],["accesstokenexpiresat",{"_index":172,"name":{"188":{}},"parent":{}}],["accesstokenrequest",{"_index":158,"name":{"167":{},"234":{}},"parent":{}}],["accesstokenscope",{"_index":171,"name":{"187":{}},"parent":{}}],["aftercallback",{"_index":99,"name":{"93":{},"96":{},"213":{}},"parent":{}}],["afterrefetch",{"_index":121,"name":{"125":{},"130":{},"221":{}},"parent":{}}],["afterrefresh",{"_index":156,"name":{"165":{},"170":{}},"parent":{}}],["api",{"_index":138,"name":{"137":{}},"parent":{"138":{},"139":{}}}],["auth",{"_index":80,"name":{"75":{},"137":{},"140":{}},"parent":{"76":{},"77":{},"78":{},"79":{},"80":{},"81":{},"82":{},"83":{},"138":{},"139":{},"141":{},"142":{},"143":{},"144":{},"145":{},"146":{},"147":{},"148":{},"149":{}}}],["auth0logout",{"_index":5,"name":{"4":{}},"parent":{}}],["authorizationparameters",{"_index":39,"name":{"36":{}},"parent":{}}],["authorizationparams",{"_index":6,"name":{"5":{},"99":{},"106":{},"114":{},"171":{}},"parent":{}}],["baseconfig",{"_index":1,"name":{"1":{}},"parent":{}}],["baseurl",{"_index":7,"name":{"6":{}},"parent":{}}],["callback",{"_index":23,"name":{"22":{},"88":{}},"parent":{}}],["callbackoptions",{"_index":101,"name":{"95":{},"212":{}},"parent":{}}],["checksession",{"_index":67,"name":{"63":{}},"parent":{}}],["claims",{"_index":168,"name":{"181":{},"231":{}},"parent":{}}],["clientid",{"_index":8,"name":{"7":{}},"parent":{}}],["clientsecret",{"_index":9,"name":{"8":{}},"parent":{}}],["clocktolerance",{"_index":10,"name":{"9":{}},"parent":{}}],["code",{"_index":178,"name":{"194":{},"198":{}},"parent":{}}],["config",{"_index":0,"name":{"0":{}},"parent":{"1":{},"23":{},"29":{},"36":{},"40":{},"46":{}}}],["config.authorizationparameters",{"_index":41,"name":{},"parent":{"37":{},"38":{},"39":{}}}],["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":33,"name":{},"parent":{"30":{},"31":{},"32":{},"33":{},"34":{},"35":{}}}],["config.nextconfig",{"_index":46,"name":{},"parent":{"41":{},"42":{},"43":{},"45":{}}}],["config.nextconfig.__type",{"_index":48,"name":{},"parent":{"44":{}}}],["config.sessionconfig",{"_index":26,"name":{},"parent":{"24":{},"25":{},"26":{},"27":{},"28":{}}}],["configparameters",{"_index":49,"name":{"46":{}},"parent":{}}],["configprovider",{"_index":182,"name":{"201":{}},"parent":{}}],["configproviderprops",{"_index":183,"name":{"203":{}},"parent":{}}],["constructor",{"_index":69,"name":{"66":{},"183":{},"193":{},"196":{},"237":{}},"parent":{}}],["cookie",{"_index":30,"name":{"28":{}},"parent":{}}],["cookieconfig",{"_index":31,"name":{"29":{}},"parent":{}}],["create",{"_index":189,"name":{"240":{}},"parent":{}}],["default",{"_index":77,"name":{"73":{},"182":{},"200":{}},"parent":{}}],["delete",{"_index":190,"name":{"241":{}},"parent":{}}],["domain",{"_index":32,"name":{"30":{}},"parent":{}}],["email",{"_index":54,"name":{"50":{}},"parent":{}}],["email_verified",{"_index":56,"name":{"51":{}},"parent":{}}],["enabletelemetry",{"_index":12,"name":{"11":{}},"parent":{}}],["error",{"_index":65,"name":{"61":{}},"parent":{}}],["fromtokenset",{"_index":195,"name":{"246":{}},"parent":{}}],["frontend",{"_index":50,"name":{"47":{}},"parent":{"201":{},"202":{},"203":{},"204":{},"205":{},"206":{},"207":{},"208":{},"209":{},"210":{}}}],["frontend/use",{"_index":51,"name":{"48":{}},"parent":{"49":{},"50":{},"51":{},"52":{},"53":{},"54":{},"55":{},"56":{},"57":{},"58":{},"59":{},"60":{},"61":{},"62":{},"63":{},"64":{},"65":{},"66":{},"67":{},"68":{},"69":{},"70":{},"71":{},"72":{},"73":{},"74":{}}}],["frontend/with",{"_index":78,"name":{"75":{}},"parent":{"76":{},"77":{},"78":{},"79":{},"80":{},"81":{},"82":{},"83":{}}}],["get",{"_index":194,"name":{"245":{}},"parent":{}}],["getaccesstoken",{"_index":150,"name":{"153":{},"174":{},"233":{}},"parent":{}}],["getaccesstokenresult",{"_index":162,"name":{"172":{},"235":{}},"parent":{}}],["getidtoken",{"_index":192,"name":{"243":{}},"parent":{}}],["getloginstate",{"_index":13,"name":{"12":{},"104":{},"116":{},"216":{}},"parent":{}}],["getserversideprops",{"_index":144,"name":{"146":{}},"parent":{}}],["getserversidepropsresultwithsession",{"_index":141,"name":{"141":{},"225":{}},"parent":{}}],["getserversidepropswrapper",{"_index":134,"name":{"134":{},"160":{},"229":{}},"parent":{}}],["getsession",{"_index":148,"name":{"152":{},"177":{},"232":{}},"parent":{}}],["handleauth",{"_index":96,"name":{"90":{},"161":{},"223":{}},"parent":{}}],["handlecallback",{"_index":104,"name":{"100":{},"155":{},"211":{}},"parent":{}}],["handlelogin",{"_index":113,"name":{"117":{},"154":{},"214":{}},"parent":{}}],["handlelogout",{"_index":118,"name":{"122":{},"156":{},"217":{}},"parent":{}}],["handleprofile",{"_index":127,"name":{"131":{},"157":{},"219":{}},"parent":{}}],["handlererror",{"_index":179,"name":{"195":{}},"parent":{}}],["handlers",{"_index":92,"name":{"85":{},"102":{},"222":{}},"parent":{"211":{},"212":{},"213":{},"214":{},"215":{},"216":{},"217":{},"218":{},"219":{},"220":{},"221":{},"222":{},"223":{}}}],["handlers/auth",{"_index":91,"name":{"84":{}},"parent":{"85":{},"90":{}}}],["handlers/auth.handleauth",{"_index":97,"name":{},"parent":{"91":{}}}],["handlers/auth.handlers",{"_index":93,"name":{},"parent":{"86":{},"87":{},"88":{},"89":{}}}],["handlers/callback",{"_index":98,"name":{"92":{}},"parent":{"93":{},"95":{},"100":{}}}],["handlers/callback.aftercallback",{"_index":100,"name":{},"parent":{"94":{}}}],["handlers/callback.callbackoptions",{"_index":102,"name":{},"parent":{"96":{},"97":{},"98":{},"99":{}}}],["handlers/callback.handlecallback",{"_index":105,"name":{},"parent":{"101":{}}}],["handlers/login",{"_index":106,"name":{"103":{}},"parent":{"104":{},"106":{},"113":{},"117":{}}}],["handlers/login.authorizationparams",{"_index":109,"name":{},"parent":{"107":{},"108":{},"109":{},"110":{},"111":{},"112":{}}}],["handlers/login.getloginstate",{"_index":107,"name":{},"parent":{"105":{}}}],["handlers/login.handlelogin",{"_index":114,"name":{},"parent":{"118":{}}}],["handlers/login.loginoptions",{"_index":112,"name":{},"parent":{"114":{},"115":{},"116":{}}}],["handlers/logout",{"_index":115,"name":{"119":{}},"parent":{"120":{},"122":{}}}],["handlers/logout.handlelogout",{"_index":119,"name":{},"parent":{"123":{}}}],["handlers/logout.logoutoptions",{"_index":117,"name":{},"parent":{"121":{}}}],["handlers/profile",{"_index":120,"name":{"124":{}},"parent":{"125":{},"127":{},"131":{}}}],["handlers/profile.afterrefetch",{"_index":122,"name":{},"parent":{"126":{}}}],["handlers/profile.handleprofile",{"_index":128,"name":{},"parent":{"132":{}}}],["handlers/profile.profileoptions",{"_index":124,"name":{},"parent":{"128":{}}}],["handlers/profile.profileoptions.__type",{"_index":126,"name":{},"parent":{"129":{},"130":{}}}],["helpers",{"_index":136,"name":{"136":{}},"parent":{"224":{},"225":{},"226":{},"227":{},"228":{},"229":{}}}],["helpers/get",{"_index":129,"name":{"133":{}},"parent":{"134":{},"135":{}}}],["helpers/with",{"_index":137,"name":{"137":{},"140":{}},"parent":{"138":{},"139":{},"141":{},"142":{},"143":{},"144":{},"145":{},"146":{},"147":{},"148":{},"149":{}}}],["htmlsafe",{"_index":175,"name":{"191":{}},"parent":{}}],["httponly",{"_index":36,"name":{"33":{}},"parent":{}}],["httptimeout",{"_index":11,"name":{"10":{}},"parent":{}}],["identityclaimfilter",{"_index":15,"name":{"14":{},"45":{}},"parent":{}}],["idplogout",{"_index":16,"name":{"15":{}},"parent":{}}],["idtoken",{"_index":170,"name":{"185":{}},"parent":{}}],["idtokensigningalg",{"_index":17,"name":{"16":{}},"parent":{}}],["init",{"_index":187,"name":{"238":{}},"parent":{}}],["initauth0",{"_index":151,"name":{"162":{}},"parent":{}}],["instance",{"_index":146,"name":{"150":{}},"parent":{"151":{},"162":{}}}],["instance.initauth0",{"_index":152,"name":{},"parent":{"163":{}}}],["instance.signinwithauth0",{"_index":149,"name":{},"parent":{"152":{},"153":{},"154":{},"155":{},"156":{},"157":{},"158":{},"159":{},"160":{},"161":{}}}],["invitation",{"_index":108,"name":{"107":{}},"parent":{}}],["isauthenticated",{"_index":191,"name":{"242":{}},"parent":{}}],["isloading",{"_index":66,"name":{"62":{}},"parent":{}}],["issuerbaseurl",{"_index":18,"name":{"17":{}},"parent":{}}],["legacysamesitecookie",{"_index":19,"name":{"18":{}},"parent":{}}],["login",{"_index":47,"name":{"44":{},"86":{}},"parent":{}}],["loginoptions",{"_index":111,"name":{"113":{},"215":{}},"parent":{}}],["logout",{"_index":94,"name":{"87":{}},"parent":{}}],["logoutoptions",{"_index":116,"name":{"120":{},"218":{}},"parent":{}}],["name",{"_index":25,"name":{"24":{},"52":{}},"parent":{}}],["nextconfig",{"_index":44,"name":{"40":{}},"parent":{}}],["nickname",{"_index":57,"name":{"53":{}},"parent":{}}],["onerror",{"_index":86,"name":{"79":{}},"parent":{}}],["onredirecting",{"_index":85,"name":{"78":{}},"parent":{}}],["org_id",{"_index":61,"name":{"57":{}},"parent":{}}],["organization",{"_index":45,"name":{"41":{},"98":{},"108":{}},"parent":{}}],["page",{"_index":79,"name":{"75":{},"140":{}},"parent":{"76":{},"77":{},"78":{},"79":{},"80":{},"81":{},"82":{},"83":{},"141":{},"142":{},"143":{},"144":{},"145":{},"146":{},"147":{},"148":{},"149":{}}}],["pageroute",{"_index":142,"name":{"142":{},"228":{}},"parent":{}}],["path",{"_index":34,"name":{"31":{}},"parent":{}}],["picture",{"_index":58,"name":{"54":{}},"parent":{}}],["postlogoutredirect",{"_index":21,"name":{"21":{}},"parent":{}}],["profile",{"_index":95,"name":{"89":{}},"parent":{}}],["profileoptions",{"_index":123,"name":{"127":{},"220":{}},"parent":{}}],["props",{"_index":132,"name":{"133":{}},"parent":{"134":{},"135":{}}}],["redirecturi",{"_index":103,"name":{"97":{}},"parent":{}}],["refetch",{"_index":125,"name":{"129":{}},"parent":{}}],["refresh",{"_index":161,"name":{"169":{}},"parent":{}}],["refreshtoken",{"_index":173,"name":{"189":{}},"parent":{}}],["requesterror",{"_index":68,"name":{"65":{},"208":{}},"parent":{}}],["required",{"_index":81,"name":{"75":{},"137":{},"140":{}},"parent":{"76":{},"80":{},"82":{},"138":{},"141":{},"142":{},"144":{},"148":{}}}],["required.pageroute",{"_index":143,"name":{},"parent":{"143":{}}}],["required.userprops",{"_index":88,"name":{},"parent":{"81":{}}}],["required.withapiauthrequired",{"_index":140,"name":{},"parent":{"139":{}}}],["required.withpageauthrequired",{"_index":90,"name":{},"parent":{"83":{},"149":{}}}],["required.withpageauthrequiredoptions",{"_index":84,"name":{},"parent":{"77":{},"78":{},"79":{},"145":{}}}],["required.withpageauthrequiredoptions.__type",{"_index":145,"name":{},"parent":{"146":{},"147":{}}}],["response_mode",{"_index":42,"name":{"38":{},"111":{}},"parent":{}}],["response_type",{"_index":43,"name":{"39":{},"112":{}},"parent":{}}],["returnto",{"_index":83,"name":{"77":{},"115":{},"121":{},"147":{}},"parent":{}}],["rolling",{"_index":27,"name":{"25":{}},"parent":{}}],["rollingduration",{"_index":28,"name":{"26":{}},"parent":{}}],["routes",{"_index":20,"name":{"19":{},"42":{}},"parent":{}}],["samesite",{"_index":38,"name":{"35":{}},"parent":{}}],["save",{"_index":188,"name":{"239":{}},"parent":{}}],["scope",{"_index":40,"name":{"37":{},"110":{}},"parent":{}}],["scopes",{"_index":159,"name":{"168":{}},"parent":{}}],["screen_hint",{"_index":110,"name":{"109":{}},"parent":{}}],["secret",{"_index":2,"name":{"2":{}},"parent":{}}],["secure",{"_index":37,"name":{"34":{}},"parent":{}}],["server",{"_index":130,"name":{"133":{}},"parent":{"134":{},"135":{}}}],["session",{"_index":4,"name":{"3":{},"176":{},"179":{},"230":{}},"parent":{"177":{},"230":{},"231":{},"232":{},"233":{},"234":{},"235":{},"236":{}}}],["session.getsession",{"_index":166,"name":{},"parent":{"178":{}}}],["session.sessioncache",{"_index":186,"name":{},"parent":{"237":{},"238":{},"239":{},"240":{},"241":{},"242":{},"243":{},"244":{},"245":{},"246":{}}}],["session/get",{"_index":153,"name":{"164":{},"176":{}},"parent":{"165":{},"166":{},"167":{},"168":{},"169":{},"170":{},"171":{},"172":{},"173":{},"174":{},"175":{},"177":{},"178":{}}}],["session/session",{"_index":167,"name":{"180":{}},"parent":{"181":{},"182":{}}}],["session/session.default",{"_index":169,"name":{},"parent":{"183":{},"184":{},"185":{},"186":{},"187":{},"188":{},"189":{}}}],["sessioncache",{"_index":185,"name":{"236":{}},"parent":{}}],["sessionconfig",{"_index":24,"name":{"23":{}},"parent":{}}],["set",{"_index":193,"name":{"244":{}},"parent":{}}],["side",{"_index":131,"name":{"133":{}},"parent":{"134":{},"135":{}}}],["signinwithauth0",{"_index":147,"name":{"151":{}},"parent":{}}],["status",{"_index":71,"name":{"67":{},"197":{}},"parent":{}}],["sub",{"_index":59,"name":{"55":{}},"parent":{}}],["token",{"_index":155,"name":{"164":{}},"parent":{"165":{},"167":{},"172":{},"174":{}}}],["token.accesstokenrequest",{"_index":160,"name":{},"parent":{"168":{},"169":{},"170":{},"171":{}}}],["token.afterrefresh",{"_index":157,"name":{},"parent":{"166":{}}}],["token.getaccesstoken",{"_index":165,"name":{},"parent":{"175":{}}}],["token.getaccesstokenresult",{"_index":164,"name":{},"parent":{"173":{}}}],["transient",{"_index":35,"name":{"32":{}},"parent":{}}],["updated_at",{"_index":60,"name":{"56":{}},"parent":{}}],["useconfig",{"_index":184,"name":{"204":{}},"parent":{}}],["user",{"_index":52,"name":{"48":{},"60":{},"81":{},"184":{}},"parent":{"49":{},"58":{},"65":{},"68":{},"69":{},"71":{},"73":{},"74":{}}}],["user.requesterror",{"_index":70,"name":{},"parent":{"66":{},"67":{}}}],["user.usercontext",{"_index":63,"name":{},"parent":{"59":{}}}],["user.usercontext.__type",{"_index":64,"name":{},"parent":{"60":{},"61":{},"62":{},"63":{},"64":{}}}],["user.userprofile",{"_index":55,"name":{},"parent":{"50":{},"51":{},"52":{},"53":{},"54":{},"55":{},"56":{},"57":{}}}],["user.userprovider",{"_index":76,"name":{},"parent":{"72":{}}}],["user.useuser",{"_index":74,"name":{},"parent":{"70":{}}}],["usercontext",{"_index":62,"name":{"58":{}},"parent":{}}],["userprofile",{"_index":53,"name":{"49":{},"207":{}},"parent":{}}],["userprops",{"_index":87,"name":{"80":{}},"parent":{}}],["userprovider",{"_index":75,"name":{"71":{},"205":{}},"parent":{}}],["userproviderprops",{"_index":72,"name":{"68":{},"206":{}},"parent":{}}],["useuser",{"_index":73,"name":{"69":{}},"parent":{}}],["utils/errors",{"_index":174,"name":{"190":{}},"parent":{"191":{},"192":{},"195":{}}}],["utils/errors.accesstokenerror",{"_index":177,"name":{},"parent":{"193":{},"194":{}}}],["utils/errors.handlererror",{"_index":180,"name":{},"parent":{"196":{},"197":{},"198":{}}}],["version",{"_index":181,"name":{"199":{}},"parent":{"200":{}}}],["withapiauthrequired",{"_index":139,"name":{"138":{},"158":{},"224":{}},"parent":{}}],["withpageauthrequired",{"_index":89,"name":{"82":{},"148":{},"159":{},"209":{},"226":{}},"parent":{}}],["withpageauthrequiredoptions",{"_index":82,"name":{"76":{},"144":{},"210":{},"227":{}},"parent":{}}],["wrapper",{"_index":133,"name":{"133":{}},"parent":{"134":{}}}],["wrapper.getserversidepropswrapper",{"_index":135,"name":{},"parent":{"135":{}}}]],"pipeline":[]}} \ No newline at end of file +window.searchData = {"kinds":{"1":"Module","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":"cookie","url":"interfaces/config.sessionconfig.html#cookie","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.SessionConfig"},{"id":29,"kind":256,"name":"CookieConfig","url":"interfaces/config.cookieconfig.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"config"},{"id":30,"kind":1024,"name":"domain","url":"interfaces/config.cookieconfig.html#domain","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.CookieConfig"},{"id":31,"kind":1024,"name":"path","url":"interfaces/config.cookieconfig.html#path","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.CookieConfig"},{"id":32,"kind":1024,"name":"transient","url":"interfaces/config.cookieconfig.html#transient","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.CookieConfig"},{"id":33,"kind":1024,"name":"httpOnly","url":"interfaces/config.cookieconfig.html#httponly","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.CookieConfig"},{"id":34,"kind":1024,"name":"secure","url":"interfaces/config.cookieconfig.html#secure","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.CookieConfig"},{"id":35,"kind":1024,"name":"sameSite","url":"interfaces/config.cookieconfig.html#samesite","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.CookieConfig"},{"id":36,"kind":256,"name":"AuthorizationParameters","url":"interfaces/config.authorizationparameters.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"config"},{"id":37,"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":38,"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":39,"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":40,"kind":256,"name":"NextConfig","url":"interfaces/config.nextconfig.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"config"},{"id":41,"kind":1024,"name":"organization","url":"interfaces/config.nextconfig.html#organization","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.NextConfig"},{"id":42,"kind":1024,"name":"routes","url":"interfaces/config.nextconfig.html#routes","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"config.NextConfig"},{"id":43,"kind":65536,"name":"__type","url":"interfaces/config.nextconfig.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"config.NextConfig"},{"id":44,"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":45,"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":46,"kind":4194304,"name":"ConfigParameters","url":"modules/config.html#configparameters","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"config"},{"id":47,"kind":1,"name":"frontend","url":"modules/frontend.html","classes":"tsd-kind-module"},{"id":48,"kind":1,"name":"frontend/use-user","url":"modules/frontend_use_user.html","classes":"tsd-kind-module"},{"id":49,"kind":256,"name":"UserProfile","url":"interfaces/frontend_use_user.userprofile.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"frontend/use-user"},{"id":50,"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":51,"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":52,"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":53,"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":54,"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":55,"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":56,"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":57,"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":58,"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":59,"kind":65536,"name":"__type","url":"modules/frontend_use_user.html#usercontext.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"frontend/use-user.UserContext"},{"id":60,"kind":1024,"name":"user","url":"modules/frontend_use_user.html#usercontext.__type-1.user","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"frontend/use-user.UserContext.__type"},{"id":61,"kind":1024,"name":"error","url":"modules/frontend_use_user.html#usercontext.__type-1.error","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"frontend/use-user.UserContext.__type"},{"id":62,"kind":1024,"name":"isLoading","url":"modules/frontend_use_user.html#usercontext.__type-1.isloading","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"frontend/use-user.UserContext.__type"},{"id":63,"kind":1024,"name":"checkSession","url":"modules/frontend_use_user.html#usercontext.__type-1.checksession","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"frontend/use-user.UserContext.__type"},{"id":64,"kind":65536,"name":"__type","url":"modules/frontend_use_user.html#usercontext.__type-1.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"frontend/use-user.UserContext.__type"},{"id":65,"kind":128,"name":"RequestError","url":"classes/frontend_use_user.requesterror.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"frontend/use-user"},{"id":66,"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":67,"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":68,"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":69,"kind":4194304,"name":"UseUser","url":"modules/frontend_use_user.html#useuser","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"frontend/use-user"},{"id":70,"kind":65536,"name":"__type","url":"modules/frontend_use_user.html#useuser.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"frontend/use-user.UseUser"},{"id":71,"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":72,"kind":65536,"name":"__type","url":"modules/frontend_use_user.html#userprovider.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"frontend/use-user.UserProvider"},{"id":73,"kind":1024,"name":"default","url":"modules/frontend_use_user.html#default","classes":"tsd-kind-property tsd-parent-kind-module","parent":"frontend/use-user"},{"id":74,"kind":65536,"name":"__type","url":"modules/frontend_use_user.html#__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-module","parent":"frontend/use-user"},{"id":75,"kind":1,"name":"frontend/with-page-auth-required","url":"modules/frontend_with_page_auth_required.html","classes":"tsd-kind-module"},{"id":76,"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":77,"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":78,"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":79,"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":80,"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":81,"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":82,"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":83,"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":84,"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":85,"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":86,"kind":1,"name":"handlers/auth","url":"modules/handlers_auth.html","classes":"tsd-kind-module"},{"id":87,"kind":256,"name":"Handlers","url":"interfaces/handlers_auth.handlers.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"handlers/auth"},{"id":88,"kind":1024,"name":"login","url":"interfaces/handlers_auth.handlers.html#login","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"handlers/auth.Handlers"},{"id":89,"kind":1024,"name":"logout","url":"interfaces/handlers_auth.handlers.html#logout","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"handlers/auth.Handlers"},{"id":90,"kind":1024,"name":"callback","url":"interfaces/handlers_auth.handlers.html#callback","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"handlers/auth.Handlers"},{"id":91,"kind":1024,"name":"profile","url":"interfaces/handlers_auth.handlers.html#profile","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"handlers/auth.Handlers"},{"id":92,"kind":4194304,"name":"HandleAuth","url":"modules/handlers_auth.html#handleauth","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"handlers/auth"},{"id":93,"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":94,"kind":1,"name":"handlers/callback","url":"modules/handlers_callback.html","classes":"tsd-kind-module"},{"id":95,"kind":4194304,"name":"AfterCallback","url":"modules/handlers_callback.html#aftercallback","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"handlers/callback"},{"id":96,"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":97,"kind":256,"name":"CallbackOptions","url":"interfaces/handlers_callback.callbackoptions.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"handlers/callback"},{"id":98,"kind":1024,"name":"afterCallback","url":"interfaces/handlers_callback.callbackoptions.html#aftercallback","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"handlers/callback.CallbackOptions"},{"id":99,"kind":1024,"name":"redirectUri","url":"interfaces/handlers_callback.callbackoptions.html#redirecturi","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"handlers/callback.CallbackOptions"},{"id":100,"kind":1024,"name":"organization","url":"interfaces/handlers_callback.callbackoptions.html#organization","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"handlers/callback.CallbackOptions"},{"id":101,"kind":1024,"name":"authorizationParams","url":"interfaces/handlers_callback.callbackoptions.html#authorizationparams","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"handlers/callback.CallbackOptions"},{"id":102,"kind":4194304,"name":"HandleCallback","url":"modules/handlers_callback.html#handlecallback","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"handlers/callback"},{"id":103,"kind":65536,"name":"__type","url":"modules/handlers_callback.html#handlecallback.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"handlers/callback.HandleCallback"},{"id":104,"kind":1,"name":"handlers","url":"modules/handlers.html","classes":"tsd-kind-module"},{"id":105,"kind":1,"name":"handlers/login","url":"modules/handlers_login.html","classes":"tsd-kind-module"},{"id":106,"kind":4194304,"name":"GetLoginState","url":"modules/handlers_login.html#getloginstate","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"handlers/login"},{"id":107,"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":108,"kind":256,"name":"AuthorizationParams","url":"interfaces/handlers_login.authorizationparams.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"handlers/login"},{"id":109,"kind":1024,"name":"invitation","url":"interfaces/handlers_login.authorizationparams.html#invitation","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"handlers/login.AuthorizationParams"},{"id":110,"kind":1024,"name":"organization","url":"interfaces/handlers_login.authorizationparams.html#organization","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"handlers/login.AuthorizationParams"},{"id":111,"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":112,"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":113,"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":114,"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":115,"kind":256,"name":"LoginOptions","url":"interfaces/handlers_login.loginoptions.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"handlers/login"},{"id":116,"kind":1024,"name":"authorizationParams","url":"interfaces/handlers_login.loginoptions.html#authorizationparams","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"handlers/login.LoginOptions"},{"id":117,"kind":1024,"name":"returnTo","url":"interfaces/handlers_login.loginoptions.html#returnto","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"handlers/login.LoginOptions"},{"id":118,"kind":1024,"name":"getLoginState","url":"interfaces/handlers_login.loginoptions.html#getloginstate","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"handlers/login.LoginOptions"},{"id":119,"kind":4194304,"name":"HandleLogin","url":"modules/handlers_login.html#handlelogin","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"handlers/login"},{"id":120,"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":121,"kind":1,"name":"handlers/logout","url":"modules/handlers_logout.html","classes":"tsd-kind-module"},{"id":122,"kind":256,"name":"LogoutOptions","url":"interfaces/handlers_logout.logoutoptions.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"handlers/logout"},{"id":123,"kind":1024,"name":"returnTo","url":"interfaces/handlers_logout.logoutoptions.html#returnto","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"handlers/logout.LogoutOptions"},{"id":124,"kind":4194304,"name":"HandleLogout","url":"modules/handlers_logout.html#handlelogout","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"handlers/logout"},{"id":125,"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":126,"kind":1,"name":"handlers/profile","url":"modules/handlers_profile.html","classes":"tsd-kind-module"},{"id":127,"kind":4194304,"name":"AfterRefetch","url":"modules/handlers_profile.html#afterrefetch","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"handlers/profile"},{"id":128,"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":129,"kind":4194304,"name":"ProfileOptions","url":"modules/handlers_profile.html#profileoptions","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"handlers/profile"},{"id":130,"kind":65536,"name":"__type","url":"modules/handlers_profile.html#profileoptions.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"handlers/profile.ProfileOptions"},{"id":131,"kind":1024,"name":"refetch","url":"modules/handlers_profile.html#profileoptions.__type-2.refetch","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"handlers/profile.ProfileOptions.__type"},{"id":132,"kind":1024,"name":"afterRefetch","url":"modules/handlers_profile.html#profileoptions.__type-2.afterrefetch-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"handlers/profile.ProfileOptions.__type"},{"id":133,"kind":4194304,"name":"HandleProfile","url":"modules/handlers_profile.html#handleprofile","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"handlers/profile"},{"id":134,"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":135,"kind":1,"name":"helpers/get-server-side-props-wrapper","url":"modules/helpers_get_server_side_props_wrapper.html","classes":"tsd-kind-module"},{"id":136,"kind":4194304,"name":"GetServerSidePropsWrapper","url":"modules/helpers_get_server_side_props_wrapper.html#getserversidepropswrapper","classes":"tsd-kind-type-alias tsd-parent-kind-module tsd-has-type-parameter","parent":"helpers/get-server-side-props-wrapper"},{"id":137,"kind":65536,"name":"__type","url":"modules/helpers_get_server_side_props_wrapper.html#getserversidepropswrapper.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"helpers/get-server-side-props-wrapper.GetServerSidePropsWrapper"},{"id":138,"kind":1,"name":"helpers","url":"modules/helpers.html","classes":"tsd-kind-module"},{"id":139,"kind":1,"name":"helpers/with-api-auth-required","url":"modules/helpers_with_api_auth_required.html","classes":"tsd-kind-module"},{"id":140,"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":141,"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":142,"kind":1,"name":"helpers/with-page-auth-required","url":"modules/helpers_with_page_auth_required.html","classes":"tsd-kind-module"},{"id":143,"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":144,"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":145,"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":146,"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":147,"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":148,"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":149,"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":150,"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":151,"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":152,"kind":1,"name":"instance","url":"modules/instance.html","classes":"tsd-kind-module"},{"id":153,"kind":256,"name":"SignInWithAuth0","url":"interfaces/instance.signinwithauth0.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"instance"},{"id":154,"kind":1024,"name":"getSession","url":"interfaces/instance.signinwithauth0.html#getsession","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"instance.SignInWithAuth0"},{"id":155,"kind":1024,"name":"getAccessToken","url":"interfaces/instance.signinwithauth0.html#getaccesstoken","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"instance.SignInWithAuth0"},{"id":156,"kind":1024,"name":"handleLogin","url":"interfaces/instance.signinwithauth0.html#handlelogin","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"instance.SignInWithAuth0"},{"id":157,"kind":1024,"name":"handleCallback","url":"interfaces/instance.signinwithauth0.html#handlecallback","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"instance.SignInWithAuth0"},{"id":158,"kind":1024,"name":"handleLogout","url":"interfaces/instance.signinwithauth0.html#handlelogout","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"instance.SignInWithAuth0"},{"id":159,"kind":1024,"name":"handleProfile","url":"interfaces/instance.signinwithauth0.html#handleprofile","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"instance.SignInWithAuth0"},{"id":160,"kind":1024,"name":"withApiAuthRequired","url":"interfaces/instance.signinwithauth0.html#withapiauthrequired","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"instance.SignInWithAuth0"},{"id":161,"kind":1024,"name":"withPageAuthRequired","url":"interfaces/instance.signinwithauth0.html#withpageauthrequired","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"instance.SignInWithAuth0"},{"id":162,"kind":1024,"name":"getServerSidePropsWrapper","url":"interfaces/instance.signinwithauth0.html#getserversidepropswrapper","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"instance.SignInWithAuth0"},{"id":163,"kind":1024,"name":"handleAuth","url":"interfaces/instance.signinwithauth0.html#handleauth","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"instance.SignInWithAuth0"},{"id":164,"kind":4194304,"name":"InitAuth0","url":"modules/instance.html#initauth0","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"instance"},{"id":165,"kind":65536,"name":"__type","url":"modules/instance.html#initauth0.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"instance.InitAuth0"},{"id":166,"kind":1,"name":"session/get-access-token","url":"modules/session_get_access_token.html","classes":"tsd-kind-module"},{"id":167,"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":168,"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":169,"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":170,"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":171,"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":172,"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":173,"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":174,"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":175,"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":176,"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":177,"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":178,"kind":1,"name":"session/get-session","url":"modules/session_get_session.html","classes":"tsd-kind-module"},{"id":179,"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":180,"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":181,"kind":1,"name":"session","url":"modules/session.html","classes":"tsd-kind-module"},{"id":182,"kind":1,"name":"session/session","url":"modules/session_session.html","classes":"tsd-kind-module"},{"id":183,"kind":256,"name":"Claims","url":"interfaces/session_session.claims.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"session/session"},{"id":184,"kind":128,"name":"default","url":"classes/session_session.default.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"session/session"},{"id":185,"kind":512,"name":"constructor","url":"classes/session_session.default.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"session/session.default"},{"id":186,"kind":1024,"name":"user","url":"classes/session_session.default.html#user","classes":"tsd-kind-property tsd-parent-kind-class","parent":"session/session.default"},{"id":187,"kind":1024,"name":"idToken","url":"classes/session_session.default.html#idtoken","classes":"tsd-kind-property tsd-parent-kind-class","parent":"session/session.default"},{"id":188,"kind":1024,"name":"accessToken","url":"classes/session_session.default.html#accesstoken","classes":"tsd-kind-property tsd-parent-kind-class","parent":"session/session.default"},{"id":189,"kind":1024,"name":"accessTokenScope","url":"classes/session_session.default.html#accesstokenscope","classes":"tsd-kind-property tsd-parent-kind-class","parent":"session/session.default"},{"id":190,"kind":1024,"name":"accessTokenExpiresAt","url":"classes/session_session.default.html#accesstokenexpiresat","classes":"tsd-kind-property tsd-parent-kind-class","parent":"session/session.default"},{"id":191,"kind":1024,"name":"refreshToken","url":"classes/session_session.default.html#refreshtoken","classes":"tsd-kind-property tsd-parent-kind-class","parent":"session/session.default"},{"id":192,"kind":1,"name":"utils/errors","url":"modules/utils_errors.html","classes":"tsd-kind-module"},{"id":193,"kind":64,"name":"htmlSafe","url":"modules/utils_errors.html#htmlsafe","classes":"tsd-kind-function tsd-parent-kind-module","parent":"utils/errors"},{"id":194,"kind":128,"name":"AccessTokenError","url":"classes/utils_errors.accesstokenerror.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"utils/errors"},{"id":195,"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":196,"kind":1024,"name":"code","url":"classes/utils_errors.accesstokenerror.html#code","classes":"tsd-kind-property tsd-parent-kind-class","parent":"utils/errors.AccessTokenError"},{"id":197,"kind":128,"name":"HandlerError","url":"classes/utils_errors.handlererror.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"utils/errors"},{"id":198,"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":199,"kind":1024,"name":"status","url":"classes/utils_errors.handlererror.html#status","classes":"tsd-kind-property tsd-parent-kind-class","parent":"utils/errors.HandlerError"},{"id":200,"kind":1024,"name":"code","url":"classes/utils_errors.handlererror.html#code","classes":"tsd-kind-property tsd-parent-kind-class","parent":"utils/errors.HandlerError"},{"id":201,"kind":1,"name":"version","url":"modules/version.html","classes":"tsd-kind-module"},{"id":202,"kind":1024,"name":"default","url":"modules/version.html#default","classes":"tsd-kind-property tsd-parent-kind-module","parent":"version"},{"id":203,"kind":1024,"name":"ConfigProvider","url":"modules/frontend.html#configprovider","classes":"tsd-kind-property tsd-parent-kind-module","parent":"frontend"},{"id":204,"kind":65536,"name":"__type","url":"modules/frontend.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-module","parent":"frontend"},{"id":205,"kind":4194304,"name":"ConfigProviderProps","url":"modules/frontend.html#configproviderprops","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"frontend"},{"id":206,"kind":64,"name":"useConfig","url":"modules/frontend.html#useconfig","classes":"tsd-kind-function tsd-parent-kind-module","parent":"frontend"},{"id":207,"kind":16777216,"name":"UserProvider","url":"modules/frontend.html#userprovider","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"frontend"},{"id":208,"kind":16777216,"name":"UserProviderProps","url":"modules/frontend.html#userproviderprops","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"frontend"},{"id":209,"kind":16777216,"name":"UserProfile","url":"modules/frontend.html#userprofile","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"frontend"},{"id":210,"kind":16777216,"name":"RequestError","url":"modules/frontend.html#requesterror","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"frontend"},{"id":211,"kind":16777216,"name":"WithPageAuthRequired","url":"modules/frontend.html#withpageauthrequired","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"frontend"},{"id":212,"kind":16777216,"name":"WithPageAuthRequiredOptions","url":"modules/frontend.html#withpageauthrequiredoptions","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"frontend"},{"id":213,"kind":16777216,"name":"HandleCallback","url":"modules/handlers.html#handlecallback","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"handlers"},{"id":214,"kind":16777216,"name":"CallbackOptions","url":"modules/handlers.html#callbackoptions","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"handlers"},{"id":215,"kind":16777216,"name":"AfterCallback","url":"modules/handlers.html#aftercallback","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"handlers"},{"id":216,"kind":16777216,"name":"HandleLogin","url":"modules/handlers.html#handlelogin","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"handlers"},{"id":217,"kind":16777216,"name":"LoginOptions","url":"modules/handlers.html#loginoptions","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"handlers"},{"id":218,"kind":16777216,"name":"GetLoginState","url":"modules/handlers.html#getloginstate","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"handlers"},{"id":219,"kind":16777216,"name":"HandleLogout","url":"modules/handlers.html#handlelogout","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"handlers"},{"id":220,"kind":16777216,"name":"LogoutOptions","url":"modules/handlers.html#logoutoptions","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"handlers"},{"id":221,"kind":16777216,"name":"HandleProfile","url":"modules/handlers.html#handleprofile","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"handlers"},{"id":222,"kind":16777216,"name":"ProfileOptions","url":"modules/handlers.html#profileoptions","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"handlers"},{"id":223,"kind":16777216,"name":"AfterRefetch","url":"modules/handlers.html#afterrefetch","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"handlers"},{"id":224,"kind":16777216,"name":"Handlers","url":"modules/handlers.html#handlers-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"handlers"},{"id":225,"kind":16777216,"name":"HandleAuth","url":"modules/handlers.html#handleauth","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"handlers"},{"id":226,"kind":16777216,"name":"WithApiAuthRequired","url":"modules/helpers.html#withapiauthrequired","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":227,"kind":16777216,"name":"GetServerSidePropsResultWithSession","url":"modules/helpers.html#getserversidepropsresultwithsession","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":228,"kind":16777216,"name":"WithPageAuthRequired","url":"modules/helpers.html#withpageauthrequired","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":229,"kind":16777216,"name":"WithPageAuthRequiredOptions","url":"modules/helpers.html#withpageauthrequiredoptions","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":230,"kind":16777216,"name":"PageRoute","url":"modules/helpers.html#pageroute","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":231,"kind":16777216,"name":"GetServerSidePropsWrapper","url":"modules/helpers.html#getserversidepropswrapper","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":232,"kind":16777216,"name":"Session","url":"modules/session.html#session-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"session"},{"id":233,"kind":16777216,"name":"Claims","url":"modules/session.html#claims","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"session"},{"id":234,"kind":16777216,"name":"GetSession","url":"modules/session.html#getsession","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"session"},{"id":235,"kind":16777216,"name":"GetAccessToken","url":"modules/session.html#getaccesstoken","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"session"},{"id":236,"kind":16777216,"name":"AccessTokenRequest","url":"modules/session.html#accesstokenrequest","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"session"},{"id":237,"kind":16777216,"name":"GetAccessTokenResult","url":"modules/session.html#getaccesstokenresult","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"session"},{"id":238,"kind":128,"name":"SessionCache","url":"classes/session.sessioncache.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"session"},{"id":239,"kind":512,"name":"constructor","url":"classes/session.sessioncache.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"session.SessionCache"},{"id":240,"kind":2048,"name":"init","url":"classes/session.sessioncache.html#init","classes":"tsd-kind-method tsd-parent-kind-class","parent":"session.SessionCache"},{"id":241,"kind":2048,"name":"save","url":"classes/session.sessioncache.html#save","classes":"tsd-kind-method tsd-parent-kind-class","parent":"session.SessionCache"},{"id":242,"kind":2048,"name":"create","url":"classes/session.sessioncache.html#create","classes":"tsd-kind-method tsd-parent-kind-class","parent":"session.SessionCache"},{"id":243,"kind":2048,"name":"delete","url":"classes/session.sessioncache.html#delete","classes":"tsd-kind-method tsd-parent-kind-class","parent":"session.SessionCache"},{"id":244,"kind":2048,"name":"isAuthenticated","url":"classes/session.sessioncache.html#isauthenticated","classes":"tsd-kind-method tsd-parent-kind-class","parent":"session.SessionCache"},{"id":245,"kind":2048,"name":"getIdToken","url":"classes/session.sessioncache.html#getidtoken","classes":"tsd-kind-method tsd-parent-kind-class","parent":"session.SessionCache"},{"id":246,"kind":2048,"name":"set","url":"classes/session.sessioncache.html#set","classes":"tsd-kind-method tsd-parent-kind-class","parent":"session.SessionCache"},{"id":247,"kind":2048,"name":"get","url":"classes/session.sessioncache.html#get","classes":"tsd-kind-method tsd-parent-kind-class","parent":"session.SessionCache"},{"id":248,"kind":2048,"name":"fromTokenSet","url":"classes/session.sessioncache.html#fromtokenset","classes":"tsd-kind-method tsd-parent-kind-class","parent":"session.SessionCache"}],"index":{"version":"2.3.9","fields":["name","parent"],"fieldVectors":[["name/0",[0,36.007]],["parent/0",[]],["name/1",[1,52.533]],["parent/1",[0,3.972]],["name/2",[2,52.533]],["parent/2",[3,2.89]],["name/3",[4,30.762]],["parent/3",[3,2.89]],["name/4",[5,52.533]],["parent/4",[3,2.89]],["name/5",[6,39.192]],["parent/5",[3,2.89]],["name/6",[7,52.533]],["parent/6",[3,2.89]],["name/7",[8,52.533]],["parent/7",[3,2.89]],["name/8",[9,52.533]],["parent/8",[3,2.89]],["name/9",[10,52.533]],["parent/9",[3,2.89]],["name/10",[11,52.533]],["parent/10",[3,2.89]],["name/11",[12,52.533]],["parent/11",[3,2.89]],["name/12",[13,41.252]],["parent/12",[3,2.89]],["name/13",[14,21.602]],["parent/13",[3,2.89]],["name/14",[15,47.288]],["parent/14",[3,2.89]],["name/15",[16,52.533]],["parent/15",[3,2.89]],["name/16",[17,52.533]],["parent/16",[3,2.89]],["name/17",[18,52.533]],["parent/17",[3,2.89]],["name/18",[19,52.533]],["parent/18",[3,2.89]],["name/19",[20,47.288]],["parent/19",[3,2.89]],["name/20",[14,21.602]],["parent/20",[3,2.89]],["name/21",[21,52.533]],["parent/21",[22,5.217]],["name/22",[23,47.288]],["parent/22",[22,5.217]],["name/23",[24,52.533]],["parent/23",[0,3.972]],["name/24",[25,47.288]],["parent/24",[26,4.324]],["name/25",[27,52.533]],["parent/25",[26,4.324]],["name/26",[28,52.533]],["parent/26",[26,4.324]],["name/27",[29,52.533]],["parent/27",[26,4.324]],["name/28",[30,52.533]],["parent/28",[26,4.324]],["name/29",[31,52.533]],["parent/29",[0,3.972]],["name/30",[32,52.533]],["parent/30",[33,4.134]],["name/31",[34,52.533]],["parent/31",[33,4.134]],["name/32",[35,52.533]],["parent/32",[33,4.134]],["name/33",[36,52.533]],["parent/33",[33,4.134]],["name/34",[37,52.533]],["parent/34",[33,4.134]],["name/35",[38,52.533]],["parent/35",[33,4.134]],["name/36",[39,52.533]],["parent/36",[0,3.972]],["name/37",[40,47.288]],["parent/37",[41,4.836]],["name/38",[42,47.288]],["parent/38",[41,4.836]],["name/39",[43,47.288]],["parent/39",[41,4.836]],["name/40",[44,52.533]],["parent/40",[0,3.972]],["name/41",[45,43.833]],["parent/41",[46,4.551]],["name/42",[20,47.288]],["parent/42",[46,4.551]],["name/43",[14,21.602]],["parent/43",[46,4.551]],["name/44",[47,47.288]],["parent/44",[48,5.795]],["name/45",[15,47.288]],["parent/45",[46,4.551]],["name/46",[49,52.533]],["parent/46",[0,3.972]],["name/47",[50,31.618]],["parent/47",[]],["name/48",[51,16.268,52,22.079]],["parent/48",[]],["name/49",[53,47.288]],["parent/49",[51,1.879,52,2.55]],["name/50",[54,52.533]],["parent/50",[51,1.879,55,2.879]],["name/51",[56,52.533]],["parent/51",[51,1.879,55,2.879]],["name/52",[25,47.288]],["parent/52",[51,1.879,55,2.879]],["name/53",[57,52.533]],["parent/53",[51,1.879,55,2.879]],["name/54",[58,52.533]],["parent/54",[51,1.879,55,2.879]],["name/55",[59,52.533]],["parent/55",[51,1.879,55,2.879]],["name/56",[60,52.533]],["parent/56",[51,1.879,55,2.879]],["name/57",[61,52.533]],["parent/57",[51,1.879,55,2.879]],["name/58",[62,52.533]],["parent/58",[51,1.879,52,2.55]],["name/59",[14,21.602]],["parent/59",[51,1.879,63,4.355]],["name/60",[52,30.762]],["parent/60",[51,1.879,64,3.249]],["name/61",[65,52.533]],["parent/61",[51,1.879,64,3.249]],["name/62",[66,52.533]],["parent/62",[51,1.879,64,3.249]],["name/63",[67,52.533]],["parent/63",[51,1.879,64,3.249]],["name/64",[14,21.602]],["parent/64",[51,1.879,64,3.249]],["name/65",[68,47.288]],["parent/65",[51,1.879,52,2.55]],["name/66",[69,39.192]],["parent/66",[51,1.879,70,3.92]],["name/67",[71,47.288]],["parent/67",[51,1.879,70,3.92]],["name/68",[72,47.288]],["parent/68",[51,1.879,52,2.55]],["name/69",[73,52.533]],["parent/69",[51,1.879,52,2.55]],["name/70",[14,21.602]],["parent/70",[51,1.879,74,4.355]],["name/71",[75,47.288]],["parent/71",[51,1.879,52,2.55]],["name/72",[14,21.602]],["parent/72",[51,1.879,76,4.355]],["name/73",[77,43.833]],["parent/73",[51,1.879,52,2.55]],["name/74",[14,21.602]],["parent/74",[51,1.879,52,2.55]],["name/75",[78,14.506,79,11.558,80,10.943,81,14.506]],["parent/75",[]],["name/76",[82,41.252]],["parent/76",[78,1.751,79,1.395,80,1.321,81,1.751]],["name/77",[83,41.252]],["parent/77",[78,1.751,79,1.395,80,1.321,84,2.076]],["name/78",[85,52.533]],["parent/78",[78,1.751,79,1.395,80,1.321,84,2.076]],["name/79",[14,21.602]],["parent/79",[78,1.751,79,1.395,80,1.321,84,2.076]],["name/80",[86,52.533]],["parent/80",[78,1.751,79,1.395,80,1.321,84,2.076]],["name/81",[14,21.602]],["parent/81",[78,1.751,79,1.395,80,1.321,84,2.076]],["name/82",[87,52.533]],["parent/82",[78,1.751,79,1.395,80,1.321,81,1.751]],["name/83",[52,30.762]],["parent/83",[78,1.751,79,1.395,80,1.321,88,2.909]],["name/84",[89,39.192]],["parent/84",[78,1.751,79,1.395,80,1.321,81,1.751]],["name/85",[14,21.602]],["parent/85",[78,1.751,79,1.395,80,1.321,90,2.619]],["name/86",[91,43.833]],["parent/86",[]],["name/87",[92,27.911]],["parent/87",[91,4.836]],["name/88",[47,47.288]],["parent/88",[93,4.551]],["name/89",[94,52.533]],["parent/89",[93,4.551]],["name/90",[23,47.288]],["parent/90",[93,4.551]],["name/91",[95,52.533]],["parent/91",[93,4.551]],["name/92",[96,43.833]],["parent/92",[91,4.836]],["name/93",[14,21.602]],["parent/93",[97,5.795]],["name/94",[98,41.252]],["parent/94",[]],["name/95",[99,43.833]],["parent/95",[98,4.551]],["name/96",[14,21.602]],["parent/96",[100,5.795]],["name/97",[101,47.288]],["parent/97",[98,4.551]],["name/98",[99,43.833]],["parent/98",[102,4.551]],["name/99",[103,52.533]],["parent/99",[102,4.551]],["name/100",[45,43.833]],["parent/100",[102,4.551]],["name/101",[6,39.192]],["parent/101",[102,4.551]],["name/102",[104,43.833]],["parent/102",[98,4.551]],["name/103",[14,21.602]],["parent/103",[105,5.795]],["name/104",[92,27.911]],["parent/104",[]],["name/105",[106,39.192]],["parent/105",[]],["name/106",[13,41.252]],["parent/106",[106,4.324]],["name/107",[14,21.602]],["parent/107",[107,5.795]],["name/108",[6,39.192]],["parent/108",[106,4.324]],["name/109",[108,52.533]],["parent/109",[109,4.134]],["name/110",[45,43.833]],["parent/110",[109,4.134]],["name/111",[110,52.533]],["parent/111",[109,4.134]],["name/112",[40,47.288]],["parent/112",[109,4.134]],["name/113",[42,47.288]],["parent/113",[109,4.134]],["name/114",[43,47.288]],["parent/114",[109,4.134]],["name/115",[111,47.288]],["parent/115",[106,4.324]],["name/116",[6,39.192]],["parent/116",[112,4.836]],["name/117",[83,41.252]],["parent/117",[112,4.836]],["name/118",[13,41.252]],["parent/118",[112,4.836]],["name/119",[113,43.833]],["parent/119",[106,4.324]],["name/120",[14,21.602]],["parent/120",[114,5.795]],["name/121",[115,43.833]],["parent/121",[]],["name/122",[116,47.288]],["parent/122",[115,4.836]],["name/123",[83,41.252]],["parent/123",[117,5.795]],["name/124",[118,43.833]],["parent/124",[115,4.836]],["name/125",[14,21.602]],["parent/125",[119,5.795]],["name/126",[120,41.252]],["parent/126",[]],["name/127",[121,43.833]],["parent/127",[120,4.551]],["name/128",[14,21.602]],["parent/128",[122,5.795]],["name/129",[123,47.288]],["parent/129",[120,4.551]],["name/130",[14,21.602]],["parent/130",[124,5.795]],["name/131",[125,52.533]],["parent/131",[126,5.217]],["name/132",[121,43.833]],["parent/132",[126,5.217]],["name/133",[127,43.833]],["parent/133",[120,4.551]],["name/134",[14,21.602]],["parent/134",[128,5.795]],["name/135",[129,17.036,130,17.036,131,17.036,132,17.036,133,18.379]],["parent/135",[]],["name/136",[134,43.833]],["parent/136",[129,2.082,130,2.082,131,2.082,132,2.082,133,2.246]],["name/137",[14,21.602]],["parent/137",[129,2.082,130,2.082,131,2.082,132,2.082,135,2.495]],["name/138",[136,36.007]],["parent/138",[]],["name/139",[80,10.943,81,14.506,137,13.75,138,20.11]],["parent/139",[]],["name/140",[139,43.833]],["parent/140",[80,1.321,81,1.751,137,1.66,138,2.428]],["name/141",[14,21.602]],["parent/141",[80,1.321,137,1.66,138,2.428,140,2.909]],["name/142",[79,11.558,80,10.943,81,14.506,137,13.75]],["parent/142",[]],["name/143",[141,47.288]],["parent/143",[79,1.395,80,1.321,81,1.751,137,1.66]],["name/144",[142,47.288]],["parent/144",[79,1.395,80,1.321,81,1.751,137,1.66]],["name/145",[14,21.602]],["parent/145",[79,1.395,80,1.321,137,1.66,143,2.909]],["name/146",[82,41.252]],["parent/146",[79,1.395,80,1.321,81,1.751,137,1.66]],["name/147",[14,21.602]],["parent/147",[79,1.395,80,1.321,84,2.076,137,1.66]],["name/148",[144,52.533]],["parent/148",[79,1.395,80,1.321,137,1.66,145,2.619]],["name/149",[83,41.252]],["parent/149",[79,1.395,80,1.321,137,1.66,145,2.619]],["name/150",[89,39.192]],["parent/150",[79,1.395,80,1.321,81,1.751,137,1.66]],["name/151",[14,21.602]],["parent/151",[79,1.395,80,1.321,90,2.619,137,1.66]],["name/152",[146,43.833]],["parent/152",[]],["name/153",[147,52.533]],["parent/153",[146,4.836]],["name/154",[148,43.833]],["parent/154",[149,3.591]],["name/155",[150,43.833]],["parent/155",[149,3.591]],["name/156",[113,43.833]],["parent/156",[149,3.591]],["name/157",[104,43.833]],["parent/157",[149,3.591]],["name/158",[118,43.833]],["parent/158",[149,3.591]],["name/159",[127,43.833]],["parent/159",[149,3.591]],["name/160",[139,43.833]],["parent/160",[149,3.591]],["name/161",[89,39.192]],["parent/161",[149,3.591]],["name/162",[134,43.833]],["parent/162",[149,3.591]],["name/163",[96,43.833]],["parent/163",[149,3.591]],["name/164",[151,52.533]],["parent/164",[146,4.836]],["name/165",[14,21.602]],["parent/165",[152,5.795]],["name/166",[153,15.983,154,17.219,155,21.938]],["parent/166",[]],["name/167",[156,47.288]],["parent/167",[153,1.896,154,2.043,155,2.603]],["name/168",[14,21.602]],["parent/168",[153,1.896,154,2.043,157,3.489]],["name/169",[158,47.288]],["parent/169",[153,1.896,154,2.043,155,2.603]],["name/170",[159,52.533]],["parent/170",[153,1.896,154,2.043,160,2.739]],["name/171",[161,52.533]],["parent/171",[153,1.896,154,2.043,160,2.739]],["name/172",[156,47.288]],["parent/172",[153,1.896,154,2.043,160,2.739]],["name/173",[6,39.192]],["parent/173",[153,1.896,154,2.043,160,2.739]],["name/174",[162,47.288]],["parent/174",[153,1.896,154,2.043,155,2.603]],["name/175",[163,47.288]],["parent/175",[153,1.896,154,2.043,164,3.489]],["name/176",[150,43.833]],["parent/176",[153,1.896,154,2.043,155,2.603]],["name/177",[14,21.602]],["parent/177",[153,1.896,154,2.043,165,3.489]],["name/178",[4,22.079,153,20.494]],["parent/178",[]],["name/179",[148,43.833]],["parent/179",[4,2.55,153,2.367]],["name/180",[14,21.602]],["parent/180",[153,2.367,166,4.355]],["name/181",[4,30.762]],["parent/181",[]],["name/182",[167,43.833]],["parent/182",[]],["name/183",[168,47.288]],["parent/183",[167,4.836]],["name/184",[77,43.833]],["parent/184",[167,4.836]],["name/185",[69,39.192]],["parent/185",[169,3.972]],["name/186",[52,30.762]],["parent/186",[169,3.972]],["name/187",[170,52.533]],["parent/187",[169,3.972]],["name/188",[163,47.288]],["parent/188",[169,3.972]],["name/189",[171,52.533]],["parent/189",[169,3.972]],["name/190",[172,52.533]],["parent/190",[169,3.972]],["name/191",[173,52.533]],["parent/191",[169,3.972]],["name/192",[174,41.252]],["parent/192",[]],["name/193",[175,52.533]],["parent/193",[174,4.551]],["name/194",[176,52.533]],["parent/194",[174,4.551]],["name/195",[69,39.192]],["parent/195",[177,5.217]],["name/196",[178,47.288]],["parent/196",[177,5.217]],["name/197",[179,52.533]],["parent/197",[174,4.551]],["name/198",[69,39.192]],["parent/198",[180,4.836]],["name/199",[71,47.288]],["parent/199",[180,4.836]],["name/200",[178,47.288]],["parent/200",[180,4.836]],["name/201",[181,47.288]],["parent/201",[]],["name/202",[77,43.833]],["parent/202",[181,5.217]],["name/203",[182,52.533]],["parent/203",[50,3.488]],["name/204",[14,21.602]],["parent/204",[50,3.488]],["name/205",[183,52.533]],["parent/205",[50,3.488]],["name/206",[184,52.533]],["parent/206",[50,3.488]],["name/207",[75,47.288]],["parent/207",[50,3.488]],["name/208",[72,47.288]],["parent/208",[50,3.488]],["name/209",[53,47.288]],["parent/209",[50,3.488]],["name/210",[68,47.288]],["parent/210",[50,3.488]],["name/211",[89,39.192]],["parent/211",[50,3.488]],["name/212",[82,41.252]],["parent/212",[50,3.488]],["name/213",[104,43.833]],["parent/213",[92,3.079]],["name/214",[101,47.288]],["parent/214",[92,3.079]],["name/215",[99,43.833]],["parent/215",[92,3.079]],["name/216",[113,43.833]],["parent/216",[92,3.079]],["name/217",[111,47.288]],["parent/217",[92,3.079]],["name/218",[13,41.252]],["parent/218",[92,3.079]],["name/219",[118,43.833]],["parent/219",[92,3.079]],["name/220",[116,47.288]],["parent/220",[92,3.079]],["name/221",[127,43.833]],["parent/221",[92,3.079]],["name/222",[123,47.288]],["parent/222",[92,3.079]],["name/223",[121,43.833]],["parent/223",[92,3.079]],["name/224",[92,27.911]],["parent/224",[92,3.079]],["name/225",[96,43.833]],["parent/225",[92,3.079]],["name/226",[139,43.833]],["parent/226",[136,3.972]],["name/227",[141,47.288]],["parent/227",[136,3.972]],["name/228",[89,39.192]],["parent/228",[136,3.972]],["name/229",[82,41.252]],["parent/229",[136,3.972]],["name/230",[142,47.288]],["parent/230",[136,3.972]],["name/231",[134,43.833]],["parent/231",[136,3.972]],["name/232",[4,30.762]],["parent/232",[4,3.394]],["name/233",[168,47.288]],["parent/233",[4,3.394]],["name/234",[148,43.833]],["parent/234",[4,3.394]],["name/235",[150,43.833]],["parent/235",[4,3.394]],["name/236",[158,47.288]],["parent/236",[4,3.394]],["name/237",[162,47.288]],["parent/237",[4,3.394]],["name/238",[185,52.533]],["parent/238",[4,3.394]],["name/239",[69,39.192]],["parent/239",[186,3.591]],["name/240",[187,52.533]],["parent/240",[186,3.591]],["name/241",[188,52.533]],["parent/241",[186,3.591]],["name/242",[189,52.533]],["parent/242",[186,3.591]],["name/243",[190,52.533]],["parent/243",[186,3.591]],["name/244",[191,52.533]],["parent/244",[186,3.591]],["name/245",[192,52.533]],["parent/245",[186,3.591]],["name/246",[193,52.533]],["parent/246",[186,3.591]],["name/247",[194,52.533]],["parent/247",[186,3.591]],["name/248",[195,52.533]],["parent/248",[186,3.591]]],"invertedIndex":[["__type",{"_index":14,"name":{"13":{},"20":{},"43":{},"59":{},"64":{},"70":{},"72":{},"74":{},"79":{},"81":{},"85":{},"93":{},"96":{},"103":{},"107":{},"120":{},"125":{},"128":{},"130":{},"134":{},"137":{},"141":{},"145":{},"147":{},"151":{},"165":{},"168":{},"177":{},"180":{},"204":{}},"parent":{}}],["absoluteduration",{"_index":29,"name":{"27":{}},"parent":{}}],["access",{"_index":154,"name":{"166":{}},"parent":{"167":{},"168":{},"169":{},"170":{},"171":{},"172":{},"173":{},"174":{},"175":{},"176":{},"177":{}}}],["accesstoken",{"_index":163,"name":{"175":{},"188":{}},"parent":{}}],["accesstokenerror",{"_index":176,"name":{"194":{}},"parent":{}}],["accesstokenexpiresat",{"_index":172,"name":{"190":{}},"parent":{}}],["accesstokenrequest",{"_index":158,"name":{"169":{},"236":{}},"parent":{}}],["accesstokenscope",{"_index":171,"name":{"189":{}},"parent":{}}],["aftercallback",{"_index":99,"name":{"95":{},"98":{},"215":{}},"parent":{}}],["afterrefetch",{"_index":121,"name":{"127":{},"132":{},"223":{}},"parent":{}}],["afterrefresh",{"_index":156,"name":{"167":{},"172":{}},"parent":{}}],["api",{"_index":138,"name":{"139":{}},"parent":{"140":{},"141":{}}}],["auth",{"_index":80,"name":{"75":{},"139":{},"142":{}},"parent":{"76":{},"77":{},"78":{},"79":{},"80":{},"81":{},"82":{},"83":{},"84":{},"85":{},"140":{},"141":{},"143":{},"144":{},"145":{},"146":{},"147":{},"148":{},"149":{},"150":{},"151":{}}}],["auth0logout",{"_index":5,"name":{"4":{}},"parent":{}}],["authorizationparameters",{"_index":39,"name":{"36":{}},"parent":{}}],["authorizationparams",{"_index":6,"name":{"5":{},"101":{},"108":{},"116":{},"173":{}},"parent":{}}],["baseconfig",{"_index":1,"name":{"1":{}},"parent":{}}],["baseurl",{"_index":7,"name":{"6":{}},"parent":{}}],["callback",{"_index":23,"name":{"22":{},"90":{}},"parent":{}}],["callbackoptions",{"_index":101,"name":{"97":{},"214":{}},"parent":{}}],["checksession",{"_index":67,"name":{"63":{}},"parent":{}}],["claims",{"_index":168,"name":{"183":{},"233":{}},"parent":{}}],["clientid",{"_index":8,"name":{"7":{}},"parent":{}}],["clientsecret",{"_index":9,"name":{"8":{}},"parent":{}}],["clocktolerance",{"_index":10,"name":{"9":{}},"parent":{}}],["code",{"_index":178,"name":{"196":{},"200":{}},"parent":{}}],["config",{"_index":0,"name":{"0":{}},"parent":{"1":{},"23":{},"29":{},"36":{},"40":{},"46":{}}}],["config.authorizationparameters",{"_index":41,"name":{},"parent":{"37":{},"38":{},"39":{}}}],["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":33,"name":{},"parent":{"30":{},"31":{},"32":{},"33":{},"34":{},"35":{}}}],["config.nextconfig",{"_index":46,"name":{},"parent":{"41":{},"42":{},"43":{},"45":{}}}],["config.nextconfig.__type",{"_index":48,"name":{},"parent":{"44":{}}}],["config.sessionconfig",{"_index":26,"name":{},"parent":{"24":{},"25":{},"26":{},"27":{},"28":{}}}],["configparameters",{"_index":49,"name":{"46":{}},"parent":{}}],["configprovider",{"_index":182,"name":{"203":{}},"parent":{}}],["configproviderprops",{"_index":183,"name":{"205":{}},"parent":{}}],["constructor",{"_index":69,"name":{"66":{},"185":{},"195":{},"198":{},"239":{}},"parent":{}}],["cookie",{"_index":30,"name":{"28":{}},"parent":{}}],["cookieconfig",{"_index":31,"name":{"29":{}},"parent":{}}],["create",{"_index":189,"name":{"242":{}},"parent":{}}],["default",{"_index":77,"name":{"73":{},"184":{},"202":{}},"parent":{}}],["delete",{"_index":190,"name":{"243":{}},"parent":{}}],["domain",{"_index":32,"name":{"30":{}},"parent":{}}],["email",{"_index":54,"name":{"50":{}},"parent":{}}],["email_verified",{"_index":56,"name":{"51":{}},"parent":{}}],["enabletelemetry",{"_index":12,"name":{"11":{}},"parent":{}}],["error",{"_index":65,"name":{"61":{}},"parent":{}}],["fromtokenset",{"_index":195,"name":{"248":{}},"parent":{}}],["frontend",{"_index":50,"name":{"47":{}},"parent":{"203":{},"204":{},"205":{},"206":{},"207":{},"208":{},"209":{},"210":{},"211":{},"212":{}}}],["frontend/use",{"_index":51,"name":{"48":{}},"parent":{"49":{},"50":{},"51":{},"52":{},"53":{},"54":{},"55":{},"56":{},"57":{},"58":{},"59":{},"60":{},"61":{},"62":{},"63":{},"64":{},"65":{},"66":{},"67":{},"68":{},"69":{},"70":{},"71":{},"72":{},"73":{},"74":{}}}],["frontend/with",{"_index":78,"name":{"75":{}},"parent":{"76":{},"77":{},"78":{},"79":{},"80":{},"81":{},"82":{},"83":{},"84":{},"85":{}}}],["get",{"_index":194,"name":{"247":{}},"parent":{}}],["getaccesstoken",{"_index":150,"name":{"155":{},"176":{},"235":{}},"parent":{}}],["getaccesstokenresult",{"_index":162,"name":{"174":{},"237":{}},"parent":{}}],["getidtoken",{"_index":192,"name":{"245":{}},"parent":{}}],["getloginstate",{"_index":13,"name":{"12":{},"106":{},"118":{},"218":{}},"parent":{}}],["getserversideprops",{"_index":144,"name":{"148":{}},"parent":{}}],["getserversidepropsresultwithsession",{"_index":141,"name":{"143":{},"227":{}},"parent":{}}],["getserversidepropswrapper",{"_index":134,"name":{"136":{},"162":{},"231":{}},"parent":{}}],["getsession",{"_index":148,"name":{"154":{},"179":{},"234":{}},"parent":{}}],["handleauth",{"_index":96,"name":{"92":{},"163":{},"225":{}},"parent":{}}],["handlecallback",{"_index":104,"name":{"102":{},"157":{},"213":{}},"parent":{}}],["handlelogin",{"_index":113,"name":{"119":{},"156":{},"216":{}},"parent":{}}],["handlelogout",{"_index":118,"name":{"124":{},"158":{},"219":{}},"parent":{}}],["handleprofile",{"_index":127,"name":{"133":{},"159":{},"221":{}},"parent":{}}],["handlererror",{"_index":179,"name":{"197":{}},"parent":{}}],["handlers",{"_index":92,"name":{"87":{},"104":{},"224":{}},"parent":{"213":{},"214":{},"215":{},"216":{},"217":{},"218":{},"219":{},"220":{},"221":{},"222":{},"223":{},"224":{},"225":{}}}],["handlers/auth",{"_index":91,"name":{"86":{}},"parent":{"87":{},"92":{}}}],["handlers/auth.handleauth",{"_index":97,"name":{},"parent":{"93":{}}}],["handlers/auth.handlers",{"_index":93,"name":{},"parent":{"88":{},"89":{},"90":{},"91":{}}}],["handlers/callback",{"_index":98,"name":{"94":{}},"parent":{"95":{},"97":{},"102":{}}}],["handlers/callback.aftercallback",{"_index":100,"name":{},"parent":{"96":{}}}],["handlers/callback.callbackoptions",{"_index":102,"name":{},"parent":{"98":{},"99":{},"100":{},"101":{}}}],["handlers/callback.handlecallback",{"_index":105,"name":{},"parent":{"103":{}}}],["handlers/login",{"_index":106,"name":{"105":{}},"parent":{"106":{},"108":{},"115":{},"119":{}}}],["handlers/login.authorizationparams",{"_index":109,"name":{},"parent":{"109":{},"110":{},"111":{},"112":{},"113":{},"114":{}}}],["handlers/login.getloginstate",{"_index":107,"name":{},"parent":{"107":{}}}],["handlers/login.handlelogin",{"_index":114,"name":{},"parent":{"120":{}}}],["handlers/login.loginoptions",{"_index":112,"name":{},"parent":{"116":{},"117":{},"118":{}}}],["handlers/logout",{"_index":115,"name":{"121":{}},"parent":{"122":{},"124":{}}}],["handlers/logout.handlelogout",{"_index":119,"name":{},"parent":{"125":{}}}],["handlers/logout.logoutoptions",{"_index":117,"name":{},"parent":{"123":{}}}],["handlers/profile",{"_index":120,"name":{"126":{}},"parent":{"127":{},"129":{},"133":{}}}],["handlers/profile.afterrefetch",{"_index":122,"name":{},"parent":{"128":{}}}],["handlers/profile.handleprofile",{"_index":128,"name":{},"parent":{"134":{}}}],["handlers/profile.profileoptions",{"_index":124,"name":{},"parent":{"130":{}}}],["handlers/profile.profileoptions.__type",{"_index":126,"name":{},"parent":{"131":{},"132":{}}}],["helpers",{"_index":136,"name":{"138":{}},"parent":{"226":{},"227":{},"228":{},"229":{},"230":{},"231":{}}}],["helpers/get",{"_index":129,"name":{"135":{}},"parent":{"136":{},"137":{}}}],["helpers/with",{"_index":137,"name":{"139":{},"142":{}},"parent":{"140":{},"141":{},"143":{},"144":{},"145":{},"146":{},"147":{},"148":{},"149":{},"150":{},"151":{}}}],["htmlsafe",{"_index":175,"name":{"193":{}},"parent":{}}],["httponly",{"_index":36,"name":{"33":{}},"parent":{}}],["httptimeout",{"_index":11,"name":{"10":{}},"parent":{}}],["identityclaimfilter",{"_index":15,"name":{"14":{},"45":{}},"parent":{}}],["idplogout",{"_index":16,"name":{"15":{}},"parent":{}}],["idtoken",{"_index":170,"name":{"187":{}},"parent":{}}],["idtokensigningalg",{"_index":17,"name":{"16":{}},"parent":{}}],["init",{"_index":187,"name":{"240":{}},"parent":{}}],["initauth0",{"_index":151,"name":{"164":{}},"parent":{}}],["instance",{"_index":146,"name":{"152":{}},"parent":{"153":{},"164":{}}}],["instance.initauth0",{"_index":152,"name":{},"parent":{"165":{}}}],["instance.signinwithauth0",{"_index":149,"name":{},"parent":{"154":{},"155":{},"156":{},"157":{},"158":{},"159":{},"160":{},"161":{},"162":{},"163":{}}}],["invitation",{"_index":108,"name":{"109":{}},"parent":{}}],["isauthenticated",{"_index":191,"name":{"244":{}},"parent":{}}],["isloading",{"_index":66,"name":{"62":{}},"parent":{}}],["issuerbaseurl",{"_index":18,"name":{"17":{}},"parent":{}}],["legacysamesitecookie",{"_index":19,"name":{"18":{}},"parent":{}}],["login",{"_index":47,"name":{"44":{},"88":{}},"parent":{}}],["loginoptions",{"_index":111,"name":{"115":{},"217":{}},"parent":{}}],["logout",{"_index":94,"name":{"89":{}},"parent":{}}],["logoutoptions",{"_index":116,"name":{"122":{},"220":{}},"parent":{}}],["name",{"_index":25,"name":{"24":{},"52":{}},"parent":{}}],["nextconfig",{"_index":44,"name":{"40":{}},"parent":{}}],["nickname",{"_index":57,"name":{"53":{}},"parent":{}}],["onerror",{"_index":86,"name":{"80":{}},"parent":{}}],["onredirecting",{"_index":85,"name":{"78":{}},"parent":{}}],["org_id",{"_index":61,"name":{"57":{}},"parent":{}}],["organization",{"_index":45,"name":{"41":{},"100":{},"110":{}},"parent":{}}],["page",{"_index":79,"name":{"75":{},"142":{}},"parent":{"76":{},"77":{},"78":{},"79":{},"80":{},"81":{},"82":{},"83":{},"84":{},"85":{},"143":{},"144":{},"145":{},"146":{},"147":{},"148":{},"149":{},"150":{},"151":{}}}],["pageroute",{"_index":142,"name":{"144":{},"230":{}},"parent":{}}],["path",{"_index":34,"name":{"31":{}},"parent":{}}],["picture",{"_index":58,"name":{"54":{}},"parent":{}}],["postlogoutredirect",{"_index":21,"name":{"21":{}},"parent":{}}],["profile",{"_index":95,"name":{"91":{}},"parent":{}}],["profileoptions",{"_index":123,"name":{"129":{},"222":{}},"parent":{}}],["props",{"_index":132,"name":{"135":{}},"parent":{"136":{},"137":{}}}],["redirecturi",{"_index":103,"name":{"99":{}},"parent":{}}],["refetch",{"_index":125,"name":{"131":{}},"parent":{}}],["refresh",{"_index":161,"name":{"171":{}},"parent":{}}],["refreshtoken",{"_index":173,"name":{"191":{}},"parent":{}}],["requesterror",{"_index":68,"name":{"65":{},"210":{}},"parent":{}}],["required",{"_index":81,"name":{"75":{},"139":{},"142":{}},"parent":{"76":{},"82":{},"84":{},"140":{},"143":{},"144":{},"146":{},"150":{}}}],["required.pageroute",{"_index":143,"name":{},"parent":{"145":{}}}],["required.userprops",{"_index":88,"name":{},"parent":{"83":{}}}],["required.withapiauthrequired",{"_index":140,"name":{},"parent":{"141":{}}}],["required.withpageauthrequired",{"_index":90,"name":{},"parent":{"85":{},"151":{}}}],["required.withpageauthrequiredoptions",{"_index":84,"name":{},"parent":{"77":{},"78":{},"79":{},"80":{},"81":{},"147":{}}}],["required.withpageauthrequiredoptions.__type",{"_index":145,"name":{},"parent":{"148":{},"149":{}}}],["response_mode",{"_index":42,"name":{"38":{},"113":{}},"parent":{}}],["response_type",{"_index":43,"name":{"39":{},"114":{}},"parent":{}}],["returnto",{"_index":83,"name":{"77":{},"117":{},"123":{},"149":{}},"parent":{}}],["rolling",{"_index":27,"name":{"25":{}},"parent":{}}],["rollingduration",{"_index":28,"name":{"26":{}},"parent":{}}],["routes",{"_index":20,"name":{"19":{},"42":{}},"parent":{}}],["samesite",{"_index":38,"name":{"35":{}},"parent":{}}],["save",{"_index":188,"name":{"241":{}},"parent":{}}],["scope",{"_index":40,"name":{"37":{},"112":{}},"parent":{}}],["scopes",{"_index":159,"name":{"170":{}},"parent":{}}],["screen_hint",{"_index":110,"name":{"111":{}},"parent":{}}],["secret",{"_index":2,"name":{"2":{}},"parent":{}}],["secure",{"_index":37,"name":{"34":{}},"parent":{}}],["server",{"_index":130,"name":{"135":{}},"parent":{"136":{},"137":{}}}],["session",{"_index":4,"name":{"3":{},"178":{},"181":{},"232":{}},"parent":{"179":{},"232":{},"233":{},"234":{},"235":{},"236":{},"237":{},"238":{}}}],["session.getsession",{"_index":166,"name":{},"parent":{"180":{}}}],["session.sessioncache",{"_index":186,"name":{},"parent":{"239":{},"240":{},"241":{},"242":{},"243":{},"244":{},"245":{},"246":{},"247":{},"248":{}}}],["session/get",{"_index":153,"name":{"166":{},"178":{}},"parent":{"167":{},"168":{},"169":{},"170":{},"171":{},"172":{},"173":{},"174":{},"175":{},"176":{},"177":{},"179":{},"180":{}}}],["session/session",{"_index":167,"name":{"182":{}},"parent":{"183":{},"184":{}}}],["session/session.default",{"_index":169,"name":{},"parent":{"185":{},"186":{},"187":{},"188":{},"189":{},"190":{},"191":{}}}],["sessioncache",{"_index":185,"name":{"238":{}},"parent":{}}],["sessionconfig",{"_index":24,"name":{"23":{}},"parent":{}}],["set",{"_index":193,"name":{"246":{}},"parent":{}}],["side",{"_index":131,"name":{"135":{}},"parent":{"136":{},"137":{}}}],["signinwithauth0",{"_index":147,"name":{"153":{}},"parent":{}}],["status",{"_index":71,"name":{"67":{},"199":{}},"parent":{}}],["sub",{"_index":59,"name":{"55":{}},"parent":{}}],["token",{"_index":155,"name":{"166":{}},"parent":{"167":{},"169":{},"174":{},"176":{}}}],["token.accesstokenrequest",{"_index":160,"name":{},"parent":{"170":{},"171":{},"172":{},"173":{}}}],["token.afterrefresh",{"_index":157,"name":{},"parent":{"168":{}}}],["token.getaccesstoken",{"_index":165,"name":{},"parent":{"177":{}}}],["token.getaccesstokenresult",{"_index":164,"name":{},"parent":{"175":{}}}],["transient",{"_index":35,"name":{"32":{}},"parent":{}}],["updated_at",{"_index":60,"name":{"56":{}},"parent":{}}],["useconfig",{"_index":184,"name":{"206":{}},"parent":{}}],["user",{"_index":52,"name":{"48":{},"60":{},"83":{},"186":{}},"parent":{"49":{},"58":{},"65":{},"68":{},"69":{},"71":{},"73":{},"74":{}}}],["user.requesterror",{"_index":70,"name":{},"parent":{"66":{},"67":{}}}],["user.usercontext",{"_index":63,"name":{},"parent":{"59":{}}}],["user.usercontext.__type",{"_index":64,"name":{},"parent":{"60":{},"61":{},"62":{},"63":{},"64":{}}}],["user.userprofile",{"_index":55,"name":{},"parent":{"50":{},"51":{},"52":{},"53":{},"54":{},"55":{},"56":{},"57":{}}}],["user.userprovider",{"_index":76,"name":{},"parent":{"72":{}}}],["user.useuser",{"_index":74,"name":{},"parent":{"70":{}}}],["usercontext",{"_index":62,"name":{"58":{}},"parent":{}}],["userprofile",{"_index":53,"name":{"49":{},"209":{}},"parent":{}}],["userprops",{"_index":87,"name":{"82":{}},"parent":{}}],["userprovider",{"_index":75,"name":{"71":{},"207":{}},"parent":{}}],["userproviderprops",{"_index":72,"name":{"68":{},"208":{}},"parent":{}}],["useuser",{"_index":73,"name":{"69":{}},"parent":{}}],["utils/errors",{"_index":174,"name":{"192":{}},"parent":{"193":{},"194":{},"197":{}}}],["utils/errors.accesstokenerror",{"_index":177,"name":{},"parent":{"195":{},"196":{}}}],["utils/errors.handlererror",{"_index":180,"name":{},"parent":{"198":{},"199":{},"200":{}}}],["version",{"_index":181,"name":{"201":{}},"parent":{"202":{}}}],["withapiauthrequired",{"_index":139,"name":{"140":{},"160":{},"226":{}},"parent":{}}],["withpageauthrequired",{"_index":89,"name":{"84":{},"150":{},"161":{},"211":{},"228":{}},"parent":{}}],["withpageauthrequiredoptions",{"_index":82,"name":{"76":{},"146":{},"212":{},"229":{}},"parent":{}}],["wrapper",{"_index":133,"name":{"135":{}},"parent":{"136":{}}}],["wrapper.getserversidepropswrapper",{"_index":135,"name":{},"parent":{"137":{}}}]],"pipeline":[]}} \ No newline at end of file diff --git a/docs/classes/frontend_use_user.requesterror.html b/docs/classes/frontend_use_user.requesterror.html index 96df545c6..4343e5860 100644 --- a/docs/classes/frontend_use_user.requesterror.html +++ b/docs/classes/frontend_use_user.requesterror.html @@ -97,7 +97,7 @@
Optional accessToken
Optional accessTokenExpiresAt
-Optional accessToken
accessTokenScope: undefined | string
+ accessTokenScope: string
@@ -190,10 +190,10 @@
Optional accessTokenScope
-Optional accessToken
idToken: undefined | string
+ idToken: string
@@ -205,10 +205,10 @@
refreshToken: undefined | string
+ refreshToken: string
@@ -223,7 +223,7 @@ user: Claims
diff --git a/docs/classes/utils_errors.accesstokenerror.html b/docs/classes/utils_errors.accesstokenerror.html
index d545a1c5a..007dd7ddb 100644
--- a/docs/classes/utils_errors.accesstokenerror.html
+++ b/docs/classes/utils_errors.accesstokenerror.html
@@ -93,7 +93,7 @@
@@ -107,17 +107,18 @@
+
@@ -226,7 +227,7 @@ -
Access
TokenError
@@ -104,33 +104,36 @@
+
response_mode: "query" | "form_post"
-
+
response_type: "id_token" | "code id_token" | "code"
-
+
scope: string
@@ -214,13 +217,13 @@ -
Authorization
Parameters
auth0Logout: boolean
@@ -127,7 +127,7 @@ authorizationParams: AuthorizationParameters
@@ -160,7 +160,7 @@ baseURL: string
@@ -178,7 +178,7 @@ clientID: string
@@ -191,10 +191,10 @@
clientSecret: undefined | string
+ clientSecret: string
@@ -211,7 +211,7 @@ clockTolerance: number
@@ -228,7 +228,7 @@ enableTelemetry: boolean
@@ -245,7 +245,7 @@ getLoginState: (req: IncomingMessage, options: LoginOptions) => Record<string, any>
@@ -297,7 +297,7 @@ httpTimeout: number
@@ -314,7 +314,7 @@ idTokenSigningAlg: string
@@ -330,7 +330,7 @@ identityClaimFilter: string[]
@@ -347,7 +347,7 @@ idpLogout: boolean
@@ -363,7 +363,7 @@ issuerBaseURL: string
@@ -380,7 +380,7 @@ legacySameSiteCookie: boolean
@@ -397,7 +397,7 @@ routes: { callback: string; postLogoutRedirect: string }
@@ -438,7 +438,7 @@ secret: string | string[]
@@ -456,7 +456,7 @@ session: SessionConfig
diff --git a/docs/interfaces/config.cookieconfig.html b/docs/interfaces/config.cookieconfig.html
index ccb8023be..32e403721 100644
--- a/docs/interfaces/config.cookieconfig.html
+++ b/docs/interfaces/config.cookieconfig.html
@@ -104,10 +104,10 @@
domain: undefined | string
+ domain: string
@@ -123,7 +123,7 @@ httpOnly: boolean
@@ -137,10 +137,10 @@
path: undefined | string
+ path: string
@@ -158,7 +158,7 @@ sameSite: "lax" | "strict" | "none"
@@ -172,10 +172,10 @@
secure: undefined | boolean
+ secure: boolean
@@ -192,7 +192,7 @@ transient: boolean
diff --git a/docs/interfaces/config.nextconfig.html b/docs/interfaces/config.nextconfig.html
index 07d0c84c9..241e27300 100644
--- a/docs/interfaces/config.nextconfig.html
+++ b/docs/interfaces/config.nextconfig.html
@@ -86,7 +86,7 @@
+
identityClaimFilter: string[]
@@ -116,10 +117,10 @@
organization: undefined | string
+ organization: string
@@ -137,7 +138,7 @@ routes: { login: string }
@@ -238,7 +239,7 @@
Optional idToken
-Optional idToken
Optional refreshToken
-user
Index
Constructors
-- constructor
+ - constructor
Properties
Constructors
-constructor
-+- new
AccessTokenError(code: string, message: string): AccessTokenError
-
code: string
Parameters
@@ -142,7 +143,7 @@code
code
--
+
-
constructor
-
diff --git a/docs/classes/utils_errors.handlererror.html b/docs/classes/utils_errors.handlererror.html
index 9bf00587c..775097b03 100644
--- a/docs/classes/utils_errors.handlererror.html
+++ b/docs/classes/utils_errors.handlererror.html
@@ -97,7 +97,7 @@
@@ -112,17 +112,18 @@
+
@@ -154,7 +155,7 @@ status: undefined | number
@@ -241,7 +242,7 @@ -
Handler
Error
Index
Constructors
-- constructor
+ - constructor
Properties
Constructors
-constructor
-+- new
HandlerError(error: Error | AccessTokenError | HttpError): HandlerError
-
code: undefined | string
Parameters
@@ -144,7 +145,7 @@code
status
status
--
+
-
constructor
-
diff --git a/docs/interfaces/config.authorizationparameters.html b/docs/interfaces/config.authorizationparameters.html
index 2146b3f8a..650d0f512 100644
--- a/docs/interfaces/config.authorizationparameters.html
+++ b/docs/interfaces/config.authorizationparameters.html
@@ -94,9 +94,9 @@
Index
Properties
-- response_
mode
- - response_
type
- - scope
+ - response_
mode
+ - response_
type
+ - scope
Properties
Properties
-response_mode
response_type
scope
scope
--
+
-
response_
mode
- -
+
-
response_
type
- -
+
-
scope
diff --git a/docs/interfaces/config.baseconfig.html b/docs/interfaces/config.baseconfig.html index 127b82e99..70c7a7692 100644 --- a/docs/interfaces/config.baseconfig.html +++ b/docs/interfaces/config.baseconfig.html @@ -111,7 +111,7 @@auth0Logout
authorizationParams
baseURL
clientID
clientID
Optional clientSecret
-clockTolerance
enableTelemetry
getLoginState
httpTimeout
idTokenSigningAlg
identityClaimFilter
idpLogout
issuerBaseURL
legacySameSiteCookie
routes
secret
session
Properties
Optional domain
-httpOnly
httpOnly
Optional path
-sameSite
sameSite
Optional secure
-transient
Index
Properties
-- identity
ClaimFilter
+ - identity
ClaimFilter
- organization
- routes
@@ -96,13 +96,14 @@Properties
Properties
-identityClaimFilter
identityClaimFilter
Optional organization
-routes
login: NextConfig
--
+
-
identity
ClaimFilter
-
diff --git a/docs/interfaces/config.sessionconfig.html b/docs/interfaces/config.sessionconfig.html
index f6d7e925f..1db742918 100644
--- a/docs/interfaces/config.sessionconfig.html
+++ b/docs/interfaces/config.sessionconfig.html
@@ -106,7 +106,7 @@
absoluteDuration: number | boolean
@@ -125,7 +125,7 @@ cookie: CookieConfig
@@ -135,7 +135,7 @@ name: string
@@ -153,7 +153,7 @@ rolling: boolean
@@ -173,7 +173,7 @@ rollingDuration: number | false
diff --git a/docs/interfaces/frontend_use_user.userprofile.html b/docs/interfaces/frontend_use_user.userprofile.html
index a886e8e2d..a67143004 100644
--- a/docs/interfaces/frontend_use_user.userprofile.html
+++ b/docs/interfaces/frontend_use_user.userprofile.html
@@ -115,80 +115,80 @@
email: undefined | null | string
+ email: null | string
email_verified: undefined | null | boolean
+ email_verified: null | boolean
name: undefined | null | string
+ name: null | string
nickname: undefined | null | string
+ nickname: null | string
org_id: undefined | null | string
+ org_id: null | string
picture: undefined | null | string
+ picture: null | string
sub: undefined | null | string
+ sub: null | string
updated_at: undefined | null | string
+ updated_at: null | string
diff --git a/docs/interfaces/frontend_with_page_auth_required.userprops.html b/docs/interfaces/frontend_with_page_auth_required.userprops.html
index 117a1fb1a..78d0d4ccd 100644
--- a/docs/interfaces/frontend_with_page_auth_required.userprops.html
+++ b/docs/interfaces/frontend_with_page_auth_required.userprops.html
@@ -95,7 +95,7 @@ user: UserProfile
diff --git a/docs/interfaces/frontend_with_page_auth_required.withpageauthrequiredoptions.html b/docs/interfaces/frontend_with_page_auth_required.withpageauthrequiredoptions.html
index 17826ba17..4b90e17f8 100644
--- a/docs/interfaces/frontend_with_page_auth_required.withpageauthrequiredoptions.html
+++ b/docs/interfaces/frontend_with_page_auth_required.withpageauthrequiredoptions.html
@@ -101,10 +101,10 @@
onError: undefined | ((error: Error) => Element)
+ onError: (error: Error) => Element
@@ -116,14 +116,35 @@
+
+
onRedirecting: undefined | (() => Element)
+ onRedirecting: () => Element
@@ -135,14 +156,29 @@
+
+
returnTo: undefined | string
+ returnTo: string
diff --git a/docs/interfaces/handlers_auth.handlers.html b/docs/interfaces/handlers_auth.handlers.html
index b27c4706f..5522ea6f1 100644
--- a/docs/interfaces/handlers_auth.handlers.html
+++ b/docs/interfaces/handlers_auth.handlers.html
@@ -125,7 +125,7 @@ callback: HandleCallback
@@ -135,7 +135,7 @@ login: HandleLogin
@@ -145,7 +145,7 @@ logout: HandleLogout
@@ -155,7 +155,7 @@ profile: HandleProfile
diff --git a/docs/interfaces/handlers_callback.callbackoptions.html b/docs/interfaces/handlers_callback.callbackoptions.html
index 8b76e2441..fa87aa51a 100644
--- a/docs/interfaces/handlers_callback.callbackoptions.html
+++ b/docs/interfaces/handlers_callback.callbackoptions.html
@@ -102,20 +102,20 @@
afterCallback: undefined | AfterCallback
+ afterCallback: AfterCallback
authorizationParams: undefined | Partial<AuthorizationParameters>
+ authorizationParams: Partial<AuthorizationParameters>
@@ -127,10 +127,10 @@
absoluteDuration
cookie
name
rolling
rollingDuration
Properties
Optional email
-Optional email_verified
-Optional name
-Optional nickname
-Optional org_id
-Optional picture
-Optional sub
-Optional updated_at
-user
Properties
Optional onError
-Optional onError
Render a fallback in case of error fetching the user from the profile API route.
Type declaration
++-
+
+
++- (error: Error): Element
+
++-
+
+
+Parameters
++-
+
+
+error: Error
+Returns Element
+Optional onRedirecting
-Optional onRedirecting
Render a message to show that the user is being redirected to the login.
Type declaration
++-
+
+
++- (): Element
+
++-
+
+
+Returns Element
+Optional returnTo
-callback
login
logout
profile
Properties
Optional afterCallback
-Optional authorizationParams
-Optional authorizationPar
organization: undefined | string
+ organization: string
@@ -143,10 +143,10 @@
redirectUri: undefined | string
+ redirectUri: string
diff --git a/docs/interfaces/handlers_login.authorizationparams.html b/docs/interfaces/handlers_login.authorizationparams.html
index 93d4fc164..55d5aa4f7 100644
--- a/docs/interfaces/handlers_login.authorizationparams.html
+++ b/docs/interfaces/handlers_login.authorizationparams.html
@@ -95,9 +95,9 @@ - invitation
- organization
- - response_
mode
- - response_
type
- - scope
+ - response_
mode
+ - response_
type
+ - scope
- screen_
hint
@@ -109,10 +109,10 @@
invitation: undefined | string
+ invitation: string
@@ -148,10 +148,10 @@
organization: undefined | string
+ organization: string
@@ -161,43 +161,46 @@
-
+
response_mode: undefined | "query" | "form_post"
+ response_mode: "query" | "form_post"
-
+
response_type: undefined | "id_token" | "code id_token" | "code"
+ response_type: "id_token" | "code id_token" | "code"
-
+
scope: undefined | string
+ scope: string
screen_hint: undefined | string
+ screen_hint: string
@@ -294,13 +297,13 @@ -
organization
- -
+
-
response_
mode
- -
+
-
response_
type
- -
+
-
scope
-
diff --git a/docs/interfaces/handlers_login.loginoptions.html b/docs/interfaces/handlers_login.loginoptions.html
index 03e982771..cc37ce1fc 100644
--- a/docs/interfaces/handlers_login.loginoptions.html
+++ b/docs/interfaces/handlers_login.loginoptions.html
@@ -101,10 +101,10 @@
authorizationParams: undefined | AuthorizationParams
+ authorizationParams: AuthorizationParams
@@ -116,10 +116,10 @@
Optional organization
-Optional organization
Optional redirectUri
-Properties
Properties
Optional invitation
-Optional invitation
Optional organization
-Optional organization
Optional response_mode
-Optional response_type
-Optional scope
-Optional screen_hint
-Optional screen_hint
Properties
Optional authorizationParams
-Optional authorizationPar
getLoginState: undefined | GetLoginState
+ getLoginState: GetLoginState
@@ -131,10 +131,10 @@
Optional getLoginState
-Optional getLoginSta
returnTo: undefined | string
+ returnTo: string
diff --git a/docs/interfaces/handlers_logout.logoutoptions.html b/docs/interfaces/handlers_logout.logoutoptions.html
index 3fdd1937d..84ace101a 100644
--- a/docs/interfaces/handlers_logout.logoutoptions.html
+++ b/docs/interfaces/handlers_logout.logoutoptions.html
@@ -99,10 +99,10 @@
returnTo: undefined | string
+ returnTo: string
diff --git a/docs/interfaces/instance.signinwithauth0.html b/docs/interfaces/instance.signinwithauth0.html
index 74d725fc6..5056f5e5c 100644
--- a/docs/interfaces/instance.signinwithauth0.html
+++ b/docs/interfaces/instance.signinwithauth0.html
@@ -113,7 +113,7 @@ getAccessToken: GetAccessToken
@@ -128,7 +128,7 @@ getServerSidePropsWrapper: GetServerSidePropsWrapper<any, ParsedUrlQuery>
@@ -144,7 +144,7 @@ getSession: GetSession
@@ -159,7 +159,7 @@ handleAuth: HandleAuth
@@ -174,7 +174,7 @@ handleCallback: HandleCallback
@@ -189,7 +189,7 @@ handleLogin: HandleLogin
@@ -204,7 +204,7 @@ handleLogout: HandleLogout
@@ -219,7 +219,7 @@ handleProfile: HandleProfile
@@ -234,7 +234,7 @@ withApiAuthRequired: WithApiAuthRequired
@@ -249,7 +249,7 @@ withPageAuthRequired: WithPageAuthRequired
diff --git a/docs/interfaces/session_get_access_token.accesstokenrequest.html b/docs/interfaces/session_get_access_token.accesstokenrequest.html
index c6d8ce728..6f7ecedfd 100644
--- a/docs/interfaces/session_get_access_token.accesstokenrequest.html
+++ b/docs/interfaces/session_get_access_token.accesstokenrequest.html
@@ -102,10 +102,10 @@
afterRefresh: undefined | AfterRefresh
+ afterRefresh: AfterRefresh
@@ -139,10 +139,10 @@
authorizationParams: undefined | Partial<AuthorizationParameters>
+ authorizationParams: Partial<AuthorizationParameters>
@@ -154,10 +154,10 @@
Optional returnTo
-Properties
Optional returnTo
-getAccessToken
getServerSidePropsWrapper
getSession
handleAuth
handleCallback
handleLogin
handleLogout
handleProfile
withApiAuthRequired
withPageAuthRequired
Properties
Optional afterRefresh
-Modify the session after refresh
Optional authorizationParams
-Optional authorizationPar
refresh: undefined | boolean
+ refresh: boolean
@@ -170,10 +170,10 @@
scopes: undefined | string[]
+ scopes: string[]
diff --git a/docs/interfaces/session_get_access_token.getaccesstokenresult.html b/docs/interfaces/session_get_access_token.getaccesstokenresult.html
index 4815a2f4c..a2cc753ef 100644
--- a/docs/interfaces/session_get_access_token.getaccesstokenresult.html
+++ b/docs/interfaces/session_get_access_token.getaccesstokenresult.html
@@ -99,10 +99,10 @@
accessToken: undefined | string
+ accessToken: string
diff --git a/docs/modules/config.html b/docs/modules/config.html
index 73c47d1d5..07f506a76 100644
--- a/docs/modules/config.html
+++ b/docs/modules/config.html
@@ -97,7 +97,7 @@ ConfigParameters: DeepPartial<BaseConfig & NextConfig>
@@ -176,7 +176,9 @@
diff --git a/docs/modules/frontend.html b/docs/modules/frontend.html
index 4caeb2a45..c272f1bf9 100644
--- a/docs/modules/frontend.html
+++ b/docs/modules/frontend.html
@@ -140,7 +140,7 @@ ConfigProviderProps: React.PropsWithChildren<ConfigContext>
@@ -150,7 +150,7 @@
ConfigProvider: (__namedParameters: PropsWithChildren<ConfigContext>) => ReactElement<ConfigContext, string | ((props: any) => null | ReactElement<any, any>) | ((props: any) => Component<any, any, any>)>
+ ConfigProvider: (__namedParameters: PropsWithChildren<ConfigContext>) => ReactElement<ConfigContext, string | ((props: any) => null | ReactElement<any, any>) | (new (props: any) => Component<any, any, any>)>
@@ -158,7 +158,7 @@ -
-
@@ -168,7 +168,7 @@
-
@@ -188,7 +188,7 @@-
UseUser: () => UserContext
@@ -149,7 +149,7 @@ UserContext: { checkSession: () => Promise<void>; error?: Error; isLoading: boolean; user?: UserProfile }
@@ -193,7 +193,7 @@ UserProvider: (props: UserProviderProps) => ReactElement<UserContext>
@@ -229,7 +229,7 @@ UserProviderProps: React.PropsWithChildren<{ fetcher?: UserFetcher; profileUrl?: string; user?: UserProfile } & ConfigContext>
@@ -266,7 +266,7 @@
default: (__namedParameters: PropsWithChildren<{ fetcher?: undefined | UserFetcher; profileUrl?: undefined | string; user?: undefined | UserProfile } & ConfigContext>) => ReactElement<UserContext, string | ((props: any) => null | ReactElement<any, any>) | ((props: any) => Component<any, any, any>)>
+ default: (__namedParameters: PropsWithChildren<{ fetcher?: UserFetcher; profileUrl?: string; user?: UserProfile } & ConfigContext>) => ReactElement<UserContext, string | ((props: any) => null | ReactElement<any, any>) | (new (props: any) => Component<any, any, any>)>
@@ -274,17 +274,17 @@ -
-
-
-
-
diff --git a/docs/modules/frontend_with_page_auth_required.html b/docs/modules/frontend_with_page_auth_required.html
index b7bd545d2..461a89594 100644
--- a/docs/modules/frontend_with_page_auth_required.html
+++ b/docs/modules/frontend_with_page_auth_required.html
@@ -94,7 +94,7 @@ WithPageAuthRequired: <P>(Component: ComponentType<P & UserProps>, options?: WithPageAuthRequiredOptions) => React.FC<P>
diff --git a/docs/modules/handlers_auth.html b/docs/modules/handlers_auth.html
index df31cb934..825181d6f 100644
--- a/docs/modules/handlers_auth.html
+++ b/docs/modules/handlers_auth.html
@@ -90,7 +90,7 @@ HandleAuth: (userHandlers?: Partial<Handlers>) => NextApiHandler
diff --git a/docs/modules/handlers_callback.html b/docs/modules/handlers_callback.html
index 20c347505..957aec23f 100644
--- a/docs/modules/handlers_callback.html
+++ b/docs/modules/handlers_callback.html
@@ -91,7 +91,7 @@ AfterCallback: (req: NextApiRequest, res: NextApiResponse, session: default, state?: {}) => Promise<default> | default
@@ -192,7 +192,7 @@ HandleCallback: (req: NextApiRequest, res: NextApiResponse, options?: CallbackOptions) => Promise<void>
diff --git a/docs/modules/handlers_login.html b/docs/modules/handlers_login.html
index e29102936..8e53f7da6 100644
--- a/docs/modules/handlers_login.html
+++ b/docs/modules/handlers_login.html
@@ -92,7 +92,7 @@ GetLoginState: (req: NextApiRequest, options: LoginOptions) => {}
@@ -153,7 +153,7 @@ HandleLogin: (req: NextApiRequest, res: NextApiResponse, options?: LoginOptions) => Promise<void>
diff --git a/docs/modules/handlers_logout.html b/docs/modules/handlers_logout.html
index 69f6000ee..9470029b5 100644
--- a/docs/modules/handlers_logout.html
+++ b/docs/modules/handlers_logout.html
@@ -90,7 +90,7 @@ HandleLogout: (req: NextApiRequest, res: NextApiResponse, options?: LogoutOptions) => Promise<void>
diff --git a/docs/modules/handlers_profile.html b/docs/modules/handlers_profile.html
index aeff932cd..84654f24a 100644
--- a/docs/modules/handlers_profile.html
+++ b/docs/modules/handlers_profile.html
@@ -89,7 +89,7 @@ AfterRefetch: (req: NextApiRequest, res: NextApiResponse, session: default) => Promise<default> | default
@@ -129,7 +129,7 @@ HandleProfile: (req: NextApiRequest, res: NextApiResponse, options?: ProfileOptions) => Promise<void>
@@ -176,7 +176,7 @@ ProfileOptions: { afterRefetch?: AfterRefetch; refetch?: boolean }
diff --git a/docs/modules/helpers_get_server_side_props_wrapper.html b/docs/modules/helpers_get_server_side_props_wrapper.html
index ffe25e53b..0761c2ac1 100644
--- a/docs/modules/helpers_get_server_side_props_wrapper.html
+++ b/docs/modules/helpers_get_server_side_props_wrapper.html
@@ -84,7 +84,7 @@ GetServerSidePropsWrapper<P, Q>: (getServerSideProps: GetServerSideProps<P, Q>) => GetServerSideProps<P, Q>
diff --git a/docs/modules/helpers_with_api_auth_required.html b/docs/modules/helpers_with_api_auth_required.html
index 565eb233a..dd6fe6b44 100644
--- a/docs/modules/helpers_with_api_auth_required.html
+++ b/docs/modules/helpers_with_api_auth_required.html
@@ -84,7 +84,7 @@ WithApiAuthRequired: (apiRoute: NextApiHandler) => NextApiHandler
diff --git a/docs/modules/helpers_with_page_auth_required.html b/docs/modules/helpers_with_page_auth_required.html
index 025d35d45..f9437b997 100644
--- a/docs/modules/helpers_with_page_auth_required.html
+++ b/docs/modules/helpers_with_page_auth_required.html
@@ -87,7 +87,7 @@ GetServerSidePropsResultWithSession<P>: GetServerSidePropsResult<P & { user?: Claims | null }>
@@ -118,7 +118,7 @@ PageRoute<P, Q>: (cts: GetServerSidePropsContext<Q>) => Promise<GetServerSidePropsResultWithSession<P>>
@@ -163,7 +163,7 @@ WithPageAuthRequired: { <P>(Component: ComponentType<P & UserProps>, options?: WithPageAuthRequiredOptions): FC<P>; <P, Q>(opts?: WithPageAuthRequiredOptions<P, Q>): PageRoute<P, Q> }
@@ -238,7 +238,7 @@ WithPageAuthRequiredOptions<P, Q>: { getServerSideProps?: GetServerSideProps<P, Q>; returnTo?: string }
diff --git a/docs/modules/instance.html b/docs/modules/instance.html
index b1827348c..788348fd2 100644
--- a/docs/modules/instance.html
+++ b/docs/modules/instance.html
@@ -90,7 +90,7 @@ InitAuth0: (params?: ConfigParameters) => SignInWithAuth0
diff --git a/docs/modules/session_get_access_token.html b/docs/modules/session_get_access_token.html
index 4d6c3ea47..c7fab2dfa 100644
--- a/docs/modules/session_get_access_token.html
+++ b/docs/modules/session_get_access_token.html
@@ -95,7 +95,7 @@ AfterRefresh: (req: NextApiRequest, res: NextApiResponse, session: default) => Promise<default> | default
@@ -135,7 +135,7 @@ GetAccessToken: (req: IncomingMessage | NextApiRequest, res: ServerResponse | NextApiResponse, accessTokenRequest?: AccessTokenRequest) => Promise<GetAccessTokenResult>
diff --git a/docs/modules/session_get_session.html b/docs/modules/session_get_session.html
index 846c81370..e109febfd 100644
--- a/docs/modules/session_get_session.html
+++ b/docs/modules/session_get_session.html
@@ -84,7 +84,7 @@ GetSession: (req: IncomingMessage | NextApiRequest, res: ServerResponse | NextApiResponse) => default | null | undefined
diff --git a/docs/modules/utils_errors.html b/docs/modules/utils_errors.html
index 987816f71..5940613dc 100644
--- a/docs/modules/utils_errors.html
+++ b/docs/modules/utils_errors.html
@@ -95,7 +95,7 @@ -
default: "1.9.1"
+ default: "1.9.2"
diff --git a/package-lock.json b/package-lock.json
index 8e1fe5d4c..2eec214c2 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,12 +1,12 @@
{
"name": "@auth0/nextjs-auth0",
- "version": "1.9.1",
+ "version": "1.9.2",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@auth0/nextjs-auth0",
- "version": "1.9.1",
+ "version": "1.9.2",
"license": "MIT",
"dependencies": {
"base64url": "^3.0.1",
diff --git a/package.json b/package.json
index 2f55224ff..aacd67772 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "@auth0/nextjs-auth0",
- "version": "1.9.1",
+ "version": "1.9.2",
"description": "Next.js SDK for signing in with Auth0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
diff --git a/src/version.ts b/src/version.ts
index 88e682867..4bc622075 100644
--- a/src/version.ts
+++ b/src/version.ts
@@ -1 +1 @@
-export default '1.9.1';
+export default '1.9.2';
Optional refresh
-Optional refresh
Optional scopes
-Properties
Optional accessToken
-ConfigParameters
2. Create your own instance using InitAuth return auth0.handleAuth();
Note If you use InitAuth0, you should not use the other named exports as they will use a different - instance of the SDK.
+ instance of the SDK. Also note - this is for the server side part of the SDK - you will always use named exports for + the front end components: UserProvider, UseUser and the + front end version of WithPageAuthRequiredConfigProviderProps
Properties
ConfigProvider
-Type declaration
-- (__namedParameters: PropsWithChildren<ConfigContext>): ReactElement<ConfigContext, string | ((props: any) => null | ReactElement<any, any>) | ((props: any) => Component<any, any, any>)>
+ - (__namedParameters: PropsWithChildren<ConfigContext>): ReactElement<ConfigContext, string | ((props: any) => null | ReactElement<any, any>) | (new (props: any) => Component<any, any, any>)>
Parameters
__namedParameters: PropsWithChildren<ConfigContext>
Returns ReactElement<ConfigContext, string | ((props: any) => null | ReactElement<any, any>) | ((props: any) => Component<any, any, any>)>
+Returns ReactElement<ConfigContext, string | ((props: any) => null | ReactElement<any, any>) | (new (props: any) => Component<any, any, any>)>
Const useConfig
Returns ConfigContext
diff --git a/docs/modules/frontend_use_user.html b/docs/modules/frontend_use_user.html index b7e484a67..55847df44 100644 --- a/docs/modules/frontend_use_user.html +++ b/docs/modules/frontend_use_user.html @@ -105,7 +105,7 @@UseUser
UserContext
UserProvider
UserProviderProps
Properties
default
-Type declaration
-- (__namedParameters: PropsWithChildren<{ fetcher?: undefined | UserFetcher; profileUrl?: undefined | string; user?: undefined | UserProfile } & ConfigContext>): ReactElement<UserContext, string | ((props: any) => null | ReactElement<any, any>) | ((props: any) => Component<any, any, any>)>
+ - (__namedParameters: PropsWithChildren<{ fetcher?: UserFetcher; profileUrl?: string; user?: UserProfile } & ConfigContext>): ReactElement<UserContext, string | ((props: any) => null | ReactElement<any, any>) | (new (props: any) => Component<any, any, any>)>
Parameters
__namedParameters: PropsWithChildren<{ fetcher?: undefined | UserFetcher; profileUrl?: undefined | string; user?: undefined | UserProfile } & ConfigContext>
+__namedParameters: PropsWithChildren<{ fetcher?: UserFetcher; profileUrl?: string; user?: UserProfile } & ConfigContext>
Returns ReactElement<UserContext, string | ((props: any) => null | ReactElement<any, any>) | ((props: any) => Component<any, any, any>)>
+Returns ReactElement<UserContext, string | ((props: any) => null | ReactElement<any, any>) | (new (props: any) => Component<any, any, any>)>
WithPageAuthRequired
HandleAuth
AfterCallback
HandleCallback
GetLoginState
HandleLogin
HandleLogout
AfterRefetch
HandleProfile
ProfileOptions
GetServerSidePropsWrapper
WithApiAuthRequired
GetServerSidePropsResultWithSession
PageRoute
WithPageAuthRequired
WithPageAuthRequiredOptions
InitAuth0
AfterRefresh
GetAccessToken
GetSession
htmlSafe
Parameters
diff --git a/docs/modules/version.html b/docs/modules/version.html index d2cd0aab8..4778f8a4a 100644 --- a/docs/modules/version.html +++ b/docs/modules/version.html @@ -81,7 +81,7 @@Properties
default
-