@walkeros/cli 4.6.1 → 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 +47 -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/examples/README.md
CHANGED
|
@@ -354,6 +354,7 @@ Flow configs use the `Flow.Config` format:
|
|
|
354
354
|
- `@walkeros/server-destination-meta` → `destinationMeta` (Meta CAPI)
|
|
355
355
|
- `@walkeros/server-destination-aws` → `destinationAWS`
|
|
356
356
|
- `@walkeros/server-destination-gcp` → `destinationGCP`
|
|
357
|
+
- `@walkeros/server-destination-piwikpro` → `destinationPiwikPro`
|
|
357
358
|
|
|
358
359
|
**Universal**:
|
|
359
360
|
|
|
@@ -376,8 +376,7 @@
|
|
|
376
376
|
"map": {
|
|
377
377
|
"transaction_id": "data.id",
|
|
378
378
|
"value": {
|
|
379
|
-
"
|
|
380
|
-
"fn": "$code:(v) => Math.round(v * 100)"
|
|
379
|
+
"fn": "$code:(event) => Math.round(event.data.total * 100)"
|
|
381
380
|
},
|
|
382
381
|
"currency": {
|
|
383
382
|
"key": "data.currency",
|
|
@@ -624,8 +623,7 @@
|
|
|
624
623
|
"language": { "key": "headers.accept-language" },
|
|
625
624
|
"referer": { "key": "headers.referer" },
|
|
626
625
|
"anonymizedIp": {
|
|
627
|
-
"
|
|
628
|
-
"fn": "$code:(ip) => ip ? ip.replace(/\\.\\d+$/, '.0') : ''"
|
|
626
|
+
"fn": "$code:(req) => req.ip ? req.ip.replace(/\\.\\d+$/, '.0') : ''"
|
|
629
627
|
}
|
|
630
628
|
}
|
|
631
629
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@walkeros/cli",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.7.0-next-1790187973605",
|
|
4
4
|
"description": "walkerOS CLI - Bundle and deploy walkerOS components",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -53,11 +53,11 @@
|
|
|
53
53
|
},
|
|
54
54
|
"dependencies": {
|
|
55
55
|
"@vercel/nft": "^1.10.2",
|
|
56
|
-
"@walkeros/collector": "4.
|
|
57
|
-
"@walkeros/core": "4.
|
|
58
|
-
"@walkeros/server-core": "4.
|
|
59
|
-
"@walkeros/server-destination-api": "4.
|
|
60
|
-
"@walkeros/transformer-validate": "4.
|
|
56
|
+
"@walkeros/collector": "4.7.0-next-1790187973605",
|
|
57
|
+
"@walkeros/core": "4.7.0-next-1790187973605",
|
|
58
|
+
"@walkeros/server-core": "4.7.0-next-1790187973605",
|
|
59
|
+
"@walkeros/server-destination-api": "4.7.0-next-1790187973605",
|
|
60
|
+
"@walkeros/transformer-validate": "4.7.0-next-1790187973605",
|
|
61
61
|
"ajv": "^8.17.1",
|
|
62
62
|
"chalk": "^5.6.2",
|
|
63
63
|
"ci-info": "^4.4.0",
|
|
@@ -84,8 +84,8 @@
|
|
|
84
84
|
"@types/pacote": "^11.1.8",
|
|
85
85
|
"@types/picomatch": "4.0.3",
|
|
86
86
|
"@types/semver": "^7.7.1",
|
|
87
|
-
"@walkeros/config": "4.
|
|
88
|
-
"@walkeros/core": "4.
|
|
87
|
+
"@walkeros/config": "4.7.0-next-1790187973605",
|
|
88
|
+
"@walkeros/core": "4.7.0-next-1790187973605",
|
|
89
89
|
"msw": "^2.12.10",
|
|
90
90
|
"openapi-typescript": "^7.13.0",
|
|
91
91
|
"tsx": "^4.21.0"
|