@haex-space/vault-sdk 2.7.0 → 2.7.1
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-DQbCPz57.d.ts → client-3B1iWut9.d.ts} +24 -1
- package/dist/{client-COvneDz1.d.mts → client-BUsw25aA.d.mts} +24 -1
- package/dist/index.d.mts +5 -2
- package/dist/index.d.ts +5 -2
- package/dist/index.js +25 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +25 -1
- 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 +15 -0
- package/dist/react.js.map +1 -1
- package/dist/react.mjs +15 -0
- 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 +15 -0
- package/dist/runtime/nuxt.plugin.client.js.map +1 -1
- package/dist/runtime/nuxt.plugin.client.mjs +15 -0
- 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 +15 -0
- package/dist/svelte.js.map +1 -1
- package/dist/svelte.mjs +15 -0
- 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 +15 -0
- package/dist/vue.js.map +1 -1
- package/dist/vue.mjs +15 -0
- 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-BUsw25aA.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-DmCSegdY.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-3B1iWut9.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-DmCSegdY.js';
|
package/dist/vue.js
CHANGED
|
@@ -514,6 +514,8 @@ var FILESYSTEM_COMMANDS = {
|
|
|
514
514
|
rename: "extension_filesystem_rename",
|
|
515
515
|
/** Copy file or directory */
|
|
516
516
|
copy: "extension_filesystem_copy",
|
|
517
|
+
/** Get well-known system directory paths */
|
|
518
|
+
knownPaths: "extension_filesystem_known_paths",
|
|
517
519
|
// File watcher operations
|
|
518
520
|
/** Start watching a directory for changes */
|
|
519
521
|
watch: "extension_filesystem_watch",
|
|
@@ -937,6 +939,19 @@ var FilesystemAPI = class {
|
|
|
937
939
|
);
|
|
938
940
|
}
|
|
939
941
|
// ==========================================================================
|
|
942
|
+
// Known Paths (System Directories)
|
|
943
|
+
// ==========================================================================
|
|
944
|
+
/**
|
|
945
|
+
* Get well-known system directory paths (home, pictures, downloads, etc.)
|
|
946
|
+
* These paths are resolved via Tauri's PathResolver and are platform-aware.
|
|
947
|
+
* @returns Map of known path names to their absolute paths
|
|
948
|
+
*/
|
|
949
|
+
async knownPaths() {
|
|
950
|
+
return this.client.request(
|
|
951
|
+
FILESYSTEM_COMMANDS.knownPaths
|
|
952
|
+
);
|
|
953
|
+
}
|
|
954
|
+
// ==========================================================================
|
|
940
955
|
// File Watcher Operations
|
|
941
956
|
// ==========================================================================
|
|
942
957
|
/**
|