@openreplay/tracker 16.1.0 → 16.1.2-beta.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/entry.js +3 -3
- package/dist/cjs/entry.js.map +1 -1
- package/dist/cjs/index.js +3 -3
- package/dist/cjs/index.js.map +1 -1
- package/dist/lib/entry.js +3 -3
- package/dist/lib/entry.js.map +1 -1
- package/dist/lib/index.js +3 -3
- package/dist/lib/index.js.map +1 -1
- package/package.json +3 -3
package/dist/lib/entry.js
CHANGED
|
@@ -4740,7 +4740,7 @@ class App {
|
|
|
4740
4740
|
this.stopCallbacks = [];
|
|
4741
4741
|
this.commitCallbacks = [];
|
|
4742
4742
|
this.activityState = ActivityState.NotActive;
|
|
4743
|
-
this.version = '16.1.0'; // TODO: version compatability check inside each plugin.
|
|
4743
|
+
this.version = '16.1.2-beta.0'; // TODO: version compatability check inside each plugin.
|
|
4744
4744
|
this.socketMode = false;
|
|
4745
4745
|
this.compressionThreshold = 24 * 1000;
|
|
4746
4746
|
this.bc = null;
|
|
@@ -5173,6 +5173,7 @@ class App {
|
|
|
5173
5173
|
if (ev.data.context === this.contextId) {
|
|
5174
5174
|
return;
|
|
5175
5175
|
}
|
|
5176
|
+
this.debug.log(ev);
|
|
5176
5177
|
if (ev.data.line === proto.resp) {
|
|
5177
5178
|
const sessionToken = ev.data.token;
|
|
5178
5179
|
this.session.setSessionToken(sessionToken);
|
|
@@ -5379,7 +5380,6 @@ class App {
|
|
|
5379
5380
|
}
|
|
5380
5381
|
}
|
|
5381
5382
|
this.emptyBatchCounter = 0;
|
|
5382
|
-
console.log('messages', this.messages.join(', '));
|
|
5383
5383
|
try {
|
|
5384
5384
|
requestIdleCb(() => {
|
|
5385
5385
|
this.messages.unshift(Timestamp(this.timestamp()), TabData(this.session.getTabId()));
|
|
@@ -9359,7 +9359,7 @@ class API {
|
|
|
9359
9359
|
this.signalStartIssue = (reason, missingApi) => {
|
|
9360
9360
|
const doNotTrack = this.checkDoNotTrack();
|
|
9361
9361
|
console.log("Tracker couldn't start due to:", JSON.stringify({
|
|
9362
|
-
trackerVersion: '16.1.0',
|
|
9362
|
+
trackerVersion: '16.1.2-beta.0',
|
|
9363
9363
|
projectKey: this.options.projectKey,
|
|
9364
9364
|
doNotTrack,
|
|
9365
9365
|
reason: missingApi.length ? `missing api: ${missingApi.join(',')}` : reason,
|