diff --git a/package.json b/package.json index aab8561..1e1506a 100644 --- a/package.json +++ b/package.json @@ -50,5 +50,6 @@ "style": "module", "parser": "typescript" } - } + }, + "packageManager": "pnpm@8.15.5" } diff --git a/src/types/CommentView.ts b/src/types/CommentView.ts index 5143bf3..966dae4 100644 --- a/src/types/CommentView.ts +++ b/src/types/CommentView.ts @@ -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; diff --git a/src/types/PostView.ts b/src/types/PostView.ts index 0318974..6a531ef 100644 --- a/src/types/PostView.ts +++ b/src/types/PostView.ts @@ -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;