@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.
@@ -990,6 +990,7 @@ var TAURI_COMMANDS = {
990
990
  // Sync Rules
991
991
  listSyncRules: "filesync_list_sync_rules",
992
992
  addSyncRule: "filesync_add_sync_rule",
993
+ updateSyncRule: "filesync_update_sync_rule",
993
994
  removeSyncRule: "filesync_remove_sync_rule",
994
995
  // Sync Operations
995
996
  getSyncStatus: "filesync_get_sync_status",
@@ -1180,6 +1181,10 @@ var filesyncHandlers = {
1180
1181
  command: TAURI_COMMANDS.filesync.addSyncRule,
1181
1182
  args: (p) => ({ request: p })
1182
1183
  },
1184
+ [HAEXTENSION_METHODS.filesystem.sync.updateSyncRule]: {
1185
+ command: TAURI_COMMANDS.filesync.updateSyncRule,
1186
+ args: (p) => ({ request: p })
1187
+ },
1183
1188
  [HAEXTENSION_METHODS.filesystem.sync.removeSyncRule]: {
1184
1189
  command: TAURI_COMMANDS.filesync.removeSyncRule,
1185
1190
  args: (p) => ({ ruleId: p.ruleId })