File tree Expand file tree Collapse file tree 3 files changed +11
-11
lines changed Expand file tree Collapse file tree 3 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ export class ActionCodeURL implements externs.ActionCodeURL {
29
29
// (undocumented)
30
30
readonly languageCode: string | null ;
31
31
// (undocumented)
32
- readonly operation: externs .Operation ;
32
+ readonly operation: externs .ActionCodeOperation ;
33
33
// (undocumented)
34
34
static parseLink(link : string ): externs .ActionCodeURL | null ;
35
35
// (undocumented)
Original file line number Diff line number Diff line change @@ -51,13 +51,13 @@ function registerAuthCompat(instance: _FirebaseNamespace): void {
51
51
. setServiceProps ( {
52
52
ActionCodeInfo : {
53
53
Operation : {
54
- EMAIL_SIGNIN : externs . Operation . EMAIL_SIGNIN ,
55
- PASSWORD_RESET : externs . Operation . PASSWORD_RESET ,
56
- RECOVER_EMAIL : externs . Operation . RECOVER_EMAIL ,
54
+ EMAIL_SIGNIN : externs . ActionCodeOperation . EMAIL_SIGNIN ,
55
+ PASSWORD_RESET : externs . ActionCodeOperation . PASSWORD_RESET ,
56
+ RECOVER_EMAIL : externs . ActionCodeOperation . RECOVER_EMAIL ,
57
57
REVERT_SECOND_FACTOR_ADDITION :
58
- externs . Operation . REVERT_SECOND_FACTOR_ADDITION ,
59
- VERIFY_AND_CHANGE_EMAIL : externs . Operation . VERIFY_AND_CHANGE_EMAIL ,
60
- VERIFY_EMAIL : externs . Operation . VERIFY_EMAIL
58
+ externs . ActionCodeOperation . REVERT_SECOND_FACTOR_ADDITION ,
59
+ VERIFY_AND_CHANGE_EMAIL : externs . ActionCodeOperation . VERIFY_AND_CHANGE_EMAIL ,
60
+ VERIFY_EMAIL : externs . ActionCodeOperation . VERIFY_EMAIL
61
61
}
62
62
} ,
63
63
EmailAuthProvider : impl . EmailAuthProvider ,
Original file line number Diff line number Diff line change @@ -1072,12 +1072,12 @@ export abstract class MultiFactorResolver {
1072
1072
* The list of hints for the second factors needed to complete the sign-in for the current
1073
1073
* session.
1074
1074
*/
1075
- hints : MultiFactorInfo [ ] ;
1075
+ readonly hints : MultiFactorInfo [ ] ;
1076
1076
/**
1077
1077
* The session identifier for the current sign-in flow, which can be used to complete the second
1078
1078
* factor sign-in.
1079
1079
*/
1080
- session : MultiFactorSession ;
1080
+ readonly session : MultiFactorSession ;
1081
1081
/**
1082
1082
* A helper function to help users complete sign in with a second factor using an
1083
1083
* {@link @firebase/auth-types#MultiFactorAssertion } confirming the user successfully completed the second factor
@@ -1423,7 +1423,7 @@ export interface UserCredential {
1423
1423
/**
1424
1424
* The provider which was used to authenticate the user.
1425
1425
*/
1426
- providerId : ProviderId | null ;
1426
+ providerId : string | null ;
1427
1427
/**
1428
1428
* The type of operation which was used to authenticate the user (such as sign-in or link).
1429
1429
*/
@@ -1495,7 +1495,7 @@ export interface AdditionalUserInfo {
1495
1495
/**
1496
1496
* Identifier for the provider used to authenticate this user.
1497
1497
*/
1498
- readonly providerId : ProviderId | null ;
1498
+ readonly providerId : string | null ;
1499
1499
/**
1500
1500
* The username if the provider is GitHub or Twitter.
1501
1501
*/
You can’t perform that action at this time.
0 commit comments