| 927 | |
| 928 | // Webhook notification interface for loose coupling |
| 929 | export interface IWebhookNotifier { |
| 930 | triggerWebhook(event: WebhookEvent, data: unknown): Promise<void>; |
| 931 | } |
| 932 | |
| 933 | // OAuth types |
| 934 | export type OAuthProvider = "google" | "microsoft"; |
no outgoing calls
no test coverage detected