@walkeros/cli 3.0.1 → 3.1.0-next-1773969156384
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 -0
- package/dist/cli.js +3494 -3422
- package/dist/dev.d.ts +0 -2
- package/dist/dev.js +6 -7
- package/dist/dev.js.map +1 -1
- package/dist/index.d.ts +76 -50
- package/dist/index.js +391 -331
- package/dist/index.js.map +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,51 @@
|
|
|
1
1
|
# @walkeros/cli
|
|
2
2
|
|
|
3
|
+
## 3.1.0-next-1773969156384
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 357aa95: Consolidate HTTP patterns into core/http.ts: apiFetch
|
|
8
|
+
(authenticated), publicFetch (unauthenticated), deployFetch (deploy token
|
|
9
|
+
priority), and mergeAuthHeaders. Remove duplicated resolveBaseUrl alias and
|
|
10
|
+
legacy authenticatedFetch/deployAuthenticatedFetch from auth.ts.
|
|
11
|
+
- 8e687a6: Server bundles are now fully self-contained — all npm dependencies
|
|
12
|
+
(including express and cors) are bundled into the output. No node_modules
|
|
13
|
+
needed at runtime.
|
|
14
|
+
- df990d4: Unified source simulation input. All source simulation uses
|
|
15
|
+
SourceInput { content, trigger?, env? } — one format for CLI, MCP, and tests.
|
|
16
|
+
Removes legacy runSourceLegacy and deprecated SimulateSource fields. CLI gains
|
|
17
|
+
--step flag. MCP flow_simulate drops example parameter (use flow_examples to
|
|
18
|
+
discover, then provide event). flow_examples now returns trigger metadata.
|
|
19
|
+
StepExample Zod schema aligned with TypeScript type.
|
|
20
|
+
|
|
21
|
+
### Patch Changes
|
|
22
|
+
|
|
23
|
+
- fc67b30: Auto-add npm packages from flow steps (sources, destinations,
|
|
24
|
+
transformers, stores) to build packages, eliminating the need for a redundant
|
|
25
|
+
`packages` section
|
|
26
|
+
- dfc6738: MCP api tool: replace overloaded `id` param with explicit `projectId`
|
|
27
|
+
and `flowId`. CLI functions now throw structured ApiError with code and
|
|
28
|
+
details from the API response. mcpError forwards structured error data to MCP
|
|
29
|
+
clients.
|
|
30
|
+
- 5799262: Fix MCP issues from user feedback: add 'entry' to validate output
|
|
31
|
+
type, include version in feedback payload, require Node >=20, support inline
|
|
32
|
+
JSON in loadJsonConfig for sandboxed environments
|
|
33
|
+
- Updated dependencies [dfc6738]
|
|
34
|
+
- Updated dependencies [966342b]
|
|
35
|
+
- Updated dependencies [bee8ba7]
|
|
36
|
+
- Updated dependencies [966342b]
|
|
37
|
+
- Updated dependencies [df990d4]
|
|
38
|
+
- @walkeros/core@3.1.0-next-1773969156384
|
|
39
|
+
- @walkeros/server-core@3.1.0-next-1773969156384
|
|
40
|
+
|
|
41
|
+
## 3.0.2
|
|
42
|
+
|
|
43
|
+
### Patch Changes
|
|
44
|
+
|
|
45
|
+
- afd4d07: Add feedback command and MCP tool for sending user feedback
|
|
46
|
+
- @walkeros/core@3.0.2
|
|
47
|
+
- @walkeros/server-core@3.0.2
|
|
48
|
+
|
|
3
49
|
## 3.0.1
|
|
4
50
|
|
|
5
51
|
### Patch Changes
|