@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/{client-AdojmCk8.d.ts → client-BUp2_Bf1.d.ts} +11 -1
- package/dist/{client-Rqbzd23b.d.mts → client-Bva_JMEm.d.mts} +11 -1
- package/dist/index.d.mts +3 -2
- package/dist/index.d.ts +3 -2
- package/dist/index.js +10 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +10 -0
- package/dist/index.mjs.map +1 -1
- package/dist/react.d.mts +1 -1
- package/dist/react.d.ts +1 -1
- package/dist/react.js +10 -0
- package/dist/react.js.map +1 -1
- package/dist/react.mjs +10 -0
- package/dist/react.mjs.map +1 -1
- package/dist/runtime/nuxt.plugin.client.d.mts +1 -1
- package/dist/runtime/nuxt.plugin.client.d.ts +1 -1
- package/dist/runtime/nuxt.plugin.client.js +10 -0
- package/dist/runtime/nuxt.plugin.client.js.map +1 -1
- package/dist/runtime/nuxt.plugin.client.mjs +10 -0
- package/dist/runtime/nuxt.plugin.client.mjs.map +1 -1
- package/dist/svelte.d.mts +1 -1
- package/dist/svelte.d.ts +1 -1
- package/dist/svelte.js +10 -0
- package/dist/svelte.js.map +1 -1
- package/dist/svelte.mjs +10 -0
- package/dist/svelte.mjs.map +1 -1
- package/dist/vue.d.mts +1 -1
- package/dist/vue.d.ts +1 -1
- package/dist/vue.js +10 -0
- package/dist/vue.js.map +1 -1
- package/dist/vue.mjs +10 -0
- package/dist/vue.mjs.map +1 -1
- package/package.json +1 -1
package/dist/svelte.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { H as HaexVaultSdk, S as StorageAPI } from './client-
|
|
1
|
+
import { H as HaexVaultSdk, S as StorageAPI } from './client-Bva_JMEm.mjs';
|
|
2
2
|
import * as drizzle_orm_sqlite_proxy from 'drizzle-orm/sqlite-proxy';
|
|
3
3
|
import { Readable } from 'svelte/store';
|
|
4
4
|
import { H as HaexHubConfig, a as ExtensionInfo, A as ApplicationContext } from './types-C4BTOGe5.mjs';
|
package/dist/svelte.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { H as HaexVaultSdk, S as StorageAPI } from './client-
|
|
1
|
+
import { H as HaexVaultSdk, S as StorageAPI } from './client-BUp2_Bf1.js';
|
|
2
2
|
import * as drizzle_orm_sqlite_proxy from 'drizzle-orm/sqlite-proxy';
|
|
3
3
|
import { Readable } from 'svelte/store';
|
|
4
4
|
import { H as HaexHubConfig, a as ExtensionInfo, A as ApplicationContext } from './types-C4BTOGe5.js';
|
package/dist/svelte.js
CHANGED
|
@@ -420,6 +420,7 @@ var HAEXTENSION_METHODS = {
|
|
|
420
420
|
// Sync Rules
|
|
421
421
|
listSyncRules: "haextension:filesystem:sync:list-sync-rules",
|
|
422
422
|
addSyncRule: "haextension:filesystem:sync:add-sync-rule",
|
|
423
|
+
updateSyncRule: "haextension:filesystem:sync:update-sync-rule",
|
|
423
424
|
removeSyncRule: "haextension:filesystem:sync:remove-sync-rule",
|
|
424
425
|
// Sync Operations
|
|
425
426
|
getSyncStatus: "haextension:filesystem:sync:get-sync-status",
|
|
@@ -700,6 +701,15 @@ var FileSyncAPI = class {
|
|
|
700
701
|
options
|
|
701
702
|
);
|
|
702
703
|
}
|
|
704
|
+
/**
|
|
705
|
+
* Update a sync rule
|
|
706
|
+
*/
|
|
707
|
+
async updateSyncRuleAsync(options) {
|
|
708
|
+
return this.client.request(
|
|
709
|
+
HAEXTENSION_METHODS.filesystem.sync.updateSyncRule,
|
|
710
|
+
options
|
|
711
|
+
);
|
|
712
|
+
}
|
|
703
713
|
/**
|
|
704
714
|
* Remove a sync rule
|
|
705
715
|
*/
|