@metarouter/ajs-starter-kit 1.0.156 → 1.0.157

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
- "f377639137190ba2c3cf2eeb0ced1d98 -"
1
+ "8c5fcfc86106e5d58c6857afb6423d9d -"
@@ -16,6 +16,10 @@
16
16
  {
17
17
  "date": "2025-12-03T21:00:00.000Z",
18
18
  "note": "Version: 0.1.0\nBeta Version\nAmazon DSP - Events initial release"
19
+ },
20
+ {
21
+ "date": "2026-01-28T21:00:00.000Z",
22
+ "note": "Version: 0.2.0\nAmazon DSP - Events added match_id"
19
23
  }
20
24
  ]
21
25
  }
@@ -1 +1 @@
1
- "ecf5179e82538902140b6c5b95a003f4 -"
1
+ "74f3b76313bbc2916088ec4ad2035b8e -"
@@ -1,29 +1,6 @@
1
1
  {
2
- "version": "0.1.0",
2
+ "version": "0.2.0",
3
3
  "global": {
4
- "filters": [
5
- {
6
- "byConditions": {
7
- "action": "allow",
8
- "when": {
9
- "matchesAny": {
10
- "conditions": [
11
- {
12
- "inputPathExists": {
13
- "inputPath": "traits.email"
14
- }
15
- },
16
- {
17
- "inputPathExists": {
18
- "inputPath": "userId"
19
- }
20
- }
21
- ]
22
- }
23
- }
24
- }
25
- }
26
- ],
27
4
  "enrichments": [
28
5
  {
29
6
  "staticString": "SERVER_TO_SERVER",
@@ -51,6 +28,10 @@
51
28
  }
52
29
  ]
53
30
  },
31
+ {
32
+ "inputKey": "anonymousId",
33
+ "outputKey": "match_id"
34
+ },
54
35
  {
55
36
  "inputKey": "input",
56
37
  "outputKey": "countryCode",
@@ -1 +1 @@
1
- "5fe4757066227190ec8c024a6798e3fd -"
1
+ "f78bd1af064de4a178efbb4813e19fb6 -"
@@ -52,6 +52,10 @@
52
52
  {
53
53
  "date": "2026-01-14T00:00:00.000Z",
54
54
  "note": "Version: 1.1.0\nMigrated from V4 to V5\nUpdated all quantity fields and added the value field to all events."
55
+ },
56
+ {
57
+ "date": "2026-01-28T00:00:00.000Z",
58
+ "note": "Version: 1.2.0\nUpdated quantity in events to ensure a minimum of 1"
55
59
  }
56
60
  ]
57
61
  }
@@ -1 +1 @@
1
- "888d6162acbcbd07277005de7b435ae2 -"
1
+ "fac932c91611d3793a1786473089a028 -"
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.1.0",
2
+ "version": "1.2.0",
3
3
  "params": [
4
4
  {
5
5
  "name": "CONFIG_ID",
@@ -89,13 +89,21 @@
89
89
  {
90
90
  "staticString": "ADD_FLOODLIGHT_ACTIVITY_ID_HERE",
91
91
  "outputKey": "floodlightActivityId"
92
- },
93
- {
94
- "staticString": "1",
95
- "outputKey": "quantity"
96
92
  }
97
93
  ],
98
94
  "mappings": [
95
+ {
96
+ "inputKey": "input",
97
+ "outputKey": "quantity",
98
+ "transforms": [
99
+ {
100
+ "expression": {
101
+ "lang": "lua",
102
+ "body": "local q = input.properties.quantity\nif q and q > 0 then\n return TO_STRING(q)\nend\nreturn '1'"
103
+ }
104
+ }
105
+ ]
106
+ },
99
107
  {
100
108
  "inputKey": "input",
101
109
  "outputKey": "value",
@@ -103,7 +111,7 @@
103
111
  {
104
112
  "expression": {
105
113
  "lang": "lua",
106
- "body": "return input.properties.price * (input.properties.quantity or 1)"
114
+ "body": "return TOTAL_VALUE(input.properties)"
107
115
  }
108
116
  }
109
117
  ]
@@ -115,13 +123,21 @@
115
123
  {
116
124
  "staticString": "ADD_FLOODLIGHT_ACTIVITY_ID_HERE",
117
125
  "outputKey": "floodlightActivityId"
118
- },
119
- {
120
- "staticString": "1",
121
- "outputKey": "quantity"
122
126
  }
123
127
  ],
124
128
  "mappings": [
129
+ {
130
+ "inputKey": "input",
131
+ "outputKey": "quantity",
132
+ "transforms": [
133
+ {
134
+ "expression": {
135
+ "lang": "lua",
136
+ "body": "return TO_STRING(SUM(MAP(input.properties.products, function(p)\n if p.quantity and p.quantity > 0 then\n return p.quantity\n end\n return 1\n end))\n)"
137
+ }
138
+ }
139
+ ]
140
+ },
125
141
  {
126
142
  "inputKey": "properties.total",
127
143
  "outputKey": "value"
@@ -1 +1 @@
1
- "5fb55bf9e3c33ddb16bf5a8a71b56218 -"
1
+ "9e82f8a6de1249c2845dbf28eda8aede -"
@@ -0,0 +1 @@
1
+ "08f560facd598d68e2f21accaeb934ad -"
@@ -0,0 +1,23 @@
1
+ {
2
+ "params": [
3
+ {
4
+ "name": "ACCOUNT_ID",
5
+ "exampleValue": "my_account_id"
6
+ }
7
+ ],
8
+ "default": {
9
+ "method": "POST",
10
+ "headers": [
11
+ {
12
+ "key": "Content-Type",
13
+ "value": "application/json"
14
+ }
15
+ ],
16
+ "endpoint": "https://logx.optimizely.com/v1/events",
17
+ "batchSize": 100,
18
+ "transform": {
19
+ "body": "request.body = {\n account_id = \"$$ACCOUNT_ID$$\",\n visitors = batch,\n anonymize_ip = true,\n client_name = \"metarouter/optimizely\",\n client_version = \"1.0.0\",\n enrich_decisions = true\n}\nreturn request",
20
+ "lang": "lua"
21
+ }
22
+ }
23
+ }
@@ -0,0 +1 @@
1
+ "50fc741adf691f190691b1564e8b8827 -"
@@ -0,0 +1,21 @@
1
+ {
2
+ "isDraft": false,
3
+ "isDeprecated": false,
4
+ "isBeta": true,
5
+ "friendlyName": "Optimizely",
6
+ "description": "Optimizely is a powerful experimentation platform designed to help businesses optimize digital experiences through A/B testing, feature flags, and personalization.",
7
+ "logo": "https://cdn.metarouter.io/optimizely.png",
8
+ "color": "#0073e6",
9
+ "eventSource": {
10
+ "isAndroidApp": true,
11
+ "isIosApp": true,
12
+ "isWebApp": true
13
+ },
14
+ "inputSchema": "analytics_js",
15
+ "releaseNotes": [
16
+ {
17
+ "date": "2026-01-28T00:00:00.000Z",
18
+ "note": "Version: 0.1.0\nBeta Version\nOptimizely Event API initial release"
19
+ }
20
+ ]
21
+ }
@@ -0,0 +1 @@
1
+ "cd6fb7dba783a94ead69095f0120088a -"
@@ -0,0 +1,241 @@
1
+ {
2
+ "version": "0.1.0",
3
+ "default": {
4
+ "filters": [
5
+ {
6
+ "byEventNames": {
7
+ "action": "allow",
8
+ "events": [
9
+ ""
10
+ ]
11
+ }
12
+ }
13
+ ]
14
+ },
15
+ "global": {
16
+ "filters": [
17
+ {
18
+ "byConditions": {
19
+ "action": "allow",
20
+ "when": {
21
+ "inputPathExists": {
22
+ "inputPath": "context.providers.optimizely.optimizelyEndUserId"
23
+ }
24
+ }
25
+ }
26
+ }
27
+ ],
28
+ "mappings": [
29
+ {
30
+ "inputKey": "context.providers.optimizely.optimizelyEndUserId",
31
+ "outputKey": "visitor_id"
32
+ },
33
+ {
34
+ "inputKey": "input",
35
+ "outputKey": "attributes",
36
+ "transforms": [
37
+ {
38
+ "expression": {
39
+ "body": "local attrs = {}\nif input.traits then\n for key, value in pairs(input.traits) do\n table.insert(attrs, {\n type = \"custom\",\n key = key,\n value = value\n })\n end\nend\nreturn attrs",
40
+ "lang": "lua"
41
+ }
42
+ }
43
+ ]
44
+ }
45
+ ]
46
+ },
47
+ "eventSpecific": {
48
+ "identify": {
49
+ "mappings": [
50
+ {
51
+ "inputKey": "input",
52
+ "outputKey": "snapshots",
53
+ "transforms": [
54
+ {
55
+ "expression": {
56
+ "body": "local event = {\n timestamp = MILLISECONDS_SINCE_EPOCH_FROM_RFC3999(TO_DATE_TIME(input.timestamp or input.receivedAt or input.originalTimestamp, { inputFormat = \"2006-01-02T15:04:05Z07:00\" })),\n uuid = input.messageId,\n key = \"identify\",\n entity_id = \"ADD_YOUR_EVENT_ID_HERE\"\n}\n\nreturn {{\n decisions = {},\n events = {event}\n}}",
57
+ "lang": "lua"
58
+ }
59
+ }
60
+ ]
61
+ }
62
+ ]
63
+ },
64
+ "page": {
65
+ "mappings": [
66
+ {
67
+ "inputKey": "input",
68
+ "outputKey": "snapshots",
69
+ "transforms": [
70
+ {
71
+ "expression": {
72
+ "body": "local event = {\n timestamp = MILLISECONDS_SINCE_EPOCH_FROM_RFC3999(TO_DATE_TIME(input.timestamp or input.receivedAt or input.originalTimestamp, { inputFormat = \"2006-01-02T15:04:05Z07:00\" })),\n uuid = input.messageId,\n key = \"page\",\n entity_id = \"ADD_YOUR_EVENT_ID_HERE\",\n tags = input.properties\n}\n\nreturn {{\n decisions = {},\n events = {event}\n}}",
73
+ "lang": "lua"
74
+ }
75
+ }
76
+ ]
77
+ }
78
+ ]
79
+ },
80
+ "products_searched": {
81
+ "mappings": [
82
+ {
83
+ "inputKey": "input",
84
+ "outputKey": "snapshots",
85
+ "transforms": [
86
+ {
87
+ "expression": {
88
+ "body": "local event = {\n timestamp = MILLISECONDS_SINCE_EPOCH_FROM_RFC3999(TO_DATE_TIME(input.timestamp or input.receivedAt or input.originalTimestamp, { inputFormat = \"2006-01-02T15:04:05Z07:00\" })),\n uuid = input.messageId,\n key = \"products_searched\",\n entity_id = \"ADD_YOUR_EVENT_ID_HERE\",\n tags = input.properties\n}\n\nreturn {{\n decisions = {},\n events = {event}\n}}",
89
+ "lang": "lua"
90
+ }
91
+ }
92
+ ]
93
+ }
94
+ ]
95
+ },
96
+ "product_list_viewed": {
97
+ "mappings": [
98
+ {
99
+ "inputKey": "input",
100
+ "outputKey": "snapshots",
101
+ "transforms": [
102
+ {
103
+ "expression": {
104
+ "body": "local event = {\n timestamp = MILLISECONDS_SINCE_EPOCH_FROM_RFC3999(TO_DATE_TIME(input.timestamp or input.receivedAt or input.originalTimestamp, { inputFormat = \"2006-01-02T15:04:05Z07:00\" })),\n uuid = input.messageId,\n key = \"product_list_viewed\",\n entity_id = \"ADD_YOUR_EVENT_ID_HERE\",\n tags = input.properties\n}\n\nreturn {{\n decisions = {},\n events = {event}\n}}",
105
+ "lang": "lua"
106
+ }
107
+ }
108
+ ]
109
+ }
110
+ ]
111
+ },
112
+ "product_clicked": {
113
+ "mappings": [
114
+ {
115
+ "inputKey": "input",
116
+ "outputKey": "snapshots",
117
+ "transforms": [
118
+ {
119
+ "expression": {
120
+ "body": "local event = {\n timestamp = MILLISECONDS_SINCE_EPOCH_FROM_RFC3999(TO_DATE_TIME(input.timestamp or input.receivedAt or input.originalTimestamp, { inputFormat = \"2006-01-02T15:04:05Z07:00\" })),\n uuid = input.messageId,\n key = \"product_clicked\",\n entity_id = \"ADD_YOUR_EVENT_ID_HERE\",\n tags = input.properties\n}\n\nreturn {{\n decisions = {},\n events = {event}\n}}",
121
+ "lang": "lua"
122
+ }
123
+ }
124
+ ]
125
+ }
126
+ ]
127
+ },
128
+ "product_viewed": {
129
+ "mappings": [
130
+ {
131
+ "inputKey": "input",
132
+ "outputKey": "snapshots",
133
+ "transforms": [
134
+ {
135
+ "expression": {
136
+ "body": "local event = {\n timestamp = MILLISECONDS_SINCE_EPOCH_FROM_RFC3999(TO_DATE_TIME(input.timestamp or input.receivedAt or input.originalTimestamp, { inputFormat = \"2006-01-02T15:04:05Z07:00\" })),\n uuid = input.messageId,\n key = \"product_viewed\",\n entity_id = \"ADD_YOUR_EVENT_ID_HERE\",\n revenue = TO_TRUNCATED_INT(TOTAL_VALUE(input.properties) * 100),\n tags = input.properties\n}\n\nreturn {{\n decisions = {},\n events = {event}\n}}",
137
+ "lang": "lua"
138
+ }
139
+ }
140
+ ]
141
+ }
142
+ ]
143
+ },
144
+ "product_added": {
145
+ "mappings": [
146
+ {
147
+ "inputKey": "input",
148
+ "outputKey": "snapshots",
149
+ "transforms": [
150
+ {
151
+ "expression": {
152
+ "body": "local event = {\n timestamp = MILLISECONDS_SINCE_EPOCH_FROM_RFC3999(TO_DATE_TIME(input.timestamp or input.receivedAt or input.originalTimestamp, { inputFormat = \"2006-01-02T15:04:05Z07:00\" })),\n uuid = input.messageId,\n key = \"product_added\",\n entity_id = \"ADD_YOUR_EVENT_ID_HERE\",\n quantity = input.properties.quantity,\n revenue = TO_TRUNCATED_INT(TOTAL_VALUE(input.properties) * 100),\n tags = input.properties\n}\n\nreturn {{\n decisions = {},\n events = {event}\n}}",
153
+ "lang": "lua"
154
+ }
155
+ }
156
+ ]
157
+ }
158
+ ]
159
+ },
160
+ "product_removed": {
161
+ "mappings": [
162
+ {
163
+ "inputKey": "input",
164
+ "outputKey": "snapshots",
165
+ "transforms": [
166
+ {
167
+ "expression": {
168
+ "body": "local event = {\n timestamp = MILLISECONDS_SINCE_EPOCH_FROM_RFC3999(TO_DATE_TIME(input.timestamp or input.receivedAt or input.originalTimestamp, { inputFormat = \"2006-01-02T15:04:05Z07:00\" })),\n uuid = input.messageId,\n key = \"product_removed\",\n entity_id = \"ADD_YOUR_EVENT_ID_HERE\",\n quantity = input.properties.quantity,\n tags = input.properties\n}\n\nreturn {{\n decisions = {},\n events = {event}\n}}",
169
+ "lang": "lua"
170
+ }
171
+ }
172
+ ]
173
+ }
174
+ ]
175
+ },
176
+ "cart_viewed": {
177
+ "mappings": [
178
+ {
179
+ "inputKey": "input",
180
+ "outputKey": "snapshots",
181
+ "transforms": [
182
+ {
183
+ "expression": {
184
+ "body": "local event = {\n timestamp = MILLISECONDS_SINCE_EPOCH_FROM_RFC3999(TO_DATE_TIME(input.timestamp or input.receivedAt or input.originalTimestamp, { inputFormat = \"2006-01-02T15:04:05Z07:00\" })),\n uuid = input.messageId,\n key = \"cart_viewed\",\n entity_id = \"ADD_YOUR_EVENT_ID_HERE\",\n revenue = TO_TRUNCATED_INT(TOTAL_VALUE(input.properties.products) * 100),\n tags = input.properties\n}\n\nreturn {{\n decisions = {},\n events = {event}\n}}",
185
+ "lang": "lua"
186
+ }
187
+ }
188
+ ]
189
+ }
190
+ ]
191
+ },
192
+ "checkout_started": {
193
+ "mappings": [
194
+ {
195
+ "inputKey": "input",
196
+ "outputKey": "snapshots",
197
+ "transforms": [
198
+ {
199
+ "expression": {
200
+ "body": "local event = {\n timestamp = MILLISECONDS_SINCE_EPOCH_FROM_RFC3999(TO_DATE_TIME(input.timestamp or input.receivedAt or input.originalTimestamp, { inputFormat = \"2006-01-02T15:04:05Z07:00\" })),\n uuid = input.messageId,\n key = \"checkout_started\",\n entity_id = \"ADD_YOUR_EVENT_ID_HERE\",\n revenue = TO_TRUNCATED_INT(TOTAL_VALUE(input.properties.products) * 100),\n tags = input.properties\n}\n\nreturn {{\n decisions = {},\n events = {event}\n}}",
201
+ "lang": "lua"
202
+ }
203
+ }
204
+ ]
205
+ }
206
+ ]
207
+ },
208
+ "payment_info_entered": {
209
+ "mappings": [
210
+ {
211
+ "inputKey": "input",
212
+ "outputKey": "snapshots",
213
+ "transforms": [
214
+ {
215
+ "expression": {
216
+ "body": "local event = {\n timestamp = MILLISECONDS_SINCE_EPOCH_FROM_RFC3999(TO_DATE_TIME(input.timestamp or input.receivedAt or input.originalTimestamp, { inputFormat = \"2006-01-02T15:04:05Z07:00\" })),\n uuid = input.messageId,\n key = \"payment_info_entered\",\n entity_id = \"ADD_YOUR_EVENT_ID_HERE\",\n tags = input.properties\n}\n\nreturn {{\n decisions = {},\n events = {event}\n}}",
217
+ "lang": "lua"
218
+ }
219
+ }
220
+ ]
221
+ }
222
+ ]
223
+ },
224
+ "order_completed": {
225
+ "mappings": [
226
+ {
227
+ "inputKey": "input",
228
+ "outputKey": "snapshots",
229
+ "transforms": [
230
+ {
231
+ "expression": {
232
+ "body": "local event = {\n timestamp = MILLISECONDS_SINCE_EPOCH_FROM_RFC3999(TO_DATE_TIME(input.timestamp or input.receivedAt or input.originalTimestamp, { inputFormat = \"2006-01-02T15:04:05Z07:00\" })),\n uuid = input.messageId,\n key = \"order_completed\",\n entity_id = \"ADD_YOUR_EVENT_ID_HERE\",\n revenue = TO_TRUNCATED_INT(TOTAL_VALUE(input.properties.products) * 100),\n tags = input.properties\n}\n\nreturn {{\n decisions = {},\n events = {event}\n}}",
233
+ "lang": "lua"
234
+ }
235
+ }
236
+ ]
237
+ }
238
+ ]
239
+ }
240
+ }
241
+ }
@@ -1 +1 @@
1
- "4f283851c3fb3eed2776910e4e40fa89 -"
1
+ "d4cf3b354f9a613a9104f5621692420d -"
package/README.md CHANGED
@@ -2,12 +2,14 @@
2
2
 
3
3
  ### 2026-01
4
4
  - Adobe Analytics
5
+ - Amazon DSP - Events
5
6
  - Attentive
6
7
  - CM360 - Floodlights
7
8
  - EngageFront
8
9
  - Google Ads - Conversions
9
10
  - Hightouch (New)
10
11
  - Meta CAPI
12
+ - Optimizely (New)
11
13
  - Pipeline Router (New)
12
14
  - Reddit Ads
13
15
  - Ringier Axel Springer Poland
@@ -26,7 +28,7 @@
26
28
  | Adobe Analytics | 2025-10-08 | 2026-01-07 | 2026-01-07 | Version: 1.0.0 | Stable Release |
27
29
  | Adobe Experience Platform | 2023-03-21 | 2025-08-20 | 2025-11-19 | Version: 1.1.0 | Added ECID support Updated identityMap mappings |
28
30
  | Adobe ID | 2023-03-07 | N/A | 2024-10-23 | Version: 0.2.0 | Added header `Accept-Encoding: application/json` |
29
- | Amazon DSP - Events | 2025-12-03 | N/A | 2025-12-03 | Version: 0.1.0 | Beta Version Amazon DSP - Events initial release |
31
+ | Amazon DSP - Events | 2025-12-03 | N/A | 2026-01-28 | Version: 0.2.0 | Amazon DSP - Events added match_id |
30
32
  | Amazon DSP CAPI | 2025-05-21 | 2025-08-13 | 2025-08-13 | Version: 1.0.0 | Stable Release |
31
33
  | Amazon Data Firehose | 2025-02-05 | 2025-04-02 | 2025-10-15 | Version: 1.0.1 | Added friendly names to expressions |
32
34
  | Amazon Kinesis | 2025-05-21 | N/A | 2025-10-15 | Version: 0.1.1 | Added friendly names to expressions |
@@ -43,7 +45,7 @@
43
45
  | Blueshift | 2021-06-24 | 2025-01-22 | 2025-10-15 | Version: 1.1.1 | Added friendly names to expressions |
44
46
  | Braze | 2021-06-24 | N/A | 2025-10-15 | Version: 1.0.1 | Added friendly names to expressions |
45
47
  | Button | 2025-02-19 | 2025-03-12 | 2025-07-30 | Version: 1.1.0 | Replaced context.traits with traits. |
46
- | CM360 - Floodlights | 2021-06-24 | 2025-08-20 | 2026-01-14 | Version: 1.1.0 | Migrated from V4 to V5 Updated all quantity fields and added the value field to all events. |
48
+ | CM360 - Floodlights | 2021-06-24 | 2025-08-20 | 2026-01-28 | Version: 1.2.0 | Updated quantity in events to ensure a minimum of 1 |
47
49
  | Clinch | 2024-04-24 | 2024-06-12 | 2025-10-15 | Version: 1.3.1 | Added friendly names to expressions |
48
50
  | Commission Junction | 2024-01-17 | 2024-04-24 | 2025-11-19 | Version: 1.5.1 | Added friendly name to trackingSource expression |
49
51
  | Convert | 2023-09-08 | N/A | 2024-11-20 | Version: 0.3.0 | Added new deduplication parameter for all events, `tid` |
@@ -85,6 +87,7 @@
85
87
  | Movable Ink - Customer Data | 2024-02-07 | 2024-04-24 | 2025-07-16 | Version: 1.3.0 | TABLE_SLICE custom function usage. |
86
88
  | Nextdoor | 2023-03-07 | 2024-08-07 | 2024-08-07 | Version: 1.0.0 | Stable release |
87
89
  | Nextdoor - CAPI | 2024-06-05 | 2024-07-17 | 2025-10-08 | Version: 1.4.0 | Extended Nextdoor CAPI events. |
90
+ | Optimizely (New) | 2026-01-28 | N/A | 2026-01-28 | Version: 0.1.0 | Beta Version Optimizely Event API initial release |
88
91
  | Perion | 2025-05-21 | 2025-07-16 | 2025-10-15 | Version: 1.0.1 | Added friendly names to expressions |
89
92
  | Pinterest Ads | 2021-06-24 | N/A | 2025-10-15 | Version: 1.1.1 | Added friendly names to expressions |
90
93
  | Pinterest CAPI | 2023-03-07 | N/A | 2024-10-23 | Version: 1.2.0 | Added header `Accept-Encoding: application/json` |
package/index.js CHANGED
@@ -441,6 +441,12 @@ exports['nextdoor-capi'] = {
441
441
  metadata: require('./.dist/nextdoor-capi/metadata.json')
442
442
  }
443
443
 
444
+ exports.optimizely = {
445
+ endpointSchema: require('./.dist/optimizely/connection.json'),
446
+ playbook: require('./.dist/optimizely/playbook.json'),
447
+ metadata: require('./.dist/optimizely/metadata.json')
448
+ }
449
+
444
450
  exports['perion'] = {
445
451
  endpointSchema: require('./.dist/perion/connection.json'),
446
452
  playbook: require('./.dist/perion/playbook.json'),
@@ -969,6 +975,11 @@ exports.etags = {
969
975
  playbook: require('./.dist/nextdoor-capi/playbook.etag.json'),
970
976
  kit: require('./.dist/nextdoor-capi/kit.etag.json')
971
977
  },
978
+ optimizely: {
979
+ endpointSchema: require('./.dist/optimizely/connection.etag.json'),
980
+ playbook: require('./.dist/optimizely/playbook.etag.json'),
981
+ kit: require('./.dist/optimizely/kit.etag.json')
982
+ },
972
983
  'perion': {
973
984
  endpointSchema: require('./.dist/perion/connection.etag.json'),
974
985
  playbook: require('./.dist/perion/playbook.etag.json'),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@metarouter/ajs-starter-kit",
3
- "version": "1.0.156",
3
+ "version": "1.0.157",
4
4
  "description": "MetaRouter analytics.js starter kit",
5
5
  "main": "index.js",
6
6
  "scripts": {