@walkeros/cli 4.0.0 → 4.1.0-next-1778155282668

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.
@@ -46,9 +46,9 @@ devcontainer.
46
46
  **Purpose**: Complete reference demonstrating ALL JSON-compatible walkerOS
47
47
  features
48
48
 
49
- **Features**: 51 features including variables, definitions, mapping (key, map,
50
- loop, set), transformers (validator, fingerprint), consent gating, wildcards,
51
- ingest metadata, and more.
49
+ **Features**: 51 features including variables, mapping (key, map, loop, set),
50
+ transformers (validator, fingerprint), consent gating, wildcards, ingest
51
+ metadata, and more.
52
52
 
53
53
  **Architecture**: Two named flows (`web` and `server`) showing full event
54
54
  pipeline from browser to server-side forwarding.
@@ -5,9 +5,7 @@
5
5
  "currency": "EUR",
6
6
  "flowVersion": "1.0.0",
7
7
  "ga4MeasurementId": "$env.GA4_MEASUREMENT_ID:G-DEMO123456",
8
- "apiUrl": "$env.API_URL:http://localhost:8080/collect"
9
- },
10
- "definitions": {
8
+ "apiUrl": "$env.API_URL:http://localhost:8080/collect",
11
9
  "ga4ItemsLoop": {
12
10
  "loop": [
13
11
  "nested",
@@ -394,7 +392,7 @@
394
392
  },
395
393
  "tax": "data.tax",
396
394
  "shipping": "data.shipping",
397
- "items": "$def.ga4ItemsLoop"
395
+ "items": "$var.ga4ItemsLoop"
398
396
  }
399
397
  }
400
398
  }
@@ -534,7 +532,7 @@
534
532
  "marketing": true
535
533
  }
536
534
  },
537
- "items": "$def.ga4ItemsLoop"
535
+ "items": "$var.ga4ItemsLoop"
538
536
  }
539
537
  }
540
538
  }
@@ -849,7 +847,7 @@
849
847
  "value": "$var.currency"
850
848
  },
851
849
  "order_id": "data.id",
852
- "contents": "$def.metaContentsLoop"
850
+ "contents": "$var.metaContentsLoop"
853
851
  }
854
852
  }
855
853
  }
@@ -109,7 +109,7 @@ npx walkeros run packages/cli/examples/flow-complete.json --flow web
109
109
  | Wildcard action (\*) | GA4 test, Meta | `"test": { "*": { "ignore": true } }` |
110
110
  | Wildcard entity (\*) | Meta click handler | `"*": { "click": { "name": "CustomEvent" } }` |
111
111
 
112
- #### Definitions & Variables
112
+ #### Variables
113
113
 
114
114
  | Feature | Location | Example |
115
115
  | -------------------- | ------------------ | ---------------------------------------------- |
@@ -118,8 +118,6 @@ npx walkeros run packages/cli/examples/flow-complete.json --flow web
118
118
  | Environment variable | Variables | `"$env.GA4_MEASUREMENT_ID:G-DEMO123456"` |
119
119
  | Env with default | Variables | `"$env.API_URL:http://localhost:8080/collect"` |
120
120
  | $var reference | GA4 settings | `"$var.ga4MeasurementId"` |
121
- | Definition (complex) | Root definitions | `"ga4ItemsLoop": { "loop": [...] }` |
122
- | $def reference | GA4 purchase items | `"$def.ga4ItemsLoop"` |
123
121
  | $contract reference | serverValidator | `"$contract.default.events"` |
124
122
  | $store reference | filter transformer | `"env": { "store": "$store.cache" }` |
125
123
 
@@ -205,13 +203,13 @@ npx walkeros run packages/cli/examples/flow-complete.json --flow web
205
203
  These features are now fully supported in JSON via `$code:` prefix (and ARE used
206
204
  in this example):
207
205
 
208
- | Feature | Status |
209
- | --------------------------- | ----------------------------------- |
210
- | `fn:` function | ✅ Used via `$code:` in GA4 value |
211
- | `condition:` | ✅ Used via `$code:` in definitions |
212
- | Conditional mapping (array) | ✅ Used in serverValidator |
213
- | Custom transformer code | ✅ Used in enricher, filter |
214
- | Custom destination code | ✅ Used in debug logger |
206
+ | Feature | Status |
207
+ | --------------------------- | --------------------------------- |
208
+ | `fn:` function | ✅ Used via `$code:` in GA4 value |
209
+ | `condition:` | ✅ Used via `$code:` in variables |
210
+ | Conditional mapping (array) | ✅ Used in serverValidator |
211
+ | Custom transformer code | ✅ Used in enricher, filter |
212
+ | Custom destination code | ✅ Used in debug logger |
215
213
 
216
214
  #### Omitted for Clarity (6)
217
215
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@walkeros/cli",
3
- "version": "4.0.0",
3
+ "version": "4.1.0-next-1778155282668",
4
4
  "description": "walkerOS CLI - Bundle and deploy walkerOS components",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -49,10 +49,11 @@
49
49
  "docker:publish": "bash scripts/publish-docker.sh"
50
50
  },
51
51
  "dependencies": {
52
- "@walkeros/collector": "4.0.0",
53
- "@walkeros/core": "4.0.0",
54
- "@walkeros/server-core": "4.0.0",
55
- "@walkeros/server-destination-api": "4.0.0",
52
+ "@vercel/nft": "1.5.0",
53
+ "@walkeros/collector": "4.1.0-next-1778155282668",
54
+ "@walkeros/core": "4.1.0-next-1778155282668",
55
+ "@walkeros/server-core": "4.1.0-next-1778155282668",
56
+ "@walkeros/server-destination-api": "4.1.0-next-1778155282668",
56
57
  "ajv": "^8.17.1",
57
58
  "chalk": "^5.6.2",
58
59
  "ci-info": "^4.4.0",
@@ -64,7 +65,9 @@
64
65
  "jsdom": "^26.1.0",
65
66
  "open": "^11.0.0",
66
67
  "openapi-fetch": "^0.17.0",
68
+ "p-limit": "^7.3.0",
67
69
  "pacote": "^21.0.4",
70
+ "picomatch": "2.3.1",
68
71
  "semver": "^7.7.4",
69
72
  "zod": "^4.0"
70
73
  },
@@ -74,9 +77,10 @@
74
77
  "@types/fs-extra": "^11.0.4",
75
78
  "@types/jsdom": "^21.1.7",
76
79
  "@types/pacote": "^11.1.8",
80
+ "@types/picomatch": "4.0.3",
77
81
  "@types/semver": "^7.7.1",
78
- "@walkeros/config": "4.0.0",
79
- "@walkeros/core": "4.0.0",
82
+ "@walkeros/config": "4.1.0-next-1778155282668",
83
+ "@walkeros/core": "4.1.0-next-1778155282668",
80
84
  "msw": "^2.12.10",
81
85
  "openapi-typescript": "^7.13.0",
82
86
  "tsx": "^4.21.0"