@openreplay/tracker 16.0.1-beta.1 → 16.0.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/dist/lib/entry.js CHANGED
@@ -4761,7 +4761,7 @@ class App {
4761
4761
  this.stopCallbacks = [];
4762
4762
  this.commitCallbacks = [];
4763
4763
  this.activityState = ActivityState.NotActive;
4764
- this.version = '16.0.1-beta.1'; // TODO: version compatability check inside each plugin.
4764
+ this.version = '16.0.1'; // TODO: version compatability check inside each plugin.
4765
4765
  this.socketMode = false;
4766
4766
  this.compressionThreshold = 24 * 1000;
4767
4767
  this.bc = null;
@@ -9224,7 +9224,7 @@ class API {
9224
9224
  this.signalStartIssue = (reason, missingApi) => {
9225
9225
  const doNotTrack = this.checkDoNotTrack();
9226
9226
  console.log("Tracker couldn't start due to:", JSON.stringify({
9227
- trackerVersion: '16.0.1-beta.1',
9227
+ trackerVersion: '16.0.1',
9228
9228
  projectKey: this.options.projectKey,
9229
9229
  doNotTrack,
9230
9230
  reason: missingApi.length ? `missing api: ${missingApi.join(',')}` : reason,