Download notes (#423)

* download notes to md, pdf or docx
This commit is contained in:
arkml 2026-03-14 21:29:53 +05:30 committed by GitHub
parent 1400e94c68
commit d0a48d7f51
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 521 additions and 3 deletions

View file

@ -487,6 +487,17 @@ const ipcSchemas = {
}).nullable(),
},
// Inline task schedule classification
'export:note': {
req: z.object({
markdown: z.string(),
format: z.enum(['md', 'pdf', 'docx']),
title: z.string(),
}),
res: z.object({
success: z.boolean(),
error: z.string().optional(),
}),
},
'inline-task:classifySchedule': {
req: z.object({
instruction: z.string(),