Skip to main content
ContinueOptions MFA の電話番号チャレンジプロセスを続行するために必要なオプションを定義します。 通常は、確認コードの受信方法 (SMS または音声) を選択します。
Example
export interface ContinueOptions extends CustomOptions {
  /**
   * 実行するチャレンジの種類。
   * 'sms': テキストメッセージでcodeを送信する。
   * 'voice': 音声通話でcodeを送信する。
   * @default 'sms'
   */
  type: 'sms' | 'voice';
}

プロパティ

type
"sms" | "voice"
実行するチャレンジの種類です。
  • sms: codeをテキストメッセージで送信します。
  • voice: codeを音声通話で送信します。