Skip to content

Commit 5354e16

Browse files
authored
Merge pull request #102 from Recoupable-com/sweetmantech/myc-3876-api-email-tool-room_id-required
feat: make room_id required in send_email tool
2 parents 6d79478 + 3d24108 commit 5354e16

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

lib/emails/sendEmailSchema.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,7 @@ export const sendEmailSchema = z.object({
2828
.string()
2929
.describe(
3030
"Room ID to include in the email footer link. Use the active_conversation_id from context.",
31-
)
32-
.optional(),
31+
),
3332
});
3433

3534
export type SendEmailInput = z.infer<typeof sendEmailSchema>;

0 commit comments

Comments
 (0)