dce-reactkit 3.6.22 → 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.
- package/dist/cjs/index.js +4 -0
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/types/LogAction.d.ts +2 -0
- package/dist/esm/index.js +4 -0
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/types/LogAction.d.ts +2 -0
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
- package/src/types/LogAction.ts +4 -0
package/dist/esm/index.js
CHANGED
|
@@ -2478,6 +2478,10 @@ 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";
|
|
2483
|
+
// Post a submission/message/etc. into the target
|
|
2484
|
+
LogAction["Post"] = "Post";
|
|
2481
2485
|
// Unknown action
|
|
2482
2486
|
LogAction["Unknown"] = "Unknown";
|
|
2483
2487
|
})(LogAction || (LogAction = {}));
|