From 1760d4ae2419b5e2641e44666f10d13ad9b0da4e Mon Sep 17 00:00:00 2001 From: iamdoubz <> Date: Sat, 11 Jul 2026 00:31:16 -0500 Subject: [PATCH] feat(ui): add auto_record_calendar to the settings contract --- src/lib/api.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/lib/api.ts b/src/lib/api.ts index 3f6ea3c..bcbc489 100644 --- a/src/lib/api.ts +++ b/src/lib/api.ts @@ -326,6 +326,9 @@ export interface AppSettings { // Days of history to import (both a manual Import click and pst_auto_sync); // null = full mailbox history. pst_import_range_days: number | null; + /** Auto-start recording when a calendar event begins while the app is open + * (opt-in, off by default). Armed as a one-shot UI timer — nothing polls. */ + auto_record_calendar: boolean; audio_output_device: string | null; microphone_enabled: boolean; audio_input_device: string | null;