@walkeros/core 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,24 @@
1
1
  # @walkeros/core
2
2
 
3
+ ## 4.1.1-next-1779822275564
4
+
5
+ ### Patch Changes
6
+
7
+ - b0279ee: Rename the contract inheritance key from `extends` to `extend` for
8
+ consistency with the rest of the flow config vocabulary. Contracts that
9
+ inherit from another named contract now use `"extend": "<name>"`.
10
+ - b0279ee: Add `extend` and `remove` to mapping rules. `extend` deep-merges a
11
+ partial rule onto a package-shipped default (a `null` value clears an
12
+ inherited field); `remove` strips fields from the produced payload. Rules
13
+ without either keyword keep the existing replace behavior.
14
+ - 0b7f494: The collector exposes `observers: Set<ObserverFn>` so any subscriber
15
+ can watch every step of the pipeline. Each source, transformer, destination,
16
+ and store call emits a `FlowState` record with timings, mapping match, consent
17
+ state, and skip reasons. `createTelemetryObserver` from `@walkeros/core`
18
+ batches emissions to an HTTP endpoint, and the CLI runtime picks up the
19
+ `traceUntil` flag from its heartbeat so trace mode toggles take effect without
20
+ a redeploy.
21
+
3
22
  ## 4.1.0
4
23
 
5
24
  ### Minor Changes