Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove deprecation notice on *name* #229

Merged
merged 1 commit into from
Jun 24, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading