@edenapp/types 0.6.3 → 0.6.5

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/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # @edenapp/types
2
2
 
3
+ ## 0.6.5
4
+
5
+ ## 0.6.4
6
+
3
7
  ## 0.6.3
4
8
 
5
9
  ### Patch Changes
@@ -339,6 +339,13 @@ export interface FsCommands {
339
339
  args: { path: string };
340
340
  response: import("./index").FileStats;
341
341
  };
342
+ /**
343
+ * Resolve an Eden path to the underlying OS path.
344
+ */
345
+ "fs/resolve": {
346
+ args: { path: string };
347
+ response: { realPath: string };
348
+ };
342
349
  /**
343
350
  * Search for files and directories using glob patterns.
344
351
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@edenapp/types",
3
- "version": "0.6.3",
3
+ "version": "0.6.5",
4
4
  "description": "TypeScript type definitions for the Eden platform",
5
5
  "types": "index.d.ts",
6
6
  "author": "Dariusz Majnert",