@openreplay/tracker 16.3.0-beta.1 → 16.3.0-beta.2

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/entry.js CHANGED
@@ -4313,7 +4313,6 @@ class Observer {
4313
4313
  this.indexes.length = 1;
4314
4314
  this.attributesMap.clear();
4315
4315
  this.textSet.clear();
4316
- this.throttledSetNodeData.clear();
4317
4316
  }
4318
4317
  /**
4319
4318
  * EXPERIMENTAL: Unbinds the removed nodes in case of iframe src change.
@@ -5246,7 +5245,7 @@ class App {
5246
5245
  this.stopCallbacks = [];
5247
5246
  this.commitCallbacks = [];
5248
5247
  this.activityState = ActivityState.NotActive;
5249
- this.version = '16.3.0-beta.1'; // TODO: version compatability check inside each plugin.
5248
+ this.version = '16.3.0-beta.2'; // TODO: version compatability check inside each plugin.
5250
5249
  this.socketMode = false;
5251
5250
  this.compressionThreshold = 24 * 1000;
5252
5251
  this.bc = null;
@@ -9675,7 +9674,7 @@ class API {
9675
9674
  this.signalStartIssue = (reason, missingApi) => {
9676
9675
  const doNotTrack = this.checkDoNotTrack();
9677
9676
  console.log("Tracker couldn't start due to:", JSON.stringify({
9678
- trackerVersion: '16.3.0-beta.1',
9677
+ trackerVersion: '16.3.0-beta.2',
9679
9678
  projectKey: this.options.projectKey,
9680
9679
  doNotTrack,
9681
9680
  reason: missingApi.length ? `missing api: ${missingApi.join(',')}` : reason,