import { CalComIcon } from '@/components/icons' import { buildTriggerSubBlocks } from '@/triggers' import { buildCancelledOutputs, calcomSetupInstructions, calcomTriggerOptions, calcomWebhookSecretField, } from '@/triggers/calcom/utils' import type { TriggerConfig } from '@/triggers/types' export const calcomBookingCancelledTrigger: TriggerConfig = { id: 'calcom_booking_cancelled', name: 'CalCom Booking Cancelled', provider: 'calcom', description: 'Trigger workflow when a booking is cancelled in Cal.com', version: '1.0.0', icon: CalComIcon, subBlocks: buildTriggerSubBlocks({ triggerId: 'calcom_booking_cancelled', triggerOptions: calcomTriggerOptions, setupInstructions: calcomSetupInstructions('cancelled'), extraFields: [calcomWebhookSecretField('calcom_booking_cancelled')], }), outputs: buildCancelledOutputs(), webhook: { method: 'POST', headers: { 'Content-Type': 'application/json', 'X-Cal-Signature-256': '', }, }, }