diff --git a/examples/by-pattern/notify-on-event/meeting-to-action-items/workflow.ts b/examples/by-pattern/notify-on-event/meeting-to-action-items/workflow.ts index b091cd8..36f7ca7 100644 --- a/examples/by-pattern/notify-on-event/meeting-to-action-items/workflow.ts +++ b/examples/by-pattern/notify-on-event/meeting-to-action-items/workflow.ts @@ -50,7 +50,7 @@ export default defineDurable( actionType: "search", actionKey: "search_meeting", connection: FIREFLIES_CONNECTION, - inputs: { title: event.summary, date: event.start }, + inputs: { title: event.summary, start_time: event.start }, })) as { data: Array<{ url: string; action_items?: ActionItem[] }> }; return result.data[0]; });