@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.
@@ -146,6 +146,8 @@ var FILESYSTEM_COMMANDS = {
146
146
  rename: "extension_filesystem_rename",
147
147
  /** Copy file or directory */
148
148
  copy: "extension_filesystem_copy",
149
+ /** Get well-known system directory paths */
150
+ knownPaths: "extension_filesystem_known_paths",
149
151
  // File watcher operations
150
152
  /** Start watching a directory for changes */
151
153
  watch: "extension_filesystem_watch",
@@ -595,6 +597,19 @@ var FilesystemAPI = class {
595
597
  );
596
598
  }
597
599
  // ==========================================================================
600
+ // Known Paths (System Directories)
601
+ // ==========================================================================
602
+ /**
603
+ * Get well-known system directory paths (home, pictures, downloads, etc.)
604
+ * These paths are resolved via Tauri's PathResolver and are platform-aware.
605
+ * @returns Map of known path names to their absolute paths
606
+ */
607
+ async knownPaths() {
608
+ return this.client.request(
609
+ FILESYSTEM_COMMANDS.knownPaths
610
+ );
611
+ }
612
+ // ==========================================================================
598
613
  // File Watcher Operations
599
614
  // ==========================================================================
600
615
  /**