@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/vue.d.mts CHANGED
@@ -1,4 +1,4 @@
1
- import { H as HaexVaultSdk, S as StorageAPI } from './client-COvneDz1.mjs';
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-DQbCPz57.js';
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
  /**