add missing options?

This commit is contained in:
perf3ct 2025-03-31 16:01:22 +00:00
parent 4c720818f0
commit edeebc77be
No known key found for this signature in database
GPG Key ID: 569C4EEC436F5232

View File

@ -47,6 +47,7 @@ export interface OptionDefinitions extends KeyboardShortcutsOptions<KeyboardActi
passwordDerivedKeySalt: string;
encryptedDataKey: string;
hoistedNoteId: string;
isPasswordSet: boolean;
// AI/LLM integration options
aiEnabled: boolean;
@ -134,6 +135,14 @@ export interface OptionDefinitions extends KeyboardShortcutsOptions<KeyboardActi
backgroundEffects: string;
redirectBareDomain: boolean;
showLoginInShareTheme: boolean;
initialized: string;
lastSyncedPull: string;
lastSyncedPush: string;
autoFixConsistencyIssues: boolean;
hideArchivedNotes_main: boolean;
debugModeEnabled: boolean;
encryptedRecoveryCodes: string;
userSubjectIdentifierSaved: boolean;
}
export type OptionNames = keyof OptionDefinitions;