| 1 | export interface APIKey { |
| 2 | id: string |
| 3 | name: string |
| 4 | description?: string |
| 5 | key_value?: string // Only included when creating |
| 6 | created_at: string |
| 7 | } |
| 8 | |
| 9 | export interface CreateAPIKeyRequest { |
| 10 | name: string |
nothing calls this directly
no outgoing calls
no test coverage detected