@metarouter/ajs-starter-kit 1.0.142 → 1.0.143

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.
@@ -1 +1 @@
1
- "ad96076b9deb0da2936adc0fb4dffee9 -"
1
+ "9344e2d29b0f13927afcc78d682114be -"
@@ -1 +1 @@
1
- "a91cf0d449085facef47849877f758b0 -"
1
+ "51a014f671f3e907d09a6cfbc611ae26 -"
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "isDraft": false,
3
3
  "isDeprecated": false,
4
- "isBeta": true,
4
+ "isBeta": false,
5
5
  "friendlyName": "Rakuten Conversions",
6
6
  "description": "Rakuten Advertising is a global digital marketing company that specializes in performance-based marketing solutions.",
7
7
  "logo": "https://cdn.metarouter.io/rakuten-conversions.png",
@@ -20,6 +20,10 @@
20
20
  {
21
21
  "date": "2025-09-03T21:00:00.000Z",
22
22
  "note": "Version: 0.2.0\nAdding namelist field to order_canceled and order_completed events"
23
+ },
24
+ {
25
+ "date": "2025-09-24T00:00:00.000Z",
26
+ "note": "Version: 1.0.0\nStable Release"
23
27
  }
24
28
  ]
25
29
  }
@@ -1 +1 @@
1
- "8669607097e71ffda520c6672b1a10cb -"
1
+ "e5ae9d14eefb3db0d88ce95c3d702f96 -"
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.2.0",
2
+ "version": "1.0.0",
3
3
  "params": [
4
4
  {
5
5
  "name": "MERCHANT_ID",
@@ -1 +1 @@
1
- "45f5ba6666e7de626df610201ddeed6c -"
1
+ "a3b817a2b9ff4835b33732b7453df7f9 -"
@@ -20,6 +20,10 @@
20
20
  {
21
21
  "date": "2025-07-30T00:00:00.000Z",
22
22
  "note": "Version: 0.2.0\nReplaced context.traits with traits."
23
+ },
24
+ {
25
+ "date": "2025-09-24T00:00:00.000Z",
26
+ "note": "Version: 0.3.0\nStringified products fields in multiple events"
23
27
  }
24
28
  ]
25
29
  }
@@ -1 +1 @@
1
- "ff3a1215b491a0f5fb29984cd384049c -"
1
+ "216a161c769b427a4275c83ed5af74c0 -"
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.2.0",
2
+ "version": "0.3.0",
3
3
  "params": [
4
4
  {
5
5
  "name": "PIXEL_ID",
@@ -143,7 +143,7 @@
143
143
  "transforms": [
144
144
  {
145
145
  "expression": {
146
- "body": "return MAP(\n input.properties.products,\n function (p)\n return {\n id = p.product_id or p.sku or '',\n name = p.name,\n price = p.price,\n qty = p.quantity,\n category = p.category,\n brand = p.brand,\n variant = p.variant\n }\n end\n)",
146
+ "body": "local mapped = MAP(input.properties.products, function(p)\nreturn {\n id = p.product_id or p.sku or '',\n name = p.name,\n price = p.price,\n qty = p.quantity or 1,\n category = p.category,\n brand = p.brand,\n variant = p.variant\n}\nend)\nreturn TO_STRING(mapped)",
147
147
  "lang": "lua"
148
148
  }
149
149
  }
@@ -169,7 +169,7 @@
169
169
  "transforms": [
170
170
  {
171
171
  "expression": {
172
- "body": "return {{\n id = input.properties.product_id or input.properties.sku or '',\n name = input.properties.name,\n price = input.properties.price,\n qty = input.properties.quantity,\n category = input.properties.category,\n brand = input.properties.brand,\n variant = input.properties.variant\n}}",
172
+ "body": "local product = {{\n id = input.properties.product_id or input.properties.sku or '',\n name = input.properties.name,\n price = input.properties.price,\n qty = input.properties.quantity or 1,\n category = input.properties.category,\n brand = input.properties.brand,\n variant = input.properties.variant\n}}\nreturn TO_STRING(product)",
173
173
  "lang": "lua"
174
174
  }
175
175
  }
@@ -195,7 +195,7 @@
195
195
  "transforms": [
196
196
  {
197
197
  "expression": {
198
- "body": "return {{\n id = input.properties.product_id or input.properties.sku or '',\n name = input.properties.name,\n price = input.properties.price,\n qty = input.properties.quantity,\n category = input.properties.category,\n brand = input.properties.brand,\n variant = input.properties.variant\n}}",
198
+ "body": "local product = {{\n id = input.properties.product_id or input.properties.sku or '',\n name = input.properties.name,\n price = input.properties.price,\n qty = input.properties.quantity or 1,\n category = input.properties.category,\n brand = input.properties.brand,\n variant = input.properties.variant\n}}\nreturn TO_STRING(product)",
199
199
  "lang": "lua"
200
200
  }
201
201
  }
@@ -217,7 +217,7 @@
217
217
  "transforms": [
218
218
  {
219
219
  "expression": {
220
- "body": "return {{\n id = input.properties.product_id or input.properties.sku or '',\n name = input.properties.name,\n price = input.properties.price,\n qty = input.properties.quantity,\n category = input.properties.category,\n brand = input.properties.brand,\n variant = input.properties.variant\n}}",
220
+ "body": "local product = {{\n id = input.properties.product_id or input.properties.sku or '',\n name = input.properties.name,\n price = input.properties.price,\n qty = input.properties.quantity or 1,\n category = input.properties.category,\n brand = input.properties.brand,\n variant = input.properties.variant\n}}\nreturn TO_STRING(product)",
221
221
  "lang": "lua"
222
222
  }
223
223
  }
@@ -239,7 +239,7 @@
239
239
  "transforms": [
240
240
  {
241
241
  "expression": {
242
- "body": "return {{\n id = input.properties.product_id or input.properties.sku or '',\n name = input.properties.name,\n price = input.properties.price,\n qty = input.properties.quantity,\n category = input.properties.category,\n brand = input.properties.brand,\n variant = input.properties.variant\n}}",
242
+ "body": "local product = {{\n id = input.properties.product_id or input.properties.sku or '',\n name = input.properties.name,\n price = input.properties.price,\n qty = input.properties.quantity or 1,\n category = input.properties.category,\n brand = input.properties.brand,\n variant = input.properties.variant\n}}\nreturn TO_STRING(product)",
243
243
  "lang": "lua"
244
244
  }
245
245
  }
@@ -289,7 +289,7 @@
289
289
  "transforms": [
290
290
  {
291
291
  "expression": {
292
- "body": "return MAP(\n input.properties.products,\n function (p)\n return {\n id = p.product_id or p.sku or '',\n name = p.name,\n price = p.price,\n qty = p.quantity,\n category = p.category,\n brand = p.brand,\n variant = p.variant\n }\n end\n)",
292
+ "body": "local mapped = MAP(input.properties.products, function(p)\nreturn {\n id = p.product_id or p.sku or '',\n name = p.name,\n price = p.price,\n qty = p.quantity or 1,\n category = p.category,\n brand = p.brand,\n variant = p.variant\n}\nend\n)\nreturn TO_STRING(mapped)",
293
293
  "lang": "lua"
294
294
  }
295
295
  }
@@ -315,7 +315,7 @@
315
315
  "transforms": [
316
316
  {
317
317
  "expression": {
318
- "body": "return MAP(\n input.properties.products,\n function (p)\n return {\n id = p.product_id or p.sku or '',\n name = p.name,\n price = p.price,\n qty = p.quantity,\n category = p.category,\n brand = p.brand,\n variant = p.variant\n }\n end\n)",
318
+ "body": "local mapped = MAP(input.properties.products, function(p)\nreturn {\n id = p.product_id or p.sku or '',\n name = p.name,\n price = p.price,\n qty = p.quantity or 1,\n category = p.category,\n brand = p.brand,\n variant = p.variant\n}\nend\n)\nreturn TO_STRING(mapped)",
319
319
  "lang": "lua"
320
320
  }
321
321
  }
@@ -373,7 +373,7 @@
373
373
  "transforms": [
374
374
  {
375
375
  "expression": {
376
- "body": "return MAP(\n input.properties.products,\n function (p)\n return {\n id = p.product_id or p.sku or '',\n name = p.name,\n price = p.price,\n qty = p.quantity,\n category = p.category,\n brand = p.brand,\n variant = p.variant\n }\n end\n)",
376
+ "body": "local mapped = MAP(input.properties.products, function(p)\nreturn {\n id = p.product_id or p.sku or '',\n name = p.name,\n price = p.price,\n qty = p.quantity or 1,\n category = p.category,\n brand = p.brand,\n variant = p.variant\n}\nend\n)\nreturn TO_STRING(mapped)",
377
377
  "lang": "lua"
378
378
  }
379
379
  }
@@ -1 +1 @@
1
- "97b292d583d85fda487df338baddfe04 -"
1
+ "ad5f7458a084d7c8052a9aee7d524508 -"
@@ -28,6 +28,10 @@
28
28
  {
29
29
  "date": "2025-09-17T00:00:00.000Z",
30
30
  "note": "Version: 1.2.0\nStringified products fields in multiple events"
31
+ },
32
+ {
33
+ "date": "2025-09-24T00:00:00.000Z",
34
+ "note": "Version: 1.3.0\nReverted changes: Stringified products fields in multiple events"
31
35
  }
32
36
  ]
33
37
  }
@@ -1 +1 @@
1
- "b85ec200f319d5eb71a39d2bc8764e9e -"
1
+ "6b08959bc389ff10f4003c28acf7d554 -"
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.2.0",
2
+ "version": "1.3.0",
3
3
  "params": [
4
4
  {
5
5
  "name": "PIXEL_ID",
@@ -127,7 +127,7 @@
127
127
  "transforms": [
128
128
  {
129
129
  "expression": {
130
- "body": "local mapped = MAP(input.properties.products, function(p)\nreturn {\n id = p.product_id or p.sku or '',\n name = p.name,\n price = p.price,\n qty = p.quantity,\n category = p.category,\n brand = p.brand,\n variant = p.variant\n }\n end)\nreturn TO_STRING(mapped)",
130
+ "body": "return MAP(\n input.properties.products,\n function (p)\n return {\n id = p.product_id or p.sku or '',\n name = p.name,\n price = p.price,\n qty = p.quantity,\n category = p.category,\n brand = p.brand,\n variant = p.variant\n }\n end\n)",
131
131
  "lang": "lua"
132
132
  }
133
133
  }
@@ -153,7 +153,7 @@
153
153
  "transforms": [
154
154
  {
155
155
  "expression": {
156
- "body": "local product = {{\n id = input.properties.product_id or input.properties.sku or '',\n name = input.properties.name,\n price = input.properties.price,\n qty = input.properties.quantity,\n category = input.properties.category,\n brand = input.properties.brand,\n variant = input.properties.variant\n}}\nreturn TO_STRING(product)",
156
+ "body": "return {{\n id = input.properties.product_id or input.properties.sku or '',\n name = input.properties.name,\n price = input.properties.price,\n qty = input.properties.quantity,\n category = input.properties.category,\n brand = input.properties.brand,\n variant = input.properties.variant\n}}",
157
157
  "lang": "lua"
158
158
  }
159
159
  }
@@ -179,7 +179,7 @@
179
179
  "transforms": [
180
180
  {
181
181
  "expression": {
182
- "body": "local product = {{\n id = input.properties.product_id or input.properties.sku or '',\n name = input.properties.name,\n price = input.properties.price,\n qty = input.properties.quantity,\n category = input.properties.category,\n brand = input.properties.brand,\n variant = input.properties.variant\n}}\nreturn TO_STRING(product)",
182
+ "body": "return {{\n id = input.properties.product_id or input.properties.sku or '',\n name = input.properties.name,\n price = input.properties.price,\n qty = input.properties.quantity,\n category = input.properties.category,\n brand = input.properties.brand,\n variant = input.properties.variant\n}}",
183
183
  "lang": "lua"
184
184
  }
185
185
  }
@@ -201,7 +201,7 @@
201
201
  "transforms": [
202
202
  {
203
203
  "expression": {
204
- "body": "local product = {{\n id = input.properties.product_id or input.properties.sku or '',\n name = input.properties.name,\n price = input.properties.price,\n qty = input.properties.quantity,\n category = input.properties.category,\n brand = input.properties.brand,\n variant = input.properties.variant\n}}\nreturn TO_STRING(product)",
204
+ "body": "return {{\n id = input.properties.product_id or input.properties.sku or '',\n name = input.properties.name,\n price = input.properties.price,\n qty = input.properties.quantity,\n category = input.properties.category,\n brand = input.properties.brand,\n variant = input.properties.variant\n}}",
205
205
  "lang": "lua"
206
206
  }
207
207
  }
@@ -223,7 +223,7 @@
223
223
  "transforms": [
224
224
  {
225
225
  "expression": {
226
- "body": "local product = {{\n id = input.properties.product_id or input.properties.sku or '',\n name = input.properties.name,\n price = input.properties.price,\n qty = input.properties.quantity,\n category = input.properties.category,\n brand = input.properties.brand,\n variant = input.properties.variant\n}}\nreturn TO_STRING(product)",
226
+ "body": "return {{\n id = input.properties.product_id or input.properties.sku or '',\n name = input.properties.name,\n price = input.properties.price,\n qty = input.properties.quantity,\n category = input.properties.category,\n brand = input.properties.brand,\n variant = input.properties.variant\n}}",
227
227
  "lang": "lua"
228
228
  }
229
229
  }
@@ -273,7 +273,7 @@
273
273
  "transforms": [
274
274
  {
275
275
  "expression": {
276
- "body": "local mapped = MAP(input.properties.products, function(p)\nreturn {\n id = p.product_id or p.sku or '',\n name = p.name,\n price = p.price,\n qty = p.quantity,\n category = p.category,\n brand = p.brand,\n variant = p.variant\n }\nend)\nreturn TO_STRING(mapped)",
276
+ "body": "return MAP(\n input.properties.products,\n function (p)\n return {\n id = p.product_id or p.sku or '',\n name = p.name,\n price = p.price,\n qty = p.quantity,\n category = p.category,\n brand = p.brand,\n variant = p.variant\n }\n end\n)",
277
277
  "lang": "lua"
278
278
  }
279
279
  }
@@ -299,7 +299,7 @@
299
299
  "transforms": [
300
300
  {
301
301
  "expression": {
302
- "body": "local mapped = MAP(input.properties.products, function(p)\nreturn {\n id = p.product_id or p.sku or '',\n name = p.name,\n price = p.price,\n qty = p.quantity,\n category = p.category,\n brand = p.brand,\n variant = p.variant\n}\nend)\nreturn TO_STRING(mapped)",
302
+ "body": "return MAP(\n input.properties.products,\n function (p)\n return {\n id = p.product_id or p.sku or '',\n name = p.name,\n price = p.price,\n qty = p.quantity,\n category = p.category,\n brand = p.brand,\n variant = p.variant\n }\n end\n)",
303
303
  "lang": "lua"
304
304
  }
305
305
  }
@@ -357,7 +357,7 @@
357
357
  "transforms": [
358
358
  {
359
359
  "expression": {
360
- "body": "local mapped = MAP(input.properties.products, function(p)\nreturn {\n id = p.product_id or p.sku or '',\n name = p.name,\n price = p.price,\n qty = p.quantity,\n category = p.category,\n brand = p.brand,\n variant = p.variant\n}\nend)\nreturn TO_STRING(mapped)",
360
+ "body": "return MAP(\n input.properties.products,\n function (p)\n return {\n id = p.product_id or p.sku or '',\n name = p.name,\n price = p.price,\n qty = p.quantity,\n category = p.category,\n brand = p.brand,\n variant = p.variant\n }\n end\n)",
361
361
  "lang": "lua"
362
362
  }
363
363
  }
package/README.md CHANGED
@@ -1,221 +1,102 @@
1
- # AJS Starter-Kits package
2
- Analytics.js is a specification designed to standardize event tracking for web analytics,
3
- advertising platforms, marketing tools, and much more. By utilizing Analytics.js and its
4
- event methods, you will create a rich, actionable data set from your website, mobile app,
5
- server, and other sources. It is particularly useful for tracking the pages or screens your
6
- users visit, the actions they take on your property, and whether the user has been identified
7
- previously.
8
- ## 2025-09
9
- - Adjust (BETA)
1
+ # MetaRouter Starter Kits
2
+
3
+ ### 2025-09
4
+ - Adjust (New)
10
5
  - Criteo
11
6
  - Iterable
12
7
  - Linkedin Ads - Conversions
13
- - Microsoft Ads CAPI (BETA)
14
- - Rakuten Conversions (BETA)
8
+ - Microsoft Ads CAPI (New)
9
+ - Rakuten Conversions
10
+ - Ringier Axel Springer Poland
15
11
  - Ringier Axel Springer Poland
16
12
 
17
- ## 2025-08
18
- - Adobe Experience Platform - Interact
19
- - Amazon DSP CAPI
20
- - Amperity
21
- - Commission Junction
22
- - Meta CAPI
23
- - Google Analytics 4 (Collect)
24
- - CM360 - Floodlights
25
- - Kochava
26
- - Treasure Data
27
- - Zeotap
28
-
29
- ## 2025-07
30
- - ActionIQ
31
- - Microsoft Advertising (BETA)
32
- - Blueshift
33
- - Button
34
- - Clinch
35
- - HubSpot (BETA)
36
- - Magellan AI
37
- - Merkle
38
- - Microsoft Ads
39
- - Movable Ink - Customer Data
40
- - Nextdoor - CAPI
41
- - Perion
42
- - Podscribe
43
- - Ringier Axel Springer Poland (BETA)
44
- - Reddit Ads
45
- - Roku
46
- - RTB House (BETA)
47
- - Salesforce CDP
48
- - Snapchat - CAPI
49
- - TheTradeDesk Conversion Events
50
- - TheTradeDesk Firstparty Advertiser Data
51
- - TikTok
52
- - The Trade Desk - Conversions
53
- - X Ads - Web Conversions
54
-
55
- ## 2025-06
56
- - Kochava IdentityLink (BETA)
57
-
58
- ## 2025-05
59
- - Amazon Kinesis (BETA)
60
-
61
- ## 2025-04
62
- - Amazon Data Firehose
63
- - Yahoo Enhanced Attribution (BETA)
64
- - Yahoo Pixel API
65
-
66
- ## 2025-03
67
- - Amplitude
68
-
69
- ## 2025-02
70
- - AWIN
71
- - Moloco Commerce Media
72
-
73
- ## 2025-01
74
- - Google BigQuery
75
-
76
- ## 2024-11
77
- - Convert (BETA)
78
- - Innervate
79
-
80
- ## 2024-10
81
- - Acuity Ads
82
- - Adobe ID (BETA)
83
- - Amnet (BETA)
84
- - Amobee
85
- - AppsFlyer Android
86
- - AppsFlyer iOS
87
- - Customer.io
88
- - Google Ads - Conversions
89
- - Google Analytics
90
- - Firebase (BETA)
91
- - Heap (BETA)
92
- - Impact Radius
93
- - InMarket (BETA)
94
- - Lytics
95
- - MIQ (Xandr) (BETA)
96
- - Mixpanel
97
- - Movable Ink (BETA)
98
- - Pinterest Ads
99
- - Pinterest CAPI
100
- - Podsights (BETA)
101
- - Roomvo (BETA)
102
- - Snapchat Ads
103
- - VideoAmp (BETA)
104
- - Xandr
105
-
106
- ## 2024-08
107
- - Webhooks
108
- - Nextdoor
109
-
110
- ## 2024-06
111
- - Google AJSID Segments (BETA)
112
-
113
- ## 2024-04
114
- - Azure Blob
115
- - Google Analytics 4
116
-
117
- ## 2024-03
118
- - Snowflake (BETA)
119
-
120
- ## 2024-02
121
- - Google Cloud Storage (BETA)
122
- - Google Pub/Sub
123
- - Kafka
124
- - Amazon S3
125
-
126
- ## 2023-12
127
- - Bloomreach CDP
128
- - Braze
129
- - Google Ads (BETA)
130
-
131
- | Kit Name | Date | Latest Note |
132
- |----------|------|-------------|
133
- | Adjust (BETA) | 2025-09 | Version: 0.1.0 Beta Version Adjust initial release |
134
- | Criteo | 2025-09 | Version: 2.1.0 Removed id node and added alternate_ids array in playbook.yaml |
135
- | Iterable | 2025-09 | Version: 1.0.0 Stable Release |
136
- | Linkedin Ads - Conversions | 2025-09 | Version: 1.0.0 Stable Release |
137
- | Microsoft Ads CAPI (BETA) | 2025-09 | Version: 0.1.0 Beta Version Microsoft Ads CAPI initial release |
138
- | Rakuten Conversions (BETA) | 2025-09 | Version: 0.2.0 Adding namelist field to order_canceled and order_completed events |
139
- | Ringier Axel Springer Poland | 2025-09 | Version: 1.2.0 Stringified products fields in multiple events |
140
- | Adobe Experience Platform - Interact | 2025-08 | Version: 1.0.0 Stable Release |
141
- | Amazon DSP CAPI | 2025-08 | Version: 1.0.0 Stable Release |
142
- | Amperity | 2025-08 | Version: 1.0.0 Stable Release |
143
- | Commission Junction | 2025-08 | Version: 1.4.0 Removed sid and customerStatus mappings Changed actionTrackerId scope from eventSpecific to global |
144
- | Meta CAPI | 2025-08 | Version: 1.7.0 Updated event_time key mapping |
145
- | Google Analytics 4 (Collect) | 2025-08 | Version: 1.0.0 Stable Release |
146
- | CM360 - Floodlights | 2025-08 | Version: 1.0.0 Stable Release |
147
- | Kochava | 2025-08 | Version: 1.0.0 Stable Release |
148
- | Treasure Data | 2025-08 | Version: 1.0.0 Stable Release |
149
- | Zeotap | 2025-08 | Version: 1.0.0 Stable Release |
150
- | ActionIQ | 2025-07 | Version: 1.3.0 Updated Lua timestamp fallback logic to use input.timestamp |
151
- | Microsoft Advertising (BETA) | 2025-07 | Version: 0.3.0 TABLE_SLICE custom function usage. |
152
- | Blueshift | 2025-07 | Version: 1.1.0 Replaced context.traits with traits. |
153
- | Button | 2025-07 | Version: 1.1.0 Replaced context.traits with traits. |
154
- | Clinch | 2025-07 | Version: 1.3.0 Replaced context.traits with traits. |
155
- | HubSpot (BETA) | 2025-07 | Version: 0.4.0 Replaced context.traits with traits. |
156
- | Magellan AI | 2025-07 | Version: 1.2.0 Replaced context.traits with traits. |
157
- | Merkle | 2025-07 | Version: 1.3.0 Replaced context.traits with traits. |
158
- | Microsoft Ads | 2025-07 | Version: 1.1.0 Replaced context.traits with traits. |
159
- | Movable Ink - Customer Data | 2025-07 | Version: 1.3.0 TABLE_SLICE custom function usage. |
160
- | Nextdoor - CAPI | 2025-07 | Version: 1.3.0 Replaced context.traits with traits. |
161
- | Perion | 2025-07 | Version: 1.0.0 Stable Release |
162
- | Podscribe | 2025-07 | Version: 1.1.0 Replaced context.traits with traits. |
163
- | Ringier Axel Springer Poland (BETA) | 2025-07 | Version: 0.2.0 Replaced context.traits with traits. |
164
- | Reddit Ads | 2025-07 | Version: 1.5.0 Replaced context.traits with traits. |
165
- | Roku | 2025-07 | Version: 1.2.0 Replaced context.traits with traits. |
166
- | RTB House (BETA) | 2025-07 | Version: 0.3.1 Replaced context.traits with traits. |
167
- | Salesforce CDP | 2025-07 | Version: 1.2.0 Replaced originalTimestamp with timestamp |
168
- | Snapchat - CAPI | 2025-07 | Version: 1.4.0 Replaced context.traits with traits. |
169
- | TheTradeDesk Conversion Events | 2025-07 | Version: 1.3.0 Replaced originalTimestamp with timestamp |
170
- | TheTradeDesk Firstparty Advertiser Data | 2025-07 | Version: 1.2.0 Updated Lua timestamp fallback logic to use input.timestamp |
171
- | TikTok | 2025-07 | Version: 2.4.0 Replaced context.traits with traits. |
172
- | The Trade Desk - Conversions | 2025-07 | Version: 1.0.0 Stable Release |
173
- | X Ads - Web Conversions | 2025-07 | Version: 1.1.0 Replaced context.traits with traits. |
174
- | Kochava IdentityLink (BETA) | 2025-06 | Version: 0.1.0 Beta Version Kochava IdentityLink initial release |
175
- | Amazon Kinesis (BETA) | 2025-05 | Version: 0.1.0 Beta Version Amazon Kinesis initial release. |
176
- | Amazon Data Firehose | 2025-04 | Version: 1.0.0 Stable release |
177
- | Yahoo Enhanced Attribution (BETA) | 2025-04 | Version: 0.4.0 Deprecated |
178
- | Yahoo Pixel API | 2025-04 | Version: 1.3.0 Friendly name updated |
179
- | Amplitude | 2025-03 | Version: 1.2.0 Added API_URL param to accommodate Amplitude's EU residency server |
180
- | AWIN | 2025-02 | Version: 1.0.0 Stable release |
181
- | Moloco Commerce Media | 2025-02 | Version: 1.0.0 New Event: session_started -> Mapped to Moloco's LAND event (web) New Event: application_open -> Mapped to Moloco's LAND event (mobile) Updated Event: screen -> Mapped to Moloco's PAGE_VIEW or HOME event based on input.name and/or input.properties.name (mobile) Updated Event: order_completed -> Added mapping for Moloco's shipping_charge field using MetaRouter's properties.shipping (web & mobile) Stable release |
182
- | Google BigQuery | 2025-01 | Version: 1.1.0 Adding support for table overrides |
183
- | Convert (BETA) | 2024-11 | Version: 0.3.0 Added new deduplication parameter for all events, `tid` |
184
- | Innervate | 2024-11 | Version: 1.0.0 Updated friendly name Stable release |
185
- | Acuity Ads | 2024-10 | Version: 1.1.0 Added header `Accept-Encoding: application/json` |
186
- | Adobe ID (BETA) | 2024-10 | Version: 0.2.0 Added header `Accept-Encoding: application/json` |
187
- | Amnet (BETA) | 2024-10 | Version: 0.2.0 Added header `Accept-Encoding: application/json` |
188
- | Amobee | 2024-10 | Version: 1.1.0 Added header `Accept-Encoding: application/json` |
189
- | AppsFlyer Android | 2024-10 | Version: 1.2.0 Added header `Accept-Encoding: application/json` |
190
- | AppsFlyer iOS | 2024-10 | Version: 1.2.0 Added header `Accept-Encoding: application/json` |
191
- | Customer.io | 2024-10 | Version: 1.1.0 Added header `Accept-Encoding: application/json` |
192
- | Google Ads - Conversions | 2024-10 | Version: 1.3.0 Added header `Accept-Encoding: application/json` |
193
- | Google Analytics | 2024-10 | Deprecating kit |
194
- | Firebase (BETA) | 2024-10 | Version: 0.2.0 Updated header `Accept-Encoding: application/json` |
195
- | Heap (BETA) | 2024-10 | Version: 0.2.0 Updated header `Accept-Encoding: application/json` |
196
- | Impact Radius | 2024-10 | Version: 1.2.0 Added header `Accept-Encoding: application/json` |
197
- | InMarket (BETA) | 2024-10 | Version: 0.2.0 Added header `Accept-Encoding: application/json` |
198
- | Lytics | 2024-10 | Version: 1.1.0 Added header `Accept-Encoding: application/json` |
199
- | MIQ (Xandr) (BETA) | 2024-10 | Version: 0.2.0 Added header `Accept-Encoding: application/json` |
200
- | Mixpanel | 2024-10 | Version: 1.2.0 Added header `Accept-Encoding: application/json` |
201
- | Movable Ink (BETA) | 2024-10 | Version: 0.2.0 Added header `Accept-Encoding: application/json` |
202
- | Pinterest Ads | 2024-10 | Version: 1.1.0 Added header `Accept-Encoding: application/json` |
203
- | Pinterest CAPI | 2024-10 | Version: 1.2.0 Added header `Accept-Encoding: application/json` |
204
- | Podsights (BETA) | 2024-10 | Version: 0.2.0 Added header `Accept-Encoding: application/json` |
205
- | Roomvo (BETA) | 2024-10 | Version: 0.2.0 Added header `Accept-Encoding: application/json` |
206
- | Snapchat Ads | 2024-10 | Version: 1.1.0 Added header `Accept-Encoding: application/json` |
207
- | VideoAmp (BETA) | 2024-10 | Version: 0.3.0 Added header `Accept-Encoding: application/json` |
208
- | Xandr | 2024-10 | Version: 1.1.0 Added header `Accept-Encoding: application/json` |
209
- | Webhooks | 2024-08 | Version: 1.0.0 Stable release |
210
- | Nextdoor | 2024-08 | Version: 1.0.0 Stable release |
211
- | Google AJSID Segments (BETA) | 2024-06 | Renaming to Google AJSID Segments |
212
- | Azure Blob | 2024-04 | Added SAS Token |
213
- | Google Analytics 4 | 2024-04 | Version: 1.1.0 Added session data: session ID, session Count Added Engagement Time In Milliseconds |
214
- | Snowflake (BETA) | 2024-03 | Enabled playbook |
215
- | Google Cloud Storage (BETA) | 2024-02 | Removed Identity |
216
- | Google Pub/Sub | 2024-02 | Removed Identity |
217
- | Kafka | 2024-02 | Removed Identity |
218
- | Amazon S3 | 2024-02 | Removed Identity |
219
- | Bloomreach CDP | 2023-12 | Marked as stable version: 1.0.0 |
220
- | Braze | 2023-12 | Marked as stable version: 1.0.0 |
221
- | Google Ads (BETA) | 2023-12 | Marked as unstable version: 0.1.0 |
13
+ | Kit Name | Initial Release Date | Stable Release Date | Latest Release Date | Current Version | Latest Note |
14
+ |----------|----------------------|---------------------|---------------------|-----------------|-------------|
15
+ | AWIN | 2024-11-14 | 2025-02-05 | 2025-02-05 | Version: 1.0.0 | Stable release |
16
+ | ActionIQ | 2021-06-24 | N/A | 2025-07-30 | Version: 1.3.0 | Updated Lua timestamp fallback logic to use input.timestamp |
17
+ | Acuity Ads | 2021-06-24 | 2023-12-13 | 2024-10-23 | Version: 1.1.0 | Added header `Accept-Encoding: application/json` |
18
+ | Adjust (New) | 2025-09-10 | N/A | 2025-09-10 | Version: 0.1.0 | Beta Version Adjust initial release |
19
+ | Adobe Experience Platform - Interact | 2023-03-21 | 2025-08-20 | 2025-08-20 | Version: 1.0.0 | Stable Release |
20
+ | Adobe ID | 2023-03-07 | N/A | 2024-10-23 | Version: 0.2.0 | Added header `Accept-Encoding: application/json` |
21
+ | Amazon DSP CAPI | 2025-05-21 | 2025-08-13 | 2025-08-13 | Version: 1.0.0 | Stable Release |
22
+ | Amazon Data Firehose | 2025-02-05 | 2025-04-02 | 2025-04-02 | Version: 1.0.0 | Stable release |
23
+ | Amazon Kinesis | 2025-05-21 | N/A | 2025-05-21 | Version: 0.1.0 | Beta Version Amazon Kinesis initial release. |
24
+ | Amazon S3 | 2021-06-24 | N/A | 2024-02-13 | N/A | Removed Identity |
25
+ | Amnet | 2021-06-24 | N/A | 2024-10-23 | Version: 0.2.0 | Added header `Accept-Encoding: application/json` |
26
+ | Amobee | 2021-06-24 | 2023-12-13 | 2024-10-23 | Version: 1.1.0 | Added header `Accept-Encoding: application/json` |
27
+ | Amperity | 2023-07-06 | 2025-08-20 | 2025-08-20 | Version: 1.0.0 | Stable Release |
28
+ | Amplitude | 2021-06-24 | N/A | 2025-03-12 | Version: 1.2.0 | Added API_URL param to accommodate Amplitude's EU residency server |
29
+ | AppsFlyer Android | 2021-06-24 | 2023-12-13 | 2024-10-23 | Version: 1.2.0 | Added header `Accept-Encoding: application/json` |
30
+ | AppsFlyer iOS | 2021-06-24 | 2023-12-13 | 2024-10-23 | Version: 1.2.0 | Added header `Accept-Encoding: application/json` |
31
+ | Azure Blob | 2021-08-03 | 2023-12-13 | 2024-04-29 | N/A | Added SAS Token |
32
+ | Bloomreach CDP | 2022-10-06 | N/A | 2023-12-13 | N/A | Marked as stable version: 1.0.0 |
33
+ | Blueshift | 2021-06-24 | 2025-01-22 | 2025-07-30 | Version: 1.1.0 | Replaced context.traits with traits. |
34
+ | Braze | 2021-06-24 | N/A | 2023-12-13 | N/A | Marked as stable version: 1.0.0 |
35
+ | Button | 2025-02-19 | 2025-03-12 | 2025-07-30 | Version: 1.1.0 | Replaced context.traits with traits. |
36
+ | CM360 - Floodlights | 2021-06-24 | 2025-08-20 | 2025-08-20 | Version: 1.0.0 | Stable Release |
37
+ | Clinch | 2024-04-24 | 2024-06-12 | 2025-07-30 | Version: 1.3.0 | Replaced context.traits with traits. |
38
+ | Commission Junction | 2024-01-17 | 2024-04-24 | 2025-08-27 | Version: 1.4.0 | Removed sid and customerStatus mappings Changed actionTrackerId scope from eventSpecific to global |
39
+ | Convert | 2023-09-08 | N/A | 2024-11-20 | Version: 0.3.0 | Added new deduplication parameter for all events, `tid` |
40
+ | Criteo | 2021-06-24 | 2024-05-15 | 2025-09-03 | Version: 2.1.0 | Removed id node and added alternate_ids array in playbook.yaml |
41
+ | Customer.io | 2022-11-07 | N/A | 2024-10-23 | Version: 1.1.0 | Added header `Accept-Encoding: application/json` |
42
+ | Firebase | 2024-01-15 | N/A | 2024-10-23 | Version: 0.2.0 | Updated header `Accept-Encoding: application/json` |
43
+ | Google AJSID Segments | 2024-05-29 | N/A | 2024-06-26 | N/A | Renaming to Google AJSID Segments |
44
+ | Google Ads - Conversions | 2023-07-04 | 2024-04-17 | 2024-10-23 | Version: 1.3.0 | Added header `Accept-Encoding: application/json` |
45
+ | Google Analytics | 2021-06-24 | N/A | 2024-10-09 | N/A | Deprecating kit |
46
+ | Google Analytics 4 | 2022-08-11 | N/A | 2024-04-10 | Version: 1.1.0 | Added session data: session ID, session Count Added Engagement Time In Milliseconds |
47
+ | Google Analytics 4 (Collect) | 2024-04-24 | 2025-08-20 | 2025-08-20 | Version: 1.0.0 | Stable Release |
48
+ | Google BigQuery | 2021-06-24 | 2023-12-13 | 2025-01-16 | Version: 1.1.0 | Adding support for table overrides |
49
+ | Google Cloud Storage | 2021-06-24 | N/A | 2024-02-13 | N/A | Removed Identity |
50
+ | Google Pub/Sub | 2021-06-24 | 2023-12-13 | 2024-02-13 | N/A | Removed Identity |
51
+ | Heap | 2024-03-26 | N/A | 2024-10-23 | Version: 0.2.0 | Updated header `Accept-Encoding: application/json` |
52
+ | HubSpot | 2023-02-20 | N/A | 2025-07-30 | Version: 0.4.0 | Replaced context.traits with traits. |
53
+ | Impact Radius | 2021-06-24 | N/A | 2024-10-23 | Version: 1.2.0 | Added header `Accept-Encoding: application/json` |
54
+ | InMarket | 2021-07-21 | N/A | 2024-10-23 | Version: 0.2.0 | Added header `Accept-Encoding: application/json` |
55
+ | Innervate | 2021-06-24 | 2024-11-14 | 2024-11-14 | Version: 1.0.0 | Updated friendly name Stable release |
56
+ | Iterable | 2024-09-25 | 2025-09-10 | 2025-09-10 | Version: 1.0.0 | Stable Release |
57
+ | Kafka | 2021-06-24 | 2023-12-13 | 2024-02-13 | N/A | Removed Identity |
58
+ | Kochava | 2025-06-25 | 2025-08-20 | 2025-08-20 | Version: 1.0.0 | Stable Release |
59
+ | Kochava IdentityLink | 2025-06-25 | N/A | 2025-06-25 | Version: 0.1.0 | Beta Version Kochava IdentityLink initial release |
60
+ | Linkedin Ads - Conversions | 2025-07-16 | 2025-09-03 | 2025-09-03 | Version: 1.0.0 | Stable Release |
61
+ | Lytics | 2021-06-24 | N/A | 2024-10-23 | Version: 1.1.0 | Added header `Accept-Encoding: application/json` |
62
+ | MIQ (Xandr) | 2023-03-07 | N/A | 2024-10-23 | Version: 0.2.0 | Added header `Accept-Encoding: application/json` |
63
+ | Magellan AI | 2024-07-24 | 2024-08-07 | 2025-07-30 | Version: 1.2.0 | Replaced context.traits with traits. |
64
+ | Merkle | 2021-06-24 | N/A | 2025-07-30 | Version: 1.3.0 | Replaced context.traits with traits. |
65
+ | Meta CAPI | 2021-06-24 | N/A | 2025-08-06 | Version: 1.7.0 | Updated event_time key mapping |
66
+ | Microsoft Ads | 2025-01-22 | 2025-04-02 | 2025-07-30 | Version: 1.1.0 | Replaced context.traits with traits. |
67
+ | Microsoft Ads CAPI (New) | 2025-09-17 | N/A | 2025-09-17 | Version: 0.1.0 | Beta Version Microsoft Ads CAPI initial release |
68
+ | Microsoft Advertising | 2021-06-24 | N/A | 2025-07-16 | Version: 0.3.0 | TABLE_SLICE custom function usage. |
69
+ | Mixpanel | 2022-03-23 | N/A | 2024-10-23 | Version: 1.2.0 | Added header `Accept-Encoding: application/json` |
70
+ | Moloco Commerce Media | 2024-11-14 | 2025-02-12 | 2025-02-12 | Version: 1.0.0 | New Event: session_started -> Mapped to Moloco's LAND event (web) New Event: application_open -> Mapped to Moloco's LAND event (mobile) Updated Event: screen -> Mapped to Moloco's PAGE_VIEW or HOME event based on input.name and/or input.properties.name (mobile) Updated Event: order_completed -> Added mapping for Moloco's shipping_charge field using MetaRouter's properties.shipping (web & mobile) Stable release |
71
+ | Movable Ink | 2021-06-24 | N/A | 2024-10-23 | Version: 0.2.0 | Added header `Accept-Encoding: application/json` |
72
+ | Movable Ink - Customer Data | 2024-02-07 | 2024-04-24 | 2025-07-16 | Version: 1.3.0 | TABLE_SLICE custom function usage. |
73
+ | Nextdoor | 2023-03-07 | 2024-08-07 | 2024-08-07 | Version: 1.0.0 | Stable release |
74
+ | Nextdoor - CAPI | 2024-06-05 | 2024-07-17 | 2025-07-30 | Version: 1.3.0 | Replaced context.traits with traits. |
75
+ | Perion | 2025-05-21 | 2025-07-16 | 2025-07-16 | Version: 1.0.0 | Stable Release |
76
+ | Pinterest Ads | 2021-06-24 | N/A | 2024-10-23 | Version: 1.1.0 | Added header `Accept-Encoding: application/json` |
77
+ | Pinterest CAPI | 2023-03-07 | N/A | 2024-10-23 | Version: 1.2.0 | Added header `Accept-Encoding: application/json` |
78
+ | Podscribe | 2025-03-12 | 2025-04-09 | 2025-07-30 | Version: 1.2.0 | Updated Lua timestamp fallback logic to use input.timestamp |
79
+ | Podsights | 2023-03-07 | N/A | 2024-10-23 | Version: 0.2.0 | Added header `Accept-Encoding: application/json` |
80
+ | RTB House | 2024-11-20 | N/A | 2025-07-30 | Version: 0.3.1 | Replaced context.traits with traits. |
81
+ | Rakuten Conversions | 2025-07-30 | 2025-09-24 | 2025-09-24 | Version: 1.0.0 | Stable Release |
82
+ | Reddit Ads | 2023-09-12 | N/A | 2025-07-30 | Version: 1.5.0 | Replaced context.traits with traits. |
83
+ | Ringier Axel Springer Poland | 2025-03-05 | 2025-04-09 | 2025-09-24 | Version: 1.3.0 | Reverted changes: Stringified products fields in multiple events |
84
+ | Ringier Axel Springer Poland | 2025-06-25 | N/A | 2025-09-24 | Version: 0.3.0 | Stringified products fields in multiple events |
85
+ | Roku | 2023-04-27 | N/A | 2025-07-30 | Version: 1.2.0 | Replaced context.traits with traits. |
86
+ | Roomvo | 2021-08-10 | N/A | 2024-10-23 | Version: 0.2.0 | Added header `Accept-Encoding: application/json` |
87
+ | Salesforce CDP | 2022-05-31 | N/A | 2025-07-30 | Version: 1.2.0 | Replaced originalTimestamp with timestamp |
88
+ | Snapchat - CAPI | 2024-06-05 | 2024-07-17 | 2025-07-30 | Version: 1.4.0 | Replaced context.traits with traits. |
89
+ | Snapchat Ads | 2021-06-24 | N/A | 2024-10-23 | Version: 1.1.0 | Added header `Accept-Encoding: application/json` |
90
+ | Snowflake | 2021-06-24 | N/A | 2024-03-26 | N/A | Enabled playbook |
91
+ | The Trade Desk - Conversions | 2025-06-04 | 2025-07-30 | 2025-07-30 | Version: 1.1.0 | Replaced context.traits with traits. |
92
+ | TheTradeDesk Conversion Events | 2022-11-29 | N/A | 2025-07-30 | Version: 1.3.0 | Replaced originalTimestamp with timestamp |
93
+ | TheTradeDesk Firstparty Advertiser Data | 2022-11-29 | N/A | 2025-07-30 | Version: 1.2.0 | Updated Lua timestamp fallback logic to use input.timestamp |
94
+ | TikTok | 2023-03-07 | 2023-12-13 | 2025-07-30 | Version: 2.4.0 | Replaced context.traits with traits. |
95
+ | Treasure Data | 2024-02-21 | 2025-08-20 | 2025-08-20 | Version: 1.0.0 | Stable Release |
96
+ | VideoAmp | 2022-11-17 | N/A | 2024-10-23 | Version: 0.3.0 | Added header `Accept-Encoding: application/json` |
97
+ | Webhooks | 2024-05-29 | 2024-08-07 | 2024-08-07 | Version: 1.0.0 | Stable release |
98
+ | X Ads - Web Conversions | 2024-09-04 | 2024-09-25 | 2025-07-30 | Version: 1.1.0 | Replaced context.traits with traits. |
99
+ | Xandr | 2021-07-13 | N/A | 2024-10-23 | Version: 1.1.0 | Added header `Accept-Encoding: application/json` |
100
+ | Yahoo Enhanced Attribution | 2023-03-07 | N/A | 2025-04-09 | Version: 0.4.0 | Deprecated |
101
+ | Yahoo Pixel API | 2023-03-07 | 2023-12-13 | 2025-04-09 | Version: 1.3.0 | Friendly name updated |
102
+ | Zeotap | 2024-02-21 | 2025-08-20 | 2025-08-20 | Version: 1.0.0 | Stable Release |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@metarouter/ajs-starter-kit",
3
- "version": "1.0.142",
3
+ "version": "1.0.143",
4
4
  "description": "MetaRouter analytics.js starter kit",
5
5
  "main": "index.js",
6
6
  "scripts": {