@crystaldesign/diva-utils 25.5.0-beta.15 → 25.5.0-beta.16
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/build/cjs/index.js +1 -1
- package/build/esm/index.js +1 -1
- package/package.json +2 -2
package/build/cjs/index.js
CHANGED
|
@@ -295,7 +295,7 @@ var BusinessMetricsUtils = /*#__PURE__*/function () {
|
|
|
295
295
|
}
|
|
296
296
|
if (labels) {
|
|
297
297
|
event.labels = labels;
|
|
298
|
-
event.labels.configuratorSessionId = this.configuratorSessionId;
|
|
298
|
+
if (this.configuratorSessionId) event.labels.configuratorSessionId = this.configuratorSessionId;
|
|
299
299
|
}
|
|
300
300
|
if (!labels && this.configuratorSessionId) {
|
|
301
301
|
event.labels = {
|
package/build/esm/index.js
CHANGED
|
@@ -276,7 +276,7 @@ var BusinessMetricsUtils = /*#__PURE__*/function () {
|
|
|
276
276
|
}
|
|
277
277
|
if (labels) {
|
|
278
278
|
event.labels = labels;
|
|
279
|
-
event.labels.configuratorSessionId = this.configuratorSessionId;
|
|
279
|
+
if (this.configuratorSessionId) event.labels.configuratorSessionId = this.configuratorSessionId;
|
|
280
280
|
}
|
|
281
281
|
if (!labels && this.configuratorSessionId) {
|
|
282
282
|
event.labels = {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@crystaldesign/diva-utils",
|
|
3
|
-
"version": "25.5.0-beta.
|
|
3
|
+
"version": "25.5.0-beta.16",
|
|
4
4
|
"description": "",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
@@ -24,5 +24,5 @@
|
|
|
24
24
|
"module": "build/esm/index.js",
|
|
25
25
|
"types": "./build/types/utils/src/index.d.ts",
|
|
26
26
|
"main": "build/cjs/index.js",
|
|
27
|
-
"gitHead": "
|
|
27
|
+
"gitHead": "06e9dd0cd19c448bbfa7710522cb4cb72ce430fe"
|
|
28
28
|
}
|