diff --git a/packages/features/webhooks/lib/scheduleTrigger.ts b/packages/features/webhooks/lib/scheduleTrigger.ts index efdb21c717..3d60ec3b56 100644 --- a/packages/features/webhooks/lib/scheduleTrigger.ts +++ b/packages/features/webhooks/lib/scheduleTrigger.ts @@ -205,6 +205,7 @@ export async function listBookings( id: "desc", }, select: { + uid: true, title: true, description: true, customInputs: true, diff --git a/packages/features/webhooks/lib/sendPayload.ts b/packages/features/webhooks/lib/sendPayload.ts index 18d6e8701a..f4b78ed349 100644 --- a/packages/features/webhooks/lib/sendPayload.ts +++ b/packages/features/webhooks/lib/sendPayload.ts @@ -78,6 +78,7 @@ export type OOOEntryPayloadType = { export type EventPayloadType = CalendarEvent & TranscriptionGeneratedPayload & EventTypeInfo & { + uid?: string | null; metadata?: { [key: string]: string | number | boolean | null }; bookingId?: number; status?: string; @@ -130,6 +131,7 @@ function getZapierPayload(data: WithUTCOffsetType