File tree Expand file tree Collapse file tree 3 files changed +11
-0
lines changed
packages/auth/src/platform_browser/mfa/assertions Expand file tree Collapse file tree 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 {
596596// @public
597597export class PhoneMultiFactorGenerator {
598598 static assertion(credential : PhoneAuthCredential ): PhoneMultiFactorAssertion ;
599+ static FACTOR_ID: string ;
599600}
600601
601602// @public
Original file line number Diff line number Diff line change @@ -90,4 +90,9 @@ export class PhoneMultiFactorGenerator {
9090 static assertion ( credential : PhoneAuthCredential ) : PhoneMultiFactorAssertion {
9191 return PhoneMultiFactorAssertionImpl . _fromCredential ( credential ) ;
9292 }
93+
94+ /**
95+ * The identifier of the phone second factor: `phone`.
96+ */
97+ static FACTOR_ID = 'phone' ;
9398}
You can’t perform that action at this time.
0 commit comments