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.
@@ -22,6 +22,8 @@ declare enum LogAction {
22
22
  Resume = "Resume",
23
23
  Jump = "Jump",
24
24
  Post = "Post",
25
+ Like = "Like",
26
+ Dislike = "Dislike",
25
27
  Unknown = "Unknown"
26
28
  }
27
29
  export default LogAction;
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 = {}));