import type { WebhookSpec } from '../schemas/WebhookSpec'; /** * Contains information about the webhook creation request */ export interface CreateWebhookRequest { spec: T0; webhook_identifier: string; webhook_name: string; }