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 ScreenMembersOnMfaWebAuthnEnrollmentSuccess extends ScreenMembers { /** * WebAuthn enrollmentの成功に関する詳細を含む画面固有のデータ。 * @type {{ nickname: string; webauthnType: WebAuthnType; } | null} */ data: { /** * ユーザー(またはシステム)が新たに登録されたWebAuthn認証器に割り当てたニックネーム。 * これにより、ユーザーは後で認証器を識別できます。 * @type {string} * @example "YubiKey 5" * @example "My Laptop's Touch ID" */ nickname: string; /** * 正常に登録されたWebAuthn認証器の種類。 * - `'webauthn-roaming'`: USBセキュリティキーなどのローミング認証器を示します。 * - `'webauthn-platform'`: Touch IDやWindows Helloなどのプラットフォーム認証器を示します。 * @type {WebAuthnType} */ webauthnType: WebAuthnType; } | null; }
{ nickname: string; webauthnType: [WebAuthnType]; }
Show プロパティ
"YubiKey 5"
"My Laptop's Touch ID"
'webauthn-roaming'
'webauthn-platform'
null