@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.d.mts
CHANGED
|
@@ -208,29 +208,29 @@ declare const TAURI_COMMANDS: {
|
|
|
208
208
|
readonly getContext: "webview_extension_context_get";
|
|
209
209
|
};
|
|
210
210
|
readonly filesync: {
|
|
211
|
-
readonly listSpaces: "
|
|
212
|
-
readonly createSpace: "
|
|
213
|
-
readonly deleteSpace: "
|
|
214
|
-
readonly listFiles: "
|
|
215
|
-
readonly getFile: "
|
|
216
|
-
readonly uploadFile: "
|
|
217
|
-
readonly downloadFile: "
|
|
218
|
-
readonly deleteFile: "
|
|
219
|
-
readonly listBackends: "
|
|
220
|
-
readonly addBackend: "
|
|
221
|
-
readonly removeBackend: "
|
|
222
|
-
readonly testBackend: "
|
|
223
|
-
readonly listSyncRules: "
|
|
224
|
-
readonly addSyncRule: "
|
|
225
|
-
readonly updateSyncRule: "
|
|
226
|
-
readonly removeSyncRule: "
|
|
227
|
-
readonly getSyncStatus: "
|
|
228
|
-
readonly triggerSync: "
|
|
229
|
-
readonly pauseSync: "
|
|
230
|
-
readonly resumeSync: "
|
|
231
|
-
readonly resolveConflict: "
|
|
211
|
+
readonly listSpaces: "webview_filesync_list_spaces";
|
|
212
|
+
readonly createSpace: "webview_filesync_create_space";
|
|
213
|
+
readonly deleteSpace: "webview_filesync_delete_space";
|
|
214
|
+
readonly listFiles: "webview_filesync_list_files";
|
|
215
|
+
readonly getFile: "webview_filesync_get_file";
|
|
216
|
+
readonly uploadFile: "webview_filesync_upload_file";
|
|
217
|
+
readonly downloadFile: "webview_filesync_download_file";
|
|
218
|
+
readonly deleteFile: "webview_filesync_delete_file";
|
|
219
|
+
readonly listBackends: "webview_filesync_list_backends";
|
|
220
|
+
readonly addBackend: "webview_filesync_add_backend";
|
|
221
|
+
readonly removeBackend: "webview_filesync_remove_backend";
|
|
222
|
+
readonly testBackend: "webview_filesync_test_backend";
|
|
223
|
+
readonly listSyncRules: "webview_filesync_list_sync_rules";
|
|
224
|
+
readonly addSyncRule: "webview_filesync_add_sync_rule";
|
|
225
|
+
readonly updateSyncRule: "webview_filesync_update_sync_rule";
|
|
226
|
+
readonly removeSyncRule: "webview_filesync_remove_sync_rule";
|
|
227
|
+
readonly getSyncStatus: "webview_filesync_get_sync_status";
|
|
228
|
+
readonly triggerSync: "webview_filesync_trigger_sync";
|
|
229
|
+
readonly pauseSync: "webview_filesync_pause_sync";
|
|
230
|
+
readonly resumeSync: "webview_filesync_resume_sync";
|
|
231
|
+
readonly resolveConflict: "webview_filesync_resolve_conflict";
|
|
232
232
|
readonly selectFolder: "filesync_select_folder";
|
|
233
|
-
readonly scanLocal: "
|
|
233
|
+
readonly scanLocal: "webview_filesync_scan_local";
|
|
234
234
|
};
|
|
235
235
|
};
|
|
236
236
|
type TauriCommand = (typeof TAURI_COMMANDS.database)[keyof typeof TAURI_COMMANDS.database] | (typeof TAURI_COMMANDS.permissions)[keyof typeof TAURI_COMMANDS.permissions] | (typeof TAURI_COMMANDS.web)[keyof typeof TAURI_COMMANDS.web] | (typeof TAURI_COMMANDS.filesystem)[keyof typeof TAURI_COMMANDS.filesystem] | (typeof TAURI_COMMANDS.external)[keyof typeof TAURI_COMMANDS.external] | (typeof TAURI_COMMANDS.extension)[keyof typeof TAURI_COMMANDS.extension] | (typeof TAURI_COMMANDS.filesync)[keyof typeof TAURI_COMMANDS.filesync];
|
package/dist/index.d.ts
CHANGED
|
@@ -208,29 +208,29 @@ declare const TAURI_COMMANDS: {
|
|
|
208
208
|
readonly getContext: "webview_extension_context_get";
|
|
209
209
|
};
|
|
210
210
|
readonly filesync: {
|
|
211
|
-
readonly listSpaces: "
|
|
212
|
-
readonly createSpace: "
|
|
213
|
-
readonly deleteSpace: "
|
|
214
|
-
readonly listFiles: "
|
|
215
|
-
readonly getFile: "
|
|
216
|
-
readonly uploadFile: "
|
|
217
|
-
readonly downloadFile: "
|
|
218
|
-
readonly deleteFile: "
|
|
219
|
-
readonly listBackends: "
|
|
220
|
-
readonly addBackend: "
|
|
221
|
-
readonly removeBackend: "
|
|
222
|
-
readonly testBackend: "
|
|
223
|
-
readonly listSyncRules: "
|
|
224
|
-
readonly addSyncRule: "
|
|
225
|
-
readonly updateSyncRule: "
|
|
226
|
-
readonly removeSyncRule: "
|
|
227
|
-
readonly getSyncStatus: "
|
|
228
|
-
readonly triggerSync: "
|
|
229
|
-
readonly pauseSync: "
|
|
230
|
-
readonly resumeSync: "
|
|
231
|
-
readonly resolveConflict: "
|
|
211
|
+
readonly listSpaces: "webview_filesync_list_spaces";
|
|
212
|
+
readonly createSpace: "webview_filesync_create_space";
|
|
213
|
+
readonly deleteSpace: "webview_filesync_delete_space";
|
|
214
|
+
readonly listFiles: "webview_filesync_list_files";
|
|
215
|
+
readonly getFile: "webview_filesync_get_file";
|
|
216
|
+
readonly uploadFile: "webview_filesync_upload_file";
|
|
217
|
+
readonly downloadFile: "webview_filesync_download_file";
|
|
218
|
+
readonly deleteFile: "webview_filesync_delete_file";
|
|
219
|
+
readonly listBackends: "webview_filesync_list_backends";
|
|
220
|
+
readonly addBackend: "webview_filesync_add_backend";
|
|
221
|
+
readonly removeBackend: "webview_filesync_remove_backend";
|
|
222
|
+
readonly testBackend: "webview_filesync_test_backend";
|
|
223
|
+
readonly listSyncRules: "webview_filesync_list_sync_rules";
|
|
224
|
+
readonly addSyncRule: "webview_filesync_add_sync_rule";
|
|
225
|
+
readonly updateSyncRule: "webview_filesync_update_sync_rule";
|
|
226
|
+
readonly removeSyncRule: "webview_filesync_remove_sync_rule";
|
|
227
|
+
readonly getSyncStatus: "webview_filesync_get_sync_status";
|
|
228
|
+
readonly triggerSync: "webview_filesync_trigger_sync";
|
|
229
|
+
readonly pauseSync: "webview_filesync_pause_sync";
|
|
230
|
+
readonly resumeSync: "webview_filesync_resume_sync";
|
|
231
|
+
readonly resolveConflict: "webview_filesync_resolve_conflict";
|
|
232
232
|
readonly selectFolder: "filesync_select_folder";
|
|
233
|
-
readonly scanLocal: "
|
|
233
|
+
readonly scanLocal: "webview_filesync_scan_local";
|
|
234
234
|
};
|
|
235
235
|
};
|
|
236
236
|
type TauriCommand = (typeof TAURI_COMMANDS.database)[keyof typeof TAURI_COMMANDS.database] | (typeof TAURI_COMMANDS.permissions)[keyof typeof TAURI_COMMANDS.permissions] | (typeof TAURI_COMMANDS.web)[keyof typeof TAURI_COMMANDS.web] | (typeof TAURI_COMMANDS.filesystem)[keyof typeof TAURI_COMMANDS.filesystem] | (typeof TAURI_COMMANDS.external)[keyof typeof TAURI_COMMANDS.external] | (typeof TAURI_COMMANDS.extension)[keyof typeof TAURI_COMMANDS.extension] | (typeof TAURI_COMMANDS.filesync)[keyof typeof TAURI_COMMANDS.filesync];
|
package/dist/index.js
CHANGED
|
@@ -1368,36 +1368,36 @@ var TAURI_COMMANDS = {
|
|
|
1368
1368
|
getContext: "webview_extension_context_get"
|
|
1369
1369
|
},
|
|
1370
1370
|
filesync: {
|
|
1371
|
-
// Spaces
|
|
1372
|
-
listSpaces: "
|
|
1373
|
-
createSpace: "
|
|
1374
|
-
deleteSpace: "
|
|
1371
|
+
// Spaces (webview_* commands extract extension info from WebviewWindow)
|
|
1372
|
+
listSpaces: "webview_filesync_list_spaces",
|
|
1373
|
+
createSpace: "webview_filesync_create_space",
|
|
1374
|
+
deleteSpace: "webview_filesync_delete_space",
|
|
1375
1375
|
// Files
|
|
1376
|
-
listFiles: "
|
|
1377
|
-
getFile: "
|
|
1378
|
-
uploadFile: "
|
|
1379
|
-
downloadFile: "
|
|
1380
|
-
deleteFile: "
|
|
1376
|
+
listFiles: "webview_filesync_list_files",
|
|
1377
|
+
getFile: "webview_filesync_get_file",
|
|
1378
|
+
uploadFile: "webview_filesync_upload_file",
|
|
1379
|
+
downloadFile: "webview_filesync_download_file",
|
|
1380
|
+
deleteFile: "webview_filesync_delete_file",
|
|
1381
1381
|
// Backends
|
|
1382
|
-
listBackends: "
|
|
1383
|
-
addBackend: "
|
|
1384
|
-
removeBackend: "
|
|
1385
|
-
testBackend: "
|
|
1382
|
+
listBackends: "webview_filesync_list_backends",
|
|
1383
|
+
addBackend: "webview_filesync_add_backend",
|
|
1384
|
+
removeBackend: "webview_filesync_remove_backend",
|
|
1385
|
+
testBackend: "webview_filesync_test_backend",
|
|
1386
1386
|
// Sync Rules
|
|
1387
|
-
listSyncRules: "
|
|
1388
|
-
addSyncRule: "
|
|
1389
|
-
updateSyncRule: "
|
|
1390
|
-
removeSyncRule: "
|
|
1387
|
+
listSyncRules: "webview_filesync_list_sync_rules",
|
|
1388
|
+
addSyncRule: "webview_filesync_add_sync_rule",
|
|
1389
|
+
updateSyncRule: "webview_filesync_update_sync_rule",
|
|
1390
|
+
removeSyncRule: "webview_filesync_remove_sync_rule",
|
|
1391
1391
|
// Sync Operations
|
|
1392
|
-
getSyncStatus: "
|
|
1393
|
-
triggerSync: "
|
|
1394
|
-
pauseSync: "
|
|
1395
|
-
resumeSync: "
|
|
1392
|
+
getSyncStatus: "webview_filesync_get_sync_status",
|
|
1393
|
+
triggerSync: "webview_filesync_trigger_sync",
|
|
1394
|
+
pauseSync: "webview_filesync_pause_sync",
|
|
1395
|
+
resumeSync: "webview_filesync_resume_sync",
|
|
1396
1396
|
// Conflict Resolution
|
|
1397
|
-
resolveConflict: "
|
|
1398
|
-
// UI Helpers
|
|
1397
|
+
resolveConflict: "webview_filesync_resolve_conflict",
|
|
1398
|
+
// UI Helpers (selectFolder doesn't need extension info)
|
|
1399
1399
|
selectFolder: "filesync_select_folder",
|
|
1400
|
-
scanLocal: "
|
|
1400
|
+
scanLocal: "webview_filesync_scan_local"
|
|
1401
1401
|
}
|
|
1402
1402
|
};
|
|
1403
1403
|
|