@metarouter/ajs-starter-kit 1.0.151 → 1.0.153

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 (46) hide show
  1. package/.dist/attentive/connection.etag.json +1 -0
  2. package/.dist/attentive/connection.json +96 -0
  3. package/.dist/attentive/kit.etag.json +1 -0
  4. package/.dist/attentive/metadata.json +21 -0
  5. package/.dist/attentive/playbook.etag.json +1 -0
  6. package/.dist/attentive/playbook.json +1414 -0
  7. package/.dist/bing-ads/kit.etag.json +1 -1
  8. package/.dist/bing-ads/metadata.json +6 -2
  9. package/.dist/connection-schemas.json +0 -1
  10. package/.dist/engage-front/kit.etag.json +1 -1
  11. package/.dist/engage-front/metadata.json +4 -0
  12. package/.dist/engage-front/playbook.etag.json +1 -1
  13. package/.dist/engage-front/playbook.json +2 -2
  14. package/.dist/eulerian/connection.etag.json +1 -0
  15. package/.dist/eulerian/connection.json +30 -0
  16. package/.dist/eulerian/kit.etag.json +1 -0
  17. package/.dist/eulerian/metadata.json +21 -0
  18. package/.dist/eulerian/playbook.etag.json +1 -0
  19. package/.dist/eulerian/playbook.json +156 -0
  20. package/.dist/google-ads/kit.etag.json +1 -1
  21. package/.dist/google-ads/metadata.json +4 -0
  22. package/.dist/google-ads/playbook.etag.json +1 -1
  23. package/.dist/google-ads/playbook.json +11 -1
  24. package/.dist/google-analytics-4/connection.etag.json +1 -1
  25. package/.dist/google-analytics-4/connection.json +18 -13
  26. package/.dist/google-analytics-4/kit.etag.json +1 -1
  27. package/.dist/google-analytics-4/metadata.json +4 -0
  28. package/.dist/google-analytics-4/playbook.etag.json +1 -1
  29. package/.dist/google-analytics-4/playbook.json +209 -54
  30. package/.dist/microsoft-ads/kit.etag.json +1 -1
  31. package/.dist/microsoft-ads/metadata.json +5 -1
  32. package/.dist/tiktok/kit.etag.json +1 -1
  33. package/.dist/tiktok/metadata.json +4 -0
  34. package/.dist/tiktok/playbook.etag.json +1 -1
  35. package/.dist/tiktok/playbook.json +303 -24
  36. package/.dist/ttd-conversions/kit.etag.json +1 -1
  37. package/.dist/ttd-conversions/metadata.json +4 -0
  38. package/.dist/ttd-conversions/playbook.etag.json +1 -1
  39. package/.dist/ttd-conversions/playbook.json +3 -7
  40. package/.dist/wallaroo/kit.etag.json +1 -1
  41. package/.dist/wallaroo/metadata.json +4 -0
  42. package/.dist/wallaroo/playbook.etag.json +1 -1
  43. package/.dist/wallaroo/playbook.json +2 -1
  44. package/README.md +20 -9
  45. package/index.js +22 -0
  46. package/package.json +1 -1
@@ -0,0 +1 @@
1
+ "bb7b90da35fa335155b1292d6c0cbafd -"
@@ -0,0 +1,96 @@
1
+ {
2
+ "params": [
3
+ {
4
+ "name": "API_TOKEN",
5
+ "exampleValue": "my-api-token"
6
+ }
7
+ ],
8
+ "default": {
9
+ "endpoint": "https://api.attentivemobile.com/v1/events/custom",
10
+ "method": "POST",
11
+ "headers": [
12
+ {
13
+ "key": "Content-Type",
14
+ "value": "application/json"
15
+ },
16
+ {
17
+ "key": "Accept-Encoding",
18
+ "value": "application/json"
19
+ },
20
+ {
21
+ "key": "Authorization",
22
+ "value": "Bearer $$API_TOKEN$$"
23
+ }
24
+ ]
25
+ },
26
+ "eventSpecific": {
27
+ "identify": {
28
+ "endpoint": "https://api.attentivemobile.com/v1/identity-resolution/user-identifiers",
29
+ "method": "POST",
30
+ "headers": [
31
+ {
32
+ "key": "Authorization",
33
+ "value": "Bearer $$API_TOKEN$$"
34
+ },
35
+ {
36
+ "key": "Content-Type",
37
+ "value": "application/json"
38
+ }
39
+ ]
40
+ },
41
+ "product_viewed": {
42
+ "endpoint": "https://api.attentivemobile.com/v1/events/ecommerce/product-view",
43
+ "method": "POST",
44
+ "headers": [
45
+ {
46
+ "key": "Content-Type",
47
+ "value": "application/json"
48
+ },
49
+ {
50
+ "key": "Accept-Encoding",
51
+ "value": "application/json"
52
+ },
53
+ {
54
+ "key": "Authorization",
55
+ "value": "Bearer $$API_TOKEN$$"
56
+ }
57
+ ]
58
+ },
59
+ "product_added": {
60
+ "endpoint": "https://api.attentivemobile.com/v1/events/ecommerce/add-to-cart",
61
+ "method": "POST",
62
+ "headers": [
63
+ {
64
+ "key": "Content-Type",
65
+ "value": "application/json"
66
+ },
67
+ {
68
+ "key": "Accept-Encoding",
69
+ "value": "application/json"
70
+ },
71
+ {
72
+ "key": "Authorization",
73
+ "value": "Bearer $$API_TOKEN$$"
74
+ }
75
+ ]
76
+ },
77
+ "order_completed": {
78
+ "endpoint": "https://api.attentivemobile.com/v1/events/ecommerce/purchase",
79
+ "method": "POST",
80
+ "headers": [
81
+ {
82
+ "key": "Content-Type",
83
+ "value": "application/json"
84
+ },
85
+ {
86
+ "key": "Accept-Encoding",
87
+ "value": "application/json"
88
+ },
89
+ {
90
+ "key": "Authorization",
91
+ "value": "Bearer $$API_TOKEN$$"
92
+ }
93
+ ]
94
+ }
95
+ }
96
+ }
@@ -0,0 +1 @@
1
+ "6df94116da387b9ff6408e78ba4db8d7 -"
@@ -0,0 +1,21 @@
1
+ {
2
+ "isDraft": false,
3
+ "isDeprecated": false,
4
+ "isBeta": true,
5
+ "friendlyName": "Attentive",
6
+ "description": "Attentive Mobile is a marketing platform that specializes in personalized mobile messaging through SMS and email.",
7
+ "logo": "https://cdn.metarouter.io/attentive.png",
8
+ "color": "#FFD967",
9
+ "eventSource": {
10
+ "isAndroidApp": false,
11
+ "isIosApp": false,
12
+ "isWebApp": true
13
+ },
14
+ "inputSchema": "analytics_js",
15
+ "releaseNotes": [
16
+ {
17
+ "date": "2025-12-17T00:00:00.000Z",
18
+ "note": "Version: 0.1.0\nBeta Version\nAttentive initial release."
19
+ }
20
+ ]
21
+ }
@@ -0,0 +1 @@
1
+ "167996fcbfc1aba0b8a7bfab399015ad -"