@metarouter/ajs-starter-kit 1.0.172 → 1.0.173

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
- "d4068fe406f2b4ce822b1d0b429ee6cb -"
1
+ "72ef466d5a1957a39e2e35067aeeb9f8 -"
@@ -1 +1 @@
1
- "d9e3d1d9af6570f149970c30274f1d6b -"
1
+ "ea831f86d0c2a93c4abcffec960becd5 -"
@@ -1 +1 @@
1
- "a6cfb24756ac9ddfca5e7b6a795a7c05 -"
1
+ "57928adb5ce2b813d08bd83000c8847a -"
@@ -1 +1 @@
1
- "e0c93e8cbd76fd06d373ceaa5fdd40a8 -"
1
+ "710c05bd4c8072ac678639ef3be95831 -"
@@ -32,6 +32,10 @@
32
32
  {
33
33
  "date": "2025-10-15T00:00:00.000Z",
34
34
  "note": "Version: 1.2.1\nAdded friendly names to expressions"
35
+ },
36
+ {
37
+ "date": "2026-06-03T00:00:00.000Z",
38
+ "note": "Version: 1.2.2\nUpdate source enrichment"
35
39
  }
36
40
  ]
37
41
  }
@@ -1 +1 @@
1
- "e4fbff238e8d2eba2bdeee4b3df88e27 -"
1
+ "f3e8235d280cb953fbf37e87098117ee -"
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.2.1",
2
+ "version": "1.2.2",
3
3
  "params": [
4
4
  {
5
5
  "name": "ADVERTISER_ID",
@@ -29,7 +29,7 @@
29
29
  "outputKey": "advertiser"
30
30
  },
31
31
  {
32
- "staticString": "server",
32
+ "staticString": "metarouter",
33
33
  "outputKey": "source"
34
34
  }
35
35
  ],
@@ -1 +1 @@
1
- "fcea7e22a7651731706520ce3768bf00 -"
1
+ "f6b37b0579a38e564e9c9e2da7ec3882 -"
@@ -0,0 +1 @@
1
+ "27368ddbd6e70ed27b2d8ce149ee4ce9 -"
@@ -0,0 +1,27 @@
1
+ {
2
+ "params": [
3
+ {
4
+ "name": "CAPI_TOKEN",
5
+ "isSensitive": true,
6
+ "exampleValue": "my-capi-token"
7
+ }
8
+ ],
9
+ "default": {
10
+ "method": "POST",
11
+ "endpoint": "https://ca.teads.tv/v1/event",
12
+ "headers": [
13
+ {
14
+ "key": "Accept-Encoding",
15
+ "value": "application/json"
16
+ },
17
+ {
18
+ "key": "Content-Type",
19
+ "value": "application/json"
20
+ },
21
+ {
22
+ "key": "Authorization",
23
+ "value": "Bearer $$CAPI_TOKEN$$"
24
+ }
25
+ ]
26
+ }
27
+ }
@@ -0,0 +1 @@
1
+ "1618c9956a060bdafc27723c711b6a7e -"
@@ -0,0 +1,21 @@
1
+ {
2
+ "isDraft": false,
3
+ "isDeprecated": false,
4
+ "isBeta": true,
5
+ "friendlyName": "Teads CAPI",
6
+ "description": "Teads is a global advertising platform specializing in outstream video and display ads that appear within premium publisher content.",
7
+ "logo": "https://cdn.metarouter.io/teads.png",
8
+ "color": "#3300BF",
9
+ "eventSource": {
10
+ "isAndroidApp": false,
11
+ "isIosApp": false,
12
+ "isWebApp": true
13
+ },
14
+ "inputSchema": "analytics_js",
15
+ "releaseNotes": [
16
+ {
17
+ "date": "2026-06-03T00:00:00.000Z",
18
+ "note": "Version: 0.1.0\nBeta Version\nTeads CAPI initial release"
19
+ }
20
+ ]
21
+ }
@@ -0,0 +1 @@
1
+ "20984ae7fe223a107dd1813d2df89157 -"
@@ -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
- "1949df74588abd86e5f1344f35217e34 -"
1
+ "e168c4e940609b95f841eb8eab8bf93b -"
package/README.md CHANGED
@@ -1,10 +1,9 @@
1
1
  # MetaRouter Starter Kits
2
2
 
3
- ### 2026-05
4
- - Google Ads - Conversions
5
- - Linkedin Ads - Conversions
6
- - Ringier Axel Springer Poland
7
- - Yahoo Conversions API (New)
3
+ ### 2026-06
4
+ - Podscribe
5
+ - Teads CAPI (New)
6
+ - Wirtualna Polska
8
7
 
9
8
  | Kit Name | Initial Release Date | Stable Release Date | Latest Release Date | Current Version | Latest Note |
10
9
  |----------|----------------------|---------------------|---------------------|-----------------|-------------|
@@ -80,7 +79,7 @@
80
79
  | Pinterest Ads | 2021-06-24 | N/A | 2025-10-15 | Version: 1.1.1 | Added friendly names to expressions |
81
80
  | Pinterest CAPI | 2023-03-07 | N/A | 2026-04-08 | Version: 1.3.0 | Removed LDP (Limited Data Processing) default |
82
81
  | 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 |
82
+ | Podscribe | 2025-03-12 | 2025-04-09 | 2026-06-03 | Version: 1.2.2 | Update source enrichment |
84
83
  | Podsights | 2023-03-07 | N/A | 2024-10-23 | Version: 0.2.0 | Added header `Accept-Encoding: application/json` |
85
84
  | RTB House | 2024-11-20 | N/A | 2025-12-03 | Version: 0.4.0 | Updated endpoint to be a parameter |
86
85
  | Rakuten Conversions | 2025-07-30 | 2025-09-24 | 2025-09-24 | Version: 1.0.0 | Stable Release |
@@ -95,6 +94,7 @@
95
94
  | Snowflake | 2021-06-24 | N/A | 2025-10-15 | Version: 0.1.2 | Added friendly names to expressions |
96
95
  | Stdout | 2026-03-18 | N/A | 2026-03-18 | Version: 0.1.0 | Beta Version Stdout initial release |
97
96
  | Teads | 2025-11-12 | 2026-01-07 | 2026-01-07 | Version: 1.0.0 | Stable Release |
97
+ | Teads CAPI (New) | 2026-06-03 | N/A | 2026-06-03 | Version: 0.1.0 | Beta Version Teads CAPI initial release |
98
98
  | The Trade Desk - Conversions | 2025-06-04 | 2025-07-30 | 2025-12-10 | Version: 1.2.0 | Updating identifier mappings |
99
99
  | The Trade Desk - Offline Conversions | 2026-02-25 | 2026-04-08 | 2026-04-08 | Version: 1.0.0 | Stable Release |
100
100
  | TheTradeDesk Conversion Events | 2022-11-29 | N/A | 2025-07-30 | Version: 1.3.0 | Replaced originalTimestamp with timestamp |
@@ -104,10 +104,10 @@
104
104
  | VideoAmp | 2022-11-17 | N/A | 2024-10-23 | Version: 0.3.0 | Added header `Accept-Encoding: application/json` |
105
105
  | Wallaroo | 2025-12-03 | N/A | 2025-12-10 | Version: 0.1.1 | Added expression name |
106
106
  | 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 |
107
+ | 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
108
  | 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
109
  | 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 |
110
+ | Yahoo Conversions API | 2026-05-27 | N/A | 2026-05-27 | Version: 0.1.0 | Beta Version Yahoo Conversions API initial release |
111
111
  | Yahoo Enhanced Attribution | 2023-03-07 | N/A | 2025-04-09 | Version: 0.4.0 | Deprecated |
112
112
  | Yahoo Pixel API | 2023-03-07 | 2023-12-13 | 2025-04-09 | Version: 1.3.0 | Friendly name updated |
113
113
  | Zeotap | 2024-02-21 | 2025-08-20 | 2025-08-20 | Version: 1.0.0 | Stable Release |
package/index.js CHANGED
@@ -543,6 +543,12 @@ exports['teads'] = {
543
543
  metadata: require('./.dist/teads/metadata.json')
544
544
  }
545
545
 
546
+ exports['teads-capi'] = {
547
+ endpointSchema: require('./.dist/teads-capi/connection.json'),
548
+ playbook: require('./.dist/teads-capi/playbook.json'),
549
+ metadata: require('./.dist/teads-capi/metadata.json')
550
+ }
551
+
546
552
  exports['thetradedesk-conversion-events'] = {
547
553
  endpointSchema: require('./.dist/thetradedesk-conversion-events/connection.json'),
548
554
  playbook: require('./.dist/thetradedesk-conversion-events/playbook.json'),
@@ -1083,6 +1089,11 @@ exports.etags = {
1083
1089
  playbook: require('./.dist/teads/playbook.etag.json'),
1084
1090
  kit: require('./.dist/teads/kit.etag.json')
1085
1091
  },
1092
+ 'teads-capi': {
1093
+ endpointSchema: require('./.dist/teads-capi/connection.etag.json'),
1094
+ playbook: require('./.dist/teads-capi/playbook.etag.json'),
1095
+ kit: require('./.dist/teads-capi/kit.etag.json')
1096
+ },
1086
1097
  'thetradedesk-conversion-events': {
1087
1098
  endpointSchema: require('./.dist/thetradedesk-conversion-events/connection.etag.json'),
1088
1099
  playbook: require('./.dist/thetradedesk-conversion-events/playbook.etag.json'),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@metarouter/ajs-starter-kit",
3
- "version": "1.0.172",
3
+ "version": "1.0.173",
4
4
  "description": "MetaRouter analytics.js starter kit",
5
5
  "main": "index.js",
6
6
  "scripts": {