Skip to content

Commit

Permalink
Export rate limiting error types TooManyAttemptsTryLaterError and `…
Browse files Browse the repository at this point in the history
…ResetPasswordExceedLimitError`
  • Loading branch information
jonathanedey committed Mar 6, 2024
1 parent a14ca32 commit 7cf56b1
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions firebase_admin/auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,12 @@
'OIDCProviderConfig',
'PhoneNumberAlreadyExistsError',
'ProviderConfig',
'ResetPasswordExceedLimitError',
'RevokedIdTokenError',
'RevokedSessionCookieError',
'SAMLProviderConfig',
'TokenSignError',
'TooManyAttemptsTryLaterError',
'UidAlreadyExistsError',
'UnexpectedResponseError',
'UserDisabledError',
Expand Down Expand Up @@ -130,10 +132,12 @@
OIDCProviderConfig = _auth_providers.OIDCProviderConfig
PhoneNumberAlreadyExistsError = _auth_utils.PhoneNumberAlreadyExistsError
ProviderConfig = _auth_providers.ProviderConfig
ResetPasswordExceedLimitError = _auth_utils.ResetPasswordExceedLimitError
RevokedIdTokenError = _token_gen.RevokedIdTokenError
RevokedSessionCookieError = _token_gen.RevokedSessionCookieError
SAMLProviderConfig = _auth_providers.SAMLProviderConfig
TokenSignError = _token_gen.TokenSignError
TooManyAttemptsTryLaterError = _auth_utils.TooManyAttemptsTryLaterError
UidAlreadyExistsError = _auth_utils.UidAlreadyExistsError
UnexpectedResponseError = _auth_utils.UnexpectedResponseError
UserDisabledError = _auth_utils.UserDisabledError
Expand Down

0 comments on commit 7cf56b1

Please sign in to comment.