From 1f40d82294b6c5ed32cf37056389ee05e584d7c8 Mon Sep 17 00:00:00 2001 From: Ian Ker-Seymer Date: Mon, 4 Jan 2016 17:07:43 -0500 Subject: [PATCH] auth0: add user_metadata and app_metadata to profile --- auth0/auth0.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/auth0/auth0.d.ts b/auth0/auth0.d.ts index b2e1149fb..1548bd06f 100644 --- a/auth0/auth0.d.ts +++ b/auth0/auth0.d.ts @@ -51,6 +51,8 @@ interface Auth0UserProfile { user_id: string; /** Represents one or more Identities that may be associated with the User. */ identities: Auth0Identity[]; + user_metadata?: any; + app_metadata?: any; } /** Represents an Auth0UserProfile that has a Microsoft Account as the primary identity. */