import { WebhookEventSetup } from '../../../types/events.mjs'; interface SetRequest { enabled: boolean; url: string; webhookByEvents: boolean; webhookBase64: boolean; events: WebhookEventSetup[]; } interface SetResponse { message: string; } type SetOptions = SetRequest; export type { SetOptions, SetRequest, SetResponse };