@adobe/spacecat-shared-rum-api-client 2.34.0 → 2.34.1
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
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
# [@adobe/spacecat-shared-rum-api-client-v2.34.1](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-rum-api-client-v2.34.0...@adobe/spacecat-shared-rum-api-client-v2.34.1) (2025-07-24)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* add date field to the traffic analysis query ([#870](https://github.com/adobe/spacecat-shared/issues/870)) ([ecbab0c](https://github.com/adobe/spacecat-shared/commit/ecbab0cdbfe2dd740bd29bc76873508715ab52cf))
|
|
7
|
+
|
|
1
8
|
# [@adobe/spacecat-shared-rum-api-client-v2.34.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-rum-api-client-v2.33.1...@adobe/spacecat-shared-rum-api-client-v2.34.0) (2025-07-23)
|
|
2
9
|
|
|
3
10
|
|
package/package.json
CHANGED
|
@@ -97,7 +97,6 @@ async function handler(bundles) {
|
|
|
97
97
|
const memo = {};
|
|
98
98
|
|
|
99
99
|
const result = bundles.map((bundle) => {
|
|
100
|
-
/* eslint-disable camelcase */
|
|
101
100
|
const trafficData = trafficType(bundle, memo);
|
|
102
101
|
const clicked = getClicked(bundle);
|
|
103
102
|
const latestScroll = getLatestScroll(bundle);
|
|
@@ -121,8 +120,8 @@ async function handler(bundles) {
|
|
|
121
120
|
lcp: getCWV(bundle, 'lcp'),
|
|
122
121
|
inp: getCWV(bundle, 'inp'),
|
|
123
122
|
cls: getCWV(bundle, 'cls'),
|
|
123
|
+
date: bundle.time.split('T')[0],
|
|
124
124
|
};
|
|
125
|
-
/* eslint-enable camelcase */
|
|
126
125
|
});
|
|
127
126
|
|
|
128
127
|
return result;
|