Skip to main content

Documentation Index

Fetch the complete documentation index at: https://auth0-feat-ionic-capacitor-quickstart-modernization.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

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
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';
}

Indexable

[key: string]: string | number | boolean | undefined

Properties

type
"sms" | "voice"
The type of challenge to perform.
  • sms: Send the code via text message.
  • voice: Send the code via a voice call.

Default

'sms'