| 1 | import { apiRequest } from "../client"; |
| 2 | |
| 3 | export interface AuthKey { |
| 4 | id: string; |
| 5 | name: string; |
| 6 | key: string; |
| 7 | isValid: boolean; |
| 8 | createdBy: string; |
| 9 | createdAt: string; |
| 10 | updatedAt: string; |
| 11 | } |
| 12 | |
| 13 | export interface CreateAuthKeyRequest { |
| 14 | name: string; |
nothing calls this directly
no outgoing calls
no test coverage detected