From 593e5f362232e5025ab39c57cfe9b58f0753cad4 Mon Sep 17 00:00:00 2001 From: Daniel Young Lee Date: Tue, 17 Oct 2023 14:00:34 -0700 Subject: [PATCH] chore: Update AuthRecord type. --- src/firebase_functions/identity_fn.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/firebase_functions/identity_fn.py b/src/firebase_functions/identity_fn.py index 8e84c73..8daca0c 100644 --- a/src/firebase_functions/identity_fn.py +++ b/src/firebase_functions/identity_fn.py @@ -123,7 +123,7 @@ class AuthUserRecord: The user's primary email, if set. """ - email_verified: bool + email_verified: bool | None """ Whether or not the user's primary email is verified. """ @@ -248,7 +248,7 @@ class AuthBlockingEvent: locale: str | None """ - The application locale. You can set the locale using the client SDK, + The application locale. You can set the locale using the client SDK, or by passing the locale header in the REST API. Example: 'fr' or 'sv-SE' """