* Authentication error messages and handling utilities
| 3 | */ |
| 4 | |
| 5 | interface AuthErrorMapping { |
| 6 | [key: string]: { |
| 7 | title: string; |
| 8 | description?: string; |
| 9 | }; |
| 10 | } |
| 11 | |
| 12 | const AUTH_ERROR_MESSAGES: AuthErrorMapping = { |
| 13 | // Common HTTP errors |
nothing calls this directly
no outgoing calls
no test coverage detected