@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
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as nuxt_app from 'nuxt/app';
|
|
2
2
|
import { ShallowRef } from 'vue';
|
|
3
|
-
import { H as HaexVaultSdk } from '../client-
|
|
3
|
+
import { H as HaexVaultSdk } from '../client-BUsw25aA.mjs';
|
|
4
4
|
import { A as ApplicationContext } from '../types-DmCSegdY.mjs';
|
|
5
5
|
import 'drizzle-orm/sqlite-proxy';
|
|
6
6
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as nuxt_app from 'nuxt/app';
|
|
2
2
|
import { ShallowRef } from 'vue';
|
|
3
|
-
import { H as HaexVaultSdk } from '../client-
|
|
3
|
+
import { H as HaexVaultSdk } from '../client-3B1iWut9.js';
|
|
4
4
|
import { A as ApplicationContext } from '../types-DmCSegdY.js';
|
|
5
5
|
import 'drizzle-orm/sqlite-proxy';
|
|
6
6
|
|
|
@@ -148,6 +148,8 @@ var FILESYSTEM_COMMANDS = {
|
|
|
148
148
|
rename: "extension_filesystem_rename",
|
|
149
149
|
/** Copy file or directory */
|
|
150
150
|
copy: "extension_filesystem_copy",
|
|
151
|
+
/** Get well-known system directory paths */
|
|
152
|
+
knownPaths: "extension_filesystem_known_paths",
|
|
151
153
|
// File watcher operations
|
|
152
154
|
/** Start watching a directory for changes */
|
|
153
155
|
watch: "extension_filesystem_watch",
|
|
@@ -597,6 +599,19 @@ var FilesystemAPI = class {
|
|
|
597
599
|
);
|
|
598
600
|
}
|
|
599
601
|
// ==========================================================================
|
|
602
|
+
// Known Paths (System Directories)
|
|
603
|
+
// ==========================================================================
|
|
604
|
+
/**
|
|
605
|
+
* Get well-known system directory paths (home, pictures, downloads, etc.)
|
|
606
|
+
* These paths are resolved via Tauri's PathResolver and are platform-aware.
|
|
607
|
+
* @returns Map of known path names to their absolute paths
|
|
608
|
+
*/
|
|
609
|
+
async knownPaths() {
|
|
610
|
+
return this.client.request(
|
|
611
|
+
FILESYSTEM_COMMANDS.knownPaths
|
|
612
|
+
);
|
|
613
|
+
}
|
|
614
|
+
// ==========================================================================
|
|
600
615
|
// File Watcher Operations
|
|
601
616
|
// ==========================================================================
|
|
602
617
|
/**
|