@haex-space/vault-sdk 2.5.33 → 2.5.35
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-BkN93lDI.d.mts → client-B5sRb-z5.d.mts} +17 -1
- package/dist/{client-t6HbiM76.d.ts → client-C1V7rmBP.d.ts} +17 -1
- package/dist/index.d.mts +24 -24
- package/dist/index.d.ts +24 -24
- package/dist/index.js +37 -24
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +37 -25
- 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 +24 -24
- package/dist/react.js.map +1 -1
- package/dist/react.mjs +24 -24
- 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 +24 -24
- package/dist/runtime/nuxt.plugin.client.js.map +1 -1
- package/dist/runtime/nuxt.plugin.client.mjs +24 -24
- 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 +24 -24
- package/dist/svelte.js.map +1 -1
- package/dist/svelte.mjs +24 -24
- 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 +24 -24
- package/dist/vue.js.map +1 -1
- package/dist/vue.mjs +24 -24
- package/dist/vue.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as nuxt_app from 'nuxt/app';
|
|
2
2
|
import { ShallowRef } from 'vue';
|
|
3
|
-
import { H as HaexVaultSdk } from '../client-
|
|
3
|
+
import { H as HaexVaultSdk } from '../client-B5sRb-z5.mjs';
|
|
4
4
|
import { A as ApplicationContext } from '../types-DiXJ5SF6.mjs';
|
|
5
5
|
import 'drizzle-orm/sqlite-proxy';
|
|
6
6
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as nuxt_app from 'nuxt/app';
|
|
2
2
|
import { ShallowRef } from 'vue';
|
|
3
|
-
import { H as HaexVaultSdk } from '../client-
|
|
3
|
+
import { H as HaexVaultSdk } from '../client-C1V7rmBP.js';
|
|
4
4
|
import { A as ApplicationContext } from '../types-DiXJ5SF6.js';
|
|
5
5
|
import 'drizzle-orm/sqlite-proxy';
|
|
6
6
|
|
|
@@ -985,36 +985,36 @@ var TAURI_COMMANDS = {
|
|
|
985
985
|
// Response handling (called by extensions running in WebView)
|
|
986
986
|
respond: "webview_extension_external_respond"},
|
|
987
987
|
filesync: {
|
|
988
|
-
// Spaces
|
|
989
|
-
listSpaces: "
|
|
990
|
-
createSpace: "
|
|
991
|
-
deleteSpace: "
|
|
988
|
+
// Spaces (webview_* commands extract extension info from WebviewWindow)
|
|
989
|
+
listSpaces: "webview_filesync_list_spaces",
|
|
990
|
+
createSpace: "webview_filesync_create_space",
|
|
991
|
+
deleteSpace: "webview_filesync_delete_space",
|
|
992
992
|
// Files
|
|
993
|
-
listFiles: "
|
|
994
|
-
getFile: "
|
|
995
|
-
uploadFile: "
|
|
996
|
-
downloadFile: "
|
|
997
|
-
deleteFile: "
|
|
993
|
+
listFiles: "webview_filesync_list_files",
|
|
994
|
+
getFile: "webview_filesync_get_file",
|
|
995
|
+
uploadFile: "webview_filesync_upload_file",
|
|
996
|
+
downloadFile: "webview_filesync_download_file",
|
|
997
|
+
deleteFile: "webview_filesync_delete_file",
|
|
998
998
|
// Backends
|
|
999
|
-
listBackends: "
|
|
1000
|
-
addBackend: "
|
|
1001
|
-
removeBackend: "
|
|
1002
|
-
testBackend: "
|
|
999
|
+
listBackends: "webview_filesync_list_backends",
|
|
1000
|
+
addBackend: "webview_filesync_add_backend",
|
|
1001
|
+
removeBackend: "webview_filesync_remove_backend",
|
|
1002
|
+
testBackend: "webview_filesync_test_backend",
|
|
1003
1003
|
// Sync Rules
|
|
1004
|
-
listSyncRules: "
|
|
1005
|
-
addSyncRule: "
|
|
1006
|
-
updateSyncRule: "
|
|
1007
|
-
removeSyncRule: "
|
|
1004
|
+
listSyncRules: "webview_filesync_list_sync_rules",
|
|
1005
|
+
addSyncRule: "webview_filesync_add_sync_rule",
|
|
1006
|
+
updateSyncRule: "webview_filesync_update_sync_rule",
|
|
1007
|
+
removeSyncRule: "webview_filesync_remove_sync_rule",
|
|
1008
1008
|
// Sync Operations
|
|
1009
|
-
getSyncStatus: "
|
|
1010
|
-
triggerSync: "
|
|
1011
|
-
pauseSync: "
|
|
1012
|
-
resumeSync: "
|
|
1009
|
+
getSyncStatus: "webview_filesync_get_sync_status",
|
|
1010
|
+
triggerSync: "webview_filesync_trigger_sync",
|
|
1011
|
+
pauseSync: "webview_filesync_pause_sync",
|
|
1012
|
+
resumeSync: "webview_filesync_resume_sync",
|
|
1013
1013
|
// Conflict Resolution
|
|
1014
|
-
resolveConflict: "
|
|
1015
|
-
// UI Helpers
|
|
1014
|
+
resolveConflict: "webview_filesync_resolve_conflict",
|
|
1015
|
+
// UI Helpers (selectFolder doesn't need extension info)
|
|
1016
1016
|
selectFolder: "filesync_select_folder",
|
|
1017
|
-
scanLocal: "
|
|
1017
|
+
scanLocal: "webview_filesync_scan_local"
|
|
1018
1018
|
}
|
|
1019
1019
|
};
|
|
1020
1020
|
|