@@ -509,14 +509,14 @@ export interface MultiFactorConfig {
509
509
factorIds ?: AuthFactorType [ ] ;
510
510
511
511
/**
512
- * A list of multi-factor provider configurations.
512
+ * A list of multi-factor provider configurations.
513
513
* MFA providers (except phone) indicate whether they're enabled through this field. */
514
514
providerConfigs ?: MultiFactorProviderConfig [ ] ;
515
515
}
516
516
517
517
/**
518
- * Interface representing a multi-factor auth provider configuration.
519
- * This interface is used for second factor auth providers other than SMS.
518
+ * Interface representing a multi-factor auth provider configuration.
519
+ * This interface is used for second factor auth providers other than SMS.
520
520
* Currently, only TOTP is supported.
521
521
*/ export interface MultiFactorProviderConfig {
522
522
/**
@@ -528,7 +528,7 @@ export interface MultiFactorConfig {
528
528
}
529
529
530
530
/**
531
- * Interface representing configuration settings for TOTP second factor auth.
531
+ * Interface representing configuration settings for TOTP second factor auth.
532
532
*/
533
533
export interface TotpMultiFactorProviderConfig {
534
534
/**
@@ -540,7 +540,7 @@ export interface TotpMultiFactorProviderConfig {
540
540
/**
541
541
* Defines the multi-factor config class used to convert client side MultiFactorConfig
542
542
* to a format that is understood by the Auth server.
543
- *
543
+ *
544
544
* @internal
545
545
*/
546
546
export class MultiFactorAuthConfig implements MultiFactorConfig {
@@ -555,7 +555,7 @@ export class MultiFactorAuthConfig implements MultiFactorConfig {
555
555
*/
556
556
public readonly factorIds : AuthFactorType [ ] ;
557
557
/**
558
- * A list of multi-factor provider specific config.
558
+ * A list of multi-factor provider specific config.
559
559
* New MFA providers (except phone) will indicate enablement/disablement through this field.
560
560
*/
561
561
public readonly providerConfigs : MultiFactorProviderConfig [ ] ;
@@ -1947,8 +1947,8 @@ export class RecaptchaAuthConfig implements RecaptchaConfig {
1947
1947
}
1948
1948
}
1949
1949
1950
- /**
1951
- * A password policy configuration for a project or tenant
1950
+ /**
1951
+ * A password policy configuration for a project or tenant
1952
1952
*/
1953
1953
export interface PasswordPolicyConfig {
1954
1954
/**
@@ -2003,7 +2003,7 @@ export interface CustomStrengthOptionsConfig {
2003
2003
/**
2004
2004
* Defines the password policy config class used to convert client side PasswordPolicyConfig
2005
2005
* to a format that is understood by the Auth server.
2006
- *
2006
+ *
2007
2007
* @internal
2008
2008
*/
2009
2009
export class PasswordPolicyAuthConfig implements PasswordPolicyConfig {
@@ -2110,7 +2110,7 @@ export class PasswordPolicyAuthConfig implements PasswordPolicyConfig {
2110
2110
'"PasswordPolicyConfig.enforcementState" must be either "ENFORCE" or "OFF".' ,
2111
2111
) ;
2112
2112
}
2113
-
2113
+
2114
2114
if ( typeof options . forceUpgradeOnSignin !== 'undefined' ) {
2115
2115
if ( ! validator . isBoolean ( options . forceUpgradeOnSignin ) ) {
2116
2116
throw new FirebaseAuthError (
@@ -2254,7 +2254,7 @@ export class PasswordPolicyAuthConfig implements PasswordPolicyConfig {
2254
2254
}
2255
2255
}
2256
2256
2257
- /**
2257
+ /**
2258
2258
* Server side password policy configuration.
2259
2259
*/
2260
2260
export interface PasswordPolicyAuthServerConfig {
@@ -2264,14 +2264,14 @@ export interface PasswordPolicyAuthServerConfig {
2264
2264
}
2265
2265
2266
2266
/**
2267
- * Server side password policy versions configuration.
2267
+ * Server side password policy versions configuration.
2268
2268
*/
2269
2269
export interface PasswordPolicyVersionsAuthServerConfig {
2270
2270
customStrengthOptions ?: CustomStrengthOptionsAuthServerConfig ;
2271
2271
}
2272
2272
2273
2273
/**
2274
- * Server side password policy constraints configuration.
2274
+ * Server side password policy constraints configuration.
2275
2275
*/
2276
2276
export interface CustomStrengthOptionsAuthServerConfig {
2277
2277
containsLowercaseCharacter ?: boolean ;
0 commit comments