@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/vue.mjs CHANGED
@@ -1242,6 +1242,7 @@ var TAURI_COMMANDS = {
1242
1242
  // Sync Rules
1243
1243
  listSyncRules: "filesync_list_sync_rules",
1244
1244
  addSyncRule: "filesync_add_sync_rule",
1245
+ updateSyncRule: "filesync_update_sync_rule",
1245
1246
  removeSyncRule: "filesync_remove_sync_rule",
1246
1247
  // Sync Operations
1247
1248
  getSyncStatus: "filesync_get_sync_status",
@@ -1432,6 +1433,10 @@ var filesyncHandlers = {
1432
1433
  command: TAURI_COMMANDS.filesync.addSyncRule,
1433
1434
  args: (p) => ({ request: p })
1434
1435
  },
1436
+ [HAEXTENSION_METHODS.filesystem.sync.updateSyncRule]: {
1437
+ command: TAURI_COMMANDS.filesync.updateSyncRule,
1438
+ args: (p) => ({ request: p })
1439
+ },
1435
1440
  [HAEXTENSION_METHODS.filesystem.sync.removeSyncRule]: {
1436
1441
  command: TAURI_COMMANDS.filesync.removeSyncRule,
1437
1442
  args: (p) => ({ ruleId: p.ruleId })