Skip to content

Commit 2e127f3

Browse files
committed
update recaptcha key type
1 parent 153d5e5 commit 2e127f3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

etc/firebase-admin.auth.api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ export interface RecaptchaKey {
381381
}
382382

383383
// @public
384-
export type RecaptchaKeyClientType = 'WEB';
384+
export type RecaptchaKeyClientType = 'WEB' | 'IOS' | 'ANDROID';
385385

386386
// @public
387387
export interface RecaptchaManagedRule {

src/auth/auth-config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1751,9 +1751,9 @@ export interface RecaptchaManagedRule {
17511751
}
17521752

17531753
/**
1754-
* The key's platform type: only web is currently supported.
1754+
* The key's platform type.
17551755
*/
1756-
export type RecaptchaKeyClientType = 'WEB';
1756+
export type RecaptchaKeyClientType = 'WEB' | 'IOS' | 'ANDROID';
17571757

17581758
/**
17591759
* The reCAPTCHA key config.

0 commit comments

Comments
 (0)