Storybooks for commit a99c0737cada651528490678a2a831d36fb5c7e4

Date
3/4/2026, 6:55:37 PM UTC
Summary
feat(passkeys): Add passkey manager functions
Description
Because:
- The passkey routes needs to enforce business rules before touching the database

This commit:
- Implements PasskeyManager with the full passkey lifecycle: register, post-auth update, list, rename, delete, and bulk delete
- Adds name validation (empty/whitespace/too long) with PasskeyInvalidNameError (errno 229)
- Tightens updatePasskeyName to match on both uid and credentialId, preventing cross-user renames
- Guards maxPasskeysPerUser config with @Min(1) to prevent accidentally disabling registration
- Adds unit and integration tests for the manager

Closes #FXA-13064