@walkeros/cli 4.1.0 → 4.1.1-next-1779822275564

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,37 @@
1
1
  # @walkeros/cli
2
2
 
3
+ ## 4.1.1-next-1779822275564
4
+
5
+ ### Patch Changes
6
+
7
+ - c1a4188: The simulate functions (`simulateSource`, `simulateTransformer`,
8
+ `simulateDestination`) now return the unified `Simulation.Result` shape with
9
+ captured `events` and intercepted `calls`, instead of the internal push
10
+ result. `PushResult` no longer carries the simulate-only `captured`, `usage`,
11
+ and `perDestination` fields.
12
+ - b0279ee: Rename the contract inheritance key from `extends` to `extend` for
13
+ consistency with the rest of the flow config vocabulary. Contracts that
14
+ inherit from another named contract now use `"extend": "<name>"`.
15
+ - ddcd56e: The project, flow, and deployment list operations now accept optional
16
+ `cursor` and `limit` arguments and return a `nextCursor` to fetch the next
17
+ page. Listing without these arguments is unchanged and returns all results. In
18
+ the MCP, the `project_manage`, `flow_manage`, and `deploy_manage` tools expose
19
+ `cursor` and `limit` on their `list` action.
20
+ - 0b7f494: The collector exposes `observers: Set<ObserverFn>` so any subscriber
21
+ can watch every step of the pipeline. Each source, transformer, destination,
22
+ and store call emits a `FlowState` record with timings, mapping match, consent
23
+ state, and skip reasons. `createTelemetryObserver` from `@walkeros/core`
24
+ batches emissions to an HTTP endpoint, and the CLI runtime picks up the
25
+ `traceUntil` flag from its heartbeat so trace mode toggles take effect without
26
+ a redeploy.
27
+ - Updated dependencies [b0279ee]
28
+ - Updated dependencies [b0279ee]
29
+ - Updated dependencies [0b7f494]
30
+ - @walkeros/core@4.1.1-next-1779822275564
31
+ - @walkeros/collector@4.1.1-next-1779822275564
32
+ - @walkeros/server-core@4.1.1-next-1779822275564
33
+ - @walkeros/server-destination-api@4.1.1-next-1779822275564
34
+
3
35
  ## 4.1.0
4
36
 
5
37
  ### Minor Changes