gatsby-core-theme 35.1.1 → 35.1.2
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/CHANGELOG.md +7 -0
- package/package.json +1 -1
- package/src/helpers/tracker.mjs +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [35.1.2](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v35.1.1...v35.1.2) (2024-08-05)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* added new piguard attribute for tracking API ([c23cbca](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/c23cbca25fb78e99102d3ba38d44e21e01b76e39))
|
|
7
|
+
|
|
1
8
|
## [35.1.1](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v35.1.0...v35.1.1) (2024-08-02)
|
|
2
9
|
|
|
3
10
|
|
package/package.json
CHANGED
package/src/helpers/tracker.mjs
CHANGED
|
@@ -93,6 +93,7 @@ export async function getAffiliateLink(operator, path, page, headers, url) {
|
|
|
93
93
|
split_test_name: cookie ? cookie.split_test_name || null : null,
|
|
94
94
|
google_client_id: cookie ? cookie._ga || null : null,
|
|
95
95
|
split_test_variant: cookie ? cookie.split_test_variant || null : null,
|
|
96
|
+
pii_guard_id: cookie ? cookie._gi || null : null,
|
|
96
97
|
facebook_pixel_id: process.env.PIXEL_ID || null,
|
|
97
98
|
...(isJsonString(cookie.affObject) ? JSON.parse(cookie.affObject) : {}),
|
|
98
99
|
...(isJsonString(cookie.affObject) &&
|