mirror of
https://github.com/LemmyNet/lemmy-js-client.git
synced 2024-11-01 10:09:55 +00:00
Merge remote-tracking branch 'origin/main' into add_list_media
This commit is contained in:
commit
1289af4556
3 changed files with 4 additions and 1 deletions
|
@ -50,5 +50,6 @@
|
||||||
"style": "module",
|
"style": "module",
|
||||||
"parser": "typescript"
|
"parser": "typescript"
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"packageManager": "pnpm@8.15.5"
|
||||||
}
|
}
|
||||||
|
|
|
@ -13,6 +13,7 @@ export interface CommentView {
|
||||||
community: Community;
|
community: Community;
|
||||||
counts: CommentAggregates;
|
counts: CommentAggregates;
|
||||||
creator_banned_from_community: boolean;
|
creator_banned_from_community: boolean;
|
||||||
|
banned_from_community: boolean;
|
||||||
creator_is_moderator: boolean;
|
creator_is_moderator: boolean;
|
||||||
creator_is_admin: boolean;
|
creator_is_admin: boolean;
|
||||||
subscribed: SubscribedType;
|
subscribed: SubscribedType;
|
||||||
|
|
|
@ -10,6 +10,7 @@ export interface PostView {
|
||||||
creator: Person;
|
creator: Person;
|
||||||
community: Community;
|
community: Community;
|
||||||
creator_banned_from_community: boolean;
|
creator_banned_from_community: boolean;
|
||||||
|
banned_from_community: boolean;
|
||||||
creator_is_moderator: boolean;
|
creator_is_moderator: boolean;
|
||||||
creator_is_admin: boolean;
|
creator_is_admin: boolean;
|
||||||
counts: PostAggregates;
|
counts: PostAggregates;
|
||||||
|
|
Loading…
Reference in a new issue