@@ -25,12 +25,12 @@ export interface ActionCodeInfo {
25
25
26
26
// @public
27
27
export const ActionCodeOperation: {
28
- EMAIL_SIGNIN: string ;
29
- PASSWORD_RESET: string ;
30
- RECOVER_EMAIL: string ;
31
- REVERT_SECOND_FACTOR_ADDITION: string ;
32
- VERIFY_AND_CHANGE_EMAIL: string ;
33
- VERIFY_EMAIL: string ;
28
+ readonly EMAIL_SIGNIN: " EMAIL_SIGNIN " ;
29
+ readonly PASSWORD_RESET: " PASSWORD_RESET " ;
30
+ readonly RECOVER_EMAIL: " RECOVER_EMAIL " ;
31
+ readonly REVERT_SECOND_FACTOR_ADDITION: " REVERT_SECOND_FACTOR_ADDITION " ;
32
+ readonly VERIFY_AND_CHANGE_EMAIL: " VERIFY_AND_CHANGE_EMAIL " ;
33
+ readonly VERIFY_EMAIL: " VERIFY_EMAIL " ;
34
34
};
35
35
36
36
// @public
@@ -240,7 +240,7 @@ export class FacebookAuthProvider extends BaseOAuthProvider {
240
240
241
241
// @public
242
242
export const FactorId: {
243
- PHONE: string ;
243
+ readonly PHONE: " phone " ;
244
244
};
245
245
246
246
// @public
@@ -406,9 +406,9 @@ export function onIdTokenChanged(auth: Auth, nextOrObserver: NextOrObserver<User
406
406
407
407
// @public
408
408
export const OperationType: {
409
- LINK: string ;
410
- REAUTHENTICATE: string ;
411
- SIGN_IN: string ;
409
+ readonly LINK: " link " ;
410
+ readonly REAUTHENTICATE: " reauthenticate " ;
411
+ readonly SIGN_IN: " signIn " ;
412
412
};
413
413
414
414
// @public
@@ -503,12 +503,12 @@ export const prodErrorMap: AuthErrorMap;
503
503
504
504
// @public
505
505
export const ProviderId: {
506
- FACEBOOK: string ;
507
- GITHUB: string ;
508
- GOOGLE: string ;
509
- PASSWORD: string ;
510
- PHONE: string ;
511
- TWITTER: string ;
506
+ readonly FACEBOOK: " facebook.com " ;
507
+ readonly GITHUB: " github.com " ;
508
+ readonly GOOGLE: " google.com " ;
509
+ readonly PASSWORD: " password " ;
510
+ readonly PHONE: " phone " ;
511
+ readonly TWITTER: " twitter.com " ;
512
512
};
513
513
514
514
// @public
@@ -578,13 +578,13 @@ export function signInAnonymously(auth: Auth): Promise<UserCredential>;
578
578
579
579
// @public
580
580
export const SignInMethod: {
581
- EMAIL_LINK: string ;
582
- EMAIL_PASSWORD: string ;
583
- FACEBOOK: string ;
584
- GITHUB: string ;
585
- GOOGLE: string ;
586
- PHONE: string ;
587
- TWITTER: string ;
581
+ readonly EMAIL_LINK: " emailLink " ;
582
+ readonly EMAIL_PASSWORD: " password " ;
583
+ readonly FACEBOOK: " facebook.com " ;
584
+ readonly GITHUB: " github.com " ;
585
+ readonly GOOGLE: " google.com " ;
586
+ readonly PHONE: " phone " ;
587
+ readonly TWITTER: " twitter.com " ;
588
588
};
589
589
590
590
// @public
0 commit comments