dce-reactkit 4.1.6 → 4.1.7
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
|
@@ -3848,6 +3848,10 @@ var LogAction;
|
|
|
3848
3848
|
LogAction["Jump"] = "Jump";
|
|
3849
3849
|
// Post a submission/message/etc. into the target
|
|
3850
3850
|
LogAction["Post"] = "Post";
|
|
3851
|
+
// Like something
|
|
3852
|
+
LogAction["Like"] = "Like";
|
|
3853
|
+
// Dislike something
|
|
3854
|
+
LogAction["Dislike"] = "Dislike";
|
|
3851
3855
|
// Unknown action
|
|
3852
3856
|
LogAction["Unknown"] = "Unknown";
|
|
3853
3857
|
})(LogAction || (LogAction = {}));
|