@walkeros/cli 4.3.0 → 4.3.1
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 +28 -0
- package/dist/cli.js +1266 -901
- package/dist/index.d.ts +40 -38
- package/dist/index.js +55 -121
- package/dist/index.js.map +1 -1
- package/openapi/spec.json +77 -13
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# @walkeros/cli
|
|
2
2
|
|
|
3
|
+
## 4.3.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- f2030ab: `walkeros validate --type contract` now rejects the flat contract
|
|
8
|
+
shape (a bare entity-action map, or a `$`-prefixed root key) with a
|
|
9
|
+
`FLAT_CONTRACT_SHAPE` error, and warns on unrecognized keys instead of
|
|
10
|
+
ignoring them. Rule-level `tagging` and `schema` fields are also checked for
|
|
11
|
+
their expected types.
|
|
12
|
+
- 2d6ab82: Connect a running flow to an observation session and watch its live
|
|
13
|
+
events from web, server, or bundled runtimes. Commit only a public observer
|
|
14
|
+
URL and project binding; the per-session credential arrives out-of-band, so no
|
|
15
|
+
secrets land in code or artifacts. Ingest posts carry a versioned envelope
|
|
16
|
+
with release provenance, and `walkeros observe start` opens sessions from the
|
|
17
|
+
terminal.
|
|
18
|
+
- 747e42f: The deprecated telemetry bundle options that baked a plaintext ingest
|
|
19
|
+
token into wrapped browser bundles are removed; observation wiring now always
|
|
20
|
+
uses the bake-nothing `observe` connect config. `walkeros observe start` sends
|
|
21
|
+
`level` and `replace`, renders the activation URL, web credential, server env
|
|
22
|
+
block, expiry, and record count, and keeps the session warm while waiting.
|
|
23
|
+
- Updated dependencies [f2030ab]
|
|
24
|
+
- Updated dependencies [2d6ab82]
|
|
25
|
+
- @walkeros/core@4.3.1
|
|
26
|
+
- @walkeros/collector@4.3.1
|
|
27
|
+
- @walkeros/server-core@4.3.1
|
|
28
|
+
- @walkeros/server-destination-api@4.3.1
|
|
29
|
+
- @walkeros/transformer-validate@4.3.1
|
|
30
|
+
|
|
3
31
|
## 4.3.0
|
|
4
32
|
|
|
5
33
|
### Minor Changes
|