Skip to content

Commit d4f30ea

Browse files
committed
fix(fathom): mark recording_id optional in list_meetings outputs
transformResponse maps recording_id as meeting.recording_id ?? null and the response type already types it number | null; the outputs schema now reflects that nullability.
1 parent 97d87ec commit d4f30ea

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/sim/tools/fathom/list_meetings.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ export const listMeetingsTool: ToolConfig<FathomListMeetingsParams, FathomListMe
196196
title: { type: 'string', description: 'Meeting title' },
197197
meeting_title: { type: 'string', description: 'Calendar event title', optional: true },
198198
meeting_type: { type: 'string', description: 'Meeting type name', optional: true },
199-
recording_id: { type: 'number', description: 'Unique recording ID' },
199+
recording_id: { type: 'number', description: 'Unique recording ID', optional: true },
200200
url: { type: 'string', description: 'URL to view the meeting' },
201201
meeting_url: {
202202
type: 'string',

0 commit comments

Comments
 (0)