ContinueOptions
Defines the options required to continue the MFA phone challenge process.
This typically involves selecting the method (SMS or Voice) to receive the verification code.
Example
Report incorrect code
Copy
Ask AI
export interface ContinueOptions extends CustomOptions { /** * The type of challenge to perform. * 'sms': Send the code via text message. * 'voice': Send the code via a voice call. * @default 'sms' */ type: 'sms' | 'voice';}