import type { WebhookSpec } from '../schemas/WebhookSpec'; /** * Contains information about the webhook updation */ export interface UpdateWebhookRequest { is_enabled: boolean; spec: T0; webhook_name: string; }