File tree 3 files changed +11
-0
lines changed
packages/auth/src/platform_browser/mfa/assertions
3 files changed +11
-0
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ " @firebase/auth " : patch
3
+ ---
4
+
5
+ Add missing phone FACTOR_ID static property to the PhoneMultiFactorGenerator class
Original file line number Diff line number Diff line change @@ -596,6 +596,7 @@ export interface PhoneMultiFactorEnrollInfoOptions {
596
596
// @public
597
597
export class PhoneMultiFactorGenerator {
598
598
static assertion(credential : PhoneAuthCredential ): PhoneMultiFactorAssertion ;
599
+ static FACTOR_ID: string ;
599
600
}
600
601
601
602
// @public
Original file line number Diff line number Diff line change @@ -90,4 +90,9 @@ export class PhoneMultiFactorGenerator {
90
90
static assertion ( credential : PhoneAuthCredential ) : PhoneMultiFactorAssertion {
91
91
return PhoneMultiFactorAssertionImpl . _fromCredential ( credential ) ;
92
92
}
93
+
94
+ /**
95
+ * The identifier of the phone second factor: `phone`.
96
+ */
97
+ static FACTOR_ID = 'phone' ;
93
98
}
You can’t perform that action at this time.
0 commit comments