@metarouter/ajs-starter-kit 1.0.87 → 1.0.89
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/google-ads/connection.etag.json +1 -1
- package/.dist/google-ads/connection.json +32 -10
- package/.dist/google-ads/kit.etag.json +1 -1
- package/.dist/google-ads/metadata.json +5 -1
- package/.dist/google-ads/playbook.etag.json +1 -1
- package/.dist/google-ads/playbook.json +1 -1
- package/README.md +2 -2
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
"
|
|
1
|
+
"94c946ead7299bf1a72b40e728931579"
|
|
@@ -2,19 +2,33 @@
|
|
|
2
2
|
"params": [
|
|
3
3
|
{
|
|
4
4
|
"name": "API_VERSION",
|
|
5
|
-
"defaultValue": "
|
|
5
|
+
"defaultValue": "v16",
|
|
6
|
+
"isOptional": false
|
|
6
7
|
},
|
|
7
8
|
{
|
|
8
9
|
"name": "CUSTOMER_ID",
|
|
9
|
-
"exampleValue": "customer-id"
|
|
10
|
+
"exampleValue": "my-customer-id",
|
|
11
|
+
"isOptional": false
|
|
10
12
|
},
|
|
11
13
|
{
|
|
12
|
-
"name": "
|
|
13
|
-
"exampleValue": "
|
|
14
|
+
"name": "DEVELOPER_TOKEN",
|
|
15
|
+
"exampleValue": "my-developer-token",
|
|
16
|
+
"isOptional": false
|
|
14
17
|
},
|
|
15
18
|
{
|
|
16
|
-
"name": "
|
|
17
|
-
"exampleValue": "
|
|
19
|
+
"name": "PRINCIPAL_EMAIL",
|
|
20
|
+
"exampleValue": "my-principal-email",
|
|
21
|
+
"isOptional": false
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"name": "SERVICE_ACCOUNT_EMAIL",
|
|
25
|
+
"exampleValue": "my-service-account-email",
|
|
26
|
+
"isOptional": false
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"name": "PRIVATE_KEY",
|
|
30
|
+
"exampleValue": "my-private-key",
|
|
31
|
+
"isOptional": false
|
|
18
32
|
}
|
|
19
33
|
],
|
|
20
34
|
"default": {
|
|
@@ -24,11 +38,15 @@
|
|
|
24
38
|
"headers": [
|
|
25
39
|
{
|
|
26
40
|
"key": "Content-Type",
|
|
27
|
-
"value": "application/
|
|
41
|
+
"value": "application/json"
|
|
28
42
|
},
|
|
29
43
|
{
|
|
30
44
|
"key": "Accept-Encoding",
|
|
31
45
|
"value": "application/json"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"key": "developer-token",
|
|
49
|
+
"value": "$$DEVELOPER_TOKEN$$"
|
|
32
50
|
}
|
|
33
51
|
],
|
|
34
52
|
"oauth2_auth": {
|
|
@@ -50,23 +68,27 @@
|
|
|
50
68
|
"key": "aud",
|
|
51
69
|
"value": "https://oauth2.googleapis.com/token"
|
|
52
70
|
},
|
|
71
|
+
{
|
|
72
|
+
"key": "sub",
|
|
73
|
+
"value": "$$PRINCIPAL_EMAIL$$"
|
|
74
|
+
},
|
|
53
75
|
{
|
|
54
76
|
"key": "scope",
|
|
55
77
|
"value": "https://www.googleapis.com/auth/adwords"
|
|
56
78
|
},
|
|
57
79
|
{
|
|
58
80
|
"key": "iss",
|
|
59
|
-
"value": "$$
|
|
81
|
+
"value": "$$SERVICE_ACCOUNT_EMAIL$$"
|
|
60
82
|
}
|
|
61
83
|
],
|
|
62
84
|
"signingMethod": "SIGNING_METHOD_RS256",
|
|
63
|
-
"rsaPemKey": "$$
|
|
85
|
+
"rsaPemKey": "$$PRIVATE_KEY$$",
|
|
64
86
|
"requestKey": "assertion"
|
|
65
87
|
}
|
|
66
88
|
},
|
|
67
89
|
"transform": {
|
|
68
90
|
"lang": "lua",
|
|
69
|
-
"body": "request.body = { conversions = batch }\nreturn request"
|
|
91
|
+
"body": "request.body = { conversions = batch, partial_failure = true }\nreturn request"
|
|
70
92
|
}
|
|
71
93
|
}
|
|
72
94
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"
|
|
1
|
+
"da4d8bd2475334d88d45ed37a8fce35d"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"isDraft": false,
|
|
3
|
-
"isBeta":
|
|
3
|
+
"isBeta": false,
|
|
4
4
|
"friendlyName": "Google Ads",
|
|
5
5
|
"description": "Google Ads is an online advertising platform developed by Google, where advertisers bid to display advertisements to users.",
|
|
6
6
|
"logo": "https://cdn.metarouter.io/logo.svg",
|
|
@@ -23,6 +23,10 @@
|
|
|
23
23
|
{
|
|
24
24
|
"date": "2023-12-13T00:00:00.000Z",
|
|
25
25
|
"note": "Marked as unstable version: 0.1.0"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"date": "2024-04-17T00:00:00.000Z",
|
|
29
|
+
"note": "Stable release version: 1.0.0"
|
|
26
30
|
}
|
|
27
31
|
]
|
|
28
32
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"
|
|
1
|
+
"663cca5f663a05db8507376b22ad9482"
|
package/README.md
CHANGED
|
@@ -7,6 +7,7 @@ users visit, the actions they take on your property, and whether the user has be
|
|
|
7
7
|
previously.
|
|
8
8
|
## 2024-04
|
|
9
9
|
- Facebook Pixel
|
|
10
|
+
- Google Ads
|
|
10
11
|
- Google Analytics 4
|
|
11
12
|
|
|
12
13
|
## 2024-03
|
|
@@ -47,7 +48,6 @@ previously.
|
|
|
47
48
|
- Convert (BETA)
|
|
48
49
|
- Customer.io
|
|
49
50
|
- Google Ads (BETA)
|
|
50
|
-
- Google Ads (BETA)
|
|
51
51
|
- Google Analytics
|
|
52
52
|
- Google BigQuery
|
|
53
53
|
- Google Campaign Manager (BETA)
|
|
@@ -82,6 +82,7 @@ previously.
|
|
|
82
82
|
| Kit Name | Date | Latest Note |
|
|
83
83
|
|----------|------|-------------|
|
|
84
84
|
| Facebook Pixel | 2024-04 | Version: 1.2.0 Updated CAPI default version to `v19.0` |
|
|
85
|
+
| Google Ads | 2024-04 | Stable release version: 1.0.0 |
|
|
85
86
|
| Google Analytics 4 | 2024-04 | Version: 1.1.0 Added session data: session ID, session Count Added Engagement Time In Milliseconds |
|
|
86
87
|
| Commission Junction (BETA) | 2024-03 | Bugfix: `cjevent` spelling; `cjEvent` sent only for `order_completed` events. Moved the `actionTrackerId` value as the value of the `ACTION_TRACKER_ID` param. |
|
|
87
88
|
| Criteo (BETA) | 2024-03 | Migrated to Server to Server endpoint |
|
|
@@ -114,7 +115,6 @@ previously.
|
|
|
114
115
|
| Convert (BETA) | 2023-12 | Marked as unstable version: 0.1.0 |
|
|
115
116
|
| Customer.io | 2023-12 | Marked as stable version: 1.0.0 |
|
|
116
117
|
| Google Ads (BETA) | 2023-12 | Marked as unstable version: 0.1.0 |
|
|
117
|
-
| Google Ads (BETA) | 2023-12 | Marked as unstable version: 0.1.0 |
|
|
118
118
|
| Google Analytics | 2023-12 | Marked as stable version: 1.0.0 |
|
|
119
119
|
| Google BigQuery | 2023-12 | Stable release Marked as stable version: 1.0.0 |
|
|
120
120
|
| Google Campaign Manager (BETA) | 2023-12 | Marked as unstable version: 0.1.0 |
|