try await supabase.auth.signIn(
email: "[email protected]",
password: "example-password"
)
try await supabase.auth.signIn(
phone: "+13334445555",
password: "same-password"
)
// After receiving a SMS with a OTP.
try await supabase.auth.verifyOTP(
phone: "+13334445555",
token: "123456",
type: .sms
)