mirror of
https://github.com/LemmyNet/lemmy-js-client.git
synced 2024-11-01 01:59: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",
|
||||
"parser": "typescript"
|
||||
}
|
||||
}
|
||||
},
|
||||
"packageManager": "pnpm@8.15.5"
|
||||
}
|
||||
|
|
|
@ -13,6 +13,7 @@ export interface CommentView {
|
|||
community: Community;
|
||||
counts: CommentAggregates;
|
||||
creator_banned_from_community: boolean;
|
||||
banned_from_community: boolean;
|
||||
creator_is_moderator: boolean;
|
||||
creator_is_admin: boolean;
|
||||
subscribed: SubscribedType;
|
||||
|
|
|
@ -10,6 +10,7 @@ export interface PostView {
|
|||
creator: Person;
|
||||
community: Community;
|
||||
creator_banned_from_community: boolean;
|
||||
banned_from_community: boolean;
|
||||
creator_is_moderator: boolean;
|
||||
creator_is_admin: boolean;
|
||||
counts: PostAggregates;
|
||||
|
|
Loading…
Reference in a new issue