@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/lib/entry.js CHANGED
@@ -5272,7 +5272,7 @@ class App {
5272
5272
  this.stopCallbacks = [];
5273
5273
  this.commitCallbacks = [];
5274
5274
  this.activityState = ActivityState.NotActive;
5275
- this.version = '16.4.6'; // TODO: version compatability check inside each plugin.
5275
+ this.version = '16.4.7'; // TODO: version compatability check inside each plugin.
5276
5276
  this.socketMode = false;
5277
5277
  this.compressionThreshold = 24 * 1000;
5278
5278
  this.bc = null;
@@ -9602,7 +9602,7 @@ function Tabs (app) {
9602
9602
  }
9603
9603
 
9604
9604
  const Messages = _Messages;
9605
- const DOCS_SETUP = '/en/sdk';
9605
+ const DOCS_SETUP = '/en/sdk/constructor';
9606
9606
  function processOptions(obj) {
9607
9607
  if (obj == null) {
9608
9608
  console.error(`OpenReplay: invalid options argument type. Please, check documentation on ${DOCS_HOST}${DOCS_SETUP}`);
@@ -9652,7 +9652,7 @@ class API {
9652
9652
  this.signalStartIssue = (reason, missingApi) => {
9653
9653
  const doNotTrack = this.checkDoNotTrack();
9654
9654
  console.log("Tracker couldn't start due to:", JSON.stringify({
9655
- trackerVersion: '16.4.6',
9655
+ trackerVersion: '16.4.7',
9656
9656
  projectKey: this.options.projectKey,
9657
9657
  doNotTrack,
9658
9658
  reason: missingApi.length ? `missing api: ${missingApi.join(',')}` : reason,