@openreplay/tracker 16.1.0-beta.0 → 16.1.0-beta.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/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 +1 -1
package/dist/cjs/entry.js
CHANGED
|
@@ -4710,7 +4710,7 @@ class App {
|
|
|
4710
4710
|
this.stopCallbacks = [];
|
|
4711
4711
|
this.commitCallbacks = [];
|
|
4712
4712
|
this.activityState = ActivityState.NotActive;
|
|
4713
|
-
this.version = '16.1.0-beta.
|
|
4713
|
+
this.version = '16.1.0-beta.1'; // TODO: version compatability check inside each plugin.
|
|
4714
4714
|
this.socketMode = false;
|
|
4715
4715
|
this.compressionThreshold = 24 * 1000;
|
|
4716
4716
|
this.bc = null;
|
|
@@ -5352,7 +5352,7 @@ class App {
|
|
|
5352
5352
|
this.worker?.postMessage(this.messages);
|
|
5353
5353
|
}
|
|
5354
5354
|
catch (e) {
|
|
5355
|
-
console.log(this.messages);
|
|
5355
|
+
console.log(this.messages.join(','));
|
|
5356
5356
|
console.error(e);
|
|
5357
5357
|
}
|
|
5358
5358
|
this.commitCallbacks.forEach((cb) => cb(this.messages));
|
|
@@ -9182,7 +9182,7 @@ class API {
|
|
|
9182
9182
|
this.signalStartIssue = (reason, missingApi) => {
|
|
9183
9183
|
const doNotTrack = this.checkDoNotTrack();
|
|
9184
9184
|
console.log("Tracker couldn't start due to:", JSON.stringify({
|
|
9185
|
-
trackerVersion: '16.1.0-beta.
|
|
9185
|
+
trackerVersion: '16.1.0-beta.1',
|
|
9186
9186
|
projectKey: this.options.projectKey,
|
|
9187
9187
|
doNotTrack,
|
|
9188
9188
|
reason: missingApi.length ? `missing api: ${missingApi.join(',')}` : reason,
|