From 8eb9ce5d58f502444a32edf26417dfc6be854e81 Mon Sep 17 00:00:00 2001 From: Ben McAdams Date: Fri, 31 Jul 2026 08:13:16 -0700 Subject: [PATCH] Fix Fireflies search_meeting input: date was renamed to start_time MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The live catalog no longer has a 'date' input on FirefliesCLIAPI.search.search_meeting — the schema now exposes start_time/end_time DATETIME fields, so the CI audit fails on every PR. Verified against list-action-input-fields on 2026-07-31. --- .../notify-on-event/meeting-to-action-items/workflow.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]; });