@haex-space/vault-sdk 2.7.0 → 2.7.2

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.
@@ -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-COvneDz1.mjs';
3
+ import { H as HaexVaultSdk } from '../client-DX1-dzQj.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-DQbCPz57.js';
3
+ import { H as HaexVaultSdk } from '../client-DTWWB8gD.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
  /**