Skip to content

Commit

Permalink
Remove deprecation notice on *name*
Browse files Browse the repository at this point in the history
  • Loading branch information
dylanratcliffe committed Jun 24, 2024
1 parent b9773ca commit 2671434
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions auth0support.proto
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 2671434

Please sign in to comment.