@walkeros/cli 4.1.3-next-1779963694449 → 4.2.0-next-1780387694663
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 +33 -5
- package/dist/cli.js +1284 -975
- package/dist/examples/flow-complete.json +4 -6
- package/dist/examples/flow-complete.md +9 -9
- package/dist/examples/index.js +4 -6
- package/dist/examples/index.js.map +1 -1
- package/dist/index.d.ts +10 -1
- package/dist/index.js +269 -53
- package/dist/index.js.map +1 -1
- package/examples/flow-complete.json +4 -6
- package/examples/flow-complete.md +9 -9
- package/package.json +16 -15
package/CHANGELOG.md
CHANGED
|
@@ -1,14 +1,42 @@
|
|
|
1
1
|
# @walkeros/cli
|
|
2
2
|
|
|
3
|
-
## 4.
|
|
3
|
+
## 4.2.0-next-1780387694663
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 654ba38: `walkeros run` now accepts a `.tar.gz`/`.tgz` flow archive (URL or
|
|
8
|
+
local file): it extracts the bundle and its `node_modules/` and runs it, so
|
|
9
|
+
server flows with external step packages resolve them at runtime.
|
|
10
|
+
`walkeros bundle -o flow.tar.gz` packs a server bundle directory into that
|
|
11
|
+
archive. Web single-file bundles do not support archive output.
|
|
12
|
+
- 654ba38: Trace telemetry now activates at runtime by polling the deployment's
|
|
13
|
+
trace window, so web and server flows start and stop full-payload recording
|
|
14
|
+
without a redeploy. A future trace window upgrades a flow to full inbound and
|
|
15
|
+
outbound recording, and a null or past window reverts to the flow's `observe`
|
|
16
|
+
baseline and self-expires.
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
|
6
19
|
|
|
20
|
+
- b98474f: Source-level mapping examples for the dataLayer source now key on the
|
|
21
|
+
prefix as entity and the gtag action as action: `mapping.<prefix>.<action>`.
|
|
22
|
+
The shipped `examples/mapping.ts`, the comprehensive `flow-complete.json`
|
|
23
|
+
example, and the related docs reflect the convention, including the
|
|
24
|
+
special-cased actions `consent`, `config`, and `set` whose trailing token is
|
|
25
|
+
dropped by the entity/action split.
|
|
26
|
+
- 59aa9e1: Refresh runtime dependencies to their latest majors: Express 5,
|
|
27
|
+
Commander 15, better-sqlite3 12, @libsql/client 0.17, Google Cloud
|
|
28
|
+
functions-framework 5, mixpanel 0.22, and jsdom 29. No public API changes;
|
|
29
|
+
installs now pull the current versions of these SDKs.
|
|
7
30
|
- Updated dependencies [908d6f0]
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
31
|
+
- Updated dependencies [654ba38]
|
|
32
|
+
- Updated dependencies [f4a9013]
|
|
33
|
+
- Updated dependencies [2d64ed2]
|
|
34
|
+
- Updated dependencies [654ba38]
|
|
35
|
+
- Updated dependencies [3eb2467]
|
|
36
|
+
- @walkeros/collector@4.2.0-next-1780387694663
|
|
37
|
+
- @walkeros/core@4.2.0-next-1780387694663
|
|
38
|
+
- @walkeros/server-core@4.2.0-next-1780387694663
|
|
39
|
+
- @walkeros/server-destination-api@4.2.0-next-1780387694663
|
|
12
40
|
|
|
13
41
|
## 4.1.2
|
|
14
42
|
|