diff --git a/src/auth/auth-config.ts b/src/auth/auth-config.ts index d5ba502208..c7c307b08a 100644 --- a/src/auth/auth-config.ts +++ b/src/auth/auth-config.ts @@ -1455,13 +1455,13 @@ export class OIDCConfig implements OIDCAuthProviderConfig { /** * Enforcement state of reCAPTCHA protection. * - 'OFF': Unenforced. -* - 'AUDIT': Assessment is created but result is not used to enforce. -* - 'ENFORCE': Assessment is created and result is used to enforce. +* - 'AUDIT': Create assessment but don't enforce the result. +* - 'ENFORCE': Create assessment and enforce the result. */ export type RecaptchaProviderEnforcementState = 'OFF' | 'AUDIT' | 'ENFORCE'; /** -* The actions for reCAPTCHA-protected requests. +* The actions to take for reCAPTCHA-protected requests. * - 'BLOCK': The reCAPTCHA-protected request will be blocked. */ export type RecaptchaAction = 'BLOCK'; @@ -1481,7 +1481,7 @@ export interface RecaptchaManagedRule { } /** - * The key's platform type: only web supported now. + * The key's platform type: only web is currently supported. */ export type RecaptchaKeyClientType = 'WEB'; @@ -1508,7 +1508,7 @@ export interface RecaptchaKey { */ export interface RecaptchaConfig { /** - * The enforcement state of email password provider. + * The enforcement state of the email password provider. */ emailPasswordEnforcementState?: RecaptchaProviderEnforcementState; /** diff --git a/src/auth/project-config-manager.ts b/src/auth/project-config-manager.ts index 3f95a8ddf3..8aba89a81a 100644 --- a/src/auth/project-config-manager.ts +++ b/src/auth/project-config-manager.ts @@ -20,10 +20,7 @@ import { } from './auth-api-request'; /** - * Defines the project config manager used to help manage project config related operations. - * This includes: - *