@haex-space/vault-sdk 2.5.27 → 2.5.30

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/svelte.d.mts CHANGED
@@ -1,7 +1,7 @@
1
- import { H as HaexVaultSdk, S as StorageAPI } from './client-Bva_JMEm.mjs';
1
+ import { H as HaexVaultSdk, S as StorageAPI } from './client-1LC_-rtY.mjs';
2
2
  import * as drizzle_orm_sqlite_proxy from 'drizzle-orm/sqlite-proxy';
3
3
  import { Readable } from 'svelte/store';
4
- import { H as HaexHubConfig, a as ExtensionInfo, A as ApplicationContext } from './types-C4BTOGe5.mjs';
4
+ import { H as HaexHubConfig, a as ExtensionInfo, A as ApplicationContext } from './types-DiXJ5SF6.mjs';
5
5
 
6
6
  /**
7
7
  * Initialize the HaexVault SDK for Svelte
package/dist/svelte.d.ts CHANGED
@@ -1,7 +1,7 @@
1
- import { H as HaexVaultSdk, S as StorageAPI } from './client-BUp2_Bf1.js';
1
+ import { H as HaexVaultSdk, S as StorageAPI } from './client-LNxaanOT.js';
2
2
  import * as drizzle_orm_sqlite_proxy from 'drizzle-orm/sqlite-proxy';
3
3
  import { Readable } from 'svelte/store';
4
- import { H as HaexHubConfig, a as ExtensionInfo, A as ApplicationContext } from './types-C4BTOGe5.js';
4
+ import { H as HaexHubConfig, a as ExtensionInfo, A as ApplicationContext } from './types-DiXJ5SF6.js';
5
5
 
6
6
  /**
7
7
  * Initialize the HaexVault SDK for Svelte
package/dist/svelte.js CHANGED
@@ -1244,6 +1244,7 @@ var TAURI_COMMANDS = {
1244
1244
  // Sync Rules
1245
1245
  listSyncRules: "filesync_list_sync_rules",
1246
1246
  addSyncRule: "filesync_add_sync_rule",
1247
+ updateSyncRule: "filesync_update_sync_rule",
1247
1248
  removeSyncRule: "filesync_remove_sync_rule",
1248
1249
  // Sync Operations
1249
1250
  getSyncStatus: "filesync_get_sync_status",
@@ -1434,6 +1435,10 @@ var filesyncHandlers = {
1434
1435
  command: TAURI_COMMANDS.filesync.addSyncRule,
1435
1436
  args: (p) => ({ request: p })
1436
1437
  },
1438
+ [HAEXTENSION_METHODS.filesystem.sync.updateSyncRule]: {
1439
+ command: TAURI_COMMANDS.filesync.updateSyncRule,
1440
+ args: (p) => ({ request: p })
1441
+ },
1437
1442
  [HAEXTENSION_METHODS.filesystem.sync.removeSyncRule]: {
1438
1443
  command: TAURI_COMMANDS.filesync.removeSyncRule,
1439
1444
  args: (p) => ({ ruleId: p.ruleId })