@walkeros/cli 4.1.0 → 4.1.1-next-1779485810490
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 +24 -0
- package/dist/cli.js +971 -882
- package/dist/index.d.ts +540 -114
- package/dist/index.js +157 -97
- package/dist/index.js.map +1 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# @walkeros/cli
|
|
2
2
|
|
|
3
|
+
## 4.1.1-next-1779485810490
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- c1a4188: The simulate functions (`simulateSource`, `simulateTransformer`,
|
|
8
|
+
`simulateDestination`) now return the unified `Simulation.Result` shape with
|
|
9
|
+
captured `events` and intercepted `calls`, instead of the internal push
|
|
10
|
+
result. `PushResult` no longer carries the simulate-only `captured`, `usage`,
|
|
11
|
+
and `perDestination` fields.
|
|
12
|
+
- b0279ee: Rename the contract inheritance key from `extends` to `extend` for
|
|
13
|
+
consistency with the rest of the flow config vocabulary. Contracts that
|
|
14
|
+
inherit from another named contract now use `"extend": "<name>"`.
|
|
15
|
+
- ddcd56e: The project, flow, and deployment list operations now accept optional
|
|
16
|
+
`cursor` and `limit` arguments and return a `nextCursor` to fetch the next
|
|
17
|
+
page. Listing without these arguments is unchanged and returns all results. In
|
|
18
|
+
the MCP, the `project_manage`, `flow_manage`, and `deploy_manage` tools expose
|
|
19
|
+
`cursor` and `limit` on their `list` action.
|
|
20
|
+
- Updated dependencies [b0279ee]
|
|
21
|
+
- Updated dependencies [b0279ee]
|
|
22
|
+
- @walkeros/core@4.1.1-next-1779485810490
|
|
23
|
+
- @walkeros/collector@4.1.1-next-1779485810490
|
|
24
|
+
- @walkeros/server-core@4.1.1-next-1779485810490
|
|
25
|
+
- @walkeros/server-destination-api@4.1.1-next-1779485810490
|
|
26
|
+
|
|
3
27
|
## 4.1.0
|
|
4
28
|
|
|
5
29
|
### Minor Changes
|