@walkeros/cli 4.6.0 → 4.7.0-next-1790187973605
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 +57 -0
- package/dist/cli.js +2665 -2127
- package/dist/examples/README.md +1 -0
- package/dist/examples/flow-complete.json +2 -4
- package/dist/examples/index.js +2 -4
- package/dist/examples/index.js.map +1 -1
- package/dist/index.d.ts +13 -43
- package/dist/index.js +190 -407
- package/dist/index.js.map +1 -1
- package/examples/README.md +1 -0
- package/examples/flow-complete.json +2 -4
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,62 @@
|
|
|
1
1
|
# @walkeros/cli
|
|
2
2
|
|
|
3
|
+
## 4.7.0-next-1790187973605
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- ef02916: The `findExample` and `compareOutput` exports and the
|
|
8
|
+
`ExampleLookupResult` type were removed from `@walkeros/cli`.
|
|
9
|
+
- f5a1cfd: `walkeros validate` now reports unknown route targets as
|
|
10
|
+
`UNKNOWN_ROUTE_TARGET` errors and warns about entries after an unconditional
|
|
11
|
+
`stop` and about arrays that only pick the first match.
|
|
12
|
+
`walkeros push --simulate collector.default` runs enrichment plus
|
|
13
|
+
`collector.next`, `--mock collector.next.<id>` mocks one of its steps, and
|
|
14
|
+
simulating a transformer now continues through its `next`.
|
|
15
|
+
- ef02916: `walkeros validate` now reports a file path that does not exist or
|
|
16
|
+
does not contain valid JSON as an input error with exit code 3, instead of
|
|
17
|
+
validating the path string and failing the schema with exit code 1. Cross-step
|
|
18
|
+
example checks now include an object `out`, such as a source example that
|
|
19
|
+
produces a single walkerOS event, so incompatible connections are reported as
|
|
20
|
+
errors.
|
|
21
|
+
|
|
22
|
+
### Patch Changes
|
|
23
|
+
|
|
24
|
+
- ef02916: `walkeros validate --path` no longer fails with
|
|
25
|
+
`unknown format "uri" ignored` for packages whose settings use URL or email
|
|
26
|
+
fields. Settings are still checked for structure, types and patterns; string
|
|
27
|
+
formats such as `uri` are not checked.
|
|
28
|
+
- 8f8aea6: Every step field now survives bundling. A transformer with only
|
|
29
|
+
`state` or `mapping`, and inline code steps with `cache` or `state`, were
|
|
30
|
+
silently dropped from the bundle before and did nothing at runtime. `mapping`
|
|
31
|
+
is now a typed transformer field, and bundles no longer carry `variables`.
|
|
32
|
+
- Updated dependencies [57788bc]
|
|
33
|
+
- Updated dependencies [2aebc53]
|
|
34
|
+
- Updated dependencies [f5a1cfd]
|
|
35
|
+
- Updated dependencies [ef02916]
|
|
36
|
+
- Updated dependencies [ef02916]
|
|
37
|
+
- Updated dependencies [2aebc53]
|
|
38
|
+
- Updated dependencies [f5a1cfd]
|
|
39
|
+
- Updated dependencies [f5a1cfd]
|
|
40
|
+
- Updated dependencies [2aebc53]
|
|
41
|
+
- Updated dependencies [8f8aea6]
|
|
42
|
+
- Updated dependencies [2aebc53]
|
|
43
|
+
- Updated dependencies [2aebc53]
|
|
44
|
+
- @walkeros/core@4.7.0-next-1790187973605
|
|
45
|
+
- @walkeros/server-core@4.7.0-next-1790187973605
|
|
46
|
+
- @walkeros/collector@4.7.0-next-1790187973605
|
|
47
|
+
- @walkeros/transformer-validate@4.7.0-next-1790187973605
|
|
48
|
+
- @walkeros/server-destination-api@4.7.0-next-1790187973605
|
|
49
|
+
|
|
50
|
+
## 4.6.1
|
|
51
|
+
|
|
52
|
+
### Patch Changes
|
|
53
|
+
|
|
54
|
+
- @walkeros/collector@4.6.1
|
|
55
|
+
- @walkeros/core@4.6.1
|
|
56
|
+
- @walkeros/server-core@4.6.1
|
|
57
|
+
- @walkeros/server-destination-api@4.6.1
|
|
58
|
+
- @walkeros/transformer-validate@4.6.1
|
|
59
|
+
|
|
3
60
|
## 4.6.0
|
|
4
61
|
|
|
5
62
|
### Minor Changes
|