Skip to content

Commit 08619ea

Browse files
committed
fix(fathom): mark calendar_invitees email optional in list_meetings outputs
Fathom's docs mark Invitee.email as nullable; the outputs schema now reflects that instead of declaring it as always-present.
1 parent d94d910 commit 08619ea

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
@@ -254,7 +254,7 @@ export const listMeetingsTool: ToolConfig<FathomListMeetingsParams, FathomListMe
254254
type: 'object',
255255
properties: {
256256
name: { type: 'string', description: 'Invitee name', optional: true },
257-
email: { type: 'string', description: 'Invitee email' },
257+
email: { type: 'string', description: 'Invitee email', optional: true },
258258
email_domain: {
259259
type: 'string',
260260
description: 'Invitee email domain',

0 commit comments

Comments
 (0)