UserAttributes
interface UserAttributes {
data?: object;
email?: string;
nonce?: string;
password?: string;
phone?: string;
}§Properties
§
data?: object
[src]A custom data object to store the user's metadata. This maps to the auth.users.raw_user_meta_data
column.
The data
should be a JSON object that includes user-specific info, such as their first and last name.