@adobe/helix-rum-enhancer
Advanced tools
Comparing version 2.15.0 to 2.16.0
@@ -0,1 +1,8 @@ | ||
# [2.16.0](https://github.com/adobe/helix-rum-enhancer/compare/v2.15.0...v2.16.0) (2024-07-02) | ||
### Features | ||
* enable paid checkpoint for all ([#219](https://github.com/adobe/helix-rum-enhancer/issues/219)) ([5348744](https://github.com/adobe/helix-rum-enhancer/commit/5348744de770c024b2c9fe17962307e39293bf36)) | ||
# [2.15.0](https://github.com/adobe/helix-rum-enhancer/compare/v2.14.2...v2.15.0) (2024-07-01) | ||
@@ -2,0 +9,0 @@ |
@@ -13,2 +13,2 @@ /* | ||
export const KNOWN_PROPERTIES = ['weight', 'id', 'referer', 'checkpoint', 't', 'source', 'target', 'cwv', 'CLS', 'FID', 'LCP', 'INP', 'TTFB']; | ||
export const DEFAULT_TRACKING_EVENTS = ['click', 'cwv', 'form', 'enterleave', 'viewblock', 'viewmedia', 'loadresource', 'utm']; | ||
export const DEFAULT_TRACKING_EVENTS = ['click', 'cwv', 'form', 'enterleave', 'viewblock', 'viewmedia', 'loadresource', 'utm', 'paid']; |
@@ -19,4 +19,3 @@ /* | ||
onetrust: [543, 770, 1136], | ||
ads: [1139, 543], | ||
email: [1139, 543], | ||
}; |
@@ -34,3 +34,2 @@ /* | ||
fflags.enabled('onetrust', () => DEFAULT_TRACKING_EVENTS.push('consent')); | ||
fflags.enabled('ads', () => DEFAULT_TRACKING_EVENTS.push('paid')); | ||
fflags.enabled('email', () => DEFAULT_TRACKING_EVENTS.push('email')); | ||
@@ -37,0 +36,0 @@ return DEFAULT_TRACKING_EVENTS; |
{ | ||
"name": "@adobe/helix-rum-enhancer", | ||
"version": "2.15.0", | ||
"version": "2.16.0", | ||
"description": "Helix RUM Enhancer", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
@@ -19,3 +19,3 @@ /* | ||
const KNOWN_PROPERTIES = ['weight', 'id', 'referer', 'checkpoint', 't', 'source', 'target', 'cwv', 'CLS', 'FID', 'LCP', 'INP', 'TTFB']; | ||
const DEFAULT_TRACKING_EVENTS = ['click', 'cwv', 'form', 'enterleave', 'viewblock', 'viewmedia', 'loadresource', 'utm']; | ||
const DEFAULT_TRACKING_EVENTS = ['click', 'cwv', 'form', 'enterleave', 'viewblock', 'viewmedia', 'loadresource', 'utm', 'paid']; | ||
@@ -29,3 +29,2 @@ const fflags = { | ||
onetrust: [543, 770, 1136], | ||
ads: [1139, 543], | ||
email: [1139, 543], | ||
@@ -138,3 +137,2 @@ }; | ||
fflags.enabled('onetrust', () => DEFAULT_TRACKING_EVENTS.push('consent')); | ||
fflags.enabled('ads', () => DEFAULT_TRACKING_EVENTS.push('paid')); | ||
fflags.enabled('email', () => DEFAULT_TRACKING_EVENTS.push('email')); | ||
@@ -141,0 +139,0 @@ return DEFAULT_TRACKING_EVENTS; |
82578
1006