Interface SignUpRequest

Hierarchy

  • SignUpRequest

Properties

client_id?: string

The client_id of your client. Use if you want to override the class's clientId

connection: string

The name of the database configured to your client.

email: string

The user's email address.

family_name?: string

The user's family name(s).

given_name?: string

The user's given name(s).

name?: string

The user's full name.

nickname?: string

The user's nickname.

password: string

The user's desired password.

picture?: string

A URI pointing to the user's picture.

user_metadata?: {
    [key: string]: unknown;
}

The user metadata to be associated with the user. If set, the field must be an object containing no more than ten properties. Property names can have a maximum of 100 characters, and property values must be strings of no more than 500 characters.

Type declaration

  • [key: string]: unknown
username?: string

The user's username. Only valid if the connection requires a username.