mirror of
https://github.com/LemmyNet/lemmy-js-client.git
synced 2024-11-01 01:59:55 +00:00
Removing CommunityFollowerResponse, using SubscribedType. (#62)
* Removing CommunityFollowerResponse, using SubscribedType. * v0.17.0-rc.11
This commit is contained in:
parent
36103fbca0
commit
637ada9f9f
2 changed files with 14 additions and 4 deletions
|
@ -151,6 +151,15 @@ export enum SearchType {
|
|||
Url = "Url",
|
||||
}
|
||||
|
||||
/**
|
||||
* Different Subscribed states
|
||||
*/
|
||||
export enum SubscribedType {
|
||||
Subscribed = "Subscribed",
|
||||
NotSubscribed = "NotSubscribed",
|
||||
Pending = "Pending",
|
||||
}
|
||||
|
||||
/**
|
||||
* A holder for a site's metadata ( such as opengraph tags ), used for post links.
|
||||
*/
|
||||
|
|
|
@ -9,6 +9,7 @@ import {
|
|||
PostAggregates,
|
||||
SiteAggregates,
|
||||
} from "./aggregates";
|
||||
import { SubscribedType } from "./others";
|
||||
import {
|
||||
Comment,
|
||||
CommentReport,
|
||||
|
@ -54,7 +55,7 @@ export class PersonMentionView {
|
|||
recipient: PersonSafe;
|
||||
counts: CommentAggregates;
|
||||
creator_banned_from_community: boolean;
|
||||
subscribed: boolean;
|
||||
subscribed: SubscribedType;
|
||||
saved: boolean;
|
||||
creator_blocked: boolean;
|
||||
@Transform(({ value }) => toOption(value), { toClassOnly: true })
|
||||
|
@ -95,7 +96,7 @@ export class PostView {
|
|||
community: CommunitySafe;
|
||||
creator_banned_from_community: boolean;
|
||||
counts: PostAggregates;
|
||||
subscribed: boolean;
|
||||
subscribed: SubscribedType;
|
||||
saved: boolean;
|
||||
read: boolean;
|
||||
creator_blocked: boolean;
|
||||
|
@ -145,7 +146,7 @@ export class CommentView {
|
|||
community: CommunitySafe;
|
||||
counts: CommentAggregates;
|
||||
creator_banned_from_community: boolean;
|
||||
subscribed: boolean;
|
||||
subscribed: SubscribedType;
|
||||
saved: boolean;
|
||||
creator_blocked: boolean;
|
||||
@Transform(({ value }) => toOption(value), { toClassOnly: true })
|
||||
|
@ -326,7 +327,7 @@ export class PersonBlockView {
|
|||
export class CommunityView {
|
||||
@Type(() => CommunitySafe)
|
||||
community: CommunitySafe;
|
||||
subscribed: boolean;
|
||||
subscribed: SubscribedType;
|
||||
blocked: boolean;
|
||||
counts: CommunityAggregates;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue