@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.
@@ -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 = {
@@ -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.15",
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": "1fd75fd1b8c773aad3d28dff67589a4dd24a7b4b"
27
+ "gitHead": "06e9dd0cd19c448bbfa7710522cb4cb72ce430fe"
28
28
  }