@walkeros/cli 4.2.0-next-1781000333052 → 4.2.1-next-1781526381392
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 +46 -11
- package/dist/cli.js +325 -89
- package/dist/index.d.ts +855 -119
- package/dist/index.js +338 -94
- package/dist/index.js.map +1 -1
- package/openapi/spec.json +2599 -1580
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,40 @@
|
|
|
1
1
|
# @walkeros/cli
|
|
2
2
|
|
|
3
|
-
## 4.2.
|
|
3
|
+
## 4.2.1-next-1781526381392
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- b03bfce: `walkeros deploy` now waits long enough to cover a full server deploy
|
|
8
|
+
by default, so a slow but healthy deploy is no longer aborted early and
|
|
9
|
+
reported as a failure. Each run sends a fresh idempotency key, so retrying
|
|
10
|
+
after a failure starts a new deploy instead of replaying the previous result.
|
|
11
|
+
Failures print a stable, machine-readable error code (with a `Retry-After`
|
|
12
|
+
hint on rate limits), and `deploy create` no longer prints an empty token
|
|
13
|
+
placeholder.
|
|
14
|
+
- ec84331: The managed flow runner now retries its bundle, config, and secret
|
|
15
|
+
fetches on transient failures (timeouts, network errors, 5xx) with bounded,
|
|
16
|
+
jittered backoff capped well inside the container health window, and the
|
|
17
|
+
secret fetch is now bounded by a timeout. A brief outage while a flow
|
|
18
|
+
container starts no longer hard-fails the run.
|
|
19
|
+
- 5cbcd23: `walkeros run` reads two new environment variables.
|
|
20
|
+
`WALKEROS_OBSERVE_LEVEL` sets the runtime's baseline telemetry level (`off`,
|
|
21
|
+
`standard`, or `trace`). `WALKEROS_CONFIG_FROZEN` (`1` or `true`) serves the
|
|
22
|
+
bundle as an immutable snapshot: secrets are still injected at boot, but
|
|
23
|
+
config hot-swap and heartbeat are disabled.
|
|
24
|
+
- 5cbcd23: All four simulate functions (`simulateSource`, `simulateTransformer`,
|
|
25
|
+
`simulateCollector`, `simulateDestination`) accept a new `data` option to run
|
|
26
|
+
an existing bundle with updated configuration values, without rebundling. The
|
|
27
|
+
new `buildDataPayload`, `classifyStepProperties`, and `containsCodeMarkers`
|
|
28
|
+
exports build and inspect that payload. Destination simulation results now
|
|
29
|
+
include `mappingKey`, the entity-action key of the matched mapping rule.
|
|
30
|
+
- Updated dependencies [5cbcd23]
|
|
31
|
+
- @walkeros/core@4.2.1-next-1781526381392
|
|
32
|
+
- @walkeros/collector@4.2.1-next-1781526381392
|
|
33
|
+
- @walkeros/server-core@4.2.1-next-1781526381392
|
|
34
|
+
- @walkeros/server-destination-api@4.2.1-next-1781526381392
|
|
35
|
+
- @walkeros/transformer-validate@4.2.1-next-1781526381392
|
|
36
|
+
|
|
37
|
+
## 4.2.0
|
|
4
38
|
|
|
5
39
|
### Minor Changes
|
|
6
40
|
|
|
@@ -47,7 +81,7 @@
|
|
|
47
81
|
custom domains, entitlements, LLM settings, chat sessions, MCP tokens,
|
|
48
82
|
runners, and the package catalog. No runtime behavior change; clients gain
|
|
49
83
|
accurate types for these endpoints.
|
|
50
|
-
-
|
|
84
|
+
- 5b1a134: Browser flow bundles are now emitted as an IIFE so all internal code
|
|
51
85
|
stays inside a private scope. Previously the bundled helper functions could
|
|
52
86
|
leak onto the global `window` object and collide with other scripts on the
|
|
53
87
|
page, such as Google Analytics or a consent manager. Server bundles are
|
|
@@ -86,7 +120,7 @@
|
|
|
86
120
|
without a trace poll. When the telemetry options omit `traceUrl`, the bundle
|
|
87
121
|
emits at a fixed level with no polling, suited to short-lived, URL-opted-in
|
|
88
122
|
sessions. Bundles that pass `traceUrl` keep the existing poll behavior.
|
|
89
|
-
-
|
|
123
|
+
- 23d4b86: New `@walkeros/transformer-validate` transformer validates events
|
|
90
124
|
against JSON Schema contracts. It runs in both web and server flows, supports
|
|
91
125
|
strict and pass modes, and writes the verdict and error list to configurable
|
|
92
126
|
paths so you can gate or observe event quality.
|
|
@@ -99,7 +133,7 @@
|
|
|
99
133
|
examples against the resolved contract.
|
|
100
134
|
|
|
101
135
|
- Updated dependencies [76d32c1]
|
|
102
|
-
- Updated dependencies [
|
|
136
|
+
- Updated dependencies [5b1a134]
|
|
103
137
|
- Updated dependencies [908d6f0]
|
|
104
138
|
- Updated dependencies [654ba38]
|
|
105
139
|
- Updated dependencies [c27d3c1]
|
|
@@ -114,14 +148,15 @@
|
|
|
114
148
|
- Updated dependencies [654ba38]
|
|
115
149
|
- Updated dependencies [6a72a32]
|
|
116
150
|
- Updated dependencies [3eb2467]
|
|
117
|
-
- Updated dependencies [
|
|
118
|
-
- Updated dependencies [
|
|
151
|
+
- Updated dependencies [5b1a134]
|
|
152
|
+
- Updated dependencies [23d4b86]
|
|
119
153
|
- Updated dependencies [18c9469]
|
|
120
|
-
|
|
121
|
-
- @walkeros/
|
|
122
|
-
- @walkeros/
|
|
123
|
-
- @walkeros/server-
|
|
124
|
-
- @walkeros/
|
|
154
|
+
- Updated dependencies [0cad016]
|
|
155
|
+
- @walkeros/core@4.2.0
|
|
156
|
+
- @walkeros/collector@4.2.0
|
|
157
|
+
- @walkeros/server-core@4.2.0
|
|
158
|
+
- @walkeros/server-destination-api@4.2.0
|
|
159
|
+
- @walkeros/transformer-validate@4.2.0
|
|
125
160
|
|
|
126
161
|
## 4.1.2
|
|
127
162
|
|