added deep links

This commit is contained in:
Arjun 2026-04-25 10:43:12 +05:30
parent 8595190bd4
commit 9fa2d1d5e3
6 changed files with 160 additions and 0 deletions

View file

@ -292,6 +292,18 @@ const ipcSchemas = {
}),
res: z.null(),
},
'app:openUrl': {
req: z.object({
url: z.string(),
}),
res: z.null(),
},
'app:consumePendingDeepLink': {
req: z.null(),
res: z.object({
url: z.string().nullable(),
}),
},
'granola:getConfig': {
req: z.null(),
res: z.object({