@metarouter/ajs-starter-kit 1.0.149 → 1.0.150
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-bdia/kit.etag.json +1 -1
- package/.dist/adobe-bdia/metadata.json +4 -0
- package/.dist/adobe-bdia/playbook.etag.json +1 -1
- package/.dist/adobe-bdia/playbook.json +12 -2
- package/.dist/adobe-experience-platform-interact/kit.etag.json +1 -1
- package/.dist/adobe-experience-platform-interact/metadata.json +4 -0
- package/.dist/adobe-experience-platform-interact/playbook.etag.json +1 -1
- package/.dist/adobe-experience-platform-interact/playbook.json +15 -3
- package/.dist/commission-junction/kit.etag.json +1 -1
- package/.dist/commission-junction/metadata.json +4 -0
- package/.dist/commission-junction/playbook.etag.json +1 -1
- package/.dist/commission-junction/playbook.json +2 -1
- package/.dist/engage-front/kit.etag.json +1 -1
- package/.dist/engage-front/metadata.json +5 -1
- package/.dist/engage-front/playbook.etag.json +1 -1
- package/.dist/engage-front/playbook.json +9 -1
- package/.dist/google-cm360/kit.etag.json +1 -1
- package/README.md +5 -4
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
"
|
|
1
|
+
"92bd0ac4cbf28c7939865e7af30d323c -"
|
|
@@ -28,6 +28,10 @@
|
|
|
28
28
|
{
|
|
29
29
|
"date": "2025-10-29T21:00:00.000Z",
|
|
30
30
|
"note": "Version: 0.3.0\nuserAgent generation for native app support\nIncreased possible mappings for pageName"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"date": "2025-11-19T21:00:00.000Z",
|
|
34
|
+
"note": "Version: 0.4.0\nChanged reportSuiteID to a parameter\nAdded marketingCloudVisitorID field"
|
|
31
35
|
}
|
|
32
36
|
]
|
|
33
37
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"
|
|
1
|
+
"12222c830f9fffcec16505917949c9d0 -"
|
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.
|
|
2
|
+
"version": "0.4.0",
|
|
3
|
+
"params": [
|
|
4
|
+
{
|
|
5
|
+
"name": "REPORT_SUITE_ID",
|
|
6
|
+
"exampleValue": "my-report-suite-id"
|
|
7
|
+
}
|
|
8
|
+
],
|
|
3
9
|
"default": {
|
|
4
10
|
"filters": [
|
|
5
11
|
{
|
|
@@ -17,11 +23,15 @@
|
|
|
17
23
|
"global": {
|
|
18
24
|
"enrichments": [
|
|
19
25
|
{
|
|
20
|
-
"staticString": "
|
|
26
|
+
"staticString": "$$REPORT_SUITE_ID$$",
|
|
21
27
|
"outputKey": "reportSuiteID"
|
|
22
28
|
}
|
|
23
29
|
],
|
|
24
30
|
"mappings": [
|
|
31
|
+
{
|
|
32
|
+
"inputKey": "context.providers.adobe.mid",
|
|
33
|
+
"outputKey": "marketingCloudVisitorID"
|
|
34
|
+
},
|
|
25
35
|
{
|
|
26
36
|
"inputKey": "input",
|
|
27
37
|
"outputKey": "visitorID",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"
|
|
1
|
+
"622fe01daa34dcbe02d854726b61a59d -"
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"
|
|
1
|
+
"205f39b36f887d4bf2f8f8083d2b314d -"
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.0
|
|
2
|
+
"version": "1.1.0",
|
|
3
3
|
"default": {
|
|
4
4
|
"filters": [
|
|
5
5
|
{
|
|
@@ -14,13 +14,25 @@
|
|
|
14
14
|
},
|
|
15
15
|
"global": {
|
|
16
16
|
"mappings": [
|
|
17
|
+
{
|
|
18
|
+
"inputKey": "input",
|
|
19
|
+
"outputKey": "event.xdm.identityMap.ECID",
|
|
20
|
+
"transforms": [
|
|
21
|
+
{
|
|
22
|
+
"expression": {
|
|
23
|
+
"body": "local ecid = input.context.providers.adobe.mid\nlocal email = input.traits.email\nif ecid then\n if email then\n return {{ id = ecid, primary = false }}\n end\n return {{ id = ecid, primary = true }}\nend",
|
|
24
|
+
"lang": "lua"
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
]
|
|
28
|
+
},
|
|
17
29
|
{
|
|
18
30
|
"inputKey": "input",
|
|
19
31
|
"outputKey": "event.xdm.identityMap.FPID",
|
|
20
32
|
"transforms": [
|
|
21
33
|
{
|
|
22
34
|
"expression": {
|
|
23
|
-
"body": "return {{ id = TO_SHA256_HASH(input.anonymousId), primary = true }}",
|
|
35
|
+
"body": "local ecid = input.context.providers.adobe.mid\nlocal email = input.traits.email\nif ecid or email then\n return {{ id = TO_SHA256_HASH(input.anonymousId), primary = false }}\nend\nreturn {{ id = TO_SHA256_HASH(input.anonymousId), primary = true }}",
|
|
24
36
|
"lang": "lua"
|
|
25
37
|
}
|
|
26
38
|
}
|
|
@@ -32,7 +44,7 @@
|
|
|
32
44
|
"transforms": [
|
|
33
45
|
{
|
|
34
46
|
"expression": {
|
|
35
|
-
"body": "local email = input.traits.email\nif email then\n return {{ id = TO_SHA256_HASH(LOWER(TRIM(email))), primary =
|
|
47
|
+
"body": "local email = input.traits.email\nif email then\n return {{ id = TO_SHA256_HASH(LOWER(TRIM(email))), primary = true }}\nend\nreturn",
|
|
36
48
|
"lang": "lua"
|
|
37
49
|
}
|
|
38
50
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"
|
|
1
|
+
"d9ffd44fadecf42bbc9e34d9cc2ed08d -"
|
|
@@ -48,6 +48,10 @@
|
|
|
48
48
|
{
|
|
49
49
|
"date": "2025-11-05T00:00:00.000Z",
|
|
50
50
|
"note": "Version: 1.5.0\nAdded a static trackingSource value under customParameters"
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"date": "2025-11-19T00:00:00.000Z",
|
|
54
|
+
"note": "Version: 1.5.1\nAdded friendly name to trackingSource expression"
|
|
51
55
|
}
|
|
52
56
|
]
|
|
53
57
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"
|
|
1
|
+
"7dd77ba1876cc2e46e640a8ae6de7784 -"
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.5.
|
|
2
|
+
"version": "1.5.1",
|
|
3
3
|
"params": [
|
|
4
4
|
{
|
|
5
5
|
"name": "ENTERPRISE_ID",
|
|
@@ -119,6 +119,7 @@
|
|
|
119
119
|
"expressions": [
|
|
120
120
|
{
|
|
121
121
|
"lang": "lua",
|
|
122
|
+
"name": "Partner Field",
|
|
122
123
|
"body": "return {\n customParameters = {\n { name = \"trackingSource\", value = \"metarouter\" }\n }\n}"
|
|
123
124
|
}
|
|
124
125
|
]
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"
|
|
1
|
+
"d0ac10b67a42773937813707ebe18c93 -"
|
|
@@ -15,7 +15,11 @@
|
|
|
15
15
|
"releaseNotes": [
|
|
16
16
|
{
|
|
17
17
|
"date": "2025-11-12T00:00:00.000Z",
|
|
18
|
-
"note": "
|
|
18
|
+
"note": "Version: 0.1.0\nEngageFront initial release."
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"date": "2025-11-19T00:00:00.000Z",
|
|
22
|
+
"note": "Version: 0.2.0\nUpdate playbook with twn_id and attr_cookie."
|
|
19
23
|
}
|
|
20
24
|
]
|
|
21
25
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"
|
|
1
|
+
"c9b879f5efb6123561407bb59d6a5d59 -"
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.
|
|
2
|
+
"version": "0.2.0",
|
|
3
3
|
"global": {
|
|
4
4
|
"filters": [
|
|
5
5
|
{
|
|
@@ -39,6 +39,14 @@
|
|
|
39
39
|
"inputKey": "context.ip",
|
|
40
40
|
"outputKey": "client_ip"
|
|
41
41
|
},
|
|
42
|
+
{
|
|
43
|
+
"inputKey": "context.providers.engageFront.twn_id",
|
|
44
|
+
"outputKey": "twn_id"
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"inputKey": "context.providers.engageFront.attr_cookie",
|
|
48
|
+
"outputKey": "attr_cookie"
|
|
49
|
+
},
|
|
42
50
|
{
|
|
43
51
|
"inputKey": "context.userAgent",
|
|
44
52
|
"outputKey": "user_agent"
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"
|
|
1
|
+
"18289868c72f542397fa4a95554a1105 -"
|
package/README.md
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
# MetaRouter Starter Kits
|
|
2
2
|
|
|
3
3
|
### 2025-11
|
|
4
|
+
- Adobe Analytics
|
|
4
5
|
- Adobe Experience Platform
|
|
5
6
|
- Commission Junction
|
|
6
7
|
- EngageFront (New)
|
|
@@ -13,8 +14,8 @@
|
|
|
13
14
|
| ActionIQ | 2021-06-24 | N/A | 2025-10-15 | Version: 1.3.1 | Added friendly names to expressions |
|
|
14
15
|
| Acuity Ads | 2021-06-24 | 2023-12-13 | 2024-10-23 | Version: 1.1.0 | Added header `Accept-Encoding: application/json` |
|
|
15
16
|
| Adjust | 2025-09-10 | N/A | 2025-10-15 | Version: 0.1.1 | Added friendly names to expressions |
|
|
16
|
-
| Adobe Analytics | 2025-10-08 | N/A | 2025-
|
|
17
|
-
| Adobe Experience Platform | 2023-03-21 | 2025-08-20 | 2025-11-
|
|
17
|
+
| Adobe Analytics | 2025-10-08 | N/A | 2025-11-19 | Version: 0.4.0 | Changed reportSuiteID to a parameter Added marketingCloudVisitorID field |
|
|
18
|
+
| Adobe Experience Platform | 2023-03-21 | 2025-08-20 | 2025-11-19 | Version: 1.1.0 | Added ECID support Updated identityMap mappings |
|
|
18
19
|
| Adobe ID | 2023-03-07 | N/A | 2024-10-23 | Version: 0.2.0 | Added header `Accept-Encoding: application/json` |
|
|
19
20
|
| Amazon DSP CAPI | 2025-05-21 | 2025-08-13 | 2025-08-13 | Version: 1.0.0 | Stable Release |
|
|
20
21
|
| Amazon Data Firehose | 2025-02-05 | 2025-04-02 | 2025-10-15 | Version: 1.0.1 | Added friendly names to expressions |
|
|
@@ -33,11 +34,11 @@
|
|
|
33
34
|
| Button | 2025-02-19 | 2025-03-12 | 2025-07-30 | Version: 1.1.0 | Replaced context.traits with traits. |
|
|
34
35
|
| CM360 - Floodlights | 2021-06-24 | 2025-08-20 | 2025-10-15 | Version: 1.0.1 | Added friendly names to expressions |
|
|
35
36
|
| Clinch | 2024-04-24 | 2024-06-12 | 2025-10-15 | Version: 1.3.1 | Added friendly names to expressions |
|
|
36
|
-
| Commission Junction | 2024-01-17 | 2024-04-24 | 2025-11-
|
|
37
|
+
| Commission Junction | 2024-01-17 | 2024-04-24 | 2025-11-19 | Version: 1.5.1 | Added friendly name to trackingSource expression |
|
|
37
38
|
| Convert | 2023-09-08 | N/A | 2024-11-20 | Version: 0.3.0 | Added new deduplication parameter for all events, `tid` |
|
|
38
39
|
| Criteo | 2021-06-24 | 2024-05-15 | 2025-09-03 | Version: 2.1.0 | Removed id node and added alternate_ids array in playbook.yaml |
|
|
39
40
|
| Customer.io | 2022-11-07 | N/A | 2024-10-23 | Version: 1.1.0 | Added header `Accept-Encoding: application/json` |
|
|
40
|
-
| EngageFront (New) | 2025-11-12 | N/A | 2025-11-
|
|
41
|
+
| EngageFront (New) | 2025-11-12 | N/A | 2025-11-19 | Version: 0.2.0 | Update playbook with twn_id and attr_cookie. |
|
|
41
42
|
| Firebase | 2024-01-15 | N/A | 2024-10-23 | Version: 0.2.0 | Updated header `Accept-Encoding: application/json` |
|
|
42
43
|
| Google AJSID Segments | 2024-05-29 | N/A | 2025-10-15 | Version: 0.1.1 | Added friendly names to expressions |
|
|
43
44
|
| Google Ads - Conversions | 2023-07-04 | 2024-04-17 | 2025-10-15 | Version: 1.3.1 | Added friendly names to expressions |
|