Hey is a decentralized and permissionless social media app built with Lens Protocol 馃尶
1export enum HomeFeedType {
2 FOLLOWING = "FOLLOWING",
3 FORYOU = "FORYOU",
4 HIGHLIGHTS = "HIGHLIGHTS"
5}
6
7export enum AccountFeedType {
8 Collects = "COLLECTS",
9 Feed = "FEED",
10 Media = "MEDIA",
11 Replies = "REPLIES"
12}
13
14export enum NotificationFeedType {
15 All = "ALL",
16 PostActions = "POST_ACTIONS",
17 Comments = "COMMENTS",
18 Likes = "LIKES",
19 Mentions = "MENTIONS",
20 Rewards = "REWARDS"
21}
22
23export enum GroupsFeedType {
24 Managed = "MANAGED",
25 Member = "MEMBER"
26}
27
28export enum Status {
29 Success = "success",
30 Error = "error"
31}