Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
export interface MfaLoginOptionsMembers extends BaseMembers { screen: ScreenMembersOnMfaLoginOptions; /** * 選択したMFA認証要素でログインプロセスを続行します * @param payload 選択した認証要素を含むオプション * @example * ```typescript * const mfaLoginOptions = new MfaLoginOptions(); * await mfaLoginOptions.enroll({ * action: 'push-notification' * }); * ``` */ enroll(payload: LoginEnrollOptions): Promise<void>; /** * 認証フローの前の画面に戻ります * @param payload カスタムオプション(任意) * @example * ```typescript * const mfaLoginOptions = new MfaLoginOptions(); * await mfaLoginOptions.returnToPrevious(); * ``` */ returnToPrevious(payload?: CustomOptions): Promise<void>; }
const mfaLoginOptions = new MfaLoginOptions(); await mfaLoginOptions.enroll({ action: 'push-notification' });
Show パラメーター
const mfaLoginOptions = new MfaLoginOptions(); await mfaLoginOptions.returnToPrevious();