@multiplayer-app/session-recorder-browser 1.3.24 → 1.3.25

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.
@@ -25054,7 +25054,7 @@ const CONTINUOUS_DEBUGGING_TIMEOUT = 60000; // 1 minutes
25054
25054
  const DEBUG_SESSION_MAX_DURATION_SECONDS = 10 * 60 + 30; // TODO: move to shared config otel core
25055
25055
  const REMOTE_SESSION_RECORDING_START = 'remote-session-recording:start';
25056
25056
  const REMOTE_SESSION_RECORDING_STOP = 'remote-session-recording:stop';
25057
- const PACKAGE_VERSION_EXPORT = "1.3.24" || 0;
25057
+ const PACKAGE_VERSION_EXPORT = "1.3.25" || 0;
25058
25058
  // Regex patterns for OpenTelemetry ignore URLs
25059
25059
  const OTEL_IGNORE_URLS = [
25060
25060
  // Traces endpoint
@@ -31059,9 +31059,9 @@ var SessionRecorderIdGenerator = /** @class */ (function () {
31059
31059
  return this.generateShortId();
31060
31060
  };
31061
31061
  SessionRecorderIdGenerator.prototype.setSessionId = function (sessionShortId, sessionType, clientId) {
31062
- if (clientId === void 0) { clientId = ''; }
31063
- if (!clientId &&
31064
- [
31062
+ if (sessionType
31063
+ && !clientId
31064
+ && [
31065
31065
  _type__WEBPACK_IMPORTED_MODULE_0__.SessionType.SESSION_CACHE,
31066
31066
  _type__WEBPACK_IMPORTED_MODULE_0__.SessionType.CONTINUOUS_SESSION_CACHE,
31067
31067
  ].includes(sessionType)) {