@openreplay/tracker 18.0.15 → 18.0.17-beta.0

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.
@@ -20,6 +20,8 @@ declare class Maintainer {
20
20
  private readonly nodes;
21
21
  private readonly unregisterNode;
22
22
  private interval;
23
+ private batchTimeout;
24
+ private isScanning;
23
25
  private readonly options;
24
26
  constructor(nodes: Map<number, Node | void>, unregisterNode: (node: Node) => void, options?: Partial<MaintainerOptions>);
25
27
  start: () => void;
@@ -1,5 +1,6 @@
1
1
  import App from '../index.js';
2
2
  export declare function parseUseEl(useElement: SVGUseElement, mode: 'inline' | 'dataurl' | 'svgtext', domParser: DOMParser): Promise<any>;
3
+ export declare function shouldSkipValueAttribute(node: Element): boolean;
3
4
  interface Options {
4
5
  disableSprites?: boolean;
5
6
  disableThrottling?: boolean;
@@ -20,6 +20,8 @@ declare class Maintainer {
20
20
  private readonly nodes;
21
21
  private readonly unregisterNode;
22
22
  private interval;
23
+ private batchTimeout;
24
+ private isScanning;
23
25
  private readonly options;
24
26
  constructor(nodes: Map<number, Node | void>, unregisterNode: (node: Node) => void, options?: Partial<MaintainerOptions>);
25
27
  start: () => void;
@@ -1,5 +1,6 @@
1
1
  import App from '../index.js';
2
2
  export declare function parseUseEl(useElement: SVGUseElement, mode: 'inline' | 'dataurl' | 'svgtext', domParser: DOMParser): Promise<any>;
3
+ export declare function shouldSkipValueAttribute(node: Element): boolean;
3
4
  interface Options {
4
5
  disableSprites?: boolean;
5
6
  disableThrottling?: boolean;
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": "18.0.15",
4
+ "version": "18.0.17-beta.0",
5
5
  "keywords": [
6
6
  "logging",
7
7
  "replay"