@walkeros/cli 4.2.0-next-1780909874350 → 4.2.0-next-1781000333052
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 +26 -5
- package/dist/cli.js +2839 -1586
- package/dist/examples/flow-complete.json +0 -11
- package/dist/examples/index.js +0 -11
- package/dist/examples/index.js.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +71 -29
- package/dist/index.js.map +1 -1
- package/examples/flow-complete.json +0 -11
- package/package.json +8 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @walkeros/cli
|
|
2
2
|
|
|
3
|
-
## 4.2.0-next-
|
|
3
|
+
## 4.2.0-next-1781000333052
|
|
4
4
|
|
|
5
5
|
### Minor Changes
|
|
6
6
|
|
|
@@ -47,6 +47,11 @@
|
|
|
47
47
|
custom domains, entitlements, LLM settings, chat sessions, MCP tokens,
|
|
48
48
|
runners, and the package catalog. No runtime behavior change; clients gain
|
|
49
49
|
accurate types for these endpoints.
|
|
50
|
+
- 18c9469: Browser flow bundles are now emitted as an IIFE so all internal code
|
|
51
|
+
stays inside a private scope. Previously the bundled helper functions could
|
|
52
|
+
leak onto the global `window` object and collide with other scripts on the
|
|
53
|
+
page, such as Google Analytics or a consent manager. Server bundles are
|
|
54
|
+
unchanged and still emit ESM.
|
|
50
55
|
- b98474f: Source-level mapping examples for the dataLayer source now key on the
|
|
51
56
|
prefix as entity and the gtag action as action: `mapping.<prefix>.<action>`.
|
|
52
57
|
The shipped `examples/mapping.ts`, the comprehensive `flow-complete.json`
|
|
@@ -81,7 +86,20 @@
|
|
|
81
86
|
without a trace poll. When the telemetry options omit `traceUrl`, the bundle
|
|
82
87
|
emits at a fixed level with no polling, suited to short-lived, URL-opted-in
|
|
83
88
|
sessions. Bundles that pass `traceUrl` keep the existing poll behavior.
|
|
89
|
+
- f1c74e8: New `@walkeros/transformer-validate` transformer validates events
|
|
90
|
+
against JSON Schema contracts. It runs in both web and server flows, supports
|
|
91
|
+
strict and pass modes, and writes the verdict and error list to configurable
|
|
92
|
+
paths so you can gate or observe event quality.
|
|
93
|
+
|
|
94
|
+
The declarative per-step `validate` field on sources, transformers, and
|
|
95
|
+
destinations is removed. Define event shapes in the top-level `contract` and
|
|
96
|
+
enforce them at runtime by adding a `transformer-validate` step that
|
|
97
|
+
references them via `$contract.<name>`; `format: true` still checks an event
|
|
98
|
+
is a valid `WalkerOS.PartialEvent`. Design-time validation now checks step
|
|
99
|
+
examples against the resolved contract.
|
|
100
|
+
|
|
84
101
|
- Updated dependencies [76d32c1]
|
|
102
|
+
- Updated dependencies [18c9469]
|
|
85
103
|
- Updated dependencies [908d6f0]
|
|
86
104
|
- Updated dependencies [654ba38]
|
|
87
105
|
- Updated dependencies [c27d3c1]
|
|
@@ -97,10 +115,13 @@
|
|
|
97
115
|
- Updated dependencies [6a72a32]
|
|
98
116
|
- Updated dependencies [3eb2467]
|
|
99
117
|
- Updated dependencies [7d8ebf9]
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
- @walkeros/
|
|
103
|
-
- @walkeros/
|
|
118
|
+
- Updated dependencies [f1c74e8]
|
|
119
|
+
- Updated dependencies [18c9469]
|
|
120
|
+
- @walkeros/core@4.2.0-next-1781000333052
|
|
121
|
+
- @walkeros/collector@4.2.0-next-1781000333052
|
|
122
|
+
- @walkeros/server-core@4.2.0-next-1781000333052
|
|
123
|
+
- @walkeros/server-destination-api@4.2.0-next-1781000333052
|
|
124
|
+
- @walkeros/transformer-validate@4.2.0-next-1781000333052
|
|
104
125
|
|
|
105
126
|
## 4.1.2
|
|
106
127
|
|