@haex-space/vault-sdk 2.5.23 → 2.5.27

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.mjs CHANGED
@@ -418,6 +418,7 @@ var HAEXTENSION_METHODS = {
418
418
  // Sync Rules
419
419
  listSyncRules: "haextension:filesystem:sync:list-sync-rules",
420
420
  addSyncRule: "haextension:filesystem:sync:add-sync-rule",
421
+ updateSyncRule: "haextension:filesystem:sync:update-sync-rule",
421
422
  removeSyncRule: "haextension:filesystem:sync:remove-sync-rule",
422
423
  // Sync Operations
423
424
  getSyncStatus: "haextension:filesystem:sync:get-sync-status",
@@ -698,6 +699,15 @@ var FileSyncAPI = class {
698
699
  options
699
700
  );
700
701
  }
702
+ /**
703
+ * Update a sync rule
704
+ */
705
+ async updateSyncRuleAsync(options) {
706
+ return this.client.request(
707
+ HAEXTENSION_METHODS.filesystem.sync.updateSyncRule,
708
+ options
709
+ );
710
+ }
701
711
  /**
702
712
  * Remove a sync rule
703
713
  */