Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

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.

§
email?: string
[src]

The user's email.

§
nonce?: string
[src]

The nonce sent for reauthentication if the user's password is to be updated.

Call reauthenticate() to obtain the nonce first.

§
password?: string
[src]

The user's password.

§
phone?: string
[src]

The user's phone.