@haex-space/vault-sdk 2.5.25 → 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/index.mjs CHANGED
@@ -505,6 +505,7 @@ var HAEXTENSION_METHODS = {
505
505
  // Sync Rules
506
506
  listSyncRules: "haextension:filesystem:sync:list-sync-rules",
507
507
  addSyncRule: "haextension:filesystem:sync:add-sync-rule",
508
+ updateSyncRule: "haextension:filesystem:sync:update-sync-rule",
508
509
  removeSyncRule: "haextension:filesystem:sync:remove-sync-rule",
509
510
  // Sync Operations
510
511
  getSyncStatus: "haextension:filesystem:sync:get-sync-status",
@@ -805,6 +806,15 @@ var FileSyncAPI = class {
805
806
  options
806
807
  );
807
808
  }
809
+ /**
810
+ * Update a sync rule
811
+ */
812
+ async updateSyncRuleAsync(options) {
813
+ return this.client.request(
814
+ HAEXTENSION_METHODS.filesystem.sync.updateSyncRule,
815
+ options
816
+ );
817
+ }
808
818
  /**
809
819
  * Remove a sync rule
810
820
  */