@walkeros/cli 4.2.0-next-1780610489068 → 4.2.0-next-1780690800063
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 +22 -5
- package/dist/cli.js +135 -132
- package/dist/examples/flow-complete.json +15 -7
- package/dist/examples/index.js +15 -7
- package/dist/examples/index.js.map +1 -1
- package/dist/index.d.ts +4923 -902
- package/dist/index.js +66 -3
- package/dist/index.js.map +1 -1
- package/examples/flow-complete.json +15 -7
- package/openapi/spec.json +7454 -2016
- package/package.json +7 -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-1780690800063
|
|
4
4
|
|
|
5
5
|
### Minor Changes
|
|
6
6
|
|
|
@@ -29,6 +29,10 @@
|
|
|
29
29
|
without a redeploy. A future trace window upgrades a flow to full inbound and
|
|
30
30
|
outbound recording, and a null or past window reverts to the flow's `observe`
|
|
31
31
|
baseline and self-expires.
|
|
32
|
+
- e8f6909: Add a `secret_manage` MCP tool (and matching CLI functions) to manage
|
|
33
|
+
a flow's secrets. List secret metadata, create, rotate, and delete secrets
|
|
34
|
+
that flow steps reference as `$env.<NAME>`. Values are write-only: encrypted
|
|
35
|
+
at rest and never returned or logged.
|
|
32
36
|
- 6a72a32: Source simulation gains a `collector` step that runs the real
|
|
33
37
|
collector enrichment and returns the fully enriched event. Transformer
|
|
34
38
|
simulation now accepts an optional raw `ingest` so request decoders like GA4
|
|
@@ -37,6 +41,12 @@
|
|
|
37
41
|
|
|
38
42
|
### Patch Changes
|
|
39
43
|
|
|
44
|
+
- e8f6909: The bundled API contract (`spec.json` and the generated
|
|
45
|
+
`api.gen.d.ts`) now covers the full served surface, adding typed paths for
|
|
46
|
+
service accounts, invitations, billing, deployments and their sub-resources,
|
|
47
|
+
custom domains, entitlements, LLM settings, chat sessions, MCP tokens,
|
|
48
|
+
runners, and the package catalog. No runtime behavior change; clients gain
|
|
49
|
+
accurate types for these endpoints.
|
|
40
50
|
- b98474f: Source-level mapping examples for the dataLayer source now key on the
|
|
41
51
|
prefix as entity and the gtag action as action: `mapping.<prefix>.<action>`.
|
|
42
52
|
The shipped `examples/mapping.ts`, the comprehensive `flow-complete.json`
|
|
@@ -47,6 +57,11 @@
|
|
|
47
57
|
Commander 15, better-sqlite3 12, @libsql/client 0.17, Google Cloud
|
|
48
58
|
functions-framework 5, mixpanel 0.22, and jsdom 29. No public API changes;
|
|
49
59
|
installs now pull the current versions of these SDKs.
|
|
60
|
+
- e8f6909: Documentation fix: server source `config.ingest` examples now use the
|
|
61
|
+
`map` operator with direct request field paths instead of a bare object. A
|
|
62
|
+
bare object like `{ url: 'req.url' }` is silently inert, so the ingest stayed
|
|
63
|
+
empty and downstream `ingest.*` fields never resolved. Affects package hints,
|
|
64
|
+
READMEs, the core source type docs, and the bundled CLI example.
|
|
50
65
|
- d39a6a1: Bundle skeletons now expose each package's dev exports through a lazy
|
|
51
66
|
loader. Production deploy bundles drop it entirely, so a shipped `walker.js`
|
|
52
67
|
never carries the dev schema graph, while in-process simulate and push inline
|
|
@@ -70,19 +85,21 @@
|
|
|
70
85
|
- Updated dependencies [908d6f0]
|
|
71
86
|
- Updated dependencies [654ba38]
|
|
72
87
|
- Updated dependencies [c27d3c1]
|
|
88
|
+
- Updated dependencies [e8f6909]
|
|
73
89
|
- Updated dependencies [f4a9013]
|
|
74
90
|
- Updated dependencies [d65bbde]
|
|
75
91
|
- Updated dependencies [2d64ed2]
|
|
92
|
+
- Updated dependencies [e8f6909]
|
|
76
93
|
- Updated dependencies [776e5f9]
|
|
77
94
|
- Updated dependencies [c27d3c1]
|
|
78
95
|
- Updated dependencies [126c0f1]
|
|
79
96
|
- Updated dependencies [654ba38]
|
|
80
97
|
- Updated dependencies [6a72a32]
|
|
81
98
|
- Updated dependencies [3eb2467]
|
|
82
|
-
- @walkeros/core@4.2.0-next-
|
|
83
|
-
- @walkeros/collector@4.2.0-next-
|
|
84
|
-
- @walkeros/server-core@4.2.0-next-
|
|
85
|
-
- @walkeros/server-destination-api@4.2.0-next-
|
|
99
|
+
- @walkeros/core@4.2.0-next-1780690800063
|
|
100
|
+
- @walkeros/collector@4.2.0-next-1780690800063
|
|
101
|
+
- @walkeros/server-core@4.2.0-next-1780690800063
|
|
102
|
+
- @walkeros/server-destination-api@4.2.0-next-1780690800063
|
|
86
103
|
|
|
87
104
|
## 4.1.2
|
|
88
105
|
|