| 11 | import { WebhooksSection } from "./WebhooksSection"; |
| 12 | |
| 13 | export interface ApiKeyInterface { |
| 14 | id?: string; |
| 15 | name?: string; |
| 16 | prefix?: string; |
| 17 | scopes?: string; |
| 18 | lastUsedAt?: Date; |
| 19 | expiresAt?: Date; |
| 20 | createdAt?: Date; |
| 21 | key?: string; // raw key — returned only on creation |
| 22 | } |
| 23 | |
| 24 | export interface ConnectionInterface { |
| 25 | id?: string; |
nothing calls this directly
no outgoing calls
no test coverage detected