@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/svelte.mjs CHANGED
@@ -512,6 +512,8 @@ var FILESYSTEM_COMMANDS = {
512
512
  rename: "extension_filesystem_rename",
513
513
  /** Copy file or directory */
514
514
  copy: "extension_filesystem_copy",
515
+ /** Get well-known system directory paths */
516
+ knownPaths: "extension_filesystem_known_paths",
515
517
  // File watcher operations
516
518
  /** Start watching a directory for changes */
517
519
  watch: "extension_filesystem_watch",
@@ -935,6 +937,19 @@ var FilesystemAPI = class {
935
937
  );
936
938
  }
937
939
  // ==========================================================================
940
+ // Known Paths (System Directories)
941
+ // ==========================================================================
942
+ /**
943
+ * Get well-known system directory paths (home, pictures, downloads, etc.)
944
+ * These paths are resolved via Tauri's PathResolver and are platform-aware.
945
+ * @returns Map of known path names to their absolute paths
946
+ */
947
+ async knownPaths() {
948
+ return this.client.request(
949
+ FILESYSTEM_COMMANDS.knownPaths
950
+ );
951
+ }
952
+ // ==========================================================================
938
953
  // File Watcher Operations
939
954
  // ==========================================================================
940
955
  /**