@openreplay/tracker 16.4.6 → 16.4.7

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
@@ -5276,7 +5276,7 @@ class App {
5276
5276
  this.stopCallbacks = [];
5277
5277
  this.commitCallbacks = [];
5278
5278
  this.activityState = ActivityState.NotActive;
5279
- this.version = '16.4.6'; // TODO: version compatability check inside each plugin.
5279
+ this.version = '16.4.7'; // TODO: version compatability check inside each plugin.
5280
5280
  this.socketMode = false;
5281
5281
  this.compressionThreshold = 24 * 1000;
5282
5282
  this.bc = null;
@@ -9606,7 +9606,7 @@ function Tabs (app) {
9606
9606
  }
9607
9607
 
9608
9608
  const Messages = _Messages;
9609
- const DOCS_SETUP = '/en/sdk';
9609
+ const DOCS_SETUP = '/en/sdk/constructor';
9610
9610
  function processOptions(obj) {
9611
9611
  if (obj == null) {
9612
9612
  console.error(`OpenReplay: invalid options argument type. Please, check documentation on ${DOCS_HOST}${DOCS_SETUP}`);
@@ -9656,7 +9656,7 @@ class API {
9656
9656
  this.signalStartIssue = (reason, missingApi) => {
9657
9657
  const doNotTrack = this.checkDoNotTrack();
9658
9658
  console.log("Tracker couldn't start due to:", JSON.stringify({
9659
- trackerVersion: '16.4.6',
9659
+ trackerVersion: '16.4.7',
9660
9660
  projectKey: this.options.projectKey,
9661
9661
  doNotTrack,
9662
9662
  reason: missingApi.length ? `missing api: ${missingApi.join(',')}` : reason,