From 3c2537787bfe9f38e1d1fb5acb205fedfc810de2 Mon Sep 17 00:00:00 2001 From: Ian Ker-Seymer Date: Tue, 30 Aug 2016 10:36:06 -0400 Subject: [PATCH] Add email_verified property to Auth0UserProfile (#10835) --- auth0-js/auth0-js.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/auth0-js/auth0-js.d.ts b/auth0-js/auth0-js.d.ts index 515d52af7e..250c7a850e 100644 --- a/auth0-js/auth0-js.d.ts +++ b/auth0-js/auth0-js.d.ts @@ -42,6 +42,7 @@ interface Auth0ClientOptions { /** Represents a normalized UserProfile. */ interface Auth0UserProfile { email: string; + email_verified: boolean; family_name: string; gender: string; given_name: string;