Add iOS Files vault selection

This commit is contained in:
Yuri Karamian
2026-07-24 02:19:00 +02:00
parent 51acd51cb2
commit d497ff8aaf
15 changed files with 846 additions and 39 deletions
+8
View File
@@ -44,6 +44,7 @@ export interface NoteContent {
export interface VaultConfig {
path: string;
name: string;
bookmark_id?: string | null;
// Per-vault WebDAV sync (moved off the global AppConfig).
sync_provider?: string | null;
webdav_url?: string | null;
@@ -55,6 +56,12 @@ export interface VaultConfig {
last_sync_time?: string | null;
}
export interface ExternalVaultResult {
bookmarkId: string;
path: string;
name: string;
}
export interface CustomThemeColors {
bg_primary: string;
bg_secondary: string;
@@ -77,6 +84,7 @@ export interface CustomTheme {
export interface AppConfig {
vaults: VaultConfig[];
active_vault: string | null;
active_bookmark_id?: string | null;
theme: string;
accent_color: string | null;
font_size: number | null;