@ontrails/core 1.0.0-beta.16 → 1.0.0-beta.18

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,13 @@
1
1
  # @ontrails/core
2
2
 
3
+ ## 1.0.0-beta.18
4
+
5
+ ## 1.0.0-beta.17
6
+
7
+ ### Patch Changes
8
+
9
+ - 3dc8254: Fix README TypeScript snippets so the expanded documentation snippet gate can verify them.
10
+
3
11
  ## 1.0.0-beta.16
4
12
 
5
13
  ### Major Changes
package/README.md CHANGED
@@ -59,11 +59,11 @@ const onboard = trail('entity.onboard', {
59
59
 
60
60
  ```typescript
61
61
  // executeTrail — surfaces use this directly
62
- const result = await executeTrail(greet, { name: 'Alice' });
62
+ const surfaceResult = await executeTrail(greet, { name: 'Alice' });
63
63
 
64
64
  // run — headless execution by trail ID
65
- const result = await run(graph, 'greet', { name: 'Alice' });
66
- if (result.isOk()) console.log(result.value);
65
+ const runResult = await run(graph, 'greet', { name: 'Alice' });
66
+ if (runResult.isOk()) console.log(runResult.value);
67
67
  ```
68
68
 
69
69
  ### Topo accessors
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ontrails/core",
3
- "version": "1.0.0-beta.16",
3
+ "version": "1.0.0-beta.18",
4
4
  "files": [
5
5
  "src/**/*.ts",
6
6
  "!src/**/__tests__/**",