| 50 | } |
| 51 | |
| 52 | export interface ApiKey { |
| 53 | id: string; |
| 54 | name: string; |
| 55 | apiKey: string; |
| 56 | projectId: string; |
| 57 | createdAt: Generated<Timestamp>; |
| 58 | updatedAt: Timestamp; |
| 59 | provider: Generated<"OPENAI" | "OPENPIPE">; |
| 60 | readOnly: Generated<boolean>; |
| 61 | } |
| 62 | |
| 63 | export interface CachedProcessedEntry { |
| 64 | id: string; |
nothing calls this directly
no outgoing calls
no test coverage detected