@metarouter/ajs-starter-kit 1.0.96 → 1.0.97
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.
|
@@ -1 +1 @@
|
|
|
1
|
-
"
|
|
1
|
+
"b503c431cf402515fea086d7b2b5461a"
|
|
@@ -27,6 +27,10 @@
|
|
|
27
27
|
{
|
|
28
28
|
"date": "2024-05-23T00:00:00.000Z",
|
|
29
29
|
"note": "Deprecate field profileId and Create field profileIdStr"
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"date": "2024-06-26T00:00:00.000Z",
|
|
33
|
+
"note": "Version: 0.2.0\nUpdate identity fields logic: gclid or dclid or mobileDeviceId or matchId"
|
|
30
34
|
}
|
|
31
35
|
]
|
|
32
36
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"
|
|
1
|
+
"00d635c5d98649cf4553bf2b71af74f1"
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.
|
|
2
|
+
"version": "0.2.0",
|
|
3
3
|
"params": [
|
|
4
4
|
{
|
|
5
5
|
"name": "CONFIG_ID",
|
|
@@ -42,18 +42,6 @@
|
|
|
42
42
|
}
|
|
43
43
|
]
|
|
44
44
|
},
|
|
45
|
-
{
|
|
46
|
-
"inputKey": "input",
|
|
47
|
-
"outputKey": "gclid",
|
|
48
|
-
"transforms": [
|
|
49
|
-
{
|
|
50
|
-
"expression": {
|
|
51
|
-
"lang": "lua",
|
|
52
|
-
"body": "return SPLIT(input.context.providers.googleGtag.data.gclid, \".\", 3)[3]"
|
|
53
|
-
}
|
|
54
|
-
}
|
|
55
|
-
]
|
|
56
|
-
},
|
|
57
45
|
{
|
|
58
46
|
"inputKey": "messageId",
|
|
59
47
|
"outputKey": "ordinal"
|
|
@@ -70,6 +58,12 @@
|
|
|
70
58
|
}
|
|
71
59
|
]
|
|
72
60
|
}
|
|
61
|
+
],
|
|
62
|
+
"expressions": [
|
|
63
|
+
{
|
|
64
|
+
"lang": "lua",
|
|
65
|
+
"body": "local gclid = SPLIT(input.context.providers.googleGtag.data.gclid, \".\", 3)[3];\nlocal dclid = SPLIT(input.context.providers.googleGtag.data.dclid, \".\", 3)[3];\nlocal mobileDeviceId = input.context.device.advertisingId;\nlocal matchId = input.anonymousId;\nreturn (gclid and { gclid = gclid }) or (dclid and { dclid = dclid}) or (mobileDeviceId and { mobileDeviceId = mobileDeviceId}) or (matchId and { matchId = matchId })"
|
|
66
|
+
}
|
|
73
67
|
]
|
|
74
68
|
},
|
|
75
69
|
"eventSpecific": {
|
package/README.md
CHANGED
|
@@ -8,6 +8,7 @@ previously.
|
|
|
8
8
|
## 2024-06
|
|
9
9
|
- Adobe Analytics (BETA)
|
|
10
10
|
- Clinch
|
|
11
|
+
- Google Campaign Manager (BETA)
|
|
11
12
|
- Nextdoor - CAPI (BETA)
|
|
12
13
|
- Snapchat - CAPI (BETA)
|
|
13
14
|
|
|
@@ -16,7 +17,6 @@ previously.
|
|
|
16
17
|
- Criteo
|
|
17
18
|
- Google Ads Audience (BETA)
|
|
18
19
|
- Google Analytics 4 (Collect) (BETA)
|
|
19
|
-
- Google Campaign Manager (BETA)
|
|
20
20
|
- Movable Ink - Customer Data
|
|
21
21
|
|
|
22
22
|
## 2024-04
|
|
@@ -93,13 +93,13 @@ previously.
|
|
|
93
93
|
|----------|------|-------------|
|
|
94
94
|
| Adobe Analytics (BETA) | 2024-06 | Version: 0.2.0 Adding Bearer Authentication Removing oAuth |
|
|
95
95
|
| Clinch | 2024-06 | Version: 1.0.0 Stable release |
|
|
96
|
+
| Google Campaign Manager (BETA) | 2024-06 | Version: 0.2.0 Update identity fields logic: gclid or dclid or mobileDeviceId or matchId |
|
|
96
97
|
| Nextdoor - CAPI (BETA) | 2024-06 | Version: 0.1.0 Beta Version Nextdoor CAPI initial release |
|
|
97
98
|
| Snapchat - CAPI (BETA) | 2024-06 | Version: 0.1.0 Beta Version Snapchat CAPI initial release |
|
|
98
99
|
| Build Your Own (BETA) | 2024-05 | Version: 0.1.0 Beta Version BYO initial release |
|
|
99
100
|
| Criteo | 2024-05 | Stable release version: 1.0.0. |
|
|
100
101
|
| Google Ads Audience (BETA) | 2024-05 | Google Ads Audience initial release, version 0.1.0. |
|
|
101
102
|
| Google Analytics 4 (Collect) (BETA) | 2024-05 | Version: 0.2.0 Updated `context.providers` usage for the `gclid` and `dclid` fields |
|
|
102
|
-
| Google Campaign Manager (BETA) | 2024-05 | Deprecate field profileId and Create field profileIdStr |
|
|
103
103
|
| Movable Ink - Customer Data | 2024-05 | Version: 1.1.0 Endpoint updated. |
|
|
104
104
|
| Azure Blob | 2024-04 | Added SAS Token |
|
|
105
105
|
| Commission Junction | 2024-04 | Removed travel-related params and "advanced integration" `items` field. Stable release version: 1.0.0. |
|