@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
package/dist/index.mjs
CHANGED
|
@@ -1366,36 +1366,36 @@ var TAURI_COMMANDS = {
|
|
|
1366
1366
|
getContext: "webview_extension_context_get"
|
|
1367
1367
|
},
|
|
1368
1368
|
filesync: {
|
|
1369
|
-
// Spaces
|
|
1370
|
-
listSpaces: "
|
|
1371
|
-
createSpace: "
|
|
1372
|
-
deleteSpace: "
|
|
1369
|
+
// Spaces (webview_* commands extract extension info from WebviewWindow)
|
|
1370
|
+
listSpaces: "webview_filesync_list_spaces",
|
|
1371
|
+
createSpace: "webview_filesync_create_space",
|
|
1372
|
+
deleteSpace: "webview_filesync_delete_space",
|
|
1373
1373
|
// Files
|
|
1374
|
-
listFiles: "
|
|
1375
|
-
getFile: "
|
|
1376
|
-
uploadFile: "
|
|
1377
|
-
downloadFile: "
|
|
1378
|
-
deleteFile: "
|
|
1374
|
+
listFiles: "webview_filesync_list_files",
|
|
1375
|
+
getFile: "webview_filesync_get_file",
|
|
1376
|
+
uploadFile: "webview_filesync_upload_file",
|
|
1377
|
+
downloadFile: "webview_filesync_download_file",
|
|
1378
|
+
deleteFile: "webview_filesync_delete_file",
|
|
1379
1379
|
// Backends
|
|
1380
|
-
listBackends: "
|
|
1381
|
-
addBackend: "
|
|
1382
|
-
removeBackend: "
|
|
1383
|
-
testBackend: "
|
|
1380
|
+
listBackends: "webview_filesync_list_backends",
|
|
1381
|
+
addBackend: "webview_filesync_add_backend",
|
|
1382
|
+
removeBackend: "webview_filesync_remove_backend",
|
|
1383
|
+
testBackend: "webview_filesync_test_backend",
|
|
1384
1384
|
// Sync Rules
|
|
1385
|
-
listSyncRules: "
|
|
1386
|
-
addSyncRule: "
|
|
1387
|
-
updateSyncRule: "
|
|
1388
|
-
removeSyncRule: "
|
|
1385
|
+
listSyncRules: "webview_filesync_list_sync_rules",
|
|
1386
|
+
addSyncRule: "webview_filesync_add_sync_rule",
|
|
1387
|
+
updateSyncRule: "webview_filesync_update_sync_rule",
|
|
1388
|
+
removeSyncRule: "webview_filesync_remove_sync_rule",
|
|
1389
1389
|
// Sync Operations
|
|
1390
|
-
getSyncStatus: "
|
|
1391
|
-
triggerSync: "
|
|
1392
|
-
pauseSync: "
|
|
1393
|
-
resumeSync: "
|
|
1390
|
+
getSyncStatus: "webview_filesync_get_sync_status",
|
|
1391
|
+
triggerSync: "webview_filesync_trigger_sync",
|
|
1392
|
+
pauseSync: "webview_filesync_pause_sync",
|
|
1393
|
+
resumeSync: "webview_filesync_resume_sync",
|
|
1394
1394
|
// Conflict Resolution
|
|
1395
|
-
resolveConflict: "
|
|
1396
|
-
// UI Helpers
|
|
1395
|
+
resolveConflict: "webview_filesync_resolve_conflict",
|
|
1396
|
+
// UI Helpers (selectFolder doesn't need extension info)
|
|
1397
1397
|
selectFolder: "filesync_select_folder",
|
|
1398
|
-
scanLocal: "
|
|
1398
|
+
scanLocal: "webview_filesync_scan_local"
|
|
1399
1399
|
}
|
|
1400
1400
|
};
|
|
1401
1401
|
|