added send

This commit is contained in:
Arjun 2026-05-14 21:09:54 +05:30
parent eb4b11a530
commit c0266d4583
6 changed files with 165 additions and 34 deletions

View file

@ -123,6 +123,7 @@ export const GmailThreadMessageSchema = z.object({
unread: z.boolean().optional(),
bodyHeight: z.number().int().positive().optional(),
attachments: z.array(GmailAttachmentSchema).optional(),
messageIdHeader: z.string().optional(),
});
export type GmailThreadMessage = z.infer<typeof GmailThreadMessageSchema>;