·
361 commits
to master
since this release
⚠️ Breaking Changes
Screen - Login, Login-Id
- Renamed
socialLoginmethod tofederatedLogin.SocialLoginOptionsinterface toFederatedLoginOptions.
Screen - SignUp, Signup-ID
- Renamed
socialSignupmethod tofederatedSignup.SocialSignupOptionsinterface toFederatedSignupOptions.
✨ What’s new ?
- Added
getErrormethod to the SDK, allowing developers to retrieve detailed authentication errors in the sample app.
import Login from "@auth0/auth0-acul-js/login";
const loginIdManager = new Login();
const errors = loginIdManager.getError();
if (errors) {
console.error("Login failed:", errors);
}🚀 Added support for new screens
Added support for the following screens:
| # | Screen Name | Documentation |
|---|---|---|
| 1 | consent | View |
| 2 | customized-consent | View |
| 3 | mfa-webauthn-not-available-error | View |
| 4 | email-otp-challenge | View |