is there a method to verify the password reset OTP sent to user?
according to the current better auth password-reset flow with OTP we need to send OTP + new password + email and it should work, but our flow requires the OTP verification before showing the password inputs for the user.
i've found a method called
getVerificationOTP
getVerificationOTP
but that also re-sends a new OTP for the user and returns
{ otp: null}
{ otp: null}
which defeats the purpose of getting verification otp to verify the user's otp they're trying to use.