email processing agent

This commit is contained in:
Arjun 2026-05-13 21:41:23 +05:30
parent 375d8bf2e0
commit 67b1fe97f7
4 changed files with 131 additions and 2 deletions

View file

@ -121,6 +121,7 @@ export const GmailThreadSchema = EmailBlockSchema.extend({
threadId: z.string(),
threadUrl: z.string().url(),
unread: z.boolean().optional(),
importance: z.enum(['important', 'other']).optional(),
messages: z.array(GmailThreadMessageSchema),
});