@openreplay/tracker 14.0.11 → 14.0.13
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/index.js +11 -4
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/main/app/index.d.ts +1 -0
- package/dist/cjs/main/app/observer/iframe_observer.d.ts +0 -1
- package/dist/lib/index.js +30 -15
- package/dist/lib/index.js.map +1 -1
- package/dist/lib/main/app/index.d.ts +1 -0
- package/dist/lib/main/app/observer/iframe_observer.d.ts +0 -1
- package/package.json +2 -3
|
@@ -293,6 +293,7 @@ export default class App {
|
|
|
293
293
|
* @reject {string} - error message
|
|
294
294
|
* */
|
|
295
295
|
uploadOfflineRecording(): Promise<void>;
|
|
296
|
+
prevOpts: StartOptions;
|
|
296
297
|
private _start;
|
|
297
298
|
restartCanvasTracking: () => void;
|
|
298
299
|
flushBuffer: (buffer: Message[]) => Promise<unknown>;
|
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": "14.0.
|
|
4
|
+
"version": "14.0.13",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"logging",
|
|
7
7
|
"replay"
|
|
@@ -34,8 +34,7 @@
|
|
|
34
34
|
"scripts": {
|
|
35
35
|
"lint": "eslint src --ext .ts,.js --fix --quiet",
|
|
36
36
|
"clean": "rm -Rf build && rm -Rf lib && rm -Rf cjs",
|
|
37
|
-
"build
|
|
38
|
-
"build": "yarn run clean && yarn build:common && rollup --config rollup.config.js",
|
|
37
|
+
"build": "yarn run clean && rollup --config rollup.config.js",
|
|
39
38
|
"lint-front": "lint-staged",
|
|
40
39
|
"test": "jest --coverage=false",
|
|
41
40
|
"test:ci": "jest --coverage=true",
|