@openreplay/tracker 18.0.12-beta.1 → 18.0.13-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.
@@ -25,6 +25,7 @@ export default class Nodes {
25
25
  cleanTree(): void;
26
26
  callNodeCallbacks(node: Node, isStart: boolean): void;
27
27
  getID(node: Node): number | undefined;
28
+ isBound(node: Node): boolean;
28
29
  getNode(id: number): void | Node | undefined;
29
30
  getNodeCount(): number;
30
31
  clear(): void;
@@ -53,6 +53,12 @@ export default abstract class Observer {
53
53
  private commitNode;
54
54
  private commitNodes;
55
55
  protected observeRoot(node: Node, beforeCommit: (id?: number) => unknown, nodeToBind?: Node): void;
56
+ /**
57
+ * [OPENREPLAYDEBUG] Emits a diagnostic line INTO the recorded session's
58
+ * console (searchable in replay by "[OPENREPLAYDEBUG]"), NOT the local
59
+ * devtools console — used to test capture-loss theories against real traffic.
60
+ */
61
+ private orDebug;
56
62
  disconnect(): void;
57
63
  protected resetThrottledSetNodeData(): void;
58
64
  }
@@ -25,6 +25,7 @@ export default class Nodes {
25
25
  cleanTree(): void;
26
26
  callNodeCallbacks(node: Node, isStart: boolean): void;
27
27
  getID(node: Node): number | undefined;
28
+ isBound(node: Node): boolean;
28
29
  getNode(id: number): void | Node | undefined;
29
30
  getNodeCount(): number;
30
31
  clear(): void;
@@ -53,6 +53,12 @@ export default abstract class Observer {
53
53
  private commitNode;
54
54
  private commitNodes;
55
55
  protected observeRoot(node: Node, beforeCommit: (id?: number) => unknown, nodeToBind?: Node): void;
56
+ /**
57
+ * [OPENREPLAYDEBUG] Emits a diagnostic line INTO the recorded session's
58
+ * console (searchable in replay by "[OPENREPLAYDEBUG]"), NOT the local
59
+ * devtools console — used to test capture-loss theories against real traffic.
60
+ */
61
+ private orDebug;
56
62
  disconnect(): void;
57
63
  protected resetThrottledSetNodeData(): void;
58
64
  }
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.12-beta.1",
4
+ "version": "18.0.13-beta.0",
5
5
  "keywords": [
6
6
  "logging",
7
7
  "replay"