Skip to content

Commit

Permalink
update recaptcha key type
Browse files Browse the repository at this point in the history
  • Loading branch information
Xiaoshouzi-gh committed Apr 6, 2023
1 parent 153d5e5 commit 2e127f3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion etc/firebase-admin.auth.api.md
Expand Up @@ -381,7 +381,7 @@ export interface RecaptchaKey {
}

// @public
export type RecaptchaKeyClientType = 'WEB';
export type RecaptchaKeyClientType = 'WEB' | 'IOS' | 'ANDROID';

// @public
export interface RecaptchaManagedRule {
Expand Down
4 changes: 2 additions & 2 deletions src/auth/auth-config.ts
Expand Up @@ -1751,9 +1751,9 @@ export interface RecaptchaManagedRule {
}

/**
* The key's platform type: only web is currently supported.
* The key's platform type.
*/
export type RecaptchaKeyClientType = 'WEB';
export type RecaptchaKeyClientType = 'WEB' | 'IOS' | 'ANDROID';

/**
* The reCAPTCHA key config.
Expand Down

0 comments on commit 2e127f3

Please sign in to comment.