@openreplay/tracker 3.5.1 → 3.5.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/cjs/app/index.js CHANGED
@@ -31,7 +31,7 @@ class App {
31
31
  this._userID = null;
32
32
  this._metadata = {};
33
33
  this.activityState = ActivityState.NotActive;
34
- this.version = '3.5.1'; // TODO: version compatability check inside each plugin.
34
+ this.version = '3.5.2'; // TODO: version compatability check inside each plugin.
35
35
  this.preStartMessages = [];
36
36
  this.projectKey = projectKey;
37
37
  this.options = Object.assign({
package/cjs/index.js CHANGED
@@ -129,7 +129,7 @@ class API {
129
129
  // no-cors issue only with text/plain or not-set Content-Type
130
130
  // req.setRequestHeader("Content-Type", "application/json;charset=UTF-8");
131
131
  req.send(JSON.stringify({
132
- trackerVersion: '3.5.1',
132
+ trackerVersion: '3.5.2',
133
133
  projectKey: options.projectKey,
134
134
  doNotTrack,
135
135
  // TODO: add precise reason (an exact API missing)
package/lib/app/index.js CHANGED
@@ -28,7 +28,7 @@ export default class App {
28
28
  this._userID = null;
29
29
  this._metadata = {};
30
30
  this.activityState = ActivityState.NotActive;
31
- this.version = '3.5.1'; // TODO: version compatability check inside each plugin.
31
+ this.version = '3.5.2'; // TODO: version compatability check inside each plugin.
32
32
  this.preStartMessages = [];
33
33
  this.projectKey = projectKey;
34
34
  this.options = Object.assign({
package/lib/index.js CHANGED
@@ -125,7 +125,7 @@ export default class API {
125
125
  // no-cors issue only with text/plain or not-set Content-Type
126
126
  // req.setRequestHeader("Content-Type", "application/json;charset=UTF-8");
127
127
  req.send(JSON.stringify({
128
- trackerVersion: '3.5.1',
128
+ trackerVersion: '3.5.2',
129
129
  projectKey: options.projectKey,
130
130
  doNotTrack,
131
131
  // TODO: add precise reason (an exact API missing)
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@openreplay/tracker",
3
3
  "description": "The OpenReplay tracker main package",
4
- "version": "3.5.1",
4
+ "version": "3.5.2",
5
5
  "keywords": [
6
6
  "logging",
7
7
  "replay"
@@ -41,6 +41,6 @@
41
41
  "error-stack-parser": "^2.0.6"
42
42
  },
43
43
  "engines": {
44
- "node": ">=14"
44
+ "node": ">=12"
45
45
  }
46
46
  }