From 69b809accdd90cbe05f9a2d8b8cf684c41d07c3c Mon Sep 17 00:00:00 2001 From: sudipnext Date: Sun, 8 Mar 2026 20:21:51 +0545 Subject: [PATCH] feat: add MIGRATE_DATABASE_ON_STARTUP option to FastApiEnv interface --- electron/app/types/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/electron/app/types/index.d.ts b/electron/app/types/index.d.ts index bf2ea930..e82c05b1 100644 --- a/electron/app/types/index.d.ts +++ b/electron/app/types/index.d.ts @@ -30,6 +30,7 @@ interface FastApiEnv { APP_DATA_DIRECTORY?: string, TEMP_DIRECTORY?: string, USER_CONFIG_PATH?: string, + MIGRATE_DATABASE_ON_STARTUP?: string, /** Absolute path to the soffice binary resolved at startup by libreoffice-check.ts. */ SOFFICE_PATH?: string, }