I am making a register site using sveltekit and supabase until now i have been able to successfully save a user to the database but now i also want to save a displayname and a phone number into the supabase authentication table:These are the authentication table columnsthis is what i tried up until now but it hasnt worked:
const { data: signUpData, error } = await supabase.auth.signUp({ email: email, password: password, phone: phonenumber, displayname: username, options: { // data: { username: username }, emailRedirectTo: `${url.origin}/auth/callback` } });