dce-reactkit 3.6.23 → 3.6.24

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.
@@ -21,6 +21,7 @@ declare enum LogAction {
21
21
  Halt = "Halt",
22
22
  Resume = "Resume",
23
23
  Jump = "Jump",
24
+ Post = "Post",
24
25
  Unknown = "Unknown"
25
26
  }
26
27
  export default LogAction;
package/dist/esm/index.js CHANGED
@@ -2480,6 +2480,8 @@ var LogAction;
2480
2480
  LogAction["Resume"] = "Resume";
2481
2481
  // Jump to/seek to/reveal/go to/navigate to a target
2482
2482
  LogAction["Jump"] = "Jump";
2483
+ // Post a submission/message/etc. into the target
2484
+ LogAction["Post"] = "Post";
2483
2485
  // Unknown action
2484
2486
  LogAction["Unknown"] = "Unknown";
2485
2487
  })(LogAction || (LogAction = {}));