wait on screen recording permissions

This commit is contained in:
Arjun 2026-03-28 11:28:20 +05:30
parent 30e1785fe2
commit d30cb88651
4 changed files with 70 additions and 33 deletions

View file

@ -501,6 +501,16 @@ const ipcSchemas = {
mimeType: z.string(),
}),
},
'meeting:checkScreenPermission': {
req: z.null(),
res: z.object({
granted: z.boolean(),
}),
},
'meeting:openScreenRecordingSettings': {
req: z.null(),
res: z.object({ success: z.boolean() }),
},
'meeting:summarize': {
req: z.object({
transcript: z.string(),