From 267143434ed91200526b8c9ca6d5ac7300122fe7 Mon Sep 17 00:00:00 2001 From: Dylan Ratcliffe Date: Mon, 24 Jun 2024 13:07:37 +0000 Subject: [PATCH] Remove deprecation notice on *name* --- auth0support.proto | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/auth0support.proto b/auth0support.proto index e70bbda..db44576 100644 --- a/auth0support.proto +++ b/auth0support.proto @@ -37,8 +37,13 @@ message Auth0CreateUserRequest { string user_id = 1; // The user's email address string email = 2; - // The user's full name - string name = 3 [deprecated=true]; + + // The user's full name. This will be split and stored as first_name and + // last_name internally. It is provided for convenience since some social + // providers do not provide first_name and last_name fields. If `first_name` + // and `last_name` are provided, this field will be ignored. + string name = 3; + // Whether the user's email address has been verified bool email_verified = 4; // The user's first name