@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.
Files changed (33) hide show
  1. package/.dist/attentive/kit.etag.json +1 -1
  2. package/.dist/attentive/metadata.json +4 -0
  3. package/.dist/attentive/playbook.etag.json +1 -1
  4. package/.dist/attentive/playbook.json +101 -303
  5. package/.dist/connection-schemas.json +4 -0
  6. package/.dist/engage-front/kit.etag.json +1 -1
  7. package/.dist/engage-front/metadata.json +4 -0
  8. package/.dist/engage-front/playbook.etag.json +1 -1
  9. package/.dist/engage-front/playbook.json +153 -22
  10. package/.dist/google-cm360/kit.etag.json +1 -1
  11. package/.dist/google-cm360/metadata.json +4 -0
  12. package/.dist/google-cm360/playbook.etag.json +1 -1
  13. package/.dist/google-cm360/playbook.json +17 -22
  14. package/.dist/hightouch/connection.etag.json +1 -0
  15. package/.dist/hightouch/connection.json +87 -0
  16. package/.dist/hightouch/kit.etag.json +1 -0
  17. package/.dist/hightouch/metadata.json +21 -0
  18. package/.dist/hightouch/playbook.etag.json +1 -0
  19. package/.dist/hightouch/playbook.json +451 -0
  20. package/.dist/pipeline-router/connection.etag.json +1 -0
  21. package/.dist/pipeline-router/connection.json +3 -0
  22. package/.dist/pipeline-router/kit.etag.json +1 -0
  23. package/.dist/pipeline-router/metadata.json +21 -0
  24. package/.dist/pipeline-router/playbook.etag.json +1 -0
  25. package/.dist/pipeline-router/playbook.json +30 -0
  26. package/.dist/snapchat-capi/kit.etag.json +1 -1
  27. package/.dist/snapchat-capi/metadata.json +4 -0
  28. package/.dist/snapchat-capi/playbook.etag.json +1 -1
  29. package/.dist/snapchat-capi/playbook.json +21 -1
  30. package/.dist/yahoo-enhanced-attribution/kit.etag.json +1 -1
  31. package/README.md +13 -5
  32. package/index.js +21 -0
  33. 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'),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@metarouter/ajs-starter-kit",
3
- "version": "1.0.154",
3
+ "version": "1.0.155",
4
4
  "description": "MetaRouter analytics.js starter kit",
5
5
  "main": "index.js",
6
6
  "scripts": {