update_user() method, the user needs to be signed in first.undefined
undefined
response = supabase.auth.update_user(
    {"email": "new@email.com"}
)
response = supabase.auth.update_user(
    {"phone": "123456789"}
)
response = supabase.auth.update_user(
    {"password": "new password"}
)
response = supabase.auth.update_user(
    {
        "data": {"hello": "world"},
    }
)
response = supabase.auth.update_user(
    {
        "password": "new password",
        "nonce": "123456",
    }
)