Type alias SignUpWithPasswordCredentials
SignUpWithPasswordCredentials: {
email: string;
options?: {
captchaToken?: string;
data?: object;
emailRedirectTo?: string;
};
password: string;
} | {
options?: {
captchaToken?: string;
channel?: "sms" | "whatsapp";
data?: object;
};
password: string;
phone: string;
}