diff --git a/package.json b/package.json index 97f1f08..832f685 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "lemmy-js-client", - "version": "0.19.0-alpha.15", + "version": "0.19.0-alpha.16", "description": "A javascript / typescript client for Lemmy", "repository": "https://github.com/LemmyNet/lemmy-js-client", "license": "AGPL-3.0", diff --git a/src/types/CommentReplyView.ts b/src/types/CommentReplyView.ts index 81df2f5..60ffee7 100644 --- a/src/types/CommentReplyView.ts +++ b/src/types/CommentReplyView.ts @@ -16,6 +16,7 @@ export interface CommentReplyView { recipient: Person; counts: CommentAggregates; creator_banned_from_community: boolean; + creator_is_moderator: boolean; subscribed: SubscribedType; saved: boolean; creator_blocked: boolean; diff --git a/src/types/PersonMentionView.ts b/src/types/PersonMentionView.ts index 58e9d62..d0d0cde 100644 --- a/src/types/PersonMentionView.ts +++ b/src/types/PersonMentionView.ts @@ -16,6 +16,7 @@ export interface PersonMentionView { recipient: Person; counts: CommentAggregates; creator_banned_from_community: boolean; + creator_is_moderator: boolean; subscribed: SubscribedType; saved: boolean; creator_blocked: boolean;