@metarouter/ajs-starter-kit 1.0.95 → 1.0.96
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-analytics/connection.etag.json +1 -1
- package/.dist/adobe-analytics/connection.json +14 -71
- package/.dist/adobe-analytics/kit.etag.json +1 -1
- package/.dist/adobe-analytics/metadata.json +4 -0
- package/.dist/adobe-analytics/playbook.etag.json +1 -1
- package/.dist/adobe-analytics/playbook.json +1 -1
- package/.dist/clinch/kit.etag.json +1 -1
- package/.dist/clinch/metadata.json +5 -1
- package/.dist/clinch/playbook.etag.json +1 -1
- package/.dist/clinch/playbook.json +1 -1
- package/README.md +4 -4
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
"
|
|
1
|
+
"29c91d3ab5ce99fb019b9127b1378427"
|
|
@@ -2,35 +2,23 @@
|
|
|
2
2
|
"params": [
|
|
3
3
|
{
|
|
4
4
|
"name": "DATASTREAM_ID",
|
|
5
|
-
"exampleValue": "datastream-id"
|
|
5
|
+
"exampleValue": "my-datastream-id",
|
|
6
|
+
"isOptional": false
|
|
6
7
|
},
|
|
7
8
|
{
|
|
8
9
|
"name": "ORG_ID",
|
|
9
|
-
"exampleValue": "
|
|
10
|
+
"exampleValue": "my-org-id",
|
|
11
|
+
"isOptional": false
|
|
10
12
|
},
|
|
11
13
|
{
|
|
12
14
|
"name": "API_KEY",
|
|
13
|
-
"exampleValue": "api-key"
|
|
15
|
+
"exampleValue": "my-api-key",
|
|
16
|
+
"isOptional": false
|
|
14
17
|
},
|
|
15
18
|
{
|
|
16
|
-
"name": "
|
|
17
|
-
"exampleValue": "
|
|
18
|
-
|
|
19
|
-
{
|
|
20
|
-
"name": "CLIENT_SECRET",
|
|
21
|
-
"exampleValue": "client-secret"
|
|
22
|
-
},
|
|
23
|
-
{
|
|
24
|
-
"name": "OAUTH2_REQUEST_URL",
|
|
25
|
-
"defaultValue": "https://ims-na1.adobelogin.com/ims/exchange/jwt"
|
|
26
|
-
},
|
|
27
|
-
{
|
|
28
|
-
"name": "TECHNICAL_ACCOUNT_ID",
|
|
29
|
-
"exampleValue": "id@techacct.adobe.com"
|
|
30
|
-
},
|
|
31
|
-
{
|
|
32
|
-
"name": "CLIENT_PEM_KEY",
|
|
33
|
-
"exampleValue": "-----BEGIN PRIVATE KEY-----\nMIIEvQIBADANBg....\n-----END PRIVATE KEY-----\n"
|
|
19
|
+
"name": "ACCESS_TOKEN",
|
|
20
|
+
"exampleValue": "my-access-token",
|
|
21
|
+
"isOptional": false
|
|
34
22
|
}
|
|
35
23
|
],
|
|
36
24
|
"default": {
|
|
@@ -45,59 +33,14 @@
|
|
|
45
33
|
"key": "x-api-key",
|
|
46
34
|
"value": "$$API_KEY$$"
|
|
47
35
|
},
|
|
36
|
+
{
|
|
37
|
+
"key": "Authorization",
|
|
38
|
+
"value": "Bearer $$ACCESS_TOKEN$$"
|
|
39
|
+
},
|
|
48
40
|
{
|
|
49
41
|
"key": "Content-Type",
|
|
50
42
|
"value": "application/json"
|
|
51
43
|
}
|
|
52
|
-
]
|
|
53
|
-
"oauth2_auth": {
|
|
54
|
-
"request": {
|
|
55
|
-
"url": "$$OAUTH2_REQUEST_URL$$",
|
|
56
|
-
"contentType": "application/x-www-form-urlencoded",
|
|
57
|
-
"method": "POST",
|
|
58
|
-
"body": [
|
|
59
|
-
{
|
|
60
|
-
"key": "client_id",
|
|
61
|
-
"value": "$$CLIENT_ID$$"
|
|
62
|
-
},
|
|
63
|
-
{
|
|
64
|
-
"key": "client_secret",
|
|
65
|
-
"value": "$$CLIENT_SECRET$$"
|
|
66
|
-
}
|
|
67
|
-
]
|
|
68
|
-
},
|
|
69
|
-
"responseAccessTokenKey": "access_token",
|
|
70
|
-
"jwt": {
|
|
71
|
-
"claims": [
|
|
72
|
-
{
|
|
73
|
-
"key": "aud",
|
|
74
|
-
"value": "https://ims-na1.adobelogin.com/c/$$API_KEY$$"
|
|
75
|
-
},
|
|
76
|
-
{
|
|
77
|
-
"key": "sub",
|
|
78
|
-
"value": "$$TECHNICAL_ACCOUNT_ID$$"
|
|
79
|
-
},
|
|
80
|
-
{
|
|
81
|
-
"key": "https://ims-na1.adobelogin.com/s/ent_analytics_bulk_ingest_sdk",
|
|
82
|
-
"value": "true"
|
|
83
|
-
},
|
|
84
|
-
{
|
|
85
|
-
"key": "https://ims-na1.adobelogin.com/s/ent_user_sdk",
|
|
86
|
-
"value": "true"
|
|
87
|
-
},
|
|
88
|
-
{
|
|
89
|
-
"key": "https://ims-na1.adobelogin.com/s/ent_adobeio_sdk",
|
|
90
|
-
"value": "true"
|
|
91
|
-
},
|
|
92
|
-
{
|
|
93
|
-
"key": "iss",
|
|
94
|
-
"value": "$$ORG_ID$$"
|
|
95
|
-
}
|
|
96
|
-
],
|
|
97
|
-
"signingMethod": "SIGNING_METHOD_RS256",
|
|
98
|
-
"rsaPemKey": "$$CLIENT_PEM_KEY$$",
|
|
99
|
-
"requestKey": "jwt_token"
|
|
100
|
-
}
|
|
101
|
-
}
|
|
44
|
+
]
|
|
102
45
|
}
|
|
103
46
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"
|
|
1
|
+
"82ed66f59a755aa413c5e0d2c132dd7a"
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"
|
|
1
|
+
"63c7b4f5ed37f7617b5bd2ab9a033079"
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"
|
|
1
|
+
"edc5300ec4e21e4688b7f588cba597fa"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"isDraft": false,
|
|
3
|
-
"isBeta":
|
|
3
|
+
"isBeta": false,
|
|
4
4
|
"friendlyName": "Clinch",
|
|
5
5
|
"description": "Clinch is a marketing platform that allows advertisers to create and deliver dynamic video ads that are tailored to individual viewers based on their interests, behaviors, and demographics.",
|
|
6
6
|
"logo": "https://cdn.metarouter.io/clinch.png",
|
|
@@ -19,6 +19,10 @@
|
|
|
19
19
|
{
|
|
20
20
|
"date": "2024-05-29T00:00:00.000Z",
|
|
21
21
|
"note": "Version: 0.2.0\nAdding email and cookie id\nAdding new `identify` event"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"date": "2024-06-12T00:00:00.000Z",
|
|
25
|
+
"note": "Version: 1.0.0\nStable release"
|
|
22
26
|
}
|
|
23
27
|
]
|
|
24
28
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"
|
|
1
|
+
"8db6f5408f77ec54d1d423bbe93499c2"
|
package/README.md
CHANGED
|
@@ -6,12 +6,13 @@ server, and other sources. It is particularly useful for tracking the pages or s
|
|
|
6
6
|
users visit, the actions they take on your property, and whether the user has been identified
|
|
7
7
|
previously.
|
|
8
8
|
## 2024-06
|
|
9
|
+
- Adobe Analytics (BETA)
|
|
10
|
+
- Clinch
|
|
9
11
|
- Nextdoor - CAPI (BETA)
|
|
10
12
|
- Snapchat - CAPI (BETA)
|
|
11
13
|
|
|
12
14
|
## 2024-05
|
|
13
15
|
- Build Your Own (BETA)
|
|
14
|
-
- Clinch (BETA)
|
|
15
16
|
- Criteo
|
|
16
17
|
- Google Ads Audience (BETA)
|
|
17
18
|
- Google Analytics 4 (Collect) (BETA)
|
|
@@ -44,7 +45,6 @@ previously.
|
|
|
44
45
|
## 2023-12
|
|
45
46
|
- ActionIQ
|
|
46
47
|
- Acuity Ads
|
|
47
|
-
- Adobe Analytics (BETA)
|
|
48
48
|
- Adobe ID (BETA)
|
|
49
49
|
- Amnet (BETA)
|
|
50
50
|
- Amobee
|
|
@@ -91,10 +91,11 @@ previously.
|
|
|
91
91
|
|
|
92
92
|
| Kit Name | Date | Latest Note |
|
|
93
93
|
|----------|------|-------------|
|
|
94
|
+
| Adobe Analytics (BETA) | 2024-06 | Version: 0.2.0 Adding Bearer Authentication Removing oAuth |
|
|
95
|
+
| Clinch | 2024-06 | Version: 1.0.0 Stable release |
|
|
94
96
|
| Nextdoor - CAPI (BETA) | 2024-06 | Version: 0.1.0 Beta Version Nextdoor CAPI initial release |
|
|
95
97
|
| Snapchat - CAPI (BETA) | 2024-06 | Version: 0.1.0 Beta Version Snapchat CAPI initial release |
|
|
96
98
|
| Build Your Own (BETA) | 2024-05 | Version: 0.1.0 Beta Version BYO initial release |
|
|
97
|
-
| Clinch (BETA) | 2024-05 | Version: 0.2.0 Adding email and cookie id Adding new `identify` event |
|
|
98
99
|
| Criteo | 2024-05 | Stable release version: 1.0.0. |
|
|
99
100
|
| Google Ads Audience (BETA) | 2024-05 | Google Ads Audience initial release, version 0.1.0. |
|
|
100
101
|
| Google Analytics 4 (Collect) (BETA) | 2024-05 | Version: 0.2.0 Updated `context.providers` usage for the `gclid` and `dclid` fields |
|
|
@@ -117,7 +118,6 @@ previously.
|
|
|
117
118
|
| Firebase (BETA) | 2024-01 | google-firebase initial release. |
|
|
118
119
|
| ActionIQ | 2023-12 | Marked as stable version: 1.0.0 |
|
|
119
120
|
| Acuity Ads | 2023-12 | Stable release Marked as stable version: 1.0.0 |
|
|
120
|
-
| Adobe Analytics (BETA) | 2023-12 | Marked as unstable version: 0.1.0 |
|
|
121
121
|
| Adobe ID (BETA) | 2023-12 | Marked as unstable version: 0.1.0 |
|
|
122
122
|
| Amnet (BETA) | 2023-12 | Marked as unstable version: 0.1.0 |
|
|
123
123
|
| Amobee | 2023-12 | Stable release Marked as stable version: 1.0.0 |
|