@metarouter/ajs-starter-kit 1.0.154 → 1.0.155
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/attentive/kit.etag.json +1 -1
- package/.dist/attentive/metadata.json +4 -0
- package/.dist/attentive/playbook.etag.json +1 -1
- package/.dist/attentive/playbook.json +101 -303
- package/.dist/connection-schemas.json +4 -0
- package/.dist/engage-front/kit.etag.json +1 -1
- package/.dist/engage-front/metadata.json +4 -0
- package/.dist/engage-front/playbook.etag.json +1 -1
- package/.dist/engage-front/playbook.json +153 -22
- package/.dist/google-cm360/kit.etag.json +1 -1
- package/.dist/google-cm360/metadata.json +4 -0
- package/.dist/google-cm360/playbook.etag.json +1 -1
- package/.dist/google-cm360/playbook.json +17 -22
- package/.dist/hightouch/connection.etag.json +1 -0
- package/.dist/hightouch/connection.json +87 -0
- package/.dist/hightouch/kit.etag.json +1 -0
- package/.dist/hightouch/metadata.json +21 -0
- package/.dist/hightouch/playbook.etag.json +1 -0
- package/.dist/hightouch/playbook.json +451 -0
- package/.dist/pipeline-router/connection.etag.json +1 -0
- package/.dist/pipeline-router/connection.json +3 -0
- package/.dist/pipeline-router/kit.etag.json +1 -0
- package/.dist/pipeline-router/metadata.json +21 -0
- package/.dist/pipeline-router/playbook.etag.json +1 -0
- package/.dist/pipeline-router/playbook.json +30 -0
- package/.dist/snapchat-capi/kit.etag.json +1 -1
- package/.dist/snapchat-capi/metadata.json +4 -0
- package/.dist/snapchat-capi/playbook.etag.json +1 -1
- package/.dist/snapchat-capi/playbook.json +21 -1
- package/.dist/yahoo-enhanced-attribution/kit.etag.json +1 -1
- package/README.md +13 -5
- package/index.js +21 -0
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -62,6 +62,12 @@ exports.kafka = {
|
|
|
62
62
|
metadata: require('./.dist/kafka/metadata.json')
|
|
63
63
|
}
|
|
64
64
|
|
|
65
|
+
exports['pipeline-router'] = {
|
|
66
|
+
connectionTemplate: connectionSchemas.properties.pipelineRouter,
|
|
67
|
+
playbook: require('./.dist/pipeline-router/playbook.json'),
|
|
68
|
+
metadata: require('./.dist/pipeline-router/metadata.json')
|
|
69
|
+
}
|
|
70
|
+
|
|
65
71
|
exports.rasp = {
|
|
66
72
|
connectionTemplate: connectionSchemas.properties.rasp,
|
|
67
73
|
playbook: require('./.dist/rasp/playbook.json'),
|
|
@@ -309,6 +315,12 @@ exports.heap = {
|
|
|
309
315
|
metadata: require('./.dist/heap/metadata.json')
|
|
310
316
|
}
|
|
311
317
|
|
|
318
|
+
exports['hightouch'] = {
|
|
319
|
+
endpointSchema: require('./.dist/hightouch/connection.json'),
|
|
320
|
+
playbook: require('./.dist/hightouch/playbook.json'),
|
|
321
|
+
metadata: require('./.dist/hightouch/metadata.json')
|
|
322
|
+
}
|
|
323
|
+
|
|
312
324
|
exports['hubspot-event'] = {
|
|
313
325
|
endpointSchema: require('./.dist/hubspot-event/connection.json'),
|
|
314
326
|
playbook: require('./.dist/hubspot-event/playbook.json'),
|
|
@@ -646,6 +658,10 @@ exports.etags = {
|
|
|
646
658
|
playbook: require('./.dist/kafka/playbook.etag.json'),
|
|
647
659
|
kit: require('./.dist/kafka/kit.etag.json')
|
|
648
660
|
},
|
|
661
|
+
'pipeline-router': {
|
|
662
|
+
playbook: require('./.dist/pipeline-router/playbook.etag.json'),
|
|
663
|
+
kit: require('./.dist/pipeline-router/kit.etag.json')
|
|
664
|
+
},
|
|
649
665
|
rasp: {
|
|
650
666
|
playbook: require('./.dist/rasp/playbook.etag.json'),
|
|
651
667
|
kit: require('./.dist/rasp/kit.etag.json')
|
|
@@ -848,6 +864,11 @@ exports.etags = {
|
|
|
848
864
|
playbook: require('./.dist/heap/playbook.etag.json'),
|
|
849
865
|
kit: require('./.dist/heap/kit.etag.json')
|
|
850
866
|
},
|
|
867
|
+
'hightouch': {
|
|
868
|
+
endpointSchema: require('./.dist/hightouch/connection.etag.json'),
|
|
869
|
+
playbook: require('./.dist/hightouch/playbook.etag.json'),
|
|
870
|
+
kit: require('./.dist/hightouch/kit.etag.json')
|
|
871
|
+
},
|
|
851
872
|
'hubspot-event': {
|
|
852
873
|
endpointSchema: require('./.dist/hubspot-event/connection.etag.json'),
|
|
853
874
|
playbook: require('./.dist/hubspot-event/playbook.etag.json'),
|