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.
import MfaSmsList from '@auth0/auth0-acul-js/mfa-sms-list'; const mfaSmsList = new MfaSmsList(); const selectPhoneNumber = async () => { const getEnrolledPhoneNumbers = mfaSmsList.user.enrolledPhoneNumbers; const selectedNumber = getEnrolledPhoneNumbers[0]; await mfaSmsList.selectPhoneNumber({index: selectedNumber}); }
import MfaSmsList from '@auth0/auth0-acul-js/mfa-sms-list'; const mfaSmsList = new MfaSmsList(); const handleBackAction = async () => { try { await mfaSmsList.backAction(); } catch (error) { console.error('Failed to go back:', error); } };
表示 パラメーター