@metarouter/ajs-starter-kit 1.0.172 → 1.0.174

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.
Files changed (55) hide show
  1. package/.dist/amazon-data-firehose/kit.etag.json +1 -1
  2. package/.dist/amazon-kinesis/kit.etag.json +1 -1
  3. package/.dist/bing-ads/kit.etag.json +1 -1
  4. package/.dist/blueshift/kit.etag.json +1 -1
  5. package/.dist/convert/kit.etag.json +1 -1
  6. package/.dist/google-ads/kit.etag.json +1 -1
  7. package/.dist/google-ads/metadata.json +4 -0
  8. package/.dist/google-ads/playbook.etag.json +1 -1
  9. package/.dist/google-ads/playbook.json +8 -3
  10. package/.dist/google-analytics-4/kit.etag.json +1 -1
  11. package/.dist/google-analytics-4/metadata.json +4 -0
  12. package/.dist/google-analytics-4/playbook.etag.json +1 -1
  13. package/.dist/google-analytics-4/playbook.json +22 -6
  14. package/.dist/google-analytics-4-collect/kit.etag.json +1 -1
  15. package/.dist/google-analytics-4-collect/metadata.json +4 -0
  16. package/.dist/google-analytics-4-collect/playbook.etag.json +1 -1
  17. package/.dist/google-analytics-4-collect/playbook.json +24 -8
  18. package/.dist/google-cm360/kit.etag.json +1 -1
  19. package/.dist/google-cm360/metadata.json +4 -0
  20. package/.dist/google-cm360/playbook.etag.json +1 -1
  21. package/.dist/google-cm360/playbook.json +2 -2
  22. package/.dist/heap/connection.etag.json +1 -1
  23. package/.dist/heap/connection.json +9 -2
  24. package/.dist/heap/kit.etag.json +1 -1
  25. package/.dist/heap/metadata.json +4 -0
  26. package/.dist/heap/playbook.etag.json +1 -1
  27. package/.dist/heap/playbook.json +4 -14
  28. package/.dist/mixpanel/kit.etag.json +1 -1
  29. package/.dist/nextdoor/kit.etag.json +1 -1
  30. package/.dist/openai-capi/connection.etag.json +1 -0
  31. package/.dist/openai-capi/connection.json +35 -0
  32. package/.dist/openai-capi/kit.etag.json +1 -0
  33. package/.dist/openai-capi/metadata.json +21 -0
  34. package/.dist/openai-capi/playbook.etag.json +1 -0
  35. package/.dist/openai-capi/playbook.json +276 -0
  36. package/.dist/podscribe/kit.etag.json +1 -1
  37. package/.dist/podscribe/metadata.json +8 -0
  38. package/.dist/podscribe/playbook.etag.json +1 -1
  39. package/.dist/podscribe/playbook.json +16 -4
  40. package/.dist/rev-jet/kit.etag.json +1 -1
  41. package/.dist/snowflake/kit.etag.json +1 -1
  42. package/.dist/teads-capi/connection.etag.json +1 -0
  43. package/.dist/teads-capi/connection.json +27 -0
  44. package/.dist/teads-capi/kit.etag.json +1 -0
  45. package/.dist/teads-capi/metadata.json +21 -0
  46. package/.dist/teads-capi/playbook.etag.json +1 -0
  47. package/.dist/teads-capi/playbook.json +403 -0
  48. package/.dist/wirtualna-polska/kit.etag.json +1 -1
  49. package/.dist/wirtualna-polska/metadata.json +4 -0
  50. package/.dist/wirtualna-polska/playbook.etag.json +1 -1
  51. package/.dist/wirtualna-polska/playbook.json +87 -1
  52. package/.dist/zeotap/kit.etag.json +1 -1
  53. package/README.md +20 -13
  54. package/index.js +22 -0
  55. package/package.json +1 -1
@@ -0,0 +1,403 @@
1
+ {
2
+ "version": "0.1.0",
3
+ "params": [
4
+ {
5
+ "name": "BUYER_PIXEL_ID",
6
+ "exampleValue": "my-buyer-pixel-id"
7
+ }
8
+ ],
9
+ "default": {
10
+ "filters": [
11
+ {
12
+ "byEventNames": {
13
+ "action": "allow",
14
+ "events": [
15
+ ""
16
+ ]
17
+ }
18
+ }
19
+ ]
20
+ },
21
+ "global": {
22
+ "filters": [
23
+ {
24
+ "byConditions": {
25
+ "action": "allow",
26
+ "when": {
27
+ "inputPathExists": {
28
+ "inputPath": "context.providers.teadsCAPI.auctid"
29
+ }
30
+ }
31
+ }
32
+ }
33
+ ],
34
+ "mappings": [
35
+ {
36
+ "inputKey": "context.providers.teadsCAPI.auctid",
37
+ "outputKey": "auctid"
38
+ },
39
+ {
40
+ "inputKey": "context.page.url",
41
+ "outputKey": "event_source_url"
42
+ },
43
+ {
44
+ "inputKey": "anonymousId",
45
+ "outputKey": "user_session_id"
46
+ },
47
+ {
48
+ "inputKey": "input",
49
+ "outputKey": "event_time",
50
+ "transforms": [
51
+ {
52
+ "expression": {
53
+ "lang": "lua",
54
+ "body": "return SECONDS_SINCE_EPOCH_FROM_RFC3999(input.timestamp or input.originalTimestamp or input.sentAt)"
55
+ }
56
+ }
57
+ ]
58
+ },
59
+ {
60
+ "inputKey": "input",
61
+ "outputKey": "buyer_pixel_id",
62
+ "transforms": [
63
+ {
64
+ "expression": {
65
+ "lang": "lua",
66
+ "body": "return tonumber(\"$$BUYER_PIXEL_ID$$\")"
67
+ }
68
+ }
69
+ ]
70
+ }
71
+ ]
72
+ },
73
+ "eventSpecific": {
74
+ "page": {
75
+ "enrichments": [
76
+ {
77
+ "outputKey": "action",
78
+ "staticString": "pageView"
79
+ }
80
+ ]
81
+ },
82
+ "products_searched": {
83
+ "enrichments": [
84
+ {
85
+ "outputKey": "action",
86
+ "staticString": "conversion"
87
+ },
88
+ {
89
+ "outputKey": "conversion_type",
90
+ "staticString": "Search"
91
+ },
92
+ {
93
+ "outputKey": "conversion_params.name",
94
+ "staticString": "Products Searched"
95
+ }
96
+ ]
97
+ },
98
+ "product_list_viewed": {
99
+ "enrichments": [
100
+ {
101
+ "outputKey": "action",
102
+ "staticString": "conversion"
103
+ },
104
+ {
105
+ "outputKey": "conversion_type",
106
+ "staticString": "ViewContent"
107
+ },
108
+ {
109
+ "outputKey": "conversion_params.name",
110
+ "staticString": "Product List Viewed"
111
+ }
112
+ ],
113
+ "mappings": [
114
+ {
115
+ "inputKey": "input",
116
+ "outputKey": "conversion_params.price",
117
+ "transforms": [
118
+ {
119
+ "expression": {
120
+ "lang": "lua",
121
+ "body": "return TOTAL_VALUE(input.properties.products)"
122
+ }
123
+ }
124
+ ]
125
+ },
126
+ {
127
+ "inputKey": "properties.currency",
128
+ "outputKey": "conversion_params.currency",
129
+ "transforms": [
130
+ {
131
+ "modifyString": "uppercase"
132
+ }
133
+ ],
134
+ "defaultString": "USD"
135
+ }
136
+ ]
137
+ },
138
+ "product_clicked": {
139
+ "enrichments": [
140
+ {
141
+ "outputKey": "action",
142
+ "staticString": "conversion"
143
+ },
144
+ {
145
+ "outputKey": "conversion_type",
146
+ "staticString": "ViewContent"
147
+ },
148
+ {
149
+ "outputKey": "conversion_params.name",
150
+ "staticString": "Product Clicked"
151
+ }
152
+ ],
153
+ "mappings": [
154
+ {
155
+ "inputKey": "properties.price",
156
+ "outputKey": "conversion_params.price"
157
+ },
158
+ {
159
+ "inputKey": "properties.currency",
160
+ "outputKey": "conversion_params.currency",
161
+ "transforms": [
162
+ {
163
+ "modifyString": "uppercase"
164
+ }
165
+ ],
166
+ "defaultString": "USD"
167
+ }
168
+ ]
169
+ },
170
+ "product_viewed": {
171
+ "enrichments": [
172
+ {
173
+ "outputKey": "action",
174
+ "staticString": "conversion"
175
+ },
176
+ {
177
+ "outputKey": "conversion_type",
178
+ "staticString": "ViewContent"
179
+ },
180
+ {
181
+ "outputKey": "conversion_params.name",
182
+ "staticString": "Product Viewed"
183
+ }
184
+ ],
185
+ "mappings": [
186
+ {
187
+ "inputKey": "properties.price",
188
+ "outputKey": "conversion_params.price"
189
+ },
190
+ {
191
+ "inputKey": "properties.currency",
192
+ "outputKey": "conversion_params.currency",
193
+ "transforms": [
194
+ {
195
+ "modifyString": "uppercase"
196
+ }
197
+ ],
198
+ "defaultString": "USD"
199
+ }
200
+ ]
201
+ },
202
+ "product_added": {
203
+ "enrichments": [
204
+ {
205
+ "outputKey": "action",
206
+ "staticString": "conversion"
207
+ },
208
+ {
209
+ "outputKey": "conversion_type",
210
+ "staticString": "AddToCart"
211
+ },
212
+ {
213
+ "outputKey": "conversion_params.name",
214
+ "staticString": "Product Added"
215
+ }
216
+ ],
217
+ "mappings": [
218
+ {
219
+ "inputKey": "properties.price",
220
+ "outputKey": "conversion_params.price"
221
+ },
222
+ {
223
+ "inputKey": "properties.currency",
224
+ "outputKey": "conversion_params.currency",
225
+ "transforms": [
226
+ {
227
+ "modifyString": "uppercase"
228
+ }
229
+ ],
230
+ "defaultString": "USD"
231
+ }
232
+ ]
233
+ },
234
+ "cart_viewed": {
235
+ "enrichments": [
236
+ {
237
+ "outputKey": "action",
238
+ "staticString": "conversion"
239
+ },
240
+ {
241
+ "outputKey": "conversion_type",
242
+ "staticString": "AddToCart"
243
+ },
244
+ {
245
+ "outputKey": "conversion_params.name",
246
+ "staticString": "Cart Viewed"
247
+ }
248
+ ],
249
+ "mappings": [
250
+ {
251
+ "inputKey": "properties.currency",
252
+ "outputKey": "conversion_params.currency",
253
+ "transforms": [
254
+ {
255
+ "modifyString": "uppercase"
256
+ }
257
+ ],
258
+ "defaultString": "USD"
259
+ },
260
+ {
261
+ "inputKey": "input",
262
+ "outputKey": "conversion_params.price",
263
+ "transforms": [
264
+ {
265
+ "expression": {
266
+ "lang": "lua",
267
+ "body": "return TOTAL_VALUE(input.properties.products)"
268
+ }
269
+ }
270
+ ]
271
+ }
272
+ ]
273
+ },
274
+ "checkout_started": {
275
+ "enrichments": [
276
+ {
277
+ "outputKey": "action",
278
+ "staticString": "conversion"
279
+ },
280
+ {
281
+ "outputKey": "conversion_type",
282
+ "staticString": "Purchase"
283
+ },
284
+ {
285
+ "outputKey": "conversion_params.name",
286
+ "staticString": "Checkout Started"
287
+ }
288
+ ],
289
+ "mappings": [
290
+ {
291
+ "inputKey": "properties.currency",
292
+ "outputKey": "conversion_params.currency",
293
+ "transforms": [
294
+ {
295
+ "modifyString": "uppercase"
296
+ }
297
+ ],
298
+ "defaultString": "USD"
299
+ },
300
+ {
301
+ "inputKey": "input",
302
+ "outputKey": "conversion_params.price",
303
+ "transforms": [
304
+ {
305
+ "expression": {
306
+ "lang": "lua",
307
+ "body": "return TOTAL_VALUE(input.properties.products)"
308
+ }
309
+ }
310
+ ]
311
+ }
312
+ ]
313
+ },
314
+ "payment_info_entered": {
315
+ "enrichments": [
316
+ {
317
+ "outputKey": "action",
318
+ "staticString": "conversion"
319
+ },
320
+ {
321
+ "outputKey": "conversion_type",
322
+ "staticString": "Purchase"
323
+ },
324
+ {
325
+ "outputKey": "conversion_params.name",
326
+ "staticString": "Payment Info Entered"
327
+ }
328
+ ]
329
+ },
330
+ "order_completed": {
331
+ "enrichments": [
332
+ {
333
+ "outputKey": "action",
334
+ "staticString": "conversion"
335
+ },
336
+ {
337
+ "outputKey": "conversion_type",
338
+ "staticString": "Purchase"
339
+ },
340
+ {
341
+ "outputKey": "conversion_params.name",
342
+ "staticString": "New Purchase"
343
+ }
344
+ ],
345
+ "mappings": [
346
+ {
347
+ "inputKey": "properties.currency",
348
+ "outputKey": "conversion_params.currency",
349
+ "transforms": [
350
+ {
351
+ "modifyString": "uppercase"
352
+ }
353
+ ],
354
+ "defaultString": "USD"
355
+ },
356
+ {
357
+ "inputKey": "input",
358
+ "outputKey": "conversion_params.price",
359
+ "transforms": [
360
+ {
361
+ "expression": {
362
+ "lang": "lua",
363
+ "body": "return TOTAL_VALUE(input.properties.products)"
364
+ }
365
+ }
366
+ ]
367
+ }
368
+ ]
369
+ },
370
+ "promotion_clicked": {
371
+ "enrichments": [
372
+ {
373
+ "outputKey": "action",
374
+ "staticString": "conversion"
375
+ },
376
+ {
377
+ "outputKey": "conversion_type",
378
+ "staticString": "ViewContent"
379
+ },
380
+ {
381
+ "outputKey": "conversion_params.name",
382
+ "staticString": "Promotion Clicked"
383
+ }
384
+ ]
385
+ },
386
+ "promotion_viewed": {
387
+ "enrichments": [
388
+ {
389
+ "outputKey": "action",
390
+ "staticString": "conversion"
391
+ },
392
+ {
393
+ "outputKey": "conversion_type",
394
+ "staticString": "ViewContent"
395
+ },
396
+ {
397
+ "outputKey": "conversion_params.name",
398
+ "staticString": "Promotion Viewed"
399
+ }
400
+ ]
401
+ }
402
+ }
403
+ }
@@ -1 +1 @@
1
- "a11cedc7e5442d5d7f071341f35a12ca -"
1
+ "4796706e44658aad18d1004dca1ad3d8 -"
@@ -24,6 +24,10 @@
24
24
  {
25
25
  "date": "2026-04-22T21:00:00.000Z",
26
26
  "note": "Version: 1.0.0\nStable Release"
27
+ },
28
+ {
29
+ "date": "2026-06-03T21:00:00.000Z",
30
+ "note": "Version: 1.1.0\nAdded content_name parameter for ViewContent events.\nNew product_list_viewed, page, and screen mappings"
27
31
  }
28
32
  ]
29
33
  }
@@ -1 +1 @@
1
- "70f743333bf0503384c337615655541b -"
1
+ "afb006ed5e4b8d12c9dea13f39673b74 -"
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.0.0",
2
+ "version": "1.1.0",
3
3
  "params": [
4
4
  {
5
5
  "name": "PIXEL_ID",
@@ -7,6 +7,29 @@
7
7
  }
8
8
  ],
9
9
  "global": {
10
+ "filters": [
11
+ {
12
+ "byConditions": {
13
+ "action": "allow",
14
+ "when": {
15
+ "matchesAny": {
16
+ "conditions": [
17
+ {
18
+ "inputPathExists": {
19
+ "inputPath": "context.providers.wirtualnaPolska.statid"
20
+ }
21
+ },
22
+ {
23
+ "inputPathExists": {
24
+ "inputPath": "context.device.advertisingId"
25
+ }
26
+ }
27
+ ]
28
+ }
29
+ }
30
+ }
31
+ }
32
+ ],
10
33
  "enrichments": [
11
34
  {
12
35
  "staticString": "$$PIXEL_ID$$",
@@ -137,6 +160,10 @@
137
160
  {
138
161
  "staticString": "ViewContent",
139
162
  "outputKey": "event_type"
163
+ },
164
+ {
165
+ "staticString": "ViewProduct",
166
+ "outputKey": "content_name"
140
167
  }
141
168
  ],
142
169
  "mappings": [
@@ -158,6 +185,65 @@
158
185
  }
159
186
  ]
160
187
  },
188
+ "product_list_viewed": {
189
+ "enrichments": [
190
+ {
191
+ "staticString": "ViewContent",
192
+ "outputKey": "event_type"
193
+ },
194
+ {
195
+ "staticString": "ProductList",
196
+ "outputKey": "content_name"
197
+ }
198
+ ],
199
+ "mappings": [
200
+ {
201
+ "inputKey": "properties.currency",
202
+ "outputKey": "currency",
203
+ "defaultString": "USD"
204
+ },
205
+ {
206
+ "inputKey": "properties.category",
207
+ "outputKey": "category"
208
+ },
209
+ {
210
+ "inputKey": "input",
211
+ "outputKey": "contents",
212
+ "transforms": [
213
+ {
214
+ "expression": {
215
+ "lang": "lua",
216
+ "body": "return MAP(input.properties.products, function(p)\n return {\n id = p.product_id or p.sku,\n name = p.name,\n quantity = p.quantity or 1,\n price = p.price,\n category = p.category,\n brand = p.brand\n }\nend)"
217
+ }
218
+ }
219
+ ]
220
+ }
221
+ ]
222
+ },
223
+ "page": {
224
+ "enrichments": [
225
+ {
226
+ "staticString": "ViewContent",
227
+ "outputKey": "event_type"
228
+ },
229
+ {
230
+ "staticString": "View",
231
+ "outputKey": "content_name"
232
+ }
233
+ ]
234
+ },
235
+ "screen": {
236
+ "enrichments": [
237
+ {
238
+ "staticString": "ViewContent",
239
+ "outputKey": "event_type"
240
+ },
241
+ {
242
+ "staticString": "View",
243
+ "outputKey": "content_name"
244
+ }
245
+ ]
246
+ },
161
247
  "product_added": {
162
248
  "enrichments": [
163
249
  {
@@ -1 +1 @@
1
- "5016a83ad45faac1f78937d77fa047e2 -"
1
+ "0625177655bc238d2777bfefc858d1af -"
package/README.md CHANGED
@@ -1,10 +1,15 @@
1
1
  # MetaRouter Starter Kits
2
2
 
3
- ### 2026-05
3
+ ### 2026-06
4
+ - CM360 - Floodlights
4
5
  - Google Ads - Conversions
5
- - Linkedin Ads - Conversions
6
- - Ringier Axel Springer Poland
7
- - Yahoo Conversions API (New)
6
+ - Google Analytics 4
7
+ - Google Analytics 4 (Collect)
8
+ - Heap
9
+ - OpenAI CAPI (New)
10
+ - Podscribe
11
+ - Teads CAPI (New)
12
+ - Wirtualna Polska
8
13
 
9
14
  | Kit Name | Initial Release Date | Stable Release Date | Latest Release Date | Current Version | Latest Note |
10
15
  |----------|----------------------|---------------------|---------------------|-----------------|-------------|
@@ -32,7 +37,7 @@
32
37
  | Blueshift | 2021-06-24 | 2025-01-22 | 2025-10-15 | Version: 1.1.1 | Added friendly names to expressions |
33
38
  | Braze | 2021-06-24 | N/A | 2025-10-15 | Version: 1.0.1 | Added friendly names to expressions |
34
39
  | Button | 2025-02-19 | 2025-03-12 | 2025-07-30 | Version: 1.1.0 | Replaced context.traits with traits. |
35
- | CM360 - Floodlights | 2021-06-24 | 2025-08-20 | 2026-04-01 | Version: 1.4.0 | Added identifier fan-out logic |
40
+ | CM360 - Floodlights | 2021-06-24 | 2025-08-20 | 2026-06-10 | Version: 1.5.0 | Added support for reading gclid and dclid from the CM360 child sync provider with fallback to the googleGtag provider |
36
41
  | Clinch | 2024-04-24 | 2024-06-12 | 2025-10-15 | Version: 1.3.1 | Added friendly names to expressions |
37
42
  | Commission Junction | 2024-01-17 | 2024-04-24 | 2025-11-19 | Version: 1.5.1 | Added friendly name to trackingSource expression |
38
43
  | Convert | 2023-09-08 | N/A | 2024-11-20 | Version: 0.3.0 | Added new deduplication parameter for all events, `tid` |
@@ -42,14 +47,14 @@
42
47
  | Eulerian | 2025-12-10 | 2026-03-04 | 2026-03-04 | Version: 1.0.0 | Stable Release |
43
48
  | Firebase | 2024-01-15 | N/A | 2024-10-23 | Version: 0.2.0 | Updated header `Accept-Encoding: application/json` |
44
49
  | Google AJSID Segments | 2024-05-29 | N/A | 2025-10-15 | Version: 0.1.1 | Added friendly names to expressions |
45
- | Google Ads - Conversions | 2023-07-04 | 2024-04-17 | 2026-05-27 | Version: 1.6.0 | Upgraded to Google Ads API v24 Removed userIpAddress field |
50
+ | Google Ads - Conversions | 2023-07-04 | 2024-04-17 | 2026-06-10 | Version: 1.7.0 | Added support for reading gclid and wbraid from the googleAds child sync provider with fallback to the googleGtag provider |
46
51
  | Google Analytics | 2021-06-24 | N/A | 2025-10-15 | Version: 1.0.1 | Added friendly names to expressions |
47
- | Google Analytics 4 | 2022-08-11 | N/A | 2025-12-17 | Version: 1.3.0 | Added consent, device and user_agent mappings Removed gclid and dclid fields Added additional standard events and updated endpoint to a parameter |
48
- | Google Analytics 4 (Collect) | 2024-04-24 | 2025-08-20 | 2025-10-15 | Version: 1.0.1 | Added friendly names to expressions |
52
+ | Google Analytics 4 | 2022-08-11 | N/A | 2026-06-10 | Version: 1.4.0 | Added support for reading clientID, sessionID and sessionCount from the googleAnalytics4 child sync provider with fallback to the googleGtag provider |
53
+ | Google Analytics 4 (Collect) | 2024-04-24 | 2025-08-20 | 2026-06-10 | Version: 1.1.0 | Added support for reading gclid, dclid, clientID, sessionID and sessionCount from the googleAnalytics4 child sync provider with fallback to the googleGtag provider |
49
54
  | Google BigQuery | 2021-06-24 | 2023-12-13 | 2025-01-16 | Version: 1.1.0 | Adding support for table overrides |
50
55
  | Google Cloud Storage | 2021-06-24 | 2026-03-18 | 2026-03-18 | Version: 1.0.0 | Stable Release |
51
56
  | Google Pub/Sub | 2021-06-24 | 2023-12-13 | 2025-10-15 | Version: 1.1.1 | Added friendly names to expressions |
52
- | Heap | 2024-03-26 | N/A | 2024-10-23 | Version: 0.2.0 | Updated header `Accept-Encoding: application/json` |
57
+ | Heap | 2024-03-26 | N/A | 2026-06-10 | Version: 0.3.0 | EU endpoint support Removed unused parameter |
53
58
  | Hightouch | 2026-01-14 | 2026-04-08 | 2026-04-08 | Version: 1.0.0 | Stable Release |
54
59
  | HubSpot | 2023-02-20 | N/A | 2025-07-30 | Version: 0.4.0 | Replaced context.traits with traits. |
55
60
  | Impact Radius | 2021-06-24 | N/A | 2025-10-15 | Version: 1.2.1 | Added friendly names to expressions |
@@ -75,18 +80,19 @@
75
80
  | Movable Ink - Customer Data | 2024-02-07 | 2024-04-24 | 2025-07-16 | Version: 1.3.0 | TABLE_SLICE custom function usage. |
76
81
  | Nextdoor | 2023-03-07 | 2024-08-07 | 2026-04-15 | Version: 1.1.0 | Deprecating in favor of the released Nextdoor CAPI Kit |
77
82
  | Nextdoor - CAPI | 2024-06-05 | 2024-07-17 | 2025-10-08 | Version: 1.4.0 | Extended Nextdoor CAPI events. |
83
+ | OpenAI CAPI (New) | 2026-06-10 | N/A | 2026-06-10 | Version: 0.1.0 | Beta Version OpenAI CAPI initial release |
78
84
  | Optimizely | 2026-01-28 | 2026-02-18 | 2026-02-18 | Version: 1.0.0 | Stable Release |
79
85
  | Perion | 2025-05-21 | 2025-07-16 | 2025-10-15 | Version: 1.0.1 | Added friendly names to expressions |
80
86
  | Pinterest Ads | 2021-06-24 | N/A | 2025-10-15 | Version: 1.1.1 | Added friendly names to expressions |
81
87
  | Pinterest CAPI | 2023-03-07 | N/A | 2026-04-08 | Version: 1.3.0 | Removed LDP (Limited Data Processing) default |
82
88
  | Pipeline Router | 2026-01-14 | N/A | 2026-01-14 | Version: 0.1.0 | Beta Version Pipeline Router initial release |
83
- | Podscribe | 2025-03-12 | 2025-04-09 | 2025-10-15 | Version: 1.2.1 | Added friendly names to expressions |
89
+ | Podscribe | 2025-03-12 | 2025-04-09 | 2026-06-10 | Version: 1.3.0 | Add ipv4 and ipv6 field mappings with context.ip fallback |
84
90
  | Podsights | 2023-03-07 | N/A | 2024-10-23 | Version: 0.2.0 | Added header `Accept-Encoding: application/json` |
85
91
  | RTB House | 2024-11-20 | N/A | 2025-12-03 | Version: 0.4.0 | Updated endpoint to be a parameter |
86
92
  | Rakuten Conversions | 2025-07-30 | 2025-09-24 | 2025-09-24 | Version: 1.0.0 | Stable Release |
87
93
  | Reddit Ads | 2023-09-12 | 2026-01-07 | 2026-01-07 | Version: 2.0.0 | Stable Release of Reddit CAPI V3 |
88
- | Ringier Axel Springer Poland | 2025-03-05 | 2025-04-09 | 2026-01-21 | Version: 1.4.0 | Deprecating in favor of the released RASP SDK Kit |
89
94
  | Ringier Axel Springer Poland | 2025-06-25 | 2026-01-21 | 2026-05-20 | Version: 1.1.0 | Added ord to the playbook |
95
+ | Ringier Axel Springer Poland | 2025-03-05 | 2025-04-09 | 2026-01-21 | Version: 1.4.0 | Deprecating in favor of the released RASP SDK Kit |
90
96
  | Roku | 2023-04-27 | N/A | 2025-07-30 | Version: 1.2.0 | Replaced context.traits with traits. |
91
97
  | Roomvo | 2021-08-10 | N/A | 2026-03-25 | Version: 0.2.2 | Converted some fields to camelCase for schema validation |
92
98
  | Salesforce CDP | 2022-05-31 | N/A | 2025-07-30 | Version: 1.2.0 | Replaced originalTimestamp with timestamp |
@@ -95,6 +101,7 @@
95
101
  | Snowflake | 2021-06-24 | N/A | 2025-10-15 | Version: 0.1.2 | Added friendly names to expressions |
96
102
  | Stdout | 2026-03-18 | N/A | 2026-03-18 | Version: 0.1.0 | Beta Version Stdout initial release |
97
103
  | Teads | 2025-11-12 | 2026-01-07 | 2026-01-07 | Version: 1.0.0 | Stable Release |
104
+ | Teads CAPI (New) | 2026-06-03 | N/A | 2026-06-03 | Version: 0.1.0 | Beta Version Teads CAPI initial release |
98
105
  | The Trade Desk - Conversions | 2025-06-04 | 2025-07-30 | 2025-12-10 | Version: 1.2.0 | Updating identifier mappings |
99
106
  | The Trade Desk - Offline Conversions | 2026-02-25 | 2026-04-08 | 2026-04-08 | Version: 1.0.0 | Stable Release |
100
107
  | TheTradeDesk Conversion Events | 2022-11-29 | N/A | 2025-07-30 | Version: 1.3.0 | Replaced originalTimestamp with timestamp |
@@ -104,10 +111,10 @@
104
111
  | VideoAmp | 2022-11-17 | N/A | 2024-10-23 | Version: 0.3.0 | Added header `Accept-Encoding: application/json` |
105
112
  | Wallaroo | 2025-12-03 | N/A | 2025-12-10 | Version: 0.1.1 | Added expression name |
106
113
  | Webhooks | 2024-05-29 | 2024-08-07 | 2025-10-15 | Version: 1.0.1 | Added friendly names to expressions |
107
- | Wirtualna Polska | 2026-03-11 | 2026-04-22 | 2026-04-22 | Version: 1.0.0 | Stable Release |
114
+ | Wirtualna Polska | 2026-03-11 | 2026-04-22 | 2026-06-03 | Version: 1.1.0 | Added content_name parameter for ViewContent events. New product_list_viewed, page, and screen mappings |
108
115
  | X Ads - Web Conversions | 2024-09-04 | 2024-09-25 | 2026-03-25 | Version: 1.1.1 | Converted some fields to camelCase for schema validation |
109
116
  | Xandr | 2021-07-13 | N/A | 2024-10-23 | Version: 1.1.0 | Added header `Accept-Encoding: application/json` |
110
- | Yahoo Conversions API (New) | 2026-05-27 | N/A | 2026-05-27 | Version: 0.1.0 | Beta Version Yahoo Conversions API initial release |
117
+ | Yahoo Conversions API | 2026-05-27 | N/A | 2026-05-27 | Version: 0.1.0 | Beta Version Yahoo Conversions API initial release |
111
118
  | Yahoo Enhanced Attribution | 2023-03-07 | N/A | 2025-04-09 | Version: 0.4.0 | Deprecated |
112
119
  | Yahoo Pixel API | 2023-03-07 | 2023-12-13 | 2025-04-09 | Version: 1.3.0 | Friendly name updated |
113
120
  | Zeotap | 2024-02-21 | 2025-08-20 | 2025-08-20 | Version: 1.0.0 | Stable Release |
package/index.js CHANGED
@@ -447,6 +447,12 @@ exports['nextdoor-capi'] = {
447
447
  metadata: require('./.dist/nextdoor-capi/metadata.json')
448
448
  }
449
449
 
450
+ exports['openai-capi'] = {
451
+ endpointSchema: require('./.dist/openai-capi/connection.json'),
452
+ playbook: require('./.dist/openai-capi/playbook.json'),
453
+ metadata: require('./.dist/openai-capi/metadata.json')
454
+ }
455
+
450
456
  exports.optimizely = {
451
457
  endpointSchema: require('./.dist/optimizely/connection.json'),
452
458
  playbook: require('./.dist/optimizely/playbook.json'),
@@ -543,6 +549,12 @@ exports['teads'] = {
543
549
  metadata: require('./.dist/teads/metadata.json')
544
550
  }
545
551
 
552
+ exports['teads-capi'] = {
553
+ endpointSchema: require('./.dist/teads-capi/connection.json'),
554
+ playbook: require('./.dist/teads-capi/playbook.json'),
555
+ metadata: require('./.dist/teads-capi/metadata.json')
556
+ }
557
+
546
558
  exports['thetradedesk-conversion-events'] = {
547
559
  endpointSchema: require('./.dist/thetradedesk-conversion-events/connection.json'),
548
560
  playbook: require('./.dist/thetradedesk-conversion-events/playbook.json'),
@@ -1003,6 +1015,11 @@ exports.etags = {
1003
1015
  playbook: require('./.dist/nextdoor-capi/playbook.etag.json'),
1004
1016
  kit: require('./.dist/nextdoor-capi/kit.etag.json')
1005
1017
  },
1018
+ 'openai-capi': {
1019
+ endpointSchema: require('./.dist/openai-capi/connection.etag.json'),
1020
+ playbook: require('./.dist/openai-capi/playbook.etag.json'),
1021
+ kit: require('./.dist/openai-capi/kit.etag.json')
1022
+ },
1006
1023
  optimizely: {
1007
1024
  endpointSchema: require('./.dist/optimizely/connection.etag.json'),
1008
1025
  playbook: require('./.dist/optimizely/playbook.etag.json'),
@@ -1083,6 +1100,11 @@ exports.etags = {
1083
1100
  playbook: require('./.dist/teads/playbook.etag.json'),
1084
1101
  kit: require('./.dist/teads/kit.etag.json')
1085
1102
  },
1103
+ 'teads-capi': {
1104
+ endpointSchema: require('./.dist/teads-capi/connection.etag.json'),
1105
+ playbook: require('./.dist/teads-capi/playbook.etag.json'),
1106
+ kit: require('./.dist/teads-capi/kit.etag.json')
1107
+ },
1086
1108
  'thetradedesk-conversion-events': {
1087
1109
  endpointSchema: require('./.dist/thetradedesk-conversion-events/connection.etag.json'),
1088
1110
  playbook: require('./.dist/thetradedesk-conversion-events/playbook.etag.json'),