@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
package/dist/vue.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-B5sRb-z5.mjs';
|
|
2
2
|
import * as drizzle_orm_sqlite_proxy from 'drizzle-orm/sqlite-proxy';
|
|
3
3
|
import { Ref } from 'vue';
|
|
4
4
|
import { H as HaexHubConfig } from './types-DiXJ5SF6.mjs';
|
package/dist/vue.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-C1V7rmBP.js';
|
|
2
2
|
import * as drizzle_orm_sqlite_proxy from 'drizzle-orm/sqlite-proxy';
|
|
3
3
|
import { Ref } from 'vue';
|
|
4
4
|
import { H as HaexHubConfig } from './types-DiXJ5SF6.js';
|
package/dist/vue.js
CHANGED
|
@@ -1237,36 +1237,36 @@ var TAURI_COMMANDS = {
|
|
|
1237
1237
|
// Response handling (called by extensions running in WebView)
|
|
1238
1238
|
respond: "webview_extension_external_respond"},
|
|
1239
1239
|
filesync: {
|
|
1240
|
-
// Spaces
|
|
1241
|
-
listSpaces: "
|
|
1242
|
-
createSpace: "
|
|
1243
|
-
deleteSpace: "
|
|
1240
|
+
// Spaces (webview_* commands extract extension info from WebviewWindow)
|
|
1241
|
+
listSpaces: "webview_filesync_list_spaces",
|
|
1242
|
+
createSpace: "webview_filesync_create_space",
|
|
1243
|
+
deleteSpace: "webview_filesync_delete_space",
|
|
1244
1244
|
// Files
|
|
1245
|
-
listFiles: "
|
|
1246
|
-
getFile: "
|
|
1247
|
-
uploadFile: "
|
|
1248
|
-
downloadFile: "
|
|
1249
|
-
deleteFile: "
|
|
1245
|
+
listFiles: "webview_filesync_list_files",
|
|
1246
|
+
getFile: "webview_filesync_get_file",
|
|
1247
|
+
uploadFile: "webview_filesync_upload_file",
|
|
1248
|
+
downloadFile: "webview_filesync_download_file",
|
|
1249
|
+
deleteFile: "webview_filesync_delete_file",
|
|
1250
1250
|
// Backends
|
|
1251
|
-
listBackends: "
|
|
1252
|
-
addBackend: "
|
|
1253
|
-
removeBackend: "
|
|
1254
|
-
testBackend: "
|
|
1251
|
+
listBackends: "webview_filesync_list_backends",
|
|
1252
|
+
addBackend: "webview_filesync_add_backend",
|
|
1253
|
+
removeBackend: "webview_filesync_remove_backend",
|
|
1254
|
+
testBackend: "webview_filesync_test_backend",
|
|
1255
1255
|
// Sync Rules
|
|
1256
|
-
listSyncRules: "
|
|
1257
|
-
addSyncRule: "
|
|
1258
|
-
updateSyncRule: "
|
|
1259
|
-
removeSyncRule: "
|
|
1256
|
+
listSyncRules: "webview_filesync_list_sync_rules",
|
|
1257
|
+
addSyncRule: "webview_filesync_add_sync_rule",
|
|
1258
|
+
updateSyncRule: "webview_filesync_update_sync_rule",
|
|
1259
|
+
removeSyncRule: "webview_filesync_remove_sync_rule",
|
|
1260
1260
|
// Sync Operations
|
|
1261
|
-
getSyncStatus: "
|
|
1262
|
-
triggerSync: "
|
|
1263
|
-
pauseSync: "
|
|
1264
|
-
resumeSync: "
|
|
1261
|
+
getSyncStatus: "webview_filesync_get_sync_status",
|
|
1262
|
+
triggerSync: "webview_filesync_trigger_sync",
|
|
1263
|
+
pauseSync: "webview_filesync_pause_sync",
|
|
1264
|
+
resumeSync: "webview_filesync_resume_sync",
|
|
1265
1265
|
// Conflict Resolution
|
|
1266
|
-
resolveConflict: "
|
|
1267
|
-
// UI Helpers
|
|
1266
|
+
resolveConflict: "webview_filesync_resolve_conflict",
|
|
1267
|
+
// UI Helpers (selectFolder doesn't need extension info)
|
|
1268
1268
|
selectFolder: "filesync_select_folder",
|
|
1269
|
-
scanLocal: "
|
|
1269
|
+
scanLocal: "webview_filesync_scan_local"
|
|
1270
1270
|
}
|
|
1271
1271
|
};
|
|
1272
1272
|
|