(detail: string)
| 31 | ); |
| 32 | |
| 33 | export const ErrInvalidStore = (detail: string) => |
| 34 | new AuthError( |
| 35 | "INVALID_STORE", |
| 36 | `Credential file is unreadable: ${detail}`, |
| 37 | "Delete ~/.heygen/credentials and run `hyperframes auth login` to re-create it.", |
| 38 | ); |
| 39 | |
| 40 | export const ErrUnauthenticated = (detail?: string) => |
| 41 | new AuthError( |
no outgoing calls
no test coverage detected