Open
Description
I am migrating my exceptions to the new ones and on signInWithEmailAndPassword()
I can see some changed. These are the old:
/// * `ERROR_INVALID_EMAIL` - If the [email] address is malformed.
/// * `ERROR_WRONG_PASSWORD` - If the [password] is wrong.
/// * `ERROR_USER_NOT_FOUND` - If there is no user corresponding to the given [email] address, or if the user has been deleted.
/// * `ERROR_USER_DISABLED` - If the user has been disabled (for example, in the Firebase console)
/// * `ERROR_TOO_MANY_REQUESTS` - If there was too many attempts to sign in as this user.
/// * `ERROR_OPERATION_NOT_ALLOWED` - Indicates that Email & Password accounts are not enabled.
And these are the new:
/// A [FirebaseAuthException] maybe thrown with the following error code:
/// - **invalid-email**:
/// - Thrown if the email address is not valid.
/// - **user-disabled**:
/// - Thrown if the user corresponding to the given email has been disabled.
/// - **user-not-found**:
/// - Thrown if there is no user corresponding to the given email.
/// - **wrong-password**:
/// - Thrown if the password is invalid for the given email, or the account
/// corresponding to the email does not have a password set.
So ERROR_TOO_MANY_REQUESTS
and ERROR_OPERATION_NOT_ALLOWED
aren't in the docs anymore.
Just to confirm, is this intentional or are they missing?