@metarouter/ajs-starter-kit 1.0.155 → 1.0.156

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.
@@ -0,0 +1 @@
1
+ "1577ebaf89da86bed10d28b8a68f3eb9 -"
@@ -0,0 +1,23 @@
1
+ {
2
+ "params": [
3
+ {
4
+ "name": "ACCESS_TOKEN",
5
+ "defaultValue": "b1c6d505d9e84fc3a1dc3b296832546c",
6
+ "exampleValue": "my-access-token"
7
+ }
8
+ ],
9
+ "default": {
10
+ "endpoint": "https://conversion-data.admarketplace.com/v1/event?",
11
+ "method": "POST",
12
+ "headers": [
13
+ {
14
+ "key": "Authorization",
15
+ "value": "Bearer $$ACCESS_TOKEN$$"
16
+ }
17
+ ],
18
+ "transform": {
19
+ "lang": "lua",
20
+ "body": "local params = {}\nfor key, val in pairs(batch[1]) do\n table.insert(params, QUERY_ESCAPE(key)..\"=\"..QUERY_ESCAPE(val))\nend\nrequest.url = request.url .. JOIN(params, '&')\nrequest.body = {}\nreturn request"
21
+ }
22
+ }
23
+ }
@@ -0,0 +1 @@
1
+ "9b270356d8eeca9625e4b9c2af5c452e -"
@@ -0,0 +1,21 @@
1
+ {
2
+ "isDraft": false,
3
+ "isDeprecated": false,
4
+ "isBeta": true,
5
+ "friendlyName": "adMarketplace",
6
+ "description": "adMarketplace is a performance advertising platform that connects advertisers and publishers through native search placements outside traditional search engines.",
7
+ "logo": "https://cdn.metarouter.io/adMarketplace.png",
8
+ "color": "#0077B5",
9
+ "eventSource": {
10
+ "isAndroidApp": false,
11
+ "isIosApp": false,
12
+ "isWebApp": true
13
+ },
14
+ "inputSchema": "analytics_js",
15
+ "releaseNotes": [
16
+ {
17
+ "date": "2026-01-21T21:00:00.000Z",
18
+ "note": "Version: 0.1.0\nBeta Version\nadMarketplace initial release"
19
+ }
20
+ ]
21
+ }
@@ -0,0 +1 @@
1
+ "6d3fe3c6ec7068bf4f1123114227a78f -"
@@ -0,0 +1,394 @@
1
+ {
2
+ "version": "0.1.0",
3
+ "params": [
4
+ {
5
+ "name": "ADVERTISER_ID",
6
+ "exampleValue": "my-advertiser-id"
7
+ },
8
+ {
9
+ "name": "AD_MARKETPLACE_URL_DECORATOR",
10
+ "exampleValue": "my-ad-marketplace-url-decorator",
11
+ "description": "Your custom URL Decorator for AdMarketplace"
12
+ }
13
+ ],
14
+ "default": {
15
+ "filters": [
16
+ {
17
+ "byEventNames": {
18
+ "action": "allow",
19
+ "events": [
20
+ ""
21
+ ]
22
+ }
23
+ }
24
+ ]
25
+ },
26
+ "global": {
27
+ "enrichments": [
28
+ {
29
+ "staticString": "$$ADVERTISER_ID$$",
30
+ "outputKey": "advertiser-id"
31
+ },
32
+ {
33
+ "staticString": "1",
34
+ "outputKey": "conversion-time-source"
35
+ }
36
+ ],
37
+ "mappings": [
38
+ {
39
+ "inputKey": "context.providers.adMarketplace.$$AD_MARKETPLACE_URL_DECORATOR$$",
40
+ "outputKey": "click-id"
41
+ },
42
+ {
43
+ "inputKey": "input",
44
+ "outputKey": "custom-info",
45
+ "transforms": [
46
+ {
47
+ "expression": {
48
+ "lang": "lua",
49
+ "body": "if (input.type == \"track\") then return REPLACE(LOWER(input.event), \" \", \"_\") end\nreturn input.type"
50
+ }
51
+ }
52
+ ]
53
+ },
54
+ {
55
+ "inputKey": "input",
56
+ "outputKey": "conversion-time",
57
+ "transforms": [
58
+ {
59
+ "expression": {
60
+ "lang": "lua",
61
+ "body": "local timestamp = input.timestamp or input.sentAt or input.originalTimestamp\ntimestamp = TO_STRING(timestamp)\nreturn SUBSTRING(timestamp, 0, 19) .. 'Z'"
62
+ }
63
+ }
64
+ ]
65
+ }
66
+ ]
67
+ },
68
+ "eventSpecific": {
69
+ "identify": {
70
+ "enrichments": [
71
+ {
72
+ "staticString": "ADD_EVENT_ID_HERE",
73
+ "outputKey": "event-id"
74
+ }
75
+ ]
76
+ },
77
+ "page": {
78
+ "enrichments": [
79
+ {
80
+ "staticString": "ADD_EVENT_ID_HERE",
81
+ "outputKey": "event-id"
82
+ }
83
+ ]
84
+ },
85
+ "product_list_viewed": {
86
+ "enrichments": [
87
+ {
88
+ "staticString": "ADD_EVENT_ID_HERE",
89
+ "outputKey": "event-id"
90
+ }
91
+ ],
92
+ "mappings": [
93
+ {
94
+ "inputKey": "properties.category",
95
+ "outputKey": "product-category"
96
+ }
97
+ ]
98
+ },
99
+ "product_clicked": {
100
+ "enrichments": [
101
+ {
102
+ "staticString": "ADD_EVENT_ID_HERE",
103
+ "outputKey": "event-id"
104
+ }
105
+ ],
106
+ "mappings": [
107
+ {
108
+ "inputKey": "properties.category",
109
+ "outputKey": "product-category"
110
+ },
111
+ {
112
+ "inputKey": "input",
113
+ "outputKey": "order-value",
114
+ "transforms": [
115
+ {
116
+ "expression": {
117
+ "lang": "lua",
118
+ "body": "return TOTAL_VALUE(input.properties)"
119
+ }
120
+ }
121
+ ]
122
+ }
123
+ ]
124
+ },
125
+ "product_viewed": {
126
+ "enrichments": [
127
+ {
128
+ "staticString": "ADD_EVENT_ID_HERE",
129
+ "outputKey": "event-id"
130
+ }
131
+ ],
132
+ "mappings": [
133
+ {
134
+ "inputKey": "properties.category",
135
+ "outputKey": "product-category"
136
+ },
137
+ {
138
+ "inputKey": "input",
139
+ "outputKey": "order-value",
140
+ "transforms": [
141
+ {
142
+ "expression": {
143
+ "lang": "lua",
144
+ "body": "return TOTAL_VALUE(input.properties)"
145
+ }
146
+ }
147
+ ]
148
+ }
149
+ ]
150
+ },
151
+ "product_added": {
152
+ "enrichments": [
153
+ {
154
+ "staticString": "ADD_EVENT_ID_HERE",
155
+ "outputKey": "event-id"
156
+ }
157
+ ],
158
+ "mappings": [
159
+ {
160
+ "inputKey": "properties.category",
161
+ "outputKey": "product-category"
162
+ },
163
+ {
164
+ "inputKey": "input",
165
+ "outputKey": "order-value",
166
+ "transforms": [
167
+ {
168
+ "expression": {
169
+ "lang": "lua",
170
+ "body": "return TOTAL_VALUE(input.properties)"
171
+ }
172
+ }
173
+ ]
174
+ }
175
+ ]
176
+ },
177
+ "product_removed": {
178
+ "enrichments": [
179
+ {
180
+ "staticString": "ADD_EVENT_ID_HERE",
181
+ "outputKey": "event-id"
182
+ }
183
+ ],
184
+ "mappings": [
185
+ {
186
+ "inputKey": "properties.category",
187
+ "outputKey": "product-category"
188
+ },
189
+ {
190
+ "inputKey": "input",
191
+ "outputKey": "order-value",
192
+ "transforms": [
193
+ {
194
+ "expression": {
195
+ "lang": "lua",
196
+ "body": "return TOTAL_VALUE(input.properties)"
197
+ }
198
+ }
199
+ ]
200
+ }
201
+ ]
202
+ },
203
+ "cart_viewed": {
204
+ "enrichments": [
205
+ {
206
+ "staticString": "ADD_EVENT_ID_HERE",
207
+ "outputKey": "event-id"
208
+ }
209
+ ],
210
+ "mappings": [
211
+ {
212
+ "inputKey": "input",
213
+ "outputKey": "order-value",
214
+ "transforms": [
215
+ {
216
+ "expression": {
217
+ "lang": "lua",
218
+ "body": "return TOTAL_VALUE(input.properties.products)"
219
+ }
220
+ }
221
+ ]
222
+ }
223
+ ]
224
+ },
225
+ "checkout_started": {
226
+ "enrichments": [
227
+ {
228
+ "staticString": "ADD_EVENT_ID_HERE",
229
+ "outputKey": "event-id"
230
+ }
231
+ ],
232
+ "mappings": [
233
+ {
234
+ "inputKey": "properties.value",
235
+ "outputKey": "order-value"
236
+ },
237
+ {
238
+ "inputKey": "properties.order_id",
239
+ "outputKey": "unique-id"
240
+ }
241
+ ]
242
+ },
243
+ "payment_info_entered": {
244
+ "enrichments": [
245
+ {
246
+ "staticString": "ADD_EVENT_ID_HERE",
247
+ "outputKey": "event-id"
248
+ }
249
+ ],
250
+ "mappings": [
251
+ {
252
+ "inputKey": "properties.order_id",
253
+ "outputKey": "unique-id"
254
+ }
255
+ ]
256
+ },
257
+ "order_completed": {
258
+ "enrichments": [
259
+ {
260
+ "staticString": "ADD_EVENT_ID_HERE",
261
+ "outputKey": "event-id"
262
+ }
263
+ ],
264
+ "mappings": [
265
+ {
266
+ "inputKey": "properties.total",
267
+ "outputKey": "order-value"
268
+ },
269
+ {
270
+ "inputKey": "properties.order_id",
271
+ "outputKey": "unique-id"
272
+ }
273
+ ]
274
+ },
275
+ "promotion_clicked": {
276
+ "enrichments": [
277
+ {
278
+ "staticString": "ADD_EVENT_ID_HERE",
279
+ "outputKey": "event-id"
280
+ }
281
+ ]
282
+ },
283
+ "promotion_viewed": {
284
+ "enrichments": [
285
+ {
286
+ "staticString": "ADD_EVENT_ID_HERE",
287
+ "outputKey": "event-id"
288
+ }
289
+ ]
290
+ },
291
+ "product_added_to_wishlist": {
292
+ "enrichments": [
293
+ {
294
+ "staticString": "ADD_EVENT_ID_HERE",
295
+ "outputKey": "event-id"
296
+ }
297
+ ],
298
+ "mappings": [
299
+ {
300
+ "inputKey": "properties.category",
301
+ "outputKey": "product-category"
302
+ },
303
+ {
304
+ "inputKey": "input",
305
+ "outputKey": "order-value",
306
+ "transforms": [
307
+ {
308
+ "expression": {
309
+ "lang": "lua",
310
+ "body": "return TOTAL_VALUE(input.properties)"
311
+ }
312
+ }
313
+ ]
314
+ }
315
+ ]
316
+ },
317
+ "order_updated": {
318
+ "enrichments": [
319
+ {
320
+ "staticString": "ADD_EVENT_ID_HERE",
321
+ "outputKey": "event-id"
322
+ }
323
+ ],
324
+ "mappings": [
325
+ {
326
+ "inputKey": "properties.total",
327
+ "outputKey": "order-value"
328
+ },
329
+ {
330
+ "inputKey": "properties.order_id",
331
+ "outputKey": "unique-id"
332
+ }
333
+ ]
334
+ },
335
+ "order_refunded": {
336
+ "enrichments": [
337
+ {
338
+ "staticString": "ADD_EVENT_ID_HERE",
339
+ "outputKey": "event-id"
340
+ }
341
+ ],
342
+ "mappings": [
343
+ {
344
+ "inputKey": "properties.total",
345
+ "outputKey": "order-value"
346
+ },
347
+ {
348
+ "inputKey": "properties.order_id",
349
+ "outputKey": "unique-id"
350
+ }
351
+ ]
352
+ },
353
+ "order_canceled": {
354
+ "enrichments": [
355
+ {
356
+ "staticString": "ADD_EVENT_ID_HERE",
357
+ "outputKey": "event-id"
358
+ }
359
+ ],
360
+ "mappings": [
361
+ {
362
+ "inputKey": "properties.total",
363
+ "outputKey": "order-value"
364
+ },
365
+ {
366
+ "inputKey": "properties.order_id",
367
+ "outputKey": "unique-id"
368
+ }
369
+ ]
370
+ },
371
+ "coupon_entered": {
372
+ "enrichments": [
373
+ {
374
+ "staticString": "ADD_EVENT_ID_HERE",
375
+ "outputKey": "event-id"
376
+ }
377
+ ],
378
+ "mappings": [
379
+ {
380
+ "inputKey": "properties.order_id",
381
+ "outputKey": "unique-id"
382
+ }
383
+ ]
384
+ },
385
+ "products_searched": {
386
+ "enrichments": [
387
+ {
388
+ "staticString": "ADD_EVENT_ID_HERE",
389
+ "outputKey": "event-id"
390
+ }
391
+ ]
392
+ }
393
+ }
394
+ }
@@ -1 +1 @@
1
- "a3b817a2b9ff4835b33732b7453df7f9 -"
1
+ "b0391b2f1b95b732fbe39fc45c06a4e8 -"
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "isDraft": false,
3
3
  "isDeprecated": false,
4
- "isBeta": true,
4
+ "isBeta": false,
5
5
  "friendlyName": "Ringier Axel Springer Poland",
6
6
  "description": "Ringier Axel Springer Poland (RASP) is a leading digital media and technology company that provides advertising services such as programmatic ads, branded content, display advertising, and audience targeting, leveraging its large digital reach.",
7
7
  "logo": "https://cdn.metarouter.io/ringier-axel-springer-poland.png",
@@ -24,6 +24,10 @@
24
24
  {
25
25
  "date": "2025-09-24T00:00:00.000Z",
26
26
  "note": "Version: 0.3.0\nStringified products fields in multiple events"
27
+ },
28
+ {
29
+ "date": "2026-01-21T00:00:00.000Z",
30
+ "note": "Version: 1.0.0\nStable Release"
27
31
  }
28
32
  ]
29
33
  }
@@ -1 +1 @@
1
- "216a161c769b427a4275c83ed5af74c0 -"
1
+ "686b9f468fffa0962b12e5321d91ff75 -"
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.3.0",
2
+ "version": "1.0.0",
3
3
  "params": [
4
4
  {
5
5
  "name": "PIXEL_ID",
@@ -1 +1 @@
1
- "ad5f7458a084d7c8052a9aee7d524508 -"
1
+ "fcea7e22a7651731706520ce3768bf00 -"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "isDraft": false,
3
- "isDeprecated": false,
3
+ "isDeprecated": true,
4
4
  "isBeta": false,
5
5
  "friendlyName": "Ringier Axel Springer Poland",
6
6
  "description": "Ringier Axel Springer Poland (RASP) is a leading digital media and technology company that provides advertising services such as programmatic ads, branded content, display advertising, and audience targeting, leveraging its large digital reach.",
@@ -32,6 +32,10 @@
32
32
  {
33
33
  "date": "2025-09-24T00:00:00.000Z",
34
34
  "note": "Version: 1.3.0\nReverted changes: Stringified products fields in multiple events"
35
+ },
36
+ {
37
+ "date": "2026-01-21T00:00:00.000Z",
38
+ "note": "Version: 1.4.0\nDeprecating in favor of the released RASP SDK Kit"
35
39
  }
36
40
  ]
37
41
  }
@@ -1 +1 @@
1
- "6b08959bc389ff10f4003c28acf7d554 -"
1
+ "a2fd5c1858215376c3998269a6724f3e -"
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.3.0",
2
+ "version": "1.4.0",
3
3
  "params": [
4
4
  {
5
5
  "name": "PIXEL_ID",
@@ -1 +1 @@
1
- "cdcd55976cbf2cac879e8133d64da0bd -"
1
+ "ac578e65973f4ff655c14671cc457c41 -"
@@ -11,6 +11,11 @@
11
11
  {
12
12
  "name": "ADVERTISER_ID",
13
13
  "exampleValue": "my-advertiser-id"
14
+ },
15
+ {
16
+ "name": "DATA_PROVIDER_ID",
17
+ "exampleValue": "my-data-provider-id",
18
+ "defaultValue": "metarouter"
14
19
  }
15
20
  ],
16
21
  "default": {
@@ -29,7 +34,7 @@
29
34
  "batchSize": 100,
30
35
  "transform": {
31
36
  "lang": "lua",
32
- "body": "request.body = {\n AdvertiserId = \"$$ADVERTISER_ID$$\",\n Items = batch,\n}\nreturn request"
37
+ "body": "request.body = {\n DataProviderId = \"$$DATA_PROVIDER_ID$$\",\n AdvertiserId = \"$$ADVERTISER_ID$$\",\n Items = batch,\n}\nreturn request"
33
38
  },
34
39
  "providerAuth": {
35
40
  "tradedesk": {
@@ -1 +1 @@
1
- "bbb376916f970746fc7cb7905e1b994d -"
1
+ "13cec39f058da9d50dda94040dd9f111 -"
@@ -28,6 +28,10 @@
28
28
  {
29
29
  "date": "2025-07-30T00:00:00.000Z",
30
30
  "note": "Version: 1.2.0\nUpdated Lua timestamp fallback logic to use input.timestamp"
31
+ },
32
+ {
33
+ "date": "2026-01-21T00:00:00.000Z",
34
+ "note": "Version: 1.3.0\nAdded DATA_PROVIDER_ID connection param support required for externally sent 1d data (ex: metarouter sending customer 1p data)."
31
35
  }
32
36
  ]
33
37
  }
@@ -1 +1 @@
1
- "6534b17daaf5892a2e1d9fbd140b7ef0 -"
1
+ "e84813910f6cce9ac0f9e05fa37d9114 -"
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.2.0",
2
+ "version": "1.3.0",
3
3
  "params": [
4
4
  {
5
5
  "name": "TTL_IN_MINUTES",
package/README.md CHANGED
@@ -10,8 +10,12 @@
10
10
  - Meta CAPI
11
11
  - Pipeline Router (New)
12
12
  - Reddit Ads
13
+ - Ringier Axel Springer Poland
14
+ - Ringier Axel Springer Poland
13
15
  - Snapchat - CAPI
14
16
  - Teads
17
+ - TheTradeDesk Firstparty Advertiser Data
18
+ - adMarketplace (New)
15
19
 
16
20
  | Kit Name | Initial Release Date | Stable Release Date | Latest Release Date | Current Version | Latest Note |
17
21
  |----------|----------------------|---------------------|---------------------|-----------------|-------------|
@@ -90,8 +94,8 @@
90
94
  | RTB House | 2024-11-20 | N/A | 2025-12-03 | Version: 0.4.0 | Updated endpoint to be a parameter |
91
95
  | Rakuten Conversions | 2025-07-30 | 2025-09-24 | 2025-09-24 | Version: 1.0.0 | Stable Release |
92
96
  | Reddit Ads | 2023-09-12 | 2026-01-07 | 2026-01-07 | Version: 2.0.0 | Stable Release of Reddit CAPI V3 |
93
- | Ringier Axel Springer Poland | 2025-06-25 | N/A | 2025-09-24 | Version: 0.3.0 | Stringified products fields in multiple events |
94
- | 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 |
97
+ | Ringier Axel Springer Poland | 2025-06-25 | 2026-01-21 | 2026-01-21 | Version: 1.0.0 | Stable Release |
98
+ | 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 |
95
99
  | Roku | 2023-04-27 | N/A | 2025-07-30 | Version: 1.2.0 | Replaced context.traits with traits. |
96
100
  | Roomvo | 2021-08-10 | N/A | 2025-10-15 | Version: 0.2.1 | Added friendly names to expressions |
97
101
  | Salesforce CDP | 2022-05-31 | N/A | 2025-07-30 | Version: 1.2.0 | Replaced originalTimestamp with timestamp |
@@ -101,7 +105,7 @@
101
105
  | Teads | 2025-11-12 | 2026-01-07 | 2026-01-07 | Version: 1.0.0 | Stable Release |
102
106
  | The Trade Desk - Conversions | 2025-06-04 | 2025-07-30 | 2025-12-10 | Version: 1.2.0 | Updating identifier mappings |
103
107
  | TheTradeDesk Conversion Events | 2022-11-29 | N/A | 2025-07-30 | Version: 1.3.0 | Replaced originalTimestamp with timestamp |
104
- | 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 |
108
+ | TheTradeDesk Firstparty Advertiser Data | 2022-11-29 | N/A | 2026-01-21 | Version: 1.3.0 | Added DATA_PROVIDER_ID connection param support required for externally sent 1d data (ex: metarouter sending customer 1p data). |
105
109
  | TikTok | 2023-03-07 | 2023-12-13 | 2025-12-17 | Version: 2.5.0 | Added additional standard events Added num_items, content_ids and limited_data_use fields |
106
110
  | Treasure Data | 2024-02-21 | 2025-08-20 | 2025-08-20 | Version: 1.0.0 | Stable Release |
107
111
  | VideoAmp | 2022-11-17 | N/A | 2024-10-23 | Version: 0.3.0 | Added header `Accept-Encoding: application/json` |
@@ -112,3 +116,4 @@
112
116
  | Yahoo Enhanced Attribution | 2023-03-07 | N/A | 2025-04-09 | Version: 0.4.0 | Deprecated |
113
117
  | Yahoo Pixel API | 2023-03-07 | 2023-12-13 | 2025-04-09 | Version: 1.3.0 | Friendly name updated |
114
118
  | Zeotap | 2024-02-21 | 2025-08-20 | 2025-08-20 | Version: 1.0.0 | Stable Release |
119
+ | adMarketplace (New) | 2026-01-21 | N/A | 2026-01-21 | Version: 0.1.0 | Beta Version adMarketplace initial release |
package/index.js CHANGED
@@ -106,6 +106,12 @@ exports['acuity-ads'] = {
106
106
  metadata: require('./.dist/acuity-ads/metadata.json')
107
107
  }
108
108
 
109
+ exports['ad-marketplace'] = {
110
+ endpointSchema: require('./.dist/ad-marketplace/connection.json'),
111
+ playbook: require('./.dist/ad-marketplace/playbook.json'),
112
+ metadata: require('./.dist/ad-marketplace/metadata.json')
113
+ }
114
+
109
115
  exports['adjust'] = {
110
116
  endpointSchema: require('./.dist/adjust/connection.json'),
111
117
  playbook: require('./.dist/adjust/playbook.json'),
@@ -483,12 +489,6 @@ exports['rev-jet'] = {
483
489
  metadata: require('./.dist/rev-jet/metadata.json')
484
490
  }
485
491
 
486
- exports['ringier-axel-springer-poland'] = {
487
- endpointSchema: require('./.dist/ringier-axel-springer-poland/connection.json'),
488
- playbook: require('./.dist/ringier-axel-springer-poland/playbook.json'),
489
- metadata: require('./.dist/ringier-axel-springer-poland/metadata.json')
490
- }
491
-
492
492
  exports.roku = {
493
493
  endpointSchema: require('./.dist/roku/connection.json'),
494
494
  playbook: require('./.dist/roku/playbook.json'),
@@ -689,6 +689,11 @@ exports.etags = {
689
689
  playbook: require('./.dist/acuity-ads/playbook.etag.json'),
690
690
  kit: require('./.dist/acuity-ads/kit.etag.json')
691
691
  },
692
+ 'ad-marketplace': {
693
+ endpointSchema: require('./.dist/ad-marketplace/connection.etag.json'),
694
+ playbook: require('./.dist/ad-marketplace/playbook.etag.json'),
695
+ kit: require('./.dist/ad-marketplace/kit.etag.json')
696
+ },
692
697
  'adjust': {
693
698
  endpointSchema: require('./.dist/adjust/connection.etag.json'),
694
699
  playbook: require('./.dist/adjust/playbook.etag.json'),
@@ -1004,11 +1009,6 @@ exports.etags = {
1004
1009
  playbook: require('./.dist/rev-jet/playbook.etag.json'),
1005
1010
  kit: require('./.dist/rev-jet/kit.etag.json')
1006
1011
  },
1007
- 'ringier-axel-springer-poland': {
1008
- endpointSchema: require('./.dist/ringier-axel-springer-poland/connection.etag.json'),
1009
- playbook: require('./.dist/ringier-axel-springer-poland/playbook.etag.json'),
1010
- kit: require('./.dist/ringier-axel-springer-poland/kit.etag.json')
1011
- },
1012
1012
  roku: {
1013
1013
  endpointSchema: require('./.dist/roku/connection.etag.json'),
1014
1014
  playbook: require('./.dist/roku/playbook.etag.json'),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@metarouter/ajs-starter-kit",
3
- "version": "1.0.155",
3
+ "version": "1.0.156",
4
4
  "description": "MetaRouter analytics.js starter kit",
5
5
  "main": "index.js",
6
6
  "scripts": {