@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.
@@ -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>;
@@ -3,5 +3,4 @@ export default class IFrameObserver extends Observer {
3
3
  docId: number | undefined;
4
4
  observe(iframe: HTMLIFrameElement): void;
5
5
  syntheticObserve(rootNodeId: number, doc: Document): void;
6
- disconnect(): void;
7
6
  }
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.11",
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:common": "tsc -b src/common",
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",