@openreplay/tracker 18.1.0-beta.0 → 18.1.0

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/dist/cjs/index.js CHANGED
@@ -4311,7 +4311,7 @@ class App {
4311
4311
  this.stopCallbacks = [];
4312
4312
  this.commitCallbacks = [];
4313
4313
  this.activityState = ActivityState.NotActive;
4314
- this.version = '18.1.0-beta.0'; // TODO: version compatability check inside each plugin.
4314
+ this.version = '18.1.0'; // TODO: version compatability check inside each plugin.
4315
4315
  this.socketMode = false;
4316
4316
  this.compressionThreshold = 24 * 1000;
4317
4317
  this.bc = null;
@@ -9724,7 +9724,7 @@ class ConstantProperties {
9724
9724
  user_id: this.user_id,
9725
9725
  distinct_id: this.deviceId,
9726
9726
  sdk_edition: 'web',
9727
- sdk_version: '18.1.0-beta.0',
9727
+ sdk_version: '18.1.0',
9728
9728
  timezone: getUTCOffsetString(),
9729
9729
  search_engine: this.searchEngine,
9730
9730
  };
@@ -10465,7 +10465,7 @@ class API {
10465
10465
  this.signalStartIssue = (reason, missingApi) => {
10466
10466
  const doNotTrack = this.checkDoNotTrack();
10467
10467
  console.log("Tracker couldn't start due to:", JSON.stringify({
10468
- trackerVersion: '18.1.0-beta.0',
10468
+ trackerVersion: '18.1.0',
10469
10469
  projectKey: this.options.projectKey,
10470
10470
  doNotTrack,
10471
10471
  reason: missingApi.length ? `missing api: ${missingApi.join(',')}` : reason,