(prefix: string)
| 24 | const SET_COOKIE_HEADER = "set-cookie"; |
| 25 | const NOT_MFA_REQUIRED_ERROR = "login response was not an mfaRequired envelope"; |
| 26 | const uniqueEmail = (prefix: string): string => |
| 27 | `${prefix}-${crypto.randomUUID()}@example.com`; |
| 28 | |
| 29 | interface IMfaRequiredBody { |
| 30 | readonly success: boolean; |
no outgoing calls
no test coverage detected