@metarouter/ajs-starter-kit 1.0.94 → 1.0.96
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.
- package/.dist/adobe-analytics/connection.etag.json +1 -1
- package/.dist/adobe-analytics/connection.json +14 -71
- package/.dist/adobe-analytics/kit.etag.json +1 -1
- package/.dist/adobe-analytics/metadata.json +4 -0
- package/.dist/adobe-analytics/playbook.etag.json +1 -1
- package/.dist/adobe-analytics/playbook.json +1 -1
- package/.dist/clinch/kit.etag.json +1 -1
- package/.dist/clinch/metadata.json +5 -1
- package/.dist/clinch/playbook.etag.json +1 -1
- package/.dist/clinch/playbook.json +1 -1
- package/.dist/nextdoor-capi/connection.etag.json +1 -0
- package/.dist/nextdoor-capi/connection.json +23 -0
- package/.dist/nextdoor-capi/kit.etag.json +1 -0
- package/.dist/nextdoor-capi/metadata.json +20 -0
- package/.dist/nextdoor-capi/playbook.etag.json +1 -0
- package/.dist/nextdoor-capi/playbook.json +223 -0
- package/.dist/snapchat-capi/connection.etag.json +1 -0
- package/.dist/snapchat-capi/connection.json +29 -0
- package/.dist/snapchat-capi/kit.etag.json +1 -0
- package/.dist/snapchat-capi/metadata.json +20 -0
- package/.dist/snapchat-capi/playbook.etag.json +1 -0
- package/.dist/snapchat-capi/playbook.json +720 -0
- package/README.md +10 -4
- package/index.js +151 -179
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -1,481 +1,484 @@
|
|
|
1
1
|
const connectionSchemas = require('./.dist/connection-schemas.json')
|
|
2
2
|
|
|
3
|
+
// SDK Integrations
|
|
4
|
+
|
|
5
|
+
exports.blob = {
|
|
6
|
+
connectionTemplate: connectionSchemas.properties.blob,
|
|
7
|
+
playbook: require('./.dist/blob/playbook.json'),
|
|
8
|
+
metadata: require('./.dist/blob/metadata.json')
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
exports.gcs = {
|
|
12
|
+
connectionTemplate: connectionSchemas.properties.gcs,
|
|
13
|
+
playbook: require('./.dist/gcs/playbook.json'),
|
|
14
|
+
metadata: require('./.dist/gcs/metadata.json')
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
exports['google-ads-audience'] = {
|
|
18
|
+
connectionTemplate: connectionSchemas.properties.googleAdsAudience,
|
|
19
|
+
playbook: require('./.dist/google-ads-audience/playbook.json'),
|
|
20
|
+
metadata: require('./.dist/google-ads-audience/metadata.json')
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
exports['google-bigquery-streaming'] = {
|
|
24
|
+
connectionTemplate: connectionSchemas.properties.googleBigqueryStreaming,
|
|
25
|
+
playbook: require('./.dist/google-bigquery-streaming/playbook.json'),
|
|
26
|
+
metadata: require('./.dist/google-bigquery-streaming/metadata.json')
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
exports['google-cm360'] = {
|
|
30
|
+
connectionTemplate: connectionSchemas.properties.googleCm360,
|
|
31
|
+
playbook: require('./.dist/google-cm360/playbook.json'),
|
|
32
|
+
metadata: require('./.dist/google-cm360/metadata.json')
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
exports['google-pubsub'] = {
|
|
36
|
+
connectionTemplate: connectionSchemas.properties.googlePubsub,
|
|
37
|
+
playbook: require('./.dist/google-pubsub/playbook.json'),
|
|
38
|
+
metadata: require('./.dist/google-pubsub/metadata.json')
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
exports.kafka = {
|
|
42
|
+
connectionTemplate: connectionSchemas.properties.kafka,
|
|
43
|
+
playbook: require('./.dist/kafka/playbook.json'),
|
|
44
|
+
metadata: require('./.dist/kafka/metadata.json')
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
exports.kinesis = {
|
|
48
|
+
connectionTemplate: connectionSchemas.properties.kinesis,
|
|
49
|
+
playbook: require('./.dist/kinesis/playbook.json'),
|
|
50
|
+
metadata: require('./.dist/kinesis/metadata.json')
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
exports.s3 = {
|
|
54
|
+
connectionTemplate: connectionSchemas.properties.s3,
|
|
55
|
+
playbook: require('./.dist/s3/playbook.json'),
|
|
56
|
+
metadata: require('./.dist/s3/metadata.json')
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
exports.snowflake = {
|
|
60
|
+
connectionTemplate: connectionSchemas.properties.snowflake,
|
|
61
|
+
playbook: require('./.dist/snowflake/playbook.json'),
|
|
62
|
+
metadata: require('./.dist/snowflake/metadata.json')
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
// HTTP Integrations
|
|
66
|
+
|
|
3
67
|
exports.actioniq = {
|
|
4
|
-
connectionTemplate: connectionSchemas.properties.actioniq,
|
|
5
68
|
endpointSchema: require('./.dist/actioniq/connection.json'),
|
|
6
69
|
playbook: require('./.dist/actioniq/playbook.json'),
|
|
7
70
|
metadata: require('./.dist/actioniq/metadata.json')
|
|
8
71
|
}
|
|
9
72
|
|
|
10
73
|
exports['acuity-ads'] = {
|
|
11
|
-
connectionTemplate: connectionSchemas.properties.acuityAds,
|
|
12
74
|
endpointSchema: require('./.dist/acuity-ads/connection.json'),
|
|
13
75
|
playbook: require('./.dist/acuity-ads/playbook.json'),
|
|
14
76
|
metadata: require('./.dist/acuity-ads/metadata.json')
|
|
15
77
|
}
|
|
16
78
|
|
|
17
79
|
exports['adobe-analytics'] = {
|
|
18
|
-
connectionTemplate: connectionSchemas.properties.adobeAnalytics,
|
|
19
80
|
endpointSchema: require('./.dist/adobe-analytics/connection.json'),
|
|
20
81
|
playbook: require('./.dist/adobe-analytics/playbook.json'),
|
|
21
82
|
metadata: require('./.dist/adobe-analytics/metadata.json')
|
|
22
83
|
}
|
|
23
84
|
|
|
24
85
|
exports['adobe-id'] = {
|
|
25
|
-
connectionTemplate: connectionSchemas.properties.adobeId,
|
|
26
86
|
endpointSchema: require('./.dist/adobe-id/connection.json'),
|
|
27
87
|
playbook: require('./.dist/adobe-id/playbook.json'),
|
|
28
88
|
metadata: require('./.dist/adobe-id/metadata.json')
|
|
29
89
|
}
|
|
30
90
|
|
|
31
91
|
exports.amnet = {
|
|
32
|
-
connectionTemplate: connectionSchemas.properties.amnet,
|
|
33
92
|
endpointSchema: require('./.dist/amnet/connection.json'),
|
|
34
93
|
playbook: require('./.dist/amnet/playbook.json'),
|
|
35
94
|
metadata: require('./.dist/amnet/metadata.json')
|
|
36
95
|
}
|
|
37
96
|
|
|
38
97
|
exports.amobee = {
|
|
39
|
-
connectionTemplate: connectionSchemas.properties.amobee,
|
|
40
98
|
endpointSchema: require('./.dist/amobee/connection.json'),
|
|
41
99
|
playbook: require('./.dist/amobee/playbook.json'),
|
|
42
100
|
metadata: require('./.dist/amobee/metadata.json')
|
|
43
101
|
}
|
|
44
102
|
|
|
45
103
|
exports.amperity = {
|
|
46
|
-
connectionTemplate: connectionSchemas.properties.amperity,
|
|
47
104
|
endpointSchema: require('./.dist/amperity/connection.json'),
|
|
48
105
|
playbook: require('./.dist/amperity/playbook.json'),
|
|
49
106
|
metadata: require('./.dist/amperity/metadata.json')
|
|
50
107
|
}
|
|
51
108
|
|
|
52
109
|
exports.amplitude = {
|
|
53
|
-
connectionTemplate: connectionSchemas.properties.amplitude,
|
|
54
110
|
endpointSchema: require('./.dist/amplitude/connection.json'),
|
|
55
111
|
playbook: require('./.dist/amplitude/playbook.json'),
|
|
56
112
|
metadata: require('./.dist/amplitude/metadata.json')
|
|
57
113
|
}
|
|
58
114
|
|
|
59
115
|
exports['apps-flyer-android'] = {
|
|
60
|
-
connectionTemplate: connectionSchemas.properties.appsFlyerAndroid,
|
|
61
116
|
endpointSchema: require('./.dist/apps-flyer-android/connection.json'),
|
|
62
117
|
playbook: require('./.dist/apps-flyer-android/playbook.json'),
|
|
63
118
|
metadata: require('./.dist/apps-flyer-android/metadata.json')
|
|
64
119
|
}
|
|
65
120
|
|
|
66
121
|
exports['apps-flyer-ios'] = {
|
|
67
|
-
connectionTemplate: connectionSchemas.properties.appsFlyerIos,
|
|
68
122
|
endpointSchema: require('./.dist/apps-flyer-ios/connection.json'),
|
|
69
123
|
playbook: require('./.dist/apps-flyer-ios/playbook.json'),
|
|
70
124
|
metadata: require('./.dist/apps-flyer-ios/metadata.json')
|
|
71
125
|
}
|
|
72
126
|
|
|
73
127
|
exports['bing-ads'] = {
|
|
74
|
-
connectionTemplate: connectionSchemas.properties.bingAds,
|
|
75
128
|
endpointSchema: require('./.dist/bing-ads/connection.json'),
|
|
76
129
|
playbook: require('./.dist/bing-ads/playbook.json'),
|
|
77
130
|
metadata: require('./.dist/bing-ads/metadata.json')
|
|
78
131
|
}
|
|
79
132
|
|
|
80
|
-
exports.blob = {
|
|
81
|
-
connectionTemplate: connectionSchemas.properties.blob,
|
|
82
|
-
playbook: require('./.dist/blob/playbook.json'),
|
|
83
|
-
metadata: require('./.dist/blob/metadata.json')
|
|
84
|
-
}
|
|
85
|
-
|
|
86
133
|
exports.bloomreach = {
|
|
87
|
-
connectionTemplate: connectionSchemas.properties.bloomreach,
|
|
88
134
|
endpointSchema: require('./.dist/bloomreach/connection.json'),
|
|
89
135
|
playbook: require('./.dist/bloomreach/playbook.json'),
|
|
90
136
|
metadata: require('./.dist/bloomreach/metadata.json')
|
|
91
137
|
}
|
|
92
138
|
|
|
93
139
|
exports.blueshift = {
|
|
94
|
-
connectionTemplate: connectionSchemas.properties.blueshift,
|
|
95
140
|
endpointSchema: require('./.dist/blueshift/connection.json'),
|
|
96
141
|
playbook: require('./.dist/blueshift/playbook.json'),
|
|
97
142
|
metadata: require('./.dist/blueshift/metadata.json')
|
|
98
143
|
}
|
|
99
144
|
|
|
100
145
|
exports.braze = {
|
|
101
|
-
connectionTemplate: connectionSchemas.properties.braze,
|
|
102
146
|
endpointSchema: require('./.dist/braze/connection.json'),
|
|
103
147
|
playbook: require('./.dist/braze/playbook.json'),
|
|
104
148
|
metadata: require('./.dist/braze/metadata.json')
|
|
105
149
|
}
|
|
106
150
|
|
|
107
151
|
exports['build-your-own'] = {
|
|
108
|
-
connectionTemplate: connectionSchemas.properties.buildYourOwn,
|
|
109
152
|
endpointSchema: require('./.dist/build-your-own/connection.json'),
|
|
110
153
|
playbook: require('./.dist/build-your-own/playbook.json'),
|
|
111
154
|
metadata: require('./.dist/build-your-own/metadata.json')
|
|
112
155
|
}
|
|
113
156
|
|
|
114
157
|
exports.clinch = {
|
|
115
|
-
connectionTemplate: connectionSchemas.properties.clinch,
|
|
116
158
|
endpointSchema: require('./.dist/clinch/connection.json'),
|
|
117
159
|
playbook: require('./.dist/clinch/playbook.json'),
|
|
118
160
|
metadata: require('./.dist/clinch/metadata.json')
|
|
119
161
|
}
|
|
120
162
|
|
|
121
163
|
exports.convert = {
|
|
122
|
-
connectionTemplate: connectionSchemas.properties.convert,
|
|
123
164
|
endpointSchema: require('./.dist/convert/connection.json'),
|
|
124
165
|
playbook: require('./.dist/convert/playbook.json'),
|
|
125
166
|
metadata: require('./.dist/convert/metadata.json')
|
|
126
|
-
}
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
}
|
|
167
|
+
}
|
|
168
|
+
exports['commission-junction'] = {
|
|
169
|
+
endpointSchema: require('./.dist/commission-junction/connection.json'),
|
|
170
|
+
playbook: require('./.dist/commission-junction/playbook.json'),
|
|
171
|
+
metadata: require('./.dist/commission-junction/metadata.json')
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
exports.criteo = {
|
|
175
|
+
endpointSchema: require('./.dist/criteo/connection.json'),
|
|
176
|
+
playbook: require('./.dist/criteo/playbook.json'),
|
|
177
|
+
metadata: require('./.dist/criteo/metadata.json')
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
exports['customer-io'] = {
|
|
181
|
+
endpointSchema: require('./.dist/customer-io/connection.json'),
|
|
182
|
+
playbook: require('./.dist/customer-io/playbook.json'),
|
|
183
|
+
metadata: require('./.dist/customer-io/metadata.json')
|
|
184
|
+
}
|
|
145
185
|
|
|
146
186
|
exports['facebook-pixel'] = {
|
|
147
|
-
connectionTemplate: connectionSchemas.properties.facebookPixel,
|
|
148
187
|
endpointSchema: require('./.dist/facebook-pixel/connection.json'),
|
|
149
188
|
playbook: require('./.dist/facebook-pixel/playbook.json'),
|
|
150
189
|
metadata: require('./.dist/facebook-pixel/metadata.json')
|
|
151
190
|
}
|
|
152
191
|
|
|
153
|
-
exports.gcs = {
|
|
154
|
-
connectionTemplate: connectionSchemas.properties.gcs,
|
|
155
|
-
playbook: require('./.dist/gcs/playbook.json'),
|
|
156
|
-
metadata: require('./.dist/gcs/metadata.json')
|
|
157
|
-
}
|
|
158
|
-
|
|
159
192
|
exports['google-ad-words'] = {
|
|
160
|
-
connectionTemplate: connectionSchemas.properties.googleAdWords,
|
|
161
193
|
endpointSchema: require('./.dist/google-ad-words/connection.json'),
|
|
162
194
|
playbook: require('./.dist/google-ad-words/playbook.json'),
|
|
163
195
|
metadata: require('./.dist/google-ad-words/metadata.json')
|
|
164
196
|
}
|
|
165
197
|
|
|
166
198
|
exports['google-ads'] = {
|
|
167
|
-
connectionTemplate: connectionSchemas.properties.googleAds,
|
|
168
199
|
endpointSchema: require('./.dist/google-ads/connection.json'),
|
|
169
200
|
playbook: require('./.dist/google-ads/playbook.json'),
|
|
170
201
|
metadata: require('./.dist/google-ads/metadata.json')
|
|
171
202
|
}
|
|
172
203
|
|
|
173
|
-
exports['google-ads-audience'] = {
|
|
174
|
-
connectionTemplate: connectionSchemas.properties.googleAdsAudience,
|
|
175
|
-
playbook: require('./.dist/google-ads-audience/playbook.json'),
|
|
176
|
-
metadata: require('./.dist/google-ads-audience/metadata.json')
|
|
177
|
-
}
|
|
178
|
-
|
|
179
204
|
exports['google-analytics'] = {
|
|
180
|
-
connectionTemplate: connectionSchemas.properties.googleAnalytics,
|
|
181
205
|
endpointSchema: require('./.dist/google-analytics/connection.json'),
|
|
182
206
|
playbook: require('./.dist/google-analytics/playbook.json'),
|
|
183
207
|
metadata: require('./.dist/google-analytics/metadata.json')
|
|
184
208
|
}
|
|
185
209
|
|
|
186
210
|
exports['google-analytics-4'] = {
|
|
187
|
-
connectionTemplate: connectionSchemas.properties.googleAnalytics4,
|
|
188
211
|
endpointSchema: require('./.dist/google-analytics-4/connection.json'),
|
|
189
212
|
playbook: require('./.dist/google-analytics-4/playbook.json'),
|
|
190
213
|
metadata: require('./.dist/google-analytics-4/metadata.json')
|
|
191
214
|
}
|
|
192
215
|
|
|
193
216
|
exports['google-analytics-4-collect'] = {
|
|
194
|
-
connectionTemplate: connectionSchemas.properties.googleAnalytics4Collect,
|
|
195
217
|
endpointSchema: require('./.dist/google-analytics-4-collect/connection.json'),
|
|
196
218
|
playbook: require('./.dist/google-analytics-4-collect/playbook.json'),
|
|
197
219
|
metadata: require('./.dist/google-analytics-4-collect/metadata.json')
|
|
198
220
|
}
|
|
199
221
|
|
|
200
|
-
exports['google-bigquery-streaming'] = {
|
|
201
|
-
connectionTemplate: connectionSchemas.properties.googleBigqueryStreaming,
|
|
202
|
-
playbook: require('./.dist/google-bigquery-streaming/playbook.json'),
|
|
203
|
-
metadata: require('./.dist/google-bigquery-streaming/metadata.json')
|
|
204
|
-
}
|
|
205
|
-
|
|
206
|
-
exports['google-cm360'] = {
|
|
207
|
-
connectionTemplate: connectionSchemas.properties.googleCm360,
|
|
208
|
-
playbook: require('./.dist/google-cm360/playbook.json'),
|
|
209
|
-
metadata: require('./.dist/google-cm360/metadata.json')
|
|
210
|
-
}
|
|
211
|
-
|
|
212
222
|
exports['google-firebase'] = {
|
|
213
|
-
connectionTemplate: connectionSchemas.properties.googlefirebase,
|
|
214
223
|
endpointSchema: require('./.dist/google-firebase/connection.json'),
|
|
215
224
|
playbook: require('./.dist/google-firebase/playbook.json'),
|
|
216
225
|
metadata: require('./.dist/google-firebase/metadata.json')
|
|
217
226
|
}
|
|
218
227
|
|
|
219
|
-
exports['google-pubsub'] = {
|
|
220
|
-
connectionTemplate: connectionSchemas.properties.googlePubsub,
|
|
221
|
-
playbook: require('./.dist/google-pubsub/playbook.json'),
|
|
222
|
-
metadata: require('./.dist/google-pubsub/metadata.json')
|
|
223
|
-
}
|
|
224
228
|
exports.heap = {
|
|
225
|
-
connectionTemplate: connectionSchemas.properties.convert,
|
|
226
229
|
endpointSchema: require('./.dist/heap/connection.json'),
|
|
227
230
|
playbook: require('./.dist/heap/playbook.json'),
|
|
228
231
|
metadata: require('./.dist/heap/metadata.json')
|
|
229
|
-
}
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
exports['hubspot-event'] = {
|
|
235
|
+
endpointSchema: require('./.dist/hubspot-event/connection.json'),
|
|
236
|
+
playbook: require('./.dist/hubspot-event/playbook.json'),
|
|
237
|
+
metadata: require('./.dist/hubspot-event/metadata.json')
|
|
238
|
+
}
|
|
236
239
|
|
|
237
240
|
exports['impact-radius'] = {
|
|
238
|
-
connectionTemplate: connectionSchemas.properties.impactRadius,
|
|
239
241
|
endpointSchema: require('./.dist/impact-radius/connection.json'),
|
|
240
242
|
playbook: require('./.dist/impact-radius/playbook.json'),
|
|
241
243
|
metadata: require('./.dist/impact-radius/metadata.json')
|
|
242
244
|
}
|
|
243
245
|
|
|
244
246
|
exports['in-market'] = {
|
|
245
|
-
connectionTemplate: connectionSchemas.properties.inMarket,
|
|
246
247
|
endpointSchema: require('./.dist/in-market/connection.json'),
|
|
247
248
|
playbook: require('./.dist/in-market/playbook.json'),
|
|
248
249
|
metadata: require('./.dist/in-market/metadata.json')
|
|
249
250
|
}
|
|
250
251
|
|
|
251
|
-
exports.kafka = {
|
|
252
|
-
connectionTemplate: connectionSchemas.properties.kafka,
|
|
253
|
-
playbook: require('./.dist/kafka/playbook.json'),
|
|
254
|
-
metadata: require('./.dist/kafka/metadata.json')
|
|
255
|
-
}
|
|
256
|
-
|
|
257
|
-
exports.kinesis = {
|
|
258
|
-
connectionTemplate: connectionSchemas.properties.kinesis,
|
|
259
|
-
playbook: require('./.dist/kinesis/playbook.json'),
|
|
260
|
-
metadata: require('./.dist/kinesis/metadata.json')
|
|
261
|
-
}
|
|
262
|
-
|
|
263
252
|
exports.kochava = {
|
|
264
|
-
connectionTemplate: connectionSchemas.properties.kochava,
|
|
265
253
|
endpointSchema: require('./.dist/kochava/connection.json'),
|
|
266
254
|
playbook: require('./.dist/kochava/playbook.json'),
|
|
267
255
|
metadata: require('./.dist/kochava/metadata.json')
|
|
268
256
|
}
|
|
269
257
|
|
|
270
258
|
exports.lytics = {
|
|
271
|
-
connectionTemplate: connectionSchemas.properties.lytics,
|
|
272
259
|
endpointSchema: require('./.dist/lytics/connection.json'),
|
|
273
260
|
playbook: require('./.dist/lytics/playbook.json'),
|
|
274
261
|
metadata: require('./.dist/lytics/metadata.json')
|
|
275
262
|
}
|
|
276
263
|
|
|
277
264
|
exports['media-math'] = {
|
|
278
|
-
connectionTemplate: connectionSchemas.properties.mediaMath,
|
|
279
265
|
endpointSchema: require('./.dist/media-math/connection.json'),
|
|
280
266
|
playbook: require('./.dist/media-math/playbook.json'),
|
|
281
267
|
metadata: require('./.dist/media-math/metadata.json')
|
|
282
268
|
}
|
|
283
269
|
|
|
284
270
|
exports.merkle = {
|
|
285
|
-
connectionTemplate: connectionSchemas.properties.merkle,
|
|
286
271
|
endpointSchema: require('./.dist/merkle/connection.json'),
|
|
287
272
|
playbook: require('./.dist/merkle/playbook.json'),
|
|
288
273
|
metadata: require('./.dist/merkle/metadata.json')
|
|
289
274
|
}
|
|
290
275
|
|
|
291
276
|
exports['miq-xandr'] = {
|
|
292
|
-
connectionTemplate: connectionSchemas.properties.miqXandr,
|
|
293
277
|
endpointSchema: require('./.dist/miq-xandr/connection.json'),
|
|
294
278
|
playbook: require('./.dist/miq-xandr/playbook.json'),
|
|
295
279
|
metadata: require('./.dist/miq-xandr/metadata.json')
|
|
296
280
|
}
|
|
297
281
|
|
|
298
282
|
exports.mixpanel = {
|
|
299
|
-
connectionTemplate: connectionSchemas.properties.mixpanel,
|
|
300
283
|
endpointSchema: require('./.dist/mixpanel/connection.json'),
|
|
301
284
|
playbook: require('./.dist/mixpanel/playbook.json'),
|
|
302
285
|
metadata: require('./.dist/mixpanel/metadata.json')
|
|
303
286
|
}
|
|
304
287
|
|
|
305
288
|
exports['movable-ink'] = {
|
|
306
|
-
connectionTemplate: connectionSchemas.properties.movableInk,
|
|
307
289
|
endpointSchema: require('./.dist/movable-ink/connection.json'),
|
|
308
290
|
playbook: require('./.dist/movable-ink/playbook.json'),
|
|
309
291
|
metadata: require('./.dist/movable-ink/metadata.json')
|
|
310
292
|
}
|
|
311
293
|
|
|
312
294
|
exports['movable-ink-customer-data'] = {
|
|
313
|
-
connectionTemplate: connectionSchemas.properties.movableInkCustomerData,
|
|
314
295
|
endpointSchema: require('./.dist/movable-ink-customer-data/connection.json'),
|
|
315
296
|
playbook: require('./.dist/movable-ink-customer-data/playbook.json'),
|
|
316
297
|
metadata: require('./.dist/movable-ink-customer-data/metadata.json')
|
|
317
298
|
}
|
|
318
299
|
|
|
319
300
|
exports['nextdoor'] = {
|
|
320
|
-
connectionTemplate: connectionSchemas.properties.nextdoor,
|
|
321
301
|
endpointSchema: require('./.dist/nextdoor/connection.json'),
|
|
322
302
|
playbook: require('./.dist/nextdoor/playbook.json'),
|
|
323
303
|
metadata: require('./.dist/nextdoor/metadata.json')
|
|
324
304
|
}
|
|
325
305
|
|
|
306
|
+
exports['nextdoor-capi'] = {
|
|
307
|
+
endpointSchema: require('./.dist/nextdoor-capi/connection.json'),
|
|
308
|
+
playbook: require('./.dist/nextdoor-capi/playbook.json'),
|
|
309
|
+
metadata: require('./.dist/nextdoor-capi/metadata.json')
|
|
310
|
+
}
|
|
311
|
+
|
|
326
312
|
exports.pinterest = {
|
|
327
|
-
connectionTemplate: connectionSchemas.properties.pinterest,
|
|
328
313
|
endpointSchema: require('./.dist/pinterest/connection.json'),
|
|
329
314
|
playbook: require('./.dist/pinterest/playbook.json'),
|
|
330
315
|
metadata: require('./.dist/pinterest/metadata.json')
|
|
331
316
|
}
|
|
332
317
|
|
|
333
318
|
exports['pinterest-capi'] = {
|
|
334
|
-
connectionTemplate: connectionSchemas.properties.pinterestCapi,
|
|
335
319
|
endpointSchema: require('./.dist/pinterest-capi/connection.json'),
|
|
336
320
|
playbook: require('./.dist/pinterest-capi/playbook.json'),
|
|
337
321
|
metadata: require('./.dist/pinterest-capi/metadata.json')
|
|
338
322
|
}
|
|
339
323
|
|
|
340
324
|
exports.podsights = {
|
|
341
|
-
connectionTemplate: connectionSchemas.properties.podsights,
|
|
342
325
|
endpointSchema: require('./.dist/podsights/connection.json'),
|
|
343
326
|
playbook: require('./.dist/podsights/playbook.json'),
|
|
344
327
|
metadata: require('./.dist/podsights/metadata.json')
|
|
345
328
|
}
|
|
346
329
|
|
|
347
330
|
exports['reddit-ads'] = {
|
|
348
|
-
connectionTemplate: connectionSchemas.properties.redditAds,
|
|
349
331
|
endpointSchema: require('./.dist/reddit-ads/connection.json'),
|
|
350
332
|
playbook: require('./.dist/reddit-ads/playbook.json'),
|
|
351
333
|
metadata: require('./.dist/reddit-ads/metadata.json')
|
|
352
334
|
}
|
|
353
335
|
|
|
354
336
|
exports['rev-jet'] = {
|
|
355
|
-
connectionTemplate: connectionSchemas.properties.revJet,
|
|
356
337
|
endpointSchema: require('./.dist/rev-jet/connection.json'),
|
|
357
338
|
playbook: require('./.dist/rev-jet/playbook.json'),
|
|
358
339
|
metadata: require('./.dist/rev-jet/metadata.json')
|
|
359
340
|
}
|
|
360
341
|
|
|
361
342
|
exports.roku = {
|
|
362
|
-
connectionTemplate: connectionSchemas.properties.roku,
|
|
363
343
|
endpointSchema: require('./.dist/roku/connection.json'),
|
|
364
344
|
playbook: require('./.dist/roku/playbook.json'),
|
|
365
345
|
metadata: require('./.dist/roku/metadata.json')
|
|
366
346
|
}
|
|
367
347
|
|
|
368
348
|
exports.roomvo = {
|
|
369
|
-
connectionTemplate: connectionSchemas.properties.roomvo,
|
|
370
349
|
endpointSchema: require('./.dist/roomvo/connection.json'),
|
|
371
350
|
playbook: require('./.dist/roomvo/playbook.json'),
|
|
372
351
|
metadata: require('./.dist/roomvo/metadata.json')
|
|
373
352
|
}
|
|
374
353
|
|
|
375
|
-
exports.s3 = {
|
|
376
|
-
connectionTemplate: connectionSchemas.properties.s3,
|
|
377
|
-
playbook: require('./.dist/s3/playbook.json'),
|
|
378
|
-
metadata: require('./.dist/s3/metadata.json')
|
|
379
|
-
}
|
|
380
|
-
|
|
381
354
|
exports['salesforce-cdp'] = {
|
|
382
|
-
connectionTemplate: connectionSchemas.properties.salesforceCdp,
|
|
383
355
|
endpointSchema: require('./.dist/salesforce-cdp/connection.json'),
|
|
384
356
|
playbook: require('./.dist/salesforce-cdp/playbook.json'),
|
|
385
357
|
metadata: require('./.dist/salesforce-cdp/metadata.json')
|
|
386
358
|
}
|
|
387
359
|
|
|
388
360
|
exports.snapchat = {
|
|
389
|
-
connectionTemplate: connectionSchemas.properties.snapchat,
|
|
390
361
|
endpointSchema: require('./.dist/snapchat/connection.json'),
|
|
391
362
|
playbook: require('./.dist/snapchat/playbook.json'),
|
|
392
363
|
metadata: require('./.dist/snapchat/metadata.json')
|
|
393
364
|
}
|
|
394
365
|
|
|
395
|
-
exports
|
|
396
|
-
|
|
397
|
-
playbook: require('./.dist/
|
|
398
|
-
metadata: require('./.dist/
|
|
366
|
+
exports['snapchat-capi'] = {
|
|
367
|
+
endpointSchema: require('./.dist/snapchat-capi/connection.json'),
|
|
368
|
+
playbook: require('./.dist/snapchat-capi/playbook.json'),
|
|
369
|
+
metadata: require('./.dist/snapchat-capi/metadata.json')
|
|
399
370
|
}
|
|
400
371
|
|
|
401
372
|
exports['thetradedesk-conversion-events'] = {
|
|
402
|
-
connectionTemplate: '',
|
|
403
373
|
endpointSchema: require('./.dist/thetradedesk-conversion-events/connection.json'),
|
|
404
374
|
playbook: require('./.dist/thetradedesk-conversion-events/playbook.json'),
|
|
405
375
|
metadata: require('./.dist/thetradedesk-conversion-events/metadata.json')
|
|
406
376
|
}
|
|
407
377
|
|
|
408
378
|
exports['thetradedesk-data-advertiser-firstparty'] = {
|
|
409
|
-
connectionTemplate: '',
|
|
410
379
|
endpointSchema: require('./.dist/thetradedesk-data-advertiser-firstparty/connection.json'),
|
|
411
380
|
playbook: require('./.dist/thetradedesk-data-advertiser-firstparty/playbook.json'),
|
|
412
381
|
metadata: require('./.dist/thetradedesk-data-advertiser-firstparty/metadata.json')
|
|
413
382
|
}
|
|
414
383
|
|
|
415
384
|
exports.tiktok = {
|
|
416
|
-
connectionTemplate: connectionSchemas.properties.tiktok,
|
|
417
385
|
endpointSchema: require('./.dist/tiktok/connection.json'),
|
|
418
386
|
playbook: require('./.dist/tiktok/playbook.json'),
|
|
419
387
|
metadata: require('./.dist/tiktok/metadata.json')
|
|
420
388
|
}
|
|
421
389
|
|
|
422
390
|
exports['treasure-data'] = {
|
|
423
|
-
connectionTemplate: connectionSchemas.properties.treasureData,
|
|
424
391
|
endpointSchema: require('./.dist/treasure-data/connection.json'),
|
|
425
392
|
playbook: require('./.dist/treasure-data/playbook.json'),
|
|
426
393
|
metadata: require('./.dist/treasure-data/metadata.json')
|
|
427
394
|
}
|
|
428
395
|
|
|
429
396
|
exports['twitter-conversions'] = {
|
|
430
|
-
connectionTemplate: connectionSchemas.properties.twitterConversions,
|
|
431
397
|
endpointSchema: require('./.dist/twitter-conversions/connection.json'),
|
|
432
398
|
playbook: require('./.dist/twitter-conversions/playbook.json'),
|
|
433
399
|
metadata: require('./.dist/twitter-conversions/metadata.json')
|
|
434
400
|
}
|
|
435
401
|
|
|
436
402
|
exports['verizon-media'] = {
|
|
437
|
-
connectionTemplate: connectionSchemas.properties.verizonMedia,
|
|
438
403
|
endpointSchema: require('./.dist/verizon-media/connection.json'),
|
|
439
404
|
playbook: require('./.dist/verizon-media/playbook.json'),
|
|
440
405
|
metadata: require('./.dist/verizon-media/metadata.json')
|
|
441
406
|
}
|
|
442
407
|
|
|
443
408
|
exports.videoamp = {
|
|
444
|
-
connectionTemplate: connectionSchemas.properties.videoamp,
|
|
445
409
|
endpointSchema: require('./.dist/videoamp/connection.json'),
|
|
446
410
|
playbook: require('./.dist/videoamp/playbook.json'),
|
|
447
411
|
metadata: require('./.dist/videoamp/metadata.json')
|
|
448
412
|
}
|
|
449
413
|
|
|
450
414
|
exports.xandr = {
|
|
451
|
-
connectionTemplate: connectionSchemas.properties.xandr,
|
|
452
415
|
endpointSchema: require('./.dist/xandr/connection.json'),
|
|
453
416
|
playbook: require('./.dist/xandr/playbook.json'),
|
|
454
417
|
metadata: require('./.dist/xandr/metadata.json')
|
|
455
418
|
}
|
|
456
419
|
|
|
457
420
|
exports['yahoo-enhanced-attribution'] = {
|
|
458
|
-
connectionTemplate: connectionSchemas.properties.yahooEnhancedAttribution,
|
|
459
421
|
endpointSchema: require('./.dist/yahoo-enhanced-attribution/connection.json'),
|
|
460
422
|
playbook: require('./.dist/yahoo-enhanced-attribution/playbook.json'),
|
|
461
423
|
metadata: require('./.dist/yahoo-enhanced-attribution/metadata.json')
|
|
462
424
|
}
|
|
463
425
|
|
|
464
426
|
exports['yahoo-offline-conversion'] = {
|
|
465
|
-
connectionTemplate: connectionSchemas.properties.yahooOfflineConversion,
|
|
466
427
|
endpointSchema: require('./.dist/yahoo-offline-conversion/connection.json'),
|
|
467
428
|
playbook: require('./.dist/yahoo-offline-conversion/playbook.json'),
|
|
468
429
|
metadata: require('./.dist/yahoo-offline-conversion/metadata.json')
|
|
469
430
|
}
|
|
470
431
|
|
|
471
432
|
exports['zeotap'] = {
|
|
472
|
-
connectionTemplate: connectionSchemas.properties.zeotap,
|
|
473
433
|
endpointSchema: require('./.dist/zeotap/connection.json'),
|
|
474
434
|
playbook: require('./.dist/zeotap/playbook.json'),
|
|
475
435
|
metadata: require('./.dist/zeotap/metadata.json')
|
|
476
436
|
}
|
|
477
437
|
|
|
478
438
|
exports.etags = {
|
|
439
|
+
// SDK Integrations
|
|
440
|
+
blob: {
|
|
441
|
+
playbook: require('./.dist/blob/playbook.etag.json'),
|
|
442
|
+
kit: require('./.dist/blob/kit.etag.json')
|
|
443
|
+
},
|
|
444
|
+
gcs: {
|
|
445
|
+
playbook: require('./.dist/gcs/playbook.etag.json'),
|
|
446
|
+
kit: require('./.dist/gcs/kit.etag.json')
|
|
447
|
+
},
|
|
448
|
+
'google-ads-audience': {
|
|
449
|
+
endpointSchema: require('./.dist/google-ads-audience/connection.etag.json'),
|
|
450
|
+
playbook: require('./.dist/google-ads-audience/playbook.etag.json'),
|
|
451
|
+
kit: require('./.dist/google-ads-audience/kit.etag.json')
|
|
452
|
+
},
|
|
453
|
+
'google-bigquery-streaming': {
|
|
454
|
+
playbook: require('./.dist/google-bigquery-streaming/playbook.etag.json'),
|
|
455
|
+
kit: require('./.dist/google-bigquery-streaming/kit.etag.json')
|
|
456
|
+
},
|
|
457
|
+
'google-cm360': {
|
|
458
|
+
playbook: require('./.dist/google-cm360/playbook.etag.json'),
|
|
459
|
+
kit: require('./.dist/google-cm360/kit.etag.json')
|
|
460
|
+
},
|
|
461
|
+
'google-pubsub': {
|
|
462
|
+
playbook: require('./.dist/google-pubsub/playbook.etag.json'),
|
|
463
|
+
kit: require('./.dist/google-pubsub/kit.etag.json')
|
|
464
|
+
},
|
|
465
|
+
kafka: {
|
|
466
|
+
playbook: require('./.dist/kafka/playbook.etag.json'),
|
|
467
|
+
kit: require('./.dist/kafka/kit.etag.json')
|
|
468
|
+
},
|
|
469
|
+
kinesis: {
|
|
470
|
+
playbook: require('./.dist/kinesis/playbook.etag.json'),
|
|
471
|
+
kit: require('./.dist/kinesis/kit.etag.json')
|
|
472
|
+
},
|
|
473
|
+
s3: {
|
|
474
|
+
playbook: require('./.dist/s3/playbook.etag.json'),
|
|
475
|
+
kit: require('./.dist/s3/kit.etag.json')
|
|
476
|
+
},
|
|
477
|
+
snowflake: {
|
|
478
|
+
playbook: require('./.dist/snowflake/playbook.etag.json'),
|
|
479
|
+
kit: require('./.dist/snowflake/kit.etag.json')
|
|
480
|
+
},
|
|
481
|
+
// HTTP Integrations
|
|
479
482
|
actioniq: {
|
|
480
483
|
endpointSchema: require('./.dist/actioniq/connection.etag.json'),
|
|
481
484
|
playbook: require('./.dist/actioniq/playbook.etag.json'),
|
|
@@ -532,10 +535,6 @@ exports.etags = {
|
|
|
532
535
|
playbook: require('./.dist/bing-ads/playbook.etag.json'),
|
|
533
536
|
kit: require('./.dist/bing-ads/kit.etag.json')
|
|
534
537
|
},
|
|
535
|
-
blob: {
|
|
536
|
-
playbook: require('./.dist/blob/playbook.etag.json'),
|
|
537
|
-
kit: require('./.dist/blob/kit.etag.json')
|
|
538
|
-
},
|
|
539
538
|
bloomreach: {
|
|
540
539
|
endpointSchema: require('./.dist/bloomreach/connection.etag.json'),
|
|
541
540
|
playbook: require('./.dist/bloomreach/playbook.etag.json'),
|
|
@@ -586,10 +585,6 @@ exports.etags = {
|
|
|
586
585
|
playbook: require('./.dist/facebook-pixel/playbook.etag.json'),
|
|
587
586
|
kit: require('./.dist/facebook-pixel/kit.etag.json')
|
|
588
587
|
},
|
|
589
|
-
gcs: {
|
|
590
|
-
playbook: require('./.dist/gcs/playbook.etag.json'),
|
|
591
|
-
kit: require('./.dist/gcs/kit.etag.json')
|
|
592
|
-
},
|
|
593
588
|
'google-ad-words': {
|
|
594
589
|
endpointSchema: require('./.dist/google-ad-words/connection.etag.json'),
|
|
595
590
|
playbook: require('./.dist/google-ad-words/playbook.etag.json'),
|
|
@@ -600,11 +595,6 @@ exports.etags = {
|
|
|
600
595
|
playbook: require('./.dist/google-ads/playbook.etag.json'),
|
|
601
596
|
kit: require('./.dist/google-ads/kit.etag.json')
|
|
602
597
|
},
|
|
603
|
-
'google-ads-audience': {
|
|
604
|
-
endpointSchema: require('./.dist/google-ads-audience/connection.etag.json'),
|
|
605
|
-
playbook: require('./.dist/google-ads-audience/playbook.etag.json'),
|
|
606
|
-
kit: require('./.dist/google-ads-audience/kit.etag.json')
|
|
607
|
-
},
|
|
608
598
|
'google-analytics': {
|
|
609
599
|
endpointSchema: require('./.dist/google-analytics/connection.etag.json'),
|
|
610
600
|
playbook: require('./.dist/google-analytics/playbook.etag.json'),
|
|
@@ -620,22 +610,10 @@ exports.etags = {
|
|
|
620
610
|
playbook: require('./.dist/google-analytics-4-collect/playbook.etag.json'),
|
|
621
611
|
kit: require('./.dist/google-analytics-4-collect/kit.etag.json')
|
|
622
612
|
},
|
|
623
|
-
'google-bigquery-streaming': {
|
|
624
|
-
playbook: require('./.dist/google-bigquery-streaming/playbook.etag.json'),
|
|
625
|
-
kit: require('./.dist/google-bigquery-streaming/kit.etag.json')
|
|
626
|
-
},
|
|
627
|
-
'google-cm360': {
|
|
628
|
-
playbook: require('./.dist/google-cm360/playbook.etag.json'),
|
|
629
|
-
kit: require('./.dist/google-cm360/kit.etag.json')
|
|
630
|
-
},
|
|
631
613
|
'google-firebase': {
|
|
632
614
|
playbook: require('./.dist/google-firebase/playbook.etag.json'),
|
|
633
615
|
kit: require('./.dist/google-firebase/kit.etag.json')
|
|
634
616
|
},
|
|
635
|
-
'google-pubsub': {
|
|
636
|
-
playbook: require('./.dist/google-pubsub/playbook.etag.json'),
|
|
637
|
-
kit: require('./.dist/google-pubsub/kit.etag.json')
|
|
638
|
-
},
|
|
639
617
|
heap: {
|
|
640
618
|
endpointSchema: require('./.dist/heap/connection.etag.json'),
|
|
641
619
|
playbook: require('./.dist/heap/playbook.etag.json'),
|
|
@@ -656,14 +634,6 @@ exports.etags = {
|
|
|
656
634
|
playbook: require('./.dist/in-market/playbook.etag.json'),
|
|
657
635
|
kit: require('./.dist/in-market/kit.etag.json')
|
|
658
636
|
},
|
|
659
|
-
kafka: {
|
|
660
|
-
playbook: require('./.dist/kafka/playbook.etag.json'),
|
|
661
|
-
kit: require('./.dist/kafka/kit.etag.json')
|
|
662
|
-
},
|
|
663
|
-
kinesis: {
|
|
664
|
-
playbook: require('./.dist/kinesis/playbook.etag.json'),
|
|
665
|
-
kit: require('./.dist/kinesis/kit.etag.json')
|
|
666
|
-
},
|
|
667
637
|
kochava: {
|
|
668
638
|
playbook: require('./.dist/kochava/playbook.etag.json'),
|
|
669
639
|
kit: require('./.dist/kochava/kit.etag.json')
|
|
@@ -708,6 +678,11 @@ exports.etags = {
|
|
|
708
678
|
playbook: require('./.dist/nextdoor/playbook.etag.json'),
|
|
709
679
|
kit: require('./.dist/nextdoor/kit.etag.json')
|
|
710
680
|
},
|
|
681
|
+
'nextdoor-capi': {
|
|
682
|
+
endpointSchema: require('./.dist/nextdoor-capi/connection.etag.json'),
|
|
683
|
+
playbook: require('./.dist/nextdoor-capi/playbook.etag.json'),
|
|
684
|
+
kit: require('./.dist/nextdoor-capi/kit.etag.json')
|
|
685
|
+
},
|
|
711
686
|
pinterest: {
|
|
712
687
|
endpointSchema: require('./.dist/pinterest/connection.etag.json'),
|
|
713
688
|
playbook: require('./.dist/pinterest/playbook.etag.json'),
|
|
@@ -743,10 +718,6 @@ exports.etags = {
|
|
|
743
718
|
playbook: require('./.dist/roomvo/playbook.etag.json'),
|
|
744
719
|
kit: require('./.dist/roomvo/kit.etag.json')
|
|
745
720
|
},
|
|
746
|
-
s3: {
|
|
747
|
-
playbook: require('./.dist/s3/playbook.etag.json'),
|
|
748
|
-
kit: require('./.dist/s3/kit.etag.json')
|
|
749
|
-
},
|
|
750
721
|
'salesforce-cdp': {
|
|
751
722
|
endpointSchema: require('./.dist/salesforce-cdp/connection.etag.json'),
|
|
752
723
|
playbook: require('./.dist/salesforce-cdp/playbook.etag.json'),
|
|
@@ -757,9 +728,10 @@ exports.etags = {
|
|
|
757
728
|
playbook: require('./.dist/snapchat/playbook.etag.json'),
|
|
758
729
|
kit: require('./.dist/snapchat/kit.etag.json')
|
|
759
730
|
},
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
731
|
+
'snapchat-capi': {
|
|
732
|
+
endpointSchema: require('./.dist/snapchat-capi/connection.etag.json'),
|
|
733
|
+
playbook: require('./.dist/snapchat-capi/playbook.etag.json'),
|
|
734
|
+
kit: require('./.dist/snapchat-capi/kit.etag.json')
|
|
763
735
|
},
|
|
764
736
|
'thetradedesk-conversion-events': {
|
|
765
737
|
endpointSchema: require('./.dist/thetradedesk-conversion-events/connection.etag.json'),
|