Skip to content

Commit f25394e

Browse files
authored
Export rate limiting error types TooManyAttemptsTryLaterError and ResetPasswordExceedLimitError (#777)
1 parent a14ca32 commit f25394e

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Diff for: firebase_admin/auth.py

+4
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,12 @@
5656
'OIDCProviderConfig',
5757
'PhoneNumberAlreadyExistsError',
5858
'ProviderConfig',
59+
'ResetPasswordExceedLimitError',
5960
'RevokedIdTokenError',
6061
'RevokedSessionCookieError',
6162
'SAMLProviderConfig',
6263
'TokenSignError',
64+
'TooManyAttemptsTryLaterError',
6365
'UidAlreadyExistsError',
6466
'UnexpectedResponseError',
6567
'UserDisabledError',
@@ -130,10 +132,12 @@
130132
OIDCProviderConfig = _auth_providers.OIDCProviderConfig
131133
PhoneNumberAlreadyExistsError = _auth_utils.PhoneNumberAlreadyExistsError
132134
ProviderConfig = _auth_providers.ProviderConfig
135+
ResetPasswordExceedLimitError = _auth_utils.ResetPasswordExceedLimitError
133136
RevokedIdTokenError = _token_gen.RevokedIdTokenError
134137
RevokedSessionCookieError = _token_gen.RevokedSessionCookieError
135138
SAMLProviderConfig = _auth_providers.SAMLProviderConfig
136139
TokenSignError = _token_gen.TokenSignError
140+
TooManyAttemptsTryLaterError = _auth_utils.TooManyAttemptsTryLaterError
137141
UidAlreadyExistsError = _auth_utils.UidAlreadyExistsError
138142
UnexpectedResponseError = _auth_utils.UnexpectedResponseError
139143
UserDisabledError = _auth_utils.UserDisabledError

0 commit comments

Comments
 (0)