@monoscopetech/browser 0.3.1 → 0.3.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/dist/replay.js
CHANGED
|
@@ -29,11 +29,7 @@ export class MonoscopeReplay {
|
|
|
29
29
|
}
|
|
30
30
|
const events = this.events;
|
|
31
31
|
this.events = [];
|
|
32
|
-
const body = JSON.stringify({
|
|
33
|
-
events,
|
|
34
|
-
sessionId: this.sessionId,
|
|
35
|
-
timestamp: new Date().toISOString(),
|
|
36
|
-
});
|
|
32
|
+
const body = JSON.stringify({ events, sessionId: this.sessionId });
|
|
37
33
|
fetch(replayEventsBaseUrl, {
|
|
38
34
|
mode: "no-cors",
|
|
39
35
|
method: "POST",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@monoscopetech/browser",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.2",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"type": "module",
|
|
@@ -45,7 +45,6 @@
|
|
|
45
45
|
},
|
|
46
46
|
"scripts": {
|
|
47
47
|
"build": "rollup -c",
|
|
48
|
-
"lint": "eslint src --ext .ts"
|
|
49
|
-
"prePublishOnly": "npx tsc --build"
|
|
48
|
+
"lint": "eslint src --ext .ts"
|
|
50
49
|
}
|
|
51
50
|
}
|