@haex-space/vault-sdk 2.5.33 → 2.5.34
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.d.mts +22 -22
- package/dist/index.d.ts +22 -22
- package/dist/index.js +24 -24
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +24 -24
- package/dist/index.mjs.map +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.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.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.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
|
@@ -983,36 +983,36 @@ var TAURI_COMMANDS = {
|
|
|
983
983
|
// Response handling (called by extensions running in WebView)
|
|
984
984
|
respond: "webview_extension_external_respond"},
|
|
985
985
|
filesync: {
|
|
986
|
-
// Spaces
|
|
987
|
-
listSpaces: "
|
|
988
|
-
createSpace: "
|
|
989
|
-
deleteSpace: "
|
|
986
|
+
// Spaces (webview_* commands extract extension info from WebviewWindow)
|
|
987
|
+
listSpaces: "webview_filesync_list_spaces",
|
|
988
|
+
createSpace: "webview_filesync_create_space",
|
|
989
|
+
deleteSpace: "webview_filesync_delete_space",
|
|
990
990
|
// Files
|
|
991
|
-
listFiles: "
|
|
992
|
-
getFile: "
|
|
993
|
-
uploadFile: "
|
|
994
|
-
downloadFile: "
|
|
995
|
-
deleteFile: "
|
|
991
|
+
listFiles: "webview_filesync_list_files",
|
|
992
|
+
getFile: "webview_filesync_get_file",
|
|
993
|
+
uploadFile: "webview_filesync_upload_file",
|
|
994
|
+
downloadFile: "webview_filesync_download_file",
|
|
995
|
+
deleteFile: "webview_filesync_delete_file",
|
|
996
996
|
// Backends
|
|
997
|
-
listBackends: "
|
|
998
|
-
addBackend: "
|
|
999
|
-
removeBackend: "
|
|
1000
|
-
testBackend: "
|
|
997
|
+
listBackends: "webview_filesync_list_backends",
|
|
998
|
+
addBackend: "webview_filesync_add_backend",
|
|
999
|
+
removeBackend: "webview_filesync_remove_backend",
|
|
1000
|
+
testBackend: "webview_filesync_test_backend",
|
|
1001
1001
|
// Sync Rules
|
|
1002
|
-
listSyncRules: "
|
|
1003
|
-
addSyncRule: "
|
|
1004
|
-
updateSyncRule: "
|
|
1005
|
-
removeSyncRule: "
|
|
1002
|
+
listSyncRules: "webview_filesync_list_sync_rules",
|
|
1003
|
+
addSyncRule: "webview_filesync_add_sync_rule",
|
|
1004
|
+
updateSyncRule: "webview_filesync_update_sync_rule",
|
|
1005
|
+
removeSyncRule: "webview_filesync_remove_sync_rule",
|
|
1006
1006
|
// Sync Operations
|
|
1007
|
-
getSyncStatus: "
|
|
1008
|
-
triggerSync: "
|
|
1009
|
-
pauseSync: "
|
|
1010
|
-
resumeSync: "
|
|
1007
|
+
getSyncStatus: "webview_filesync_get_sync_status",
|
|
1008
|
+
triggerSync: "webview_filesync_trigger_sync",
|
|
1009
|
+
pauseSync: "webview_filesync_pause_sync",
|
|
1010
|
+
resumeSync: "webview_filesync_resume_sync",
|
|
1011
1011
|
// Conflict Resolution
|
|
1012
|
-
resolveConflict: "
|
|
1013
|
-
// UI Helpers
|
|
1012
|
+
resolveConflict: "webview_filesync_resolve_conflict",
|
|
1013
|
+
// UI Helpers (selectFolder doesn't need extension info)
|
|
1014
1014
|
selectFolder: "filesync_select_folder",
|
|
1015
|
-
scanLocal: "
|
|
1015
|
+
scanLocal: "webview_filesync_scan_local"
|
|
1016
1016
|
}
|
|
1017
1017
|
};
|
|
1018
1018
|
|