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 登録成功に関する詳細を含む画面固有のデータ。 * @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"
'webauthn-roaming'
'webauthn-platform'
null