@haex-space/vault-sdk 2.5.27 → 2.5.29

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/index.mjs CHANGED
@@ -1373,6 +1373,7 @@ var TAURI_COMMANDS = {
1373
1373
  // Sync Rules
1374
1374
  listSyncRules: "filesync_list_sync_rules",
1375
1375
  addSyncRule: "filesync_add_sync_rule",
1376
+ updateSyncRule: "filesync_update_sync_rule",
1376
1377
  removeSyncRule: "filesync_remove_sync_rule",
1377
1378
  // Sync Operations
1378
1379
  getSyncStatus: "filesync_get_sync_status",
@@ -1563,6 +1564,10 @@ var filesyncHandlers = {
1563
1564
  command: TAURI_COMMANDS.filesync.addSyncRule,
1564
1565
  args: (p) => ({ request: p })
1565
1566
  },
1567
+ [HAEXTENSION_METHODS.filesystem.sync.updateSyncRule]: {
1568
+ command: TAURI_COMMANDS.filesync.updateSyncRule,
1569
+ args: (p) => ({ request: p })
1570
+ },
1566
1571
  [HAEXTENSION_METHODS.filesystem.sync.removeSyncRule]: {
1567
1572
  command: TAURI_COMMANDS.filesync.removeSyncRule,
1568
1573
  args: (p) => ({ ruleId: p.ruleId })