@@ -128,101 +128,101 @@ export interface AuthError extends FirebaseError {
128
128
129
129
// @public
130
130
export const AuthErrorCodes: {
131
- ADMIN_ONLY_OPERATION: string ;
132
- ARGUMENT_ERROR: string ;
133
- APP_NOT_AUTHORIZED: string ;
134
- APP_NOT_INSTALLED: string ;
135
- CAPTCHA_CHECK_FAILED: string ;
136
- CODE_EXPIRED: string ;
137
- CORDOVA_NOT_READY: string ;
138
- CORS_UNSUPPORTED: string ;
139
- CREDENTIAL_ALREADY_IN_USE: string ;
140
- CREDENTIAL_MISMATCH: string ;
141
- CREDENTIAL_TOO_OLD_LOGIN_AGAIN: string ;
142
- DEPENDENT_SDK_INIT_BEFORE_AUTH: string ;
143
- DYNAMIC_LINK_NOT_ACTIVATED: string ;
144
- EMAIL_CHANGE_NEEDS_VERIFICATION: string ;
145
- EMAIL_EXISTS: string ;
146
- EMULATOR_CONFIG_FAILED: string ;
147
- EXPIRED_OOB_CODE: string ;
148
- EXPIRED_POPUP_REQUEST: string ;
149
- INTERNAL_ERROR: string ;
150
- INVALID_API_KEY: string ;
151
- INVALID_APP_CREDENTIAL: string ;
152
- INVALID_APP_ID: string ;
153
- INVALID_AUTH: string ;
154
- INVALID_AUTH_EVENT: string ;
155
- INVALID_CERT_HASH: string ;
156
- INVALID_CODE: string ;
157
- INVALID_CONTINUE_URI: string ;
158
- INVALID_CORDOVA_CONFIGURATION: string ;
159
- INVALID_CUSTOM_TOKEN: string ;
160
- INVALID_DYNAMIC_LINK_DOMAIN: string ;
161
- INVALID_EMAIL: string ;
162
- INVALID_EMULATOR_SCHEME: string ;
163
- INVALID_IDP_RESPONSE: string ;
164
- INVALID_MESSAGE_PAYLOAD: string ;
165
- INVALID_MFA_SESSION: string ;
166
- INVALID_OAUTH_CLIENT_ID: string ;
167
- INVALID_OAUTH_PROVIDER: string ;
168
- INVALID_OOB_CODE: string ;
169
- INVALID_ORIGIN: string ;
170
- INVALID_PASSWORD: string ;
171
- INVALID_PERSISTENCE: string ;
172
- INVALID_PHONE_NUMBER: string ;
173
- INVALID_PROVIDER_ID: string ;
174
- INVALID_RECIPIENT_EMAIL: string ;
175
- INVALID_SENDER: string ;
176
- INVALID_SESSION_INFO: string ;
177
- INVALID_TENANT_ID: string ;
178
- MFA_INFO_NOT_FOUND: string ;
179
- MFA_REQUIRED: string ;
180
- MISSING_ANDROID_PACKAGE_NAME: string ;
181
- MISSING_APP_CREDENTIAL: string ;
182
- MISSING_AUTH_DOMAIN: string ;
183
- MISSING_CODE: string ;
184
- MISSING_CONTINUE_URI: string ;
185
- MISSING_IFRAME_START: string ;
186
- MISSING_IOS_BUNDLE_ID: string ;
187
- MISSING_OR_INVALID_NONCE: string ;
188
- MISSING_MFA_INFO: string ;
189
- MISSING_MFA_SESSION: string ;
190
- MISSING_PHONE_NUMBER: string ;
191
- MISSING_SESSION_INFO: string ;
192
- MODULE_DESTROYED: string ;
193
- NEED_CONFIRMATION: string ;
194
- NETWORK_REQUEST_FAILED: string ;
195
- NULL_USER: string ;
196
- NO_AUTH_EVENT: string ;
197
- NO_SUCH_PROVIDER: string ;
198
- OPERATION_NOT_ALLOWED: string ;
199
- OPERATION_NOT_SUPPORTED: string ;
200
- POPUP_BLOCKED: string ;
201
- POPUP_CLOSED_BY_USER: string ;
202
- PROVIDER_ALREADY_LINKED: string ;
203
- QUOTA_EXCEEDED: string ;
204
- REDIRECT_CANCELLED_BY_USER: string ;
205
- REDIRECT_OPERATION_PENDING: string ;
206
- REJECTED_CREDENTIAL: string ;
207
- SECOND_FACTOR_ALREADY_ENROLLED: string ;
208
- SECOND_FACTOR_LIMIT_EXCEEDED: string ;
209
- TENANT_ID_MISMATCH: string ;
210
- TIMEOUT: string ;
211
- TOKEN_EXPIRED: string ;
212
- TOO_MANY_ATTEMPTS_TRY_LATER: string ;
213
- UNAUTHORIZED_DOMAIN: string ;
214
- UNSUPPORTED_FIRST_FACTOR: string ;
215
- UNSUPPORTED_PERSISTENCE: string ;
216
- UNSUPPORTED_TENANT_OPERATION: string ;
217
- UNVERIFIED_EMAIL: string ;
218
- USER_CANCELLED: string ;
219
- USER_DELETED: string ;
220
- USER_DISABLED: string ;
221
- USER_MISMATCH: string ;
222
- USER_SIGNED_OUT: string ;
223
- WEAK_PASSWORD: string ;
224
- WEB_STORAGE_UNSUPPORTED: string ;
225
- ALREADY_INITIALIZED: string ;
131
+ readonly ADMIN_ONLY_OPERATION: " auth/admin-restricted-operation " ;
132
+ readonly ARGUMENT_ERROR: " auth/argument-error " ;
133
+ readonly APP_NOT_AUTHORIZED: " auth/app-not-authorized " ;
134
+ readonly APP_NOT_INSTALLED: " auth/app-not-installed " ;
135
+ readonly CAPTCHA_CHECK_FAILED: " auth/captcha-check-failed " ;
136
+ readonly CODE_EXPIRED: " auth/code-expired " ;
137
+ readonly CORDOVA_NOT_READY: " auth/cordova-not-ready " ;
138
+ readonly CORS_UNSUPPORTED: " auth/cors-unsupported " ;
139
+ readonly CREDENTIAL_ALREADY_IN_USE: " auth/credential-already-in-use " ;
140
+ readonly CREDENTIAL_MISMATCH: " auth/custom-token-mismatch " ;
141
+ readonly CREDENTIAL_TOO_OLD_LOGIN_AGAIN: " auth/requires-recent-login " ;
142
+ readonly DEPENDENT_SDK_INIT_BEFORE_AUTH: " auth/dependent-sdk-initialized-before-auth " ;
143
+ readonly DYNAMIC_LINK_NOT_ACTIVATED: " auth/dynamic-link-not-activated " ;
144
+ readonly EMAIL_CHANGE_NEEDS_VERIFICATION: " auth/email-change-needs-verification " ;
145
+ readonly EMAIL_EXISTS: " auth/email-already-in-use " ;
146
+ readonly EMULATOR_CONFIG_FAILED: " auth/emulator-config-failed " ;
147
+ readonly EXPIRED_OOB_CODE: " auth/expired-action-code " ;
148
+ readonly EXPIRED_POPUP_REQUEST: " auth/cancelled-popup-request " ;
149
+ readonly INTERNAL_ERROR: " auth/internal-error " ;
150
+ readonly INVALID_API_KEY: " auth/invalid-api-key " ;
151
+ readonly INVALID_APP_CREDENTIAL: " auth/invalid-app-credential " ;
152
+ readonly INVALID_APP_ID: " auth/invalid-app-id " ;
153
+ readonly INVALID_AUTH: " auth/invalid-user-token " ;
154
+ readonly INVALID_AUTH_EVENT: " auth/invalid-auth-event " ;
155
+ readonly INVALID_CERT_HASH: " auth/invalid-cert-hash " ;
156
+ readonly INVALID_CODE: " auth/invalid-verification-code " ;
157
+ readonly INVALID_CONTINUE_URI: " auth/invalid-continue-uri " ;
158
+ readonly INVALID_CORDOVA_CONFIGURATION: " auth/invalid-cordova-configuration " ;
159
+ readonly INVALID_CUSTOM_TOKEN: " auth/invalid-custom-token " ;
160
+ readonly INVALID_DYNAMIC_LINK_DOMAIN: " auth/invalid-dynamic-link-domain " ;
161
+ readonly INVALID_EMAIL: " auth/invalid-email " ;
162
+ readonly INVALID_EMULATOR_SCHEME: " auth/invalid-emulator-scheme " ;
163
+ readonly INVALID_IDP_RESPONSE: " auth/invalid-credential " ;
164
+ readonly INVALID_MESSAGE_PAYLOAD: " auth/invalid-message-payload " ;
165
+ readonly INVALID_MFA_SESSION: " auth/invalid-multi-factor-session " ;
166
+ readonly INVALID_OAUTH_CLIENT_ID: " auth/invalid-oauth-client-id " ;
167
+ readonly INVALID_OAUTH_PROVIDER: " auth/invalid-oauth-provider " ;
168
+ readonly INVALID_OOB_CODE: " auth/invalid-action-code " ;
169
+ readonly INVALID_ORIGIN: " auth/unauthorized-domain " ;
170
+ readonly INVALID_PASSWORD: " auth/wrong-password " ;
171
+ readonly INVALID_PERSISTENCE: " auth/invalid-persistence-type " ;
172
+ readonly INVALID_PHONE_NUMBER: " auth/invalid-phone-number " ;
173
+ readonly INVALID_PROVIDER_ID: " auth/invalid-provider-id " ;
174
+ readonly INVALID_RECIPIENT_EMAIL: " auth/invalid-recipient-email " ;
175
+ readonly INVALID_SENDER: " auth/invalid-sender " ;
176
+ readonly INVALID_SESSION_INFO: " auth/invalid-verification-id " ;
177
+ readonly INVALID_TENANT_ID: " auth/invalid-tenant-id " ;
178
+ readonly MFA_INFO_NOT_FOUND: " auth/multi-factor-info-not-found " ;
179
+ readonly MFA_REQUIRED: " auth/multi-factor-auth-required " ;
180
+ readonly MISSING_ANDROID_PACKAGE_NAME: " auth/missing-android-pkg-name " ;
181
+ readonly MISSING_APP_CREDENTIAL: " auth/missing-app-credential " ;
182
+ readonly MISSING_AUTH_DOMAIN: " auth/auth-domain-config-required " ;
183
+ readonly MISSING_CODE: " auth/missing-verification-code " ;
184
+ readonly MISSING_CONTINUE_URI: " auth/missing-continue-uri " ;
185
+ readonly MISSING_IFRAME_START: " auth/missing-iframe-start " ;
186
+ readonly MISSING_IOS_BUNDLE_ID: " auth/missing-ios-bundle-id " ;
187
+ readonly MISSING_OR_INVALID_NONCE: " auth/missing-or-invalid-nonce " ;
188
+ readonly MISSING_MFA_INFO: " auth/missing-multi-factor-info " ;
189
+ readonly MISSING_MFA_SESSION: " auth/missing-multi-factor-session " ;
190
+ readonly MISSING_PHONE_NUMBER: " auth/missing-phone-number " ;
191
+ readonly MISSING_SESSION_INFO: " auth/missing-verification-id " ;
192
+ readonly MODULE_DESTROYED: " auth/app-deleted " ;
193
+ readonly NEED_CONFIRMATION: " auth/account-exists-with-different-credential " ;
194
+ readonly NETWORK_REQUEST_FAILED: " auth/network-request-failed " ;
195
+ readonly NULL_USER: " auth/null-user " ;
196
+ readonly NO_AUTH_EVENT: " auth/no-auth-event " ;
197
+ readonly NO_SUCH_PROVIDER: " auth/no-such-provider " ;
198
+ readonly OPERATION_NOT_ALLOWED: " auth/operation-not-allowed " ;
199
+ readonly OPERATION_NOT_SUPPORTED: " auth/operation-not-supported-in-this-environment " ;
200
+ readonly POPUP_BLOCKED: " auth/popup-blocked " ;
201
+ readonly POPUP_CLOSED_BY_USER: " auth/popup-closed-by-user " ;
202
+ readonly PROVIDER_ALREADY_LINKED: " auth/provider-already-linked " ;
203
+ readonly QUOTA_EXCEEDED: " auth/quota-exceeded " ;
204
+ readonly REDIRECT_CANCELLED_BY_USER: " auth/redirect-cancelled-by-user " ;
205
+ readonly REDIRECT_OPERATION_PENDING: " auth/redirect-operation-pending " ;
206
+ readonly REJECTED_CREDENTIAL: " auth/rejected-credential " ;
207
+ readonly SECOND_FACTOR_ALREADY_ENROLLED: " auth/second-factor-already-in-use " ;
208
+ readonly SECOND_FACTOR_LIMIT_EXCEEDED: " auth/maximum-second-factor-count-exceeded " ;
209
+ readonly TENANT_ID_MISMATCH: " auth/tenant-id-mismatch " ;
210
+ readonly TIMEOUT: " auth/timeout " ;
211
+ readonly TOKEN_EXPIRED: " auth/user-token-expired " ;
212
+ readonly TOO_MANY_ATTEMPTS_TRY_LATER: " auth/too-many-requests " ;
213
+ readonly UNAUTHORIZED_DOMAIN: " auth/unauthorized-continue-uri " ;
214
+ readonly UNSUPPORTED_FIRST_FACTOR: " auth/unsupported-first-factor " ;
215
+ readonly UNSUPPORTED_PERSISTENCE: " auth/unsupported-persistence-type " ;
216
+ readonly UNSUPPORTED_TENANT_OPERATION: " auth/unsupported-tenant-operation " ;
217
+ readonly UNVERIFIED_EMAIL: " auth/unverified-email " ;
218
+ readonly USER_CANCELLED: " auth/user-cancelled " ;
219
+ readonly USER_DELETED: " auth/user-not-found " ;
220
+ readonly USER_DISABLED: " auth/user-disabled " ;
221
+ readonly USER_MISMATCH: " auth/user-mismatch " ;
222
+ readonly USER_SIGNED_OUT: " auth/user-signed-out " ;
223
+ readonly WEAK_PASSWORD: " auth/weak-password " ;
224
+ readonly WEB_STORAGE_UNSUPPORTED: " auth/web-storage-unsupported " ;
225
+ readonly ALREADY_INITIALIZED: " auth/already-initialized " ;
226
226
};
227
227
228
228
// @public
0 commit comments