@walkeros/cli 4.2.0-next-1780420352914 → 4.2.0-next-1780571888599
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 +723 -532
- package/dist/index.d.ts +455 -17
- package/dist/index.js +243 -47
- package/dist/index.js.map +1 -1
- package/openapi/spec.json +6696 -0
- package/package.json +11 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @walkeros/cli
|
|
2
2
|
|
|
3
|
-
## 4.2.0-next-
|
|
3
|
+
## 4.2.0-next-1780571888599
|
|
4
4
|
|
|
5
5
|
### Minor Changes
|
|
6
6
|
|
|
@@ -9,6 +9,12 @@
|
|
|
9
9
|
server flows with external step packages resolve them at runtime.
|
|
10
10
|
`walkeros bundle -o flow.tar.gz` packs a server bundle directory into that
|
|
11
11
|
archive. Web single-file bundles do not support archive output.
|
|
12
|
+
- 9d066cc: Preview creation can now target a deployed version: pass
|
|
13
|
+
`source: { kind: 'deployment-version', deploymentVersionId }` to
|
|
14
|
+
`createPreview` (CLI) or the MCP `flow_manage` `preview_create` action to
|
|
15
|
+
preview what's live instead of the flow's draft. Deleting a preview no longer
|
|
16
|
+
errors on the empty `204 No Content` response and resolves to a confirmation
|
|
17
|
+
record.
|
|
12
18
|
- 654ba38: Trace telemetry now activates at runtime by polling the deployment's
|
|
13
19
|
trace window, so web and server flows start and stop full-payload recording
|
|
14
20
|
without a redeploy. A future trace window upgrades a flow to full inbound and
|
|
@@ -27,19 +33,34 @@
|
|
|
27
33
|
Commander 15, better-sqlite3 12, @libsql/client 0.17, Google Cloud
|
|
28
34
|
functions-framework 5, mixpanel 0.22, and jsdom 29. No public API changes;
|
|
29
35
|
installs now pull the current versions of these SDKs.
|
|
36
|
+
- 9d066cc: The MCP now loads flows by ID, requires the `flow_simulate` `step`
|
|
37
|
+
parameter it always enforced, and adds a `diagnostics` tool reporting client
|
|
38
|
+
and CLI versions plus backend reachability. Package discovery returns a
|
|
39
|
+
complete catalog with a warning when a source degrades, instead of silently
|
|
40
|
+
caching partial results, and returned flow configs are round-trip safe
|
|
41
|
+
(structural values stay literal). The demo source can now be simulated as a
|
|
42
|
+
source step; the CLI also exports `VERSION` and `resolveAppUrl` and clears a
|
|
43
|
+
deleted default project.
|
|
44
|
+
- e2a60ae: The wrapped browser bundle can now install a telemetry observer
|
|
45
|
+
without a trace poll. When the telemetry options omit `traceUrl`, the bundle
|
|
46
|
+
emits at a fixed level with no polling, suited to short-lived, URL-opted-in
|
|
47
|
+
sessions. Bundles that pass `traceUrl` keep the existing poll behavior.
|
|
48
|
+
- Updated dependencies [76d32c1]
|
|
30
49
|
- Updated dependencies [908d6f0]
|
|
31
50
|
- Updated dependencies [654ba38]
|
|
51
|
+
- Updated dependencies [c27d3c1]
|
|
32
52
|
- Updated dependencies [f4a9013]
|
|
33
53
|
- Updated dependencies [d65bbde]
|
|
34
54
|
- Updated dependencies [2d64ed2]
|
|
35
55
|
- Updated dependencies [776e5f9]
|
|
56
|
+
- Updated dependencies [c27d3c1]
|
|
36
57
|
- Updated dependencies [126c0f1]
|
|
37
58
|
- Updated dependencies [654ba38]
|
|
38
59
|
- Updated dependencies [3eb2467]
|
|
39
|
-
- @walkeros/
|
|
40
|
-
- @walkeros/
|
|
41
|
-
- @walkeros/server-core@4.2.0-next-
|
|
42
|
-
- @walkeros/server-destination-api@4.2.0-next-
|
|
60
|
+
- @walkeros/core@4.2.0-next-1780571888599
|
|
61
|
+
- @walkeros/collector@4.2.0-next-1780571888599
|
|
62
|
+
- @walkeros/server-core@4.2.0-next-1780571888599
|
|
63
|
+
- @walkeros/server-destination-api@4.2.0-next-1780571888599
|
|
43
64
|
|
|
44
65
|
## 4.1.2
|
|
45
66
|
|