From 498767d289c1cd249b4a22f94c64fafd0e914fa5 Mon Sep 17 00:00:00 2001
From: Yogesh Chaudhary
Date: Fri, 18 Sep 2026 19:24:15 +0530
Subject: [PATCH] Release v2.27.0
---
.version | 2 +-
CHANGELOG.md | 6 +
docs/assets/hierarchy.js | 2 +-
docs/assets/navigation.js | 2 +-
docs/assets/search.js | 2 +-
docs/classes/AnonymousSessionError.html | 198 ++++++++++++++++++
docs/classes/AuthenticationError.html | 2 +-
docs/classes/ConnectError.html | 2 +-
docs/classes/GenericError.html | 2 +-
docs/classes/InvalidConfigurationError.html | 2 +-
docs/classes/MfaChallengeError.html | 2 +-
docs/classes/MfaEnrollmentError.html | 2 +-
docs/classes/MfaEnrollmentFactorsError.html | 2 +-
docs/classes/MfaError.html | 2 +-
docs/classes/MfaListAuthenticatorsError.html | 2 +-
docs/classes/MfaRequiredError.html | 2 +-
docs/classes/MfaVerifyError.html | 2 +-
docs/classes/MissingRefreshTokenError.html | 2 +-
docs/classes/MissingScopesError.html | 2 +-
docs/classes/MyAccountApiError.html | 2 +-
docs/classes/OAuthError.html | 10 +-
docs/classes/PasskeyChallengeError.html | 2 +-
docs/classes/PasskeyError.html | 2 +-
docs/classes/PasskeyGetTokenError.html | 2 +-
docs/classes/PasskeyRegisterError.html | 2 +-
docs/classes/PopupCancelledError.html | 2 +-
docs/classes/PopupOpenError.html | 2 +-
docs/classes/PopupTimeoutError.html | 2 +-
docs/classes/TimeoutError.html | 2 +-
docs/classes/UseDpopNonceError.html | 2 +-
docs/classes/User.html | 44 ++--
docs/enums/ResponseType.html | 6 +-
docs/functions/Auth0Provider.html | 2 +-
docs/functions/useAuth0.html | 2 +-
docs/functions/useAuth0Suspense.html | 2 +-
docs/functions/useEnterpriseConnect.html | 2 +-
docs/functions/withAuth0.html | 2 +-
.../functions/withAuthenticationRequired.html | 2 +-
docs/hierarchy.html | 44 ++--
docs/interfaces/ActClaim.html | 4 +-
docs/interfaces/AnonymousSession.html | 113 ++++++++++
.../interfaces/AnonymousSessionApiClient.html | 130 ++++++++++++
docs/interfaces/AnonymousSessionClaims.html | 112 ++++++++++
docs/interfaces/Auth0ContextInterface.html | 73 ++++---
docs/interfaces/AuthorizationParams.html | 45 +++-
docs/interfaces/ClientConfiguration.html | 6 +-
.../CreateAnonymousSessionOptions.html | 78 +++++++
docs/interfaces/EnrollEmailParams.html | 2 +-
docs/interfaces/EnrollOtpParams.html | 2 +-
docs/interfaces/EnrollPushParams.html | 2 +-
docs/interfaces/EnrollSmsParams.html | 2 +-
docs/interfaces/EnrollVoiceParams.html | 2 +-
docs/interfaces/GetTokenSilentlyOptions.html | 10 +-
docs/interfaces/GetTokenWithPopupOptions.html | 8 +-
docs/interfaces/IdToken.html | 82 ++++----
docs/interfaces/LogoutOptions.html | 10 +-
docs/interfaces/LogoutUrlOptions.html | 6 +-
docs/interfaces/PopupConfigOptions.html | 8 +-
docs/interfaces/PopupLoginOptions.html | 6 +-
.../RedirectConnectAccountOptions.html | 14 +-
docs/interfaces/RedirectLoginOptions.html | 12 +-
.../interfaces/RevokeRefreshTokenOptions.html | 4 +-
docs/interfaces/UseEnterpriseConnect.html | 6 +-
docs/interfaces/WithAuth0Props.html | 4 +-
.../WithAuthenticationRequiredOptions.html | 12 +-
docs/modules.html | 4 +-
.../AnonymousGetTokenSilentlyOptions.html | 32 +++
docs/types/AnonymousSessionErrorCode.html | 47 +++++
docs/types/AppState.html | 8 +-
docs/types/Auth0ProviderOptions.html | 2 +-
.../types/Auth0ProviderWithClientOptions.html | 2 +-
.../types/Auth0ProviderWithConfigOptions.html | 2 +-
docs/types/Auth0SuspenseContextInterface.html | 2 +-
docs/types/CacheLocation.html | 2 +-
docs/types/ConnectAccountRedirectResult.html | 2 +-
docs/types/ConnectedAccount.html | 2 +-
docs/types/TokenEndpointResponse.html | 14 +-
docs/variables/Auth0Context.html | 2 +-
package-lock.json | 4 +-
package.json | 2 +-
80 files changed, 1013 insertions(+), 241 deletions(-)
create mode 100644 docs/classes/AnonymousSessionError.html
create mode 100644 docs/interfaces/AnonymousSession.html
create mode 100644 docs/interfaces/AnonymousSessionApiClient.html
create mode 100644 docs/interfaces/AnonymousSessionClaims.html
create mode 100644 docs/interfaces/CreateAnonymousSessionOptions.html
create mode 100644 docs/types/AnonymousGetTokenSilentlyOptions.html
create mode 100644 docs/types/AnonymousSessionErrorCode.html
diff --git a/.version b/.version
index c142102c..6b5c90e6 100644
--- a/.version
+++ b/.version
@@ -1 +1 @@
-v2.26.0
\ No newline at end of file
+v2.27.0
\ No newline at end of file
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 60fbaa88..87ece400 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,11 @@
# Change Log
+## [v2.27.0](https://github.com/auth0/auth0-react/tree/v2.27.0) (2026-09-18)
+[Full Changelog](https://github.com/auth0/auth0-react/compare/v2.26.0...v2.27.0)
+
+**Added**
+- feat(anonymous): expose anonymous session client via useAuth0 [\#1243](https://github.com/auth0/auth0-react/pull/1243) ([yogeshchoudhary147](https://github.com/yogeshchoudhary147))
+
## [v2.26.0](https://github.com/auth0/auth0-react/tree/v2.26.0) (2026-09-17)
[Full Changelog](https://github.com/auth0/auth0-react/compare/v2.25.0...v2.26.0)
diff --git a/docs/assets/hierarchy.js b/docs/assets/hierarchy.js
index 2db737b2..4d8e5c25 100644
--- a/docs/assets/hierarchy.js
+++ b/docs/assets/hierarchy.js
@@ -1 +1 @@
-window.hierarchyData = "eJyVlV9v2yAUxb8Lz3S1scHEb1P2R5PSdWq77aHqAyLXMSoBD+xJU5XvPjlRO2IngzxFcs71757D5foFOWt7j+pHVlBcsBITxp4wctBokL2yxqP6BRHGxh8jtoBq9M12Q7eyG2Vuu4MEo2dl1qgmlGE0OI1qpEwPrhES/PVM/67ttxphJLXwHtWo9+ur8QVXb0Xjn63SawcG1Y+kIk87jEhFgi4+Q/9gn8H8VH27J6Q1c64soacdRgUrgxa+LIVsIQI8iC61XPBitFzwIuCtrBT6vrdObOAYnRP+it4TwF/PxGdbODzYYVRmeUB7UFuwQ//ROev+Bwp1EcaRxbLio8WShJHeNOIOfg3KwToKnmoTDNJiOsdLYSRonYA7IU8gVnxKTM11Jo7TaDbzd9uBSUO9KRM4JNwH74e+BdMrKcabFIWdkCcQKQ2nRHmvzOYOGge+3d/n+LScqUlgczJn30vbgU+lBuo4j2WLcMmY30Kr9dKaRm0Gl5bx2aIEekGPtqwBp2QUGOouWgJZjktS4pIWmGYFpoRhSimmnGCWLTBjGa6yEleMjcuCsSxo7ruHD53tvlojIdrhTByPosrC1bS0xoCM39tQl8A4+rTeNCJl7V0cc7XIMc8Z5mWOOWOYL/IxzmqRH8NXyvfB/bQuYcLPVsXN83xq3jir9RZMPOa5OoFXTvwuW6E1mE18fGbiBNr0aH+AU82fFFSgTOBMT/FfLp+ETD3E00Ux+m73F5JFaDM="
\ No newline at end of file
+window.hierarchyData = "eJyVlV1v2yAUhv8L13T1J2DfTdmHJqXr1HbbRdULRI5jVAIekElTlf8+OVE7YieDXEVy3uPnvC+H4xdkjfEOtY+kynBJGlzQ/AkjC50C4aXRDrUvqKD5+KP5BlCLvplhOyzNWurb4SDB6FnqFWqLmmC0tQq1SGoPtuMC3PVM/673G4UwEoo7h1rk3epqfMHVW9H4Zy/VyoJG7WNB6dMOo4LSoIvP4B/MM+if0vd7Qloz58oSetphVJImaOHLgoseIsCD6FLLJWOj5ZKxgLc0gqt7byxfwzE6L9grek8Adz0Tn23h8GCHUZWRgPYgN2C2/qO1xv4PFOoijCOLFStHi1URRnrT8Tv4tZUWVlHwVJtgsGbTOV5wLUCpBNwJeQKRlVNiaq4zcZxWZzN/twPoNNSbMoFThvvg/db3oL0UfLxJUdgJeQKRZOGUSOekXt9BZ8H1+/scn5YzNQlsRufse2EGcKnUQB3nkbwKl4z+zZVcLYzu5Hpr0zI+W5RAr7KjLavBShEFhrqLlkBGcFU0uKoZrjOG6zLHNclwzSgmeYUJqTHNGkxpPi4LQuqgue8OPgxm+Gq0gGiHM3E8CpqFq2lhtAYRv7ehLoFx9Gm96XjK2rs4ZtoQzIocs4pgRnPMGjLGSRtyDF9K54P7aWzChJ+tiptnxdS8tkapDeh4zHN1Aq+a+F30XCnQ6/j4zMQJtOnR/gAruz8pqECZwJme4r9cPnGReoini2L03e4vx7ZobQ=="
\ No newline at end of file
diff --git a/docs/assets/navigation.js b/docs/assets/navigation.js
index 2758330b..244b17ed 100644
--- a/docs/assets/navigation.js
+++ b/docs/assets/navigation.js
@@ -1 +1 @@
-window.navigationData = "eJytmcty2zYUht+Fa6dxnCZtvdModuoZq/ZIdrrodIGCRyLGJIACoGq1k3fv8CYCxIUS4KV9fvwfAOJ2jv74L1PwqrLrbA2SMyrh6cAhu8g4UkV2nQGtK/lej/1QqKrMLrIXQvPs+ueLDJdIyuw6UzJ/R+Q7eFUgKCqz7xdH70WtCqCKYKQIozdCMDEi2vYg3ztEJuvD1Wm0JaMUsPJg9Gic/1egIAj2+OvROP87uoKKicMS4QJsgBGOJexRSfIlo1uyq0Xoq3ilceR7hlG5UUygHXjGZ0niSKstWhaoLIHuwDM2SxJNuqGClWUF1LfqbM0bsG4RVkzIU5C6NJ7sByX53hOptN0fHJJHG81ew981EZD7iYYimvMNBNke/BQtHskgUhK6W8NWgCye2Av4trRPmcTdYMbB+90sTSTrsMCY1VQtOPGhppI40kOzxjyIMWZ5aw6PSMoXOMydQU5ZXJ97qzAo3f8rqNDqcqmSeGvYEalAhHmGKpLHeM2XiGIoS++B4BAl0B64fx6NeALjiVTAat/FZEniSGFIuv+zhC+c8d8Yxb6dZEmiSW7zSL8FVssSkWr0JFSB2CLcvHn7oGl99enzyc/qyyWjzZ93g6mb41JaUPeLXZ/rieVREd9/Jsi/7aPyEQlUSS9qoosDHk9Zo/MBcqhBYheGnCrMHVSRsJIAVcbb3Y2zdXHA7sF5UyFSBmbVUqXAxtdtgDWKUlAPis+O6qhJAT3WspgljaIU1KaSs6SjJgX0jREMsyhNFQcLLIWUBTA8ZzakBKrKwwNvNol7JB5tGvh3oor+STBPnorj0HeTBF0D3TkS85Nt87aPbt8uFmksbyEHgRTkX1iFCA1NlU8ch75nO1arEM9QhG7eTvgsynm3URTX69UWLTjpDn8nRhdEIrR0LASyZHG4PhkIw6aiSFSbCLRXZuhL2bIE3D3bhVe1pYqDrSEnArDqa6X9twmBgy3SOjE7aJcwtMPWsGcvoJc/wu4eddyonnmOFJi17hWoguVNnQmke8nOtorsjISbBsIFkdB/OjffIQxNcVfNCtz2uiCu780d16Y1j4JxN8SUhPo7KMfZHap+oaUx2yqYYXG+UUhp96s68CbZ6f8/aXv5y08fPl1Nk79HwfYkB2H1svdyaM7ybUbYHZKnECz1+Sz3eepjBY5VN2tTSw60XcKepFlD+cSnkKbb1AWYapy+Eb+vdW7m73h+qv2b3jnk9h2I/iot1DGQ6N38GmTmrZr/EExgGPfVcJOsQdalspABbXIPIO99PdRjfG71LWupWNXVXl9xgegOPPvJr4wfzZhuH0sYHrpf+aZ0u8zixXtqLVH8eexb0rrbdHaiDVkqd3q56zDnvX4G4RYULkB05/sUYQTjGe1xjrAi+65a/CuieamXfjuaRxbPXW1RV4hwHdBGMJ7RZzjul3NHckiSeRuyo44ChQE0NPFE/T2+Yrk1kdN4PKk7H2nOGfFva6co7T4fyvUjao8EaW5Us5xvUj5enTRJo1V4oj6e0d/hZTZStjXF7Xc2n24m4vOPmlEt2yTn0uUxxE5oPrzcQjaDJmwXSI8My5nsyLD9Z0hLXF7H4AkGdt4RcrTVFuLP/wFPNzhf"
\ No newline at end of file
+window.navigationData = "eJytmU1z2zYQhv8Lz07jOE3a+uZR7NQzVu2R7PTQ6QElVyLGJIACoGq1k//eISmKBPFBaqGjtC/fB8QHsQv88V+i4U0n18kKlOBMwfNeQHKRCKLz5DoBVpXq/TD2Q67LIrlIXinLkuufL5K0IEol14lW2Tuq3sGbBslIkXy/OHrfMM72Ja/UGpSinN1KyWUPaRxAvXfKTN6Hq5nESufANE2JDvBsEY624IxBqj2YYRTn/xUYSJp6/IdRnP89W0LJ5X5B0hxsgBHGEnakoNmCsw3dVjI0Kl4pjvzAU1KsNZdkC573syQ40nJDFjkpCmBb8LybJUGTbpnkRVEC8806W3MG1h1JNZdqDnIoxZP9oCjfB6r0YPUHX8mjRbNX8HdFJWR+oqFAc76BpJu9nzKIIxlUKcq2K9hIUPkzfwXfkvYpo7jrlAvwjpulQbL2N2nKK6ZvBPWhxhIc6bGeYx5EH7O8Bw5PRKlX2E99g5wyXJsPVmFQvP9X0KHZ5VJF8VawpUqDDPMMFZLHRSUWhKVQFN4PgkMUQXsU/n404hGMZ1oCr3wbkyXBkcKQeP8XBV8EF79xlvpWkiVBk9zm2Nw31YuC0LL3pEyD3JC0znkPQdP66tNnVCLvRoxE50HdCLooKDA9i3lUnwfedJmaRW6lSGyl88sFZ/XP+w7hprqUFtRdEA2n8sjyqMC3n0v6b5OzPxFJfH1m63DA4yZmND5ADj0Q2YSuSA5zOxUS1sxpozRy42wdEiiBaBjP8UdRO3p6OPQErhFtUXFbEloEhtZSxcD6CibA6kUxqEctJt/qqIkBPVUqnyT1ohjUulSTpKMmBvSN0xQmUQMVDhaYCjEToEtZ17QApot9aF15tHHg36nOD2nfNHksxqHvR4cwA9C94/Bltm3WtNHt28aQxuoOMpBEQ/aFl4QGP34+MQ79wLe80iGeoQht/63wRRbTbr0I1+rlhoRztaEAiRiU3CGQJcPhDgVfGDYWIVFNsdfs26GRsmURuAe+Dc9qS4WDrSCjElJ9OA8/jE0IHHwirhGTL+0ShlbYCnb8FYZHXGF3jxr3Vi8iq5Mu4z5jCTrnWX2WCMo9ZSefQjZGwW0NEZIqOAydm+8Qhrq4PbEM7PZDAa7t9R7X1FZPkgs3xJSE2tsp+97tTnZDU2PyqWCZ1+Xdk6mF3oth9Tovvbj85acPn67wd34LnoG3CWNhBFuItSbaRh3+dzqP6/AnyXc0A+nrOYfmJN96nNutYg7BUp/Ocu8qPlZgc3Gz1pUSwJqF7Dm/GKB84jmk8cfKBRhrIuaSw828I/dT7fvyU8hNNkz+KizUMRDpXd97mkcIA/8uGMEwdu1uP12BqgptIQPa6BZAdvD1UI/xqdm3qJTmZXvL8JbmhG3Bs578Svzb9IcOx9MkD92vPCvdPvHy4j3HXij+NPactDanmOxoQxbLHac4Q5gzuzmBcAc6zUG23/cxwgjiGc3nnKSa7tp7kV8Jy4rhJUdL88jw3OWGtMcxrg+0EcQzDnWeu35oSQ5JNG9Nt8xxTGMADQ2eOKxKlo6EbRzHk9rvI8sEp/5l7RTF7efdzUmP2hFJ6x3VvFkxKR+vZnVSbxXuqI8ntLfLzHrKpmJpM85m6mYiPv84MKpUU+pdujy62IzHu8wtZNNpwnaBItGwnKgRDdt/uuLM5XUMzjCwq6+Qo622EH/+D7Liats="
\ No newline at end of file
diff --git a/docs/assets/search.js b/docs/assets/search.js
index 528c24f0..306d49f2 100644
--- a/docs/assets/search.js
+++ b/docs/assets/search.js
@@ -1 +1 @@
-window.searchData = "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";
\ No newline at end of file
+window.searchData = "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";
\ No newline at end of file
diff --git a/docs/classes/AnonymousSessionError.html b/docs/classes/AnonymousSessionError.html
new file mode 100644
index 00000000..a8239c08
--- /dev/null
+++ b/docs/classes/AnonymousSessionError.html
@@ -0,0 +1,198 @@
+AnonymousSessionError | @auth0/auth0-react
+
+
+
+
+
Class AnonymousSessionError
+
+
+
+Defined in node_modules/@auth0/auth0-auth-js/dist/index.d.ts:3262
+
+
+Constructors
+
+
+constructor
+
+
+new AnonymousSessionError ( code : string , message : string , cause ?: AnonymousSessionApiErrorResponse , ) : AnonymousSessionError
+
+
+
Parameters
+
+code : string
+message : string
+Optionalcause : AnonymousSessionApiErrorResponse
+
+
+Properties
+
+
+Optionalcause
+cause ?: AnonymousSessionApiErrorResponse
+
+
+Defined in node_modules/@auth0/auth0-auth-js/dist/index.d.ts:3271
+
+code
+code : string
+
+
+Defined in node_modules/@auth0/auth0-auth-js/dist/index.d.ts:3267
+
+message
+message : string
+
+
+Optionalstack
+stack ?: string
+
+Staticstack Trace Limit
+stackTraceLimit : number
+
+
+Methods
+
+
+Staticcapture Stack Trace
+
+
+captureStackTrace ( targetObject : object , constructorOpt ?: Function ) : void
+
+
+
+
Parameters
+
+targetObject : object
+OptionalconstructorOpt : Function
+
Returns void
+
+Staticprepare Stack Trace
+
+
+prepareStackTrace ( err : Error , stackTraces : CallSite [] ) : any
+
+
+
Parameters
+
+err : Error
+stackTraces : CallSite []
+
Returns any
+
+
+
diff --git a/docs/classes/AuthenticationError.html b/docs/classes/AuthenticationError.html
index 3694d24f..af8007f2 100644
--- a/docs/classes/AuthenticationError.html
+++ b/docs/classes/AuthenticationError.html
@@ -14,7 +14,7 @@ Class AuthenticationError
-
+
GenericError
diff --git a/docs/classes/ConnectError.html b/docs/classes/ConnectError.html
index 2f3e785f..e855bc3b 100644
--- a/docs/classes/ConnectError.html
+++ b/docs/classes/ConnectError.html
@@ -14,7 +14,7 @@ Class ConnectError
-
+
GenericError
diff --git a/docs/classes/GenericError.html b/docs/classes/GenericError.html
index 16bf4f07..b353fac3 100644
--- a/docs/classes/GenericError.html
+++ b/docs/classes/GenericError.html
@@ -13,7 +13,7 @@ Class GenericError
-
+
Error
diff --git a/docs/classes/InvalidConfigurationError.html b/docs/classes/InvalidConfigurationError.html
index 3a122b44..7807ec57 100644
--- a/docs/classes/InvalidConfigurationError.html
+++ b/docs/classes/InvalidConfigurationError.html
@@ -14,7 +14,7 @@ Class InvalidConfigurationError
-
+
GenericError
diff --git a/docs/classes/MfaChallengeError.html b/docs/classes/MfaChallengeError.html
index e236000d..40867627 100644
--- a/docs/classes/MfaChallengeError.html
+++ b/docs/classes/MfaChallengeError.html
@@ -19,7 +19,7 @@
-
+
MfaError
diff --git a/docs/classes/MfaEnrollmentError.html b/docs/classes/MfaEnrollmentError.html
index 0eb7ebf6..aa35f93b 100644
--- a/docs/classes/MfaEnrollmentError.html
+++ b/docs/classes/MfaEnrollmentError.html
@@ -19,7 +19,7 @@
-
+
MfaError
diff --git a/docs/classes/MfaEnrollmentFactorsError.html b/docs/classes/MfaEnrollmentFactorsError.html
index 6ab610ac..6e01600b 100644
--- a/docs/classes/MfaEnrollmentFactorsError.html
+++ b/docs/classes/MfaEnrollmentFactorsError.html
@@ -19,7 +19,7 @@
-
+
MfaError
diff --git a/docs/classes/MfaError.html b/docs/classes/MfaError.html
index b9ededfe..f7381b43 100644
--- a/docs/classes/MfaError.html
+++ b/docs/classes/MfaError.html
@@ -14,7 +14,7 @@ Class MfaError
-
+
GenericError
diff --git a/docs/classes/MfaListAuthenticatorsError.html b/docs/classes/MfaListAuthenticatorsError.html
index a5914ff0..a03eff79 100644
--- a/docs/classes/MfaListAuthenticatorsError.html
+++ b/docs/classes/MfaListAuthenticatorsError.html
@@ -19,7 +19,7 @@
-
+
MfaError
diff --git a/docs/classes/MfaRequiredError.html b/docs/classes/MfaRequiredError.html
index 81bc3f3a..89ec0a3c 100644
--- a/docs/classes/MfaRequiredError.html
+++ b/docs/classes/MfaRequiredError.html
@@ -13,7 +13,7 @@ Class MfaRequiredError
-
+
GenericError
diff --git a/docs/classes/MfaVerifyError.html b/docs/classes/MfaVerifyError.html
index 27fc0793..16e4fdbc 100644
--- a/docs/classes/MfaVerifyError.html
+++ b/docs/classes/MfaVerifyError.html
@@ -19,7 +19,7 @@
-
+
MfaError
diff --git a/docs/classes/MissingRefreshTokenError.html b/docs/classes/MissingRefreshTokenError.html
index 16780203..3bdfc9ae 100644
--- a/docs/classes/MissingRefreshTokenError.html
+++ b/docs/classes/MissingRefreshTokenError.html
@@ -13,7 +13,7 @@ Class MissingRefreshTokenError
-
+
GenericError
diff --git a/docs/classes/MissingScopesError.html b/docs/classes/MissingScopesError.html
index 39a12f4b..0c807a13 100644
--- a/docs/classes/MissingScopesError.html
+++ b/docs/classes/MissingScopesError.html
@@ -13,7 +13,7 @@ Class MissingScopesError
-
+
GenericError
diff --git a/docs/classes/MyAccountApiError.html b/docs/classes/MyAccountApiError.html
index fea91a52..59d9e99e 100644
--- a/docs/classes/MyAccountApiError.html
+++ b/docs/classes/MyAccountApiError.html
@@ -19,7 +19,7 @@
-
+
Hierarchy
Error
diff --git a/docs/classes/OAuthError.html b/docs/classes/OAuthError.html
index f72da281..c78c55d3 100644
--- a/docs/classes/OAuthError.html
+++ b/docs/classes/OAuthError.html
@@ -15,14 +15,14 @@ Class OAuthError
be the error code. And possibly an error_description property
See: https://openid.net/specs/openid-connect-core-1_0.html#rfc.section.3.1.2.6
-
Properties
+Defined in src/errors.tsx:8
Optionalerror_ description
error_description ?: string
+Defined in src/errors.tsx:8
message
message : string
diff --git a/docs/classes/PasskeyChallengeError.html b/docs/classes/PasskeyChallengeError.html
index 043a3ec0..7f39e2e8 100644
--- a/docs/classes/PasskeyChallengeError.html
+++ b/docs/classes/PasskeyChallengeError.html
@@ -13,7 +13,7 @@ Class PasskeyChallengeError
-
+
Hierarchy
PasskeyError
diff --git a/docs/classes/PasskeyError.html b/docs/classes/PasskeyError.html
index 5b45bb65..b07d1896 100644
--- a/docs/classes/PasskeyError.html
+++ b/docs/classes/PasskeyError.html
@@ -10,7 +10,7 @@
Class PasskeyError
-
+
-
+
Hierarchy
PasskeyError
diff --git a/docs/classes/PasskeyRegisterError.html b/docs/classes/PasskeyRegisterError.html
index 9ace7b1c..62334d45 100644
--- a/docs/classes/PasskeyRegisterError.html
+++ b/docs/classes/PasskeyRegisterError.html
@@ -13,7 +13,7 @@ Class PasskeyRegisterError
-
+
Hierarchy
PasskeyError
diff --git a/docs/classes/PopupCancelledError.html b/docs/classes/PopupCancelledError.html
index 0de16b16..190b3407 100644
--- a/docs/classes/PopupCancelledError.html
+++ b/docs/classes/PopupCancelledError.html
@@ -13,7 +13,7 @@ Class PopupCancelledError
-
+
GenericError
diff --git a/docs/classes/PopupOpenError.html b/docs/classes/PopupOpenError.html
index 282039d5..1911a2aa 100644
--- a/docs/classes/PopupOpenError.html
+++ b/docs/classes/PopupOpenError.html
@@ -13,7 +13,7 @@ Class PopupOpenError
-
+
GenericError
diff --git a/docs/classes/PopupTimeoutError.html b/docs/classes/PopupTimeoutError.html
index 93f7610a..bdfb57ea 100644
--- a/docs/classes/PopupTimeoutError.html
+++ b/docs/classes/PopupTimeoutError.html
@@ -13,7 +13,7 @@ Class PopupTimeoutError
-
+
TimeoutError
diff --git a/docs/classes/TimeoutError.html b/docs/classes/TimeoutError.html
index 159c02c5..91369c6f 100644
--- a/docs/classes/TimeoutError.html
+++ b/docs/classes/TimeoutError.html
@@ -14,7 +14,7 @@ Class TimeoutError
-
+
GenericError
diff --git a/docs/classes/UseDpopNonceError.html b/docs/classes/UseDpopNonceError.html
index 59a3ceb5..119204de 100644
--- a/docs/classes/UseDpopNonceError.html
+++ b/docs/classes/UseDpopNonceError.html
@@ -13,7 +13,7 @@ Class UseDpopNonceError
-
+
GenericError
diff --git a/docs/classes/User.html b/docs/classes/User.html
index ffc7bbc6..e160d60c 100644
--- a/docs/classes/User.html
+++ b/docs/classes/User.html
@@ -16,7 +16,7 @@ Indexable
[ key : string ]: any
-Defined in node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts:838
+Defined in node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts:890
@@ -67,107 +67,107 @@ PropertiesOptionalact
-Defined in node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts:859
+Defined in node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts:911
Optionaladdress
address ?: string
-Defined in node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts:856
+Defined in node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts:908
Optionalbirthdate
birthdate ?: string
-Defined in node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts:851
+Defined in node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts:903
Optionalemail
email ?: string
-Defined in node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts:848
+Defined in node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts:900
Optionalemail_ verified
email_verified ?: boolean
-Defined in node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts:849
+Defined in node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts:901
Optionalfamily_ name
family_name ?: string
-Defined in node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts:841
+Defined in node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts:893
Optionalgender
gender ?: string
-Defined in node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts:850
+Defined in node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts:902
Optionalgiven_ name
given_name ?: string
-Defined in node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts:840
+Defined in node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts:892
Optionallocale
locale ?: string
-Defined in node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts:853
+Defined in node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts:905
Optionalmiddle_ name
middle_name ?: string
-Defined in node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts:842
+Defined in node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts:894
Optionalname
name ?: string
-Defined in node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts:839
+Defined in node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts:891
Optionalnickname
nickname ?: string
-Defined in node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts:843
+Defined in node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts:895
Optionalphone_ number
phone_number ?: string
-Defined in node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts:854
+Defined in node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts:906
Optionalphone_ number_ verified
phone_number_verified ?: boolean
-Defined in node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts:855
+Defined in node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts:907
Optionalpicture
picture ?: string
-Defined in node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts:846
+Defined in node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts:898
Optionalpreferred_ username
preferred_username ?: string
-Defined in node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts:844
+Defined in node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts:896
Optionalprofile
profile ?: string
-Defined in node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts:845
+Defined in node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts:897
Optionalsub
sub ?: string
-Defined in node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts:858
+Defined in node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts:910
Optionalupdated_ at
updated_at ?: string
-Defined in node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts:857
+Defined in node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts:909
Optionalwebsite
website ?: string
-Defined in node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts:847
+Defined in node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts:899
Optionalzoneinfo
zoneinfo ?: string
-Defined in node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts:852
+Defined in node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts:904
+Defined in node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts:504
+Defined in src/auth0-provider.tsx:203
+Defined in src/use-auth0.tsx:29
+Defined in src/use-auth0-suspense.tsx:43
+Defined in src/use-enterprise-connect.tsx:46
+Defined in src/with-auth0.tsx:29
+Defined in src/with-authentication-required.tsx:103
+Defined in src/auth0-context.tsx:340
get Access Token Silently
@@ -252,7 +269,7 @@ Parameters
Optionaloptions : GetTokenSilentlyOptions
Returns Promise < string | undefined >
+Defined in src/auth0-context.tsx:62
+Defined in src/auth0-context.tsx:76
get Configuration
@@ -294,7 +311,7 @@
+Defined in src/auth0-context.tsx:361
get Dpop Nonce
getDpopNonce : ( id ?: string ) => Promise < string | undefined >
@@ -334,7 +351,7 @@
+Defined in src/auth0-context.tsx:320
get Id Token Claims
getIdTokenClaims : () => Promise < IdToken | undefined >
@@ -344,7 +361,7 @@ get Id TokenReturns all claims from the id_token if available.
+Defined in src/auth0-context.tsx:88
handle Redirect Callback
@@ -368,19 +385,19 @@ Parameters
+Defined in src/auth0-context.tsx:305
is Authenticated
isAuthenticated : boolean
+Defined in src/auth-state.tsx:8
is Loading
isLoading : boolean
+Defined in src/auth-state.tsx:9
login With Custom Token Exchange
@@ -423,7 +440,7 @@
+Defined in src/auth0-context.tsx:138
+Defined in src/auth0-context.tsx:229
login With Redirect
@@ -451,7 +468,7 @@ login With Re
parameters will be auto-generated.
+Defined in src/auth0-context.tsx:211
logout
@@ -464,7 +481,7 @@
+Defined in src/auth0-context.tsx:266
+Defined in src/auth0-context.tsx:415
my Account
@@ -515,7 +532,7 @@
+Defined in src/auth0-context.tsx:467
passkey
@@ -531,7 +548,7 @@
+Defined in src/auth0-context.tsx:431
revoke Refresh Token
@@ -568,7 +585,7 @@ Parameters
Returns Promise < void >
+Defined in src/auth0-context.tsx:295
set Dpop Nonce
setDpopNonce : ( nonce : string , id ?: string ) => Promise < void >
@@ -607,13 +624,13 @@
+Defined in src/auth0-context.tsx:332
+Defined in src/auth-state.tsx:10
-
+
Properties
@@ -81,6 +84,24 @@ Optional
Defined in node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts:28
+Optionalexperiment_ id
+experiment_id ?: string
+
+
+Defined in node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts:136
+
Optionalid_ token_ hint
id_token_hint ?: string
+Defined in node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts:46
+
+Optionalvariation_ id
+variation_id ?: string
+
+
+Defined in node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts:143
-Defined in node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts:376
+Defined in node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts:428
+Defined in node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts:436
domain
domain : string
-Defined in node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts:380
+Defined in node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts:432
-
+
Hierarchy
EnrollBaseParams
diff --git a/docs/interfaces/EnrollSmsParams.html b/docs/interfaces/EnrollSmsParams.html
index ae8f61fd..1fb57e09 100644
--- a/docs/interfaces/EnrollSmsParams.html
+++ b/docs/interfaces/EnrollSmsParams.html
@@ -14,7 +14,7 @@ Interface EnrollSmsParams
-
+
Hierarchy
EnrollBaseParams
diff --git a/docs/interfaces/EnrollVoiceParams.html b/docs/interfaces/EnrollVoiceParams.html
index 9e600585..dde29718 100644
--- a/docs/interfaces/EnrollVoiceParams.html
+++ b/docs/interfaces/EnrollVoiceParams.html
@@ -14,7 +14,7 @@ Interface EnrollVoiceParams
-
+
Hierarchy
EnrollBaseParams
diff --git a/docs/interfaces/GetTokenSilentlyOptions.html b/docs/interfaces/GetTokenSilentlyOptions.html
index a8a7141a..20bb2aa9 100644
--- a/docs/interfaces/GetTokenSilentlyOptions.html
+++ b/docs/interfaces/GetTokenSilentlyOptions.html
@@ -12,7 +12,7 @@
Interface GetTokenSilentlyOptions
-Defined in node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts:502
+Defined in node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts:554
@@ -59,7 +59,7 @@ Optionalscope
-Defined in node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts:513
+Defined in node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts:565
Optionalcache Mode
cacheMode ?: "on" | "off" | "cache-only"
@@ -69,7 +69,7 @@ Optional
Defaults to on, where it both reads from the cache and sends a request to Auth0 as needed.
-Defined in node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts:509
+Defined in node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts:561
Optionaldetailed Response
detailedResponse ?: boolean
@@ -78,7 +78,7 @@ Optional
The default is false.
-Defined in node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts:547
+Defined in node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts:599
Optionaltimeout In Seconds
timeoutInSeconds ?: number
@@ -86,7 +86,7 @@ Optional
Defaults to 60s.
-Defined in node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts:540
+Defined in node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts:592
-Defined in node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts:555
+Defined in node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts:607
+Defined in node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts:853
+Defined in node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts:624
Optionalopen Url
openUrl ?: false | (( url : string ) => void | Promise < void > )
@@ -97,7 +97,7 @@ Example
+Defined in node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts:685
-Defined in node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts:572
+Defined in node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts:624
-Defined in node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts:471
+Defined in node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts:523
+Defined in node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts:163
-Defined in node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts:649
+Defined in node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts:701
+Defined in node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts:163
Optionalfragment
fragment ?: string
@@ -62,7 +62,7 @@ Optional<
+Defined in node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts:463
Optionalopen Url
openUrl ?: ( url : string ) => void | Promise < void >
@@ -81,7 +81,7 @@ Example
+Defined in node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts:495
+Defined in node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts:938
+Defined in src/use-enterprise-connect.tsx:21
login With SSO
@@ -47,7 +47,7 @@ login With SSOauthorizationParams supplied by the caller are preserved.
+Defined in src/use-enterprise-connect.tsx:30
+Defined in src/with-auth0.tsx:8
+Defined in src/with-authentication-required.tsx:92
Optionallogin Options
@@ -51,7 +51,7 @@ OptionalreturnTo option used by the onRedirectCallback handler.
+Defined in src/with-authentication-required.tsx:86
Optionalon Before Authentication
onBeforeAuthentication ?: () => Promise < void >
@@ -61,7 +61,7 @@ Op
Allows executing logic before the user is redirected to the login page.
+Defined in src/with-authentication-required.tsx:71
Optionalon Redirecting
onRedirecting ?: () => Element
@@ -71,7 +71,7 @@ OptionalRender a message to show that the user is being redirected to the login.
+Defined in src/with-authentication-required.tsx:61
Optionalreturn To
returnTo ?: string | (() => string )
@@ -85,7 +85,7 @@ Optional<
Add a path for the onRedirectCallback handler to return the user to after login.
+Defined in src/with-authentication-required.tsx:51
+Defined in src/auth0-provider.tsx:52
Error thrown when an anonymous session operation fails.
+The
+codefield identifies the specific failure reason. Codessession_expired+andinvalid_session_tokenare handled silently by AnonymousSessionClient.getAccessToken +and will never reach the caller from that method. All other codes are surfaced directly.