dce-reactkit 3.6.22 → 3.6.23

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,7 @@ declare enum LogAction {
20
20
  Peek = "Peek",
21
21
  Halt = "Halt",
22
22
  Resume = "Resume",
23
+ Jump = "Jump",
23
24
  Unknown = "Unknown"
24
25
  }
25
26
  export default LogAction;
package/dist/esm/index.js CHANGED
@@ -2478,6 +2478,8 @@ var LogAction;
2478
2478
  LogAction["Halt"] = "Halt";
2479
2479
  // Resume a process (resume a halted process)
2480
2480
  LogAction["Resume"] = "Resume";
2481
+ // Jump to/seek to/reveal/go to/navigate to a target
2482
+ LogAction["Jump"] = "Jump";
2481
2483
  // Unknown action
2482
2484
  LogAction["Unknown"] = "Unknown";
2483
2485
  })(LogAction || (LogAction = {}));