lemmy-js-client 1.0.0-block-nsfw.1 → 1.0.0-local-image-user.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (151) hide show
  1. package/dist/http.d.ts +63 -16
  2. package/dist/http.js +978 -889
  3. package/dist/index.d.ts +23 -17
  4. package/dist/other_types.d.ts +9 -0
  5. package/dist/types/BannedPersonsResponse.d.ts +6 -0
  6. package/dist/types/Comment.d.ts +14 -0
  7. package/dist/types/CommentActions.d.ts +18 -0
  8. package/dist/types/CommentReplyView.d.ts +15 -14
  9. package/dist/types/CommentReportView.d.ts +8 -13
  10. package/dist/types/CommentSlimView.d.ts +11 -13
  11. package/dist/types/CommentView.d.ts +14 -13
  12. package/dist/types/Community.d.ts +23 -4
  13. package/dist/types/CommunityActions.d.ts +35 -0
  14. package/dist/types/CommunityReportResponse.d.ts +7 -0
  15. package/dist/types/CommunityReportView.d.ts +0 -4
  16. package/dist/types/CommunityView.d.ts +6 -6
  17. package/dist/types/CommunityVisibility.d.ts +1 -1
  18. package/dist/types/CreateCommunityReport.d.ts +8 -0
  19. package/dist/types/CreateCommunityTag.d.ts +8 -0
  20. package/dist/types/CreateSite.d.ts +2 -1
  21. package/dist/types/DeleteCommunityTag.d.ts +7 -0
  22. package/dist/types/EditPost.d.ts +1 -1
  23. package/dist/types/EditSite.d.ts +4 -5
  24. package/dist/types/GetComments.d.ts +3 -1
  25. package/dist/types/GetCommentsResponse.d.ts +3 -0
  26. package/dist/types/GetCommentsSlimResponse.d.ts +3 -0
  27. package/dist/types/GetModlog.d.ts +3 -2
  28. package/dist/types/GetModlogResponse.d.ts +6 -0
  29. package/dist/types/GetPosts.d.ts +1 -7
  30. package/dist/types/GetPostsResponse.d.ts +1 -0
  31. package/dist/types/GetSiteResponse.d.ts +4 -2
  32. package/dist/types/Instance.d.ts +9 -0
  33. package/dist/types/InstanceActions.d.ts +18 -0
  34. package/dist/types/InstanceWithFederationState.d.ts +9 -0
  35. package/dist/types/LemmyErrorType.d.ts +97 -26
  36. package/dist/types/ListBannedPersons.d.ts +9 -0
  37. package/dist/types/ListCommentLikes.d.ts +3 -1
  38. package/dist/types/ListCommentLikesResponse.d.ts +6 -0
  39. package/dist/types/ListCommunities.d.ts +3 -1
  40. package/dist/types/ListCommunitiesResponse.d.ts +6 -0
  41. package/dist/types/ListCommunityPendingFollows.d.ts +3 -1
  42. package/dist/types/ListCommunityPendingFollows.js +0 -1
  43. package/dist/types/ListCommunityPendingFollowsResponse.d.ts +6 -0
  44. package/dist/types/ListCustomEmojis.d.ts +0 -3
  45. package/dist/types/ListInbox.d.ts +3 -2
  46. package/dist/types/ListInboxResponse.d.ts +6 -0
  47. package/dist/types/ListMedia.d.ts +3 -1
  48. package/dist/types/ListMedia.js +0 -1
  49. package/dist/types/ListMediaResponse.d.ts +6 -0
  50. package/dist/types/ListPersonContent.d.ts +3 -2
  51. package/dist/types/ListPersonContentResponse.d.ts +6 -0
  52. package/dist/types/ListPersonHidden.d.ts +9 -0
  53. package/dist/types/ListPersonHidden.js +2 -0
  54. package/dist/types/ListPersonHiddenResponse.d.ts +13 -0
  55. package/dist/types/ListPersonHiddenResponse.js +2 -0
  56. package/dist/types/ListPersonRead.d.ts +9 -0
  57. package/dist/types/ListPersonRead.js +2 -0
  58. package/dist/types/ListPersonReadResponse.d.ts +13 -0
  59. package/dist/types/ListPersonReadResponse.js +2 -0
  60. package/dist/types/ListPersonSaved.d.ts +3 -2
  61. package/dist/types/ListPersonSavedResponse.d.ts +8 -2
  62. package/dist/types/ListPostLikes.d.ts +3 -1
  63. package/dist/types/ListPostLikesResponse.d.ts +6 -0
  64. package/dist/types/ListRegistrationApplications.d.ts +3 -1
  65. package/dist/types/ListRegistrationApplications.js +0 -1
  66. package/dist/types/ListRegistrationApplicationsResponse.d.ts +6 -0
  67. package/dist/types/ListReports.d.ts +3 -2
  68. package/dist/types/ListReportsResponse.d.ts +6 -0
  69. package/dist/types/ListTaglines.d.ts +3 -1
  70. package/dist/types/ListTaglines.js +0 -1
  71. package/dist/types/ListTaglinesResponse.d.ts +6 -0
  72. package/dist/types/LocalImage.d.ts +2 -2
  73. package/dist/types/LocalSite.d.ts +24 -5
  74. package/dist/types/LocalUser.d.ts +5 -0
  75. package/dist/types/LocalUserView.d.ts +2 -4
  76. package/dist/types/Login.d.ts +3 -0
  77. package/dist/types/ModBan.d.ts +2 -0
  78. package/dist/types/ModChangeCommunityVisibility.d.ts +12 -0
  79. package/dist/types/ModChangeCommunityVisibility.js +2 -0
  80. package/dist/types/ModChangeCommunityVisibilityId.d.ts +1 -0
  81. package/dist/types/ModChangeCommunityVisibilityView.d.ts +11 -0
  82. package/dist/types/ModChangeCommunityVisibilityView.js +2 -0
  83. package/dist/types/ModlogActionType.d.ts +1 -1
  84. package/dist/types/ModlogCombinedView.d.ts +3 -3
  85. package/dist/types/MyUserInfo.d.ts +1 -0
  86. package/dist/types/PaginationCursor.d.ts +1 -4
  87. package/dist/types/PendingFollow.d.ts +2 -2
  88. package/dist/types/Person.d.ts +2 -8
  89. package/dist/types/PersonActions.d.ts +9 -0
  90. package/dist/types/PersonActions.js +2 -0
  91. package/dist/types/PersonCommentMentionView.d.ts +13 -14
  92. package/dist/types/PersonPostMentionView.d.ts +15 -19
  93. package/dist/types/PersonSavedCombinedView.d.ts +7 -0
  94. package/dist/types/PersonSavedCombinedView.js +2 -0
  95. package/dist/types/PersonView.d.ts +4 -2
  96. package/dist/types/PluginMetadata.d.ts +5 -0
  97. package/dist/types/Post.d.ts +15 -0
  98. package/dist/types/PostActions.d.ts +35 -0
  99. package/dist/types/PostActions.js +2 -0
  100. package/dist/types/PostReportView.d.ts +8 -16
  101. package/dist/types/PostView.d.ts +14 -18
  102. package/dist/types/PrivateMessageReportView.d.ts +1 -1
  103. package/dist/types/ResolveCommunityReport.d.ts +8 -0
  104. package/dist/types/ResolveCommunityReport.js +2 -0
  105. package/dist/types/SaveUserSettings.d.ts +3 -1
  106. package/dist/types/Search.d.ts +3 -2
  107. package/dist/types/SearchResponse.d.ts +6 -0
  108. package/dist/types/SiteView.d.ts +2 -2
  109. package/dist/types/Tag.d.ts +8 -6
  110. package/dist/types/Tagline.d.ts +2 -1
  111. package/dist/types/Tagline.js +0 -1
  112. package/dist/types/{PostTags.d.ts → TagsView.d.ts} +1 -3
  113. package/dist/types/TagsView.js +2 -0
  114. package/dist/types/UpdateCommunityTag.d.ts +8 -0
  115. package/dist/types/UpdateCommunityTag.js +2 -0
  116. package/dist/types/VoteShow.d.ts +4 -0
  117. package/dist/types/VoteView.d.ts +1 -0
  118. package/package.json +6 -3
  119. package/dist/types/CommentAggregates.d.ts +0 -17
  120. package/dist/types/CommunityAggregates.d.ts +0 -30
  121. package/dist/types/InboxCombinedPaginationCursor.d.ts +0 -4
  122. package/dist/types/LocalUserVoteDisplayMode.d.ts +0 -9
  123. package/dist/types/ModHideCommunity.d.ts +0 -14
  124. package/dist/types/ModHideCommunityId.d.ts +0 -1
  125. package/dist/types/ModHideCommunityView.d.ts +0 -11
  126. package/dist/types/ModlogCombinedPaginationCursor.d.ts +0 -4
  127. package/dist/types/ModlogCombinedPaginationCursor.js +0 -3
  128. package/dist/types/PersonAggregates.d.ts +0 -10
  129. package/dist/types/PersonContentCombinedPaginationCursor.d.ts +0 -4
  130. package/dist/types/PersonContentCombinedPaginationCursor.js +0 -3
  131. package/dist/types/PersonSavedCombinedPaginationCursor.d.ts +0 -4
  132. package/dist/types/PersonSavedCombinedPaginationCursor.js +0 -3
  133. package/dist/types/PostAggregates.d.ts +0 -18
  134. package/dist/types/ReportCombinedPaginationCursor.d.ts +0 -4
  135. package/dist/types/ReportCombinedPaginationCursor.js +0 -3
  136. package/dist/types/SearchCombinedPaginationCursor.d.ts +0 -4
  137. package/dist/types/SearchCombinedPaginationCursor.js +0 -3
  138. package/dist/types/SiteAggregates.d.ts +0 -27
  139. package/dist/types/SubscribedType.d.ts +0 -4
  140. package/dist/types/SubscribedType.js +0 -3
  141. /package/dist/types/{CommentAggregates.js → CommentActions.js} +0 -0
  142. /package/dist/types/{CommunityAggregates.js → CommunityActions.js} +0 -0
  143. /package/dist/types/{ModHideCommunity.js → CommunityReportResponse.js} +0 -0
  144. /package/dist/types/{ModHideCommunityView.js → CreateCommunityReport.js} +0 -0
  145. /package/dist/types/{PersonAggregates.js → CreateCommunityTag.js} +0 -0
  146. /package/dist/types/{PostAggregates.js → DeleteCommunityTag.js} +0 -0
  147. /package/dist/types/{PostTags.js → InstanceActions.js} +0 -0
  148. /package/dist/types/{SiteAggregates.js → ListBannedPersons.js} +0 -0
  149. /package/dist/types/{InboxCombinedPaginationCursor.js → ModChangeCommunityVisibilityId.js} +0 -0
  150. /package/dist/types/{LocalUserVoteDisplayMode.js → PluginMetadata.js} +0 -0
  151. /package/dist/types/{ModHideCommunityId.js → VoteShow.js} +0 -0
package/dist/index.d.ts CHANGED
@@ -40,7 +40,7 @@ export { BlockPersonResponse } from "./types/BlockPersonResponse";
40
40
  export { CaptchaResponse } from "./types/CaptchaResponse";
41
41
  export { ChangePassword } from "./types/ChangePassword";
42
42
  export { Comment } from "./types/Comment";
43
- export { CommentAggregates } from "./types/CommentAggregates";
43
+ export { CommentActions } from "./types/CommentActions";
44
44
  export { CommentId } from "./types/CommentId";
45
45
  export { CommentReply } from "./types/CommentReply";
46
46
  export { CommentReplyId } from "./types/CommentReplyId";
@@ -54,13 +54,14 @@ export { CommentSlimView } from "./types/CommentSlimView";
54
54
  export { CommentSortType } from "./types/CommentSortType";
55
55
  export { CommentView } from "./types/CommentView";
56
56
  export { Community } from "./types/Community";
57
- export { CommunityAggregates } from "./types/CommunityAggregates";
57
+ export { CommunityActions } from "./types/CommunityActions";
58
58
  export { CommunityFollowerState } from "./types/CommunityFollowerState";
59
59
  export { CommunityFollowerView } from "./types/CommunityFollowerView";
60
60
  export { CommunityId } from "./types/CommunityId";
61
61
  export { CommunityModeratorView } from "./types/CommunityModeratorView";
62
62
  export { CommunityReport } from "./types/CommunityReport";
63
63
  export { CommunityReportId } from "./types/CommunityReportId";
64
+ export { CommunityReportResponse } from "./types/CommunityReportResponse";
64
65
  export { CommunityReportView } from "./types/CommunityReportView";
65
66
  export { CommunityResponse } from "./types/CommunityResponse";
66
67
  export { CommunitySortType } from "./types/CommunitySortType";
@@ -70,6 +71,8 @@ export { CreateComment } from "./types/CreateComment";
70
71
  export { CreateCommentLike } from "./types/CreateCommentLike";
71
72
  export { CreateCommentReport } from "./types/CreateCommentReport";
72
73
  export { CreateCommunity } from "./types/CreateCommunity";
74
+ export { CreateCommunityReport } from "./types/CreateCommunityReport";
75
+ export { CreateCommunityTag } from "./types/CreateCommunityTag";
73
76
  export { CreateCustomEmoji } from "./types/CreateCustomEmoji";
74
77
  export { CreateOAuthProvider } from "./types/CreateOAuthProvider";
75
78
  export { CreatePost } from "./types/CreatePost";
@@ -88,6 +91,7 @@ export { DbUrl } from "./types/DbUrl";
88
91
  export { DeleteAccount } from "./types/DeleteAccount";
89
92
  export { DeleteComment } from "./types/DeleteComment";
90
93
  export { DeleteCommunity } from "./types/DeleteCommunity";
94
+ export { DeleteCommunityTag } from "./types/DeleteCommunityTag";
91
95
  export { DeleteCustomEmoji } from "./types/DeleteCustomEmoji";
92
96
  export { DeleteImageParams } from "./types/DeleteImageParams";
93
97
  export { DeleteOAuthProvider } from "./types/DeleteOAuthProvider";
@@ -141,16 +145,17 @@ export { HidePost } from "./types/HidePost";
141
145
  export { ImageDetails } from "./types/ImageDetails";
142
146
  export { ImageGetParams } from "./types/ImageGetParams";
143
147
  export { ImageProxyParams } from "./types/ImageProxyParams";
144
- export { InboxCombinedPaginationCursor } from "./types/InboxCombinedPaginationCursor";
145
148
  export { InboxCombinedView } from "./types/InboxCombinedView";
146
149
  export { InboxDataType } from "./types/InboxDataType";
147
150
  export { Instance } from "./types/Instance";
151
+ export { InstanceActions } from "./types/InstanceActions";
148
152
  export { InstanceId } from "./types/InstanceId";
149
153
  export { InstanceWithFederationState } from "./types/InstanceWithFederationState";
150
154
  export { Language } from "./types/Language";
151
155
  export { LanguageId } from "./types/LanguageId";
152
156
  export { LemmyErrorType } from "./types/LemmyErrorType";
153
157
  export { LinkMetadata } from "./types/LinkMetadata";
158
+ export { ListBannedPersons } from "./types/ListBannedPersons";
154
159
  export { ListCommentLikes } from "./types/ListCommentLikes";
155
160
  export { ListCommentLikesResponse } from "./types/ListCommentLikesResponse";
156
161
  export { ListCommunities } from "./types/ListCommunities";
@@ -166,6 +171,10 @@ export { ListMedia } from "./types/ListMedia";
166
171
  export { ListMediaResponse } from "./types/ListMediaResponse";
167
172
  export { ListPersonContent } from "./types/ListPersonContent";
168
173
  export { ListPersonContentResponse } from "./types/ListPersonContentResponse";
174
+ export { ListPersonHidden } from "./types/ListPersonHidden";
175
+ export { ListPersonHiddenResponse } from "./types/ListPersonHiddenResponse";
176
+ export { ListPersonRead } from "./types/ListPersonRead";
177
+ export { ListPersonReadResponse } from "./types/ListPersonReadResponse";
169
178
  export { ListPersonSaved } from "./types/ListPersonSaved";
170
179
  export { ListPersonSavedResponse } from "./types/ListPersonSavedResponse";
171
180
  export { ListPostLikes } from "./types/ListPostLikes";
@@ -186,7 +195,6 @@ export { LocalSiteUrlBlocklist } from "./types/LocalSiteUrlBlocklist";
186
195
  export { LocalUser } from "./types/LocalUser";
187
196
  export { LocalUserId } from "./types/LocalUserId";
188
197
  export { LocalUserView } from "./types/LocalUserView";
189
- export { LocalUserVoteDisplayMode } from "./types/LocalUserVoteDisplayMode";
190
198
  export { LockPost } from "./types/LockPost";
191
199
  export { Login } from "./types/Login";
192
200
  export { LoginResponse } from "./types/LoginResponse";
@@ -209,12 +217,12 @@ export { ModBanFromCommunityId } from "./types/ModBanFromCommunityId";
209
217
  export { ModBanFromCommunityView } from "./types/ModBanFromCommunityView";
210
218
  export { ModBanId } from "./types/ModBanId";
211
219
  export { ModBanView } from "./types/ModBanView";
220
+ export { ModChangeCommunityVisibility } from "./types/ModChangeCommunityVisibility";
221
+ export { ModChangeCommunityVisibilityId } from "./types/ModChangeCommunityVisibilityId";
222
+ export { ModChangeCommunityVisibilityView } from "./types/ModChangeCommunityVisibilityView";
212
223
  export { ModFeaturePost } from "./types/ModFeaturePost";
213
224
  export { ModFeaturePostId } from "./types/ModFeaturePostId";
214
225
  export { ModFeaturePostView } from "./types/ModFeaturePostView";
215
- export { ModHideCommunity } from "./types/ModHideCommunity";
216
- export { ModHideCommunityId } from "./types/ModHideCommunityId";
217
- export { ModHideCommunityView } from "./types/ModHideCommunityView";
218
226
  export { ModLockPost } from "./types/ModLockPost";
219
227
  export { ModLockPostId } from "./types/ModLockPostId";
220
228
  export { ModLockPostView } from "./types/ModLockPostView";
@@ -231,7 +239,6 @@ export { ModTransferCommunity } from "./types/ModTransferCommunity";
231
239
  export { ModTransferCommunityId } from "./types/ModTransferCommunityId";
232
240
  export { ModTransferCommunityView } from "./types/ModTransferCommunityView";
233
241
  export { ModlogActionType } from "./types/ModlogActionType";
234
- export { ModlogCombinedPaginationCursor } from "./types/ModlogCombinedPaginationCursor";
235
242
  export { ModlogCombinedView } from "./types/ModlogCombinedView";
236
243
  export { MyUserInfo } from "./types/MyUserInfo";
237
244
  export { OAuthAccount } from "./types/OAuthAccount";
@@ -243,21 +250,21 @@ export { PasswordChangeAfterReset } from "./types/PasswordChangeAfterReset";
243
250
  export { PasswordReset } from "./types/PasswordReset";
244
251
  export { PendingFollow } from "./types/PendingFollow";
245
252
  export { Person } from "./types/Person";
246
- export { PersonAggregates } from "./types/PersonAggregates";
253
+ export { PersonActions } from "./types/PersonActions";
247
254
  export { PersonCommentMention } from "./types/PersonCommentMention";
248
255
  export { PersonCommentMentionId } from "./types/PersonCommentMentionId";
249
256
  export { PersonCommentMentionView } from "./types/PersonCommentMentionView";
250
- export { PersonContentCombinedPaginationCursor } from "./types/PersonContentCombinedPaginationCursor";
251
257
  export { PersonContentCombinedView } from "./types/PersonContentCombinedView";
252
258
  export { PersonContentType } from "./types/PersonContentType";
253
259
  export { PersonId } from "./types/PersonId";
254
260
  export { PersonPostMention } from "./types/PersonPostMention";
255
261
  export { PersonPostMentionId } from "./types/PersonPostMentionId";
256
262
  export { PersonPostMentionView } from "./types/PersonPostMentionView";
257
- export { PersonSavedCombinedPaginationCursor } from "./types/PersonSavedCombinedPaginationCursor";
263
+ export { PersonSavedCombinedView } from "./types/PersonSavedCombinedView";
258
264
  export { PersonView } from "./types/PersonView";
265
+ export { PluginMetadata } from "./types/PluginMetadata";
259
266
  export { Post } from "./types/Post";
260
- export { PostAggregates } from "./types/PostAggregates";
267
+ export { PostActions } from "./types/PostActions";
261
268
  export { PostFeatureType } from "./types/PostFeatureType";
262
269
  export { PostId } from "./types/PostId";
263
270
  export { PostListingMode } from "./types/PostListingMode";
@@ -267,7 +274,6 @@ export { PostReportResponse } from "./types/PostReportResponse";
267
274
  export { PostReportView } from "./types/PostReportView";
268
275
  export { PostResponse } from "./types/PostResponse";
269
276
  export { PostSortType } from "./types/PostSortType";
270
- export { PostTags } from "./types/PostTags";
271
277
  export { PostView } from "./types/PostView";
272
278
  export { PrivateMessage } from "./types/PrivateMessage";
273
279
  export { PrivateMessageId } from "./types/PrivateMessageId";
@@ -292,11 +298,11 @@ export { RegistrationMode } from "./types/RegistrationMode";
292
298
  export { RemoveComment } from "./types/RemoveComment";
293
299
  export { RemoveCommunity } from "./types/RemoveCommunity";
294
300
  export { RemovePost } from "./types/RemovePost";
295
- export { ReportCombinedPaginationCursor } from "./types/ReportCombinedPaginationCursor";
296
301
  export { ReportCombinedView } from "./types/ReportCombinedView";
297
302
  export { ReportType } from "./types/ReportType";
298
303
  export { ResendVerificationEmail } from "./types/ResendVerificationEmail";
299
304
  export { ResolveCommentReport } from "./types/ResolveCommentReport";
305
+ export { ResolveCommunityReport } from "./types/ResolveCommunityReport";
300
306
  export { ResolveObject } from "./types/ResolveObject";
301
307
  export { ResolveObjectResponse } from "./types/ResolveObjectResponse";
302
308
  export { ResolvePostReport } from "./types/ResolvePostReport";
@@ -305,29 +311,29 @@ export { SaveComment } from "./types/SaveComment";
305
311
  export { SavePost } from "./types/SavePost";
306
312
  export { SaveUserSettings } from "./types/SaveUserSettings";
307
313
  export { Search } from "./types/Search";
308
- export { SearchCombinedPaginationCursor } from "./types/SearchCombinedPaginationCursor";
309
314
  export { SearchCombinedView } from "./types/SearchCombinedView";
310
315
  export { SearchResponse } from "./types/SearchResponse";
311
316
  export { SearchSortType } from "./types/SearchSortType";
312
317
  export { SearchType } from "./types/SearchType";
313
318
  export { SensitiveString } from "./types/SensitiveString";
314
319
  export { Site } from "./types/Site";
315
- export { SiteAggregates } from "./types/SiteAggregates";
316
320
  export { SiteId } from "./types/SiteId";
317
321
  export { SiteResponse } from "./types/SiteResponse";
318
322
  export { SiteView } from "./types/SiteView";
319
- export { SubscribedType } from "./types/SubscribedType";
320
323
  export { SuccessResponse } from "./types/SuccessResponse";
321
324
  export { Tag } from "./types/Tag";
322
325
  export { TagId } from "./types/TagId";
323
326
  export { Tagline } from "./types/Tagline";
324
327
  export { TaglineId } from "./types/TaglineId";
325
328
  export { TaglineResponse } from "./types/TaglineResponse";
329
+ export { TagsView } from "./types/TagsView";
326
330
  export { TransferCommunity } from "./types/TransferCommunity";
331
+ export { UpdateCommunityTag } from "./types/UpdateCommunityTag";
327
332
  export { UpdateTagline } from "./types/UpdateTagline";
328
333
  export { UpdateTotp } from "./types/UpdateTotp";
329
334
  export { UpdateTotpResponse } from "./types/UpdateTotpResponse";
330
335
  export { UploadImageResponse } from "./types/UploadImageResponse";
331
336
  export { UserBlockInstanceParams } from "./types/UserBlockInstanceParams";
332
337
  export { VerifyEmail } from "./types/VerifyEmail";
338
+ export { VoteShow } from "./types/VoteShow";
333
339
  export { VoteView } from "./types/VoteView";
@@ -11,6 +11,7 @@ import { GetRandomCommunity } from "./types/GetRandomCommunity";
11
11
  import { GetRegistrationApplication } from "./types/GetRegistrationApplication";
12
12
  import { GetReportCount } from "./types/GetReportCount";
13
13
  import { GetSiteMetadata } from "./types/GetSiteMetadata";
14
+ import { ListBannedPersons } from "./types/ListBannedPersons";
14
15
  import { ListCommentLikes } from "./types/ListCommentLikes";
15
16
  import { ListCommunities } from "./types/ListCommunities";
16
17
  import { ListCommunityPendingFollows } from "./types/ListCommunityPendingFollows";
@@ -18,6 +19,8 @@ import { ListCustomEmojis } from "./types/ListCustomEmojis";
18
19
  import { ListInbox } from "./types/ListInbox";
19
20
  import { ListMedia } from "./types/ListMedia";
20
21
  import { ListPersonContent } from "./types/ListPersonContent";
22
+ import { ListPersonHidden } from "./types/ListPersonHidden";
23
+ import { ListPersonRead } from "./types/ListPersonRead";
21
24
  import { ListPersonSaved } from "./types/ListPersonSaved";
22
25
  import { ListPostLikes } from "./types/ListPostLikes";
23
26
  import { ListRegistrationApplications } from "./types/ListRegistrationApplications";
@@ -71,6 +74,10 @@ export interface ListInboxI extends ListInbox {
71
74
  }
72
75
  export interface ListPersonSavedI extends ListPersonSaved {
73
76
  }
77
+ export interface ListPersonReadI extends ListPersonRead {
78
+ }
79
+ export interface ListPersonHiddenI extends ListPersonHidden {
80
+ }
74
81
  export interface ListRegistrationApplicationsI extends ListRegistrationApplications {
75
82
  }
76
83
  export interface GetRegistrationApplicationI extends GetRegistrationApplication {
@@ -83,3 +90,5 @@ export interface ListReportsI extends ListReports {
83
90
  }
84
91
  export interface DeleteImageParamsI extends DeleteImageParams {
85
92
  }
93
+ export interface ListBannedPersonsI extends ListBannedPersons {
94
+ }
@@ -1,7 +1,13 @@
1
+ import type { PaginationCursor } from "./PaginationCursor";
1
2
  import type { PersonView } from "./PersonView";
2
3
  /**
3
4
  * The list of banned persons.
4
5
  */
5
6
  export type BannedPersonsResponse = {
6
7
  banned: Array<PersonView>;
8
+ /**
9
+ * the pagination cursor to use to fetch the next page
10
+ */
11
+ next_page?: PaginationCursor;
12
+ prev_page?: PaginationCursor;
7
13
  };
@@ -39,4 +39,18 @@ export type Comment = {
39
39
  */
40
40
  distinguished: boolean;
41
41
  language_id: LanguageId;
42
+ score: number;
43
+ upvotes: number;
44
+ downvotes: number;
45
+ /**
46
+ * The total number of children in this comment branch.
47
+ */
48
+ child_count: number;
49
+ report_count: number;
50
+ unresolved_report_count: number;
51
+ /**
52
+ * If a local user comments in a remote community, the comment is hidden until it is confirmed
53
+ * accepted by the community (by receiving it back via federation).
54
+ */
55
+ federation_pending: boolean;
42
56
  };
@@ -0,0 +1,18 @@
1
+ import type { CommentId } from "./CommentId";
2
+ import type { PersonId } from "./PersonId";
3
+ export type CommentActions = {
4
+ person_id: PersonId;
5
+ comment_id: CommentId;
6
+ /**
7
+ * The like / score for the comment.
8
+ */
9
+ like_score?: number;
10
+ /**
11
+ * When the comment was liked.
12
+ */
13
+ liked?: string;
14
+ /**
15
+ * When the comment was saved.
16
+ */
17
+ saved?: string;
18
+ };
@@ -1,31 +1,32 @@
1
1
  import type { Comment } from "./Comment";
2
- import type { CommentAggregates } from "./CommentAggregates";
2
+ import type { CommentActions } from "./CommentActions";
3
3
  import type { CommentReply } from "./CommentReply";
4
4
  import type { Community } from "./Community";
5
+ import type { CommunityActions } from "./CommunityActions";
6
+ import type { InstanceActions } from "./InstanceActions";
5
7
  import type { Person } from "./Person";
8
+ import type { PersonActions } from "./PersonActions";
6
9
  import type { Post } from "./Post";
7
- import type { SubscribedType } from "./SubscribedType";
10
+ import type { TagsView } from "./TagsView";
8
11
  /**
9
12
  * A comment reply view.
10
13
  */
11
14
  export type CommentReplyView = {
12
15
  comment_reply: CommentReply;
16
+ recipient: Person;
13
17
  comment: Comment;
14
18
  creator: Person;
15
19
  post: Post;
16
20
  community: Community;
17
- recipient: Person;
18
- counts: CommentAggregates;
19
- creator_banned_from_community: boolean;
20
- banned_from_community: boolean;
21
- creator_is_moderator: boolean;
21
+ community_actions?: CommunityActions;
22
+ comment_actions?: CommentActions;
23
+ person_actions?: PersonActions;
24
+ instance_actions?: InstanceActions;
25
+ creator_home_instance_actions?: InstanceActions;
26
+ creator_local_instance_actions?: InstanceActions;
27
+ creator_community_actions?: CommunityActions;
22
28
  creator_is_admin: boolean;
23
- subscribed: SubscribedType;
24
- /**
25
- * The time when the comment was saved.
26
- */
27
- saved?: string;
28
- creator_blocked: boolean;
29
- my_vote?: number;
29
+ post_tags: TagsView;
30
30
  can_mod: boolean;
31
+ creator_banned: boolean;
31
32
  };
@@ -1,10 +1,11 @@
1
1
  import type { Comment } from "./Comment";
2
- import type { CommentAggregates } from "./CommentAggregates";
2
+ import type { CommentActions } from "./CommentActions";
3
3
  import type { CommentReport } from "./CommentReport";
4
4
  import type { Community } from "./Community";
5
+ import type { CommunityActions } from "./CommunityActions";
5
6
  import type { Person } from "./Person";
7
+ import type { PersonActions } from "./PersonActions";
6
8
  import type { Post } from "./Post";
7
- import type { SubscribedType } from "./SubscribedType";
8
9
  /**
9
10
  * A comment report view.
10
11
  */
@@ -15,16 +16,10 @@ export type CommentReportView = {
15
16
  community: Community;
16
17
  creator: Person;
17
18
  comment_creator: Person;
18
- counts: CommentAggregates;
19
- creator_banned_from_community: boolean;
20
- creator_is_moderator: boolean;
21
- creator_is_admin: boolean;
22
- creator_blocked: boolean;
23
- subscribed: SubscribedType;
24
- /**
25
- * The time when the comment was saved.
26
- */
27
- saved?: string;
28
- my_vote?: number;
19
+ comment_actions?: CommentActions;
29
20
  resolver?: Person;
21
+ creator_community_actions?: CommunityActions;
22
+ person_actions?: PersonActions;
23
+ community_actions?: CommunityActions;
24
+ creator_is_admin: boolean;
30
25
  };
@@ -1,24 +1,22 @@
1
1
  import type { Comment } from "./Comment";
2
- import type { CommentAggregates } from "./CommentAggregates";
2
+ import type { CommentActions } from "./CommentActions";
3
+ import type { CommunityActions } from "./CommunityActions";
4
+ import type { InstanceActions } from "./InstanceActions";
3
5
  import type { Person } from "./Person";
4
- import type { SubscribedType } from "./SubscribedType";
6
+ import type { PersonActions } from "./PersonActions";
5
7
  /**
6
8
  * A slimmer comment view, without the post, or community.
7
9
  */
8
10
  export type CommentSlimView = {
9
11
  comment: Comment;
10
12
  creator: Person;
11
- counts: CommentAggregates;
12
- creator_banned_from_community: boolean;
13
- banned_from_community: boolean;
14
- creator_is_moderator: boolean;
13
+ comment_actions?: CommentActions;
14
+ person_actions?: PersonActions;
15
+ creator_community_actions?: CommunityActions;
16
+ instance_actions?: InstanceActions;
17
+ creator_home_instance_actions?: InstanceActions;
18
+ creator_local_instance_actions?: InstanceActions;
15
19
  creator_is_admin: boolean;
16
- subscribed: SubscribedType;
17
- /**
18
- * The time when the comment was saved.
19
- */
20
- saved?: string;
21
- creator_blocked: boolean;
22
- my_vote?: number;
23
20
  can_mod: boolean;
21
+ creator_banned: boolean;
24
22
  };
@@ -1,9 +1,12 @@
1
1
  import type { Comment } from "./Comment";
2
- import type { CommentAggregates } from "./CommentAggregates";
2
+ import type { CommentActions } from "./CommentActions";
3
3
  import type { Community } from "./Community";
4
+ import type { CommunityActions } from "./CommunityActions";
5
+ import type { InstanceActions } from "./InstanceActions";
4
6
  import type { Person } from "./Person";
7
+ import type { PersonActions } from "./PersonActions";
5
8
  import type { Post } from "./Post";
6
- import type { SubscribedType } from "./SubscribedType";
9
+ import type { TagsView } from "./TagsView";
7
10
  /**
8
11
  * A comment view.
9
12
  */
@@ -12,17 +15,15 @@ export type CommentView = {
12
15
  creator: Person;
13
16
  post: Post;
14
17
  community: Community;
15
- counts: CommentAggregates;
16
- creator_banned_from_community: boolean;
17
- banned_from_community: boolean;
18
- creator_is_moderator: boolean;
18
+ community_actions?: CommunityActions;
19
+ comment_actions?: CommentActions;
20
+ person_actions?: PersonActions;
21
+ instance_actions?: InstanceActions;
22
+ creator_home_instance_actions?: InstanceActions;
23
+ creator_local_instance_actions?: InstanceActions;
24
+ creator_community_actions?: CommunityActions;
19
25
  creator_is_admin: boolean;
20
- subscribed: SubscribedType;
21
- /**
22
- * The time when the comment was saved.
23
- */
24
- saved?: string;
25
- creator_blocked: boolean;
26
- my_vote?: number;
26
+ post_tags: TagsView;
27
27
  can_mod: boolean;
28
+ creator_banned: boolean;
28
29
  };
@@ -46,10 +46,6 @@ export type Community = {
46
46
  * A URL for a banner.
47
47
  */
48
48
  banner?: DbUrl;
49
- /**
50
- * Whether the community is hidden.
51
- */
52
- hidden: boolean;
53
49
  /**
54
50
  * Whether posting is restricted to mods only.
55
51
  */
@@ -60,4 +56,27 @@ export type Community = {
60
56
  * A shorter, one-line description of the site.
61
57
  */
62
58
  description?: string;
59
+ subscribers: number;
60
+ posts: number;
61
+ comments: number;
62
+ /**
63
+ * The number of users with any activity in the last day.
64
+ */
65
+ users_active_day: number;
66
+ /**
67
+ * The number of users with any activity in the last week.
68
+ */
69
+ users_active_week: number;
70
+ /**
71
+ * The number of users with any activity in the last month.
72
+ */
73
+ users_active_month: number;
74
+ /**
75
+ * The number of users with any activity in the last year.
76
+ */
77
+ users_active_half_year: number;
78
+ subscribers_local: number;
79
+ report_count: number;
80
+ unresolved_report_count: number;
81
+ local_removed: boolean;
63
82
  };
@@ -0,0 +1,35 @@
1
+ import type { CommunityFollowerState } from "./CommunityFollowerState";
2
+ import type { CommunityId } from "./CommunityId";
3
+ import type { PersonId } from "./PersonId";
4
+ export type CommunityActions = {
5
+ community_id: CommunityId;
6
+ person_id: PersonId;
7
+ /**
8
+ * When the community was followed.
9
+ */
10
+ followed?: string;
11
+ /**
12
+ * The state of the community follow.
13
+ */
14
+ follow_state?: CommunityFollowerState;
15
+ /**
16
+ * The approver of the community follow.
17
+ */
18
+ follow_approver_id?: PersonId;
19
+ /**
20
+ * When the community was blocked.
21
+ */
22
+ blocked?: string;
23
+ /**
24
+ * When this user became a moderator.
25
+ */
26
+ became_moderator?: string;
27
+ /**
28
+ * When this user received a ban.
29
+ */
30
+ received_ban?: string;
31
+ /**
32
+ * When their ban expires.
33
+ */
34
+ ban_expires?: string;
35
+ };
@@ -0,0 +1,7 @@
1
+ import type { CommunityReportView } from "./CommunityReportView";
2
+ /**
3
+ * A community report response.
4
+ */
5
+ export type CommunityReportResponse = {
6
+ community_report_view: CommunityReportView;
7
+ };
@@ -1,8 +1,6 @@
1
1
  import type { Community } from "./Community";
2
- import type { CommunityAggregates } from "./CommunityAggregates";
3
2
  import type { CommunityReport } from "./CommunityReport";
4
3
  import type { Person } from "./Person";
5
- import type { SubscribedType } from "./SubscribedType";
6
4
  /**
7
5
  * A community report view.
8
6
  */
@@ -10,7 +8,5 @@ export type CommunityReportView = {
10
8
  community_report: CommunityReport;
11
9
  community: Community;
12
10
  creator: Person;
13
- counts: CommunityAggregates;
14
- subscribed: SubscribedType;
15
11
  resolver?: Person;
16
12
  };
@@ -1,14 +1,14 @@
1
1
  import type { Community } from "./Community";
2
- import type { CommunityAggregates } from "./CommunityAggregates";
3
- import type { SubscribedType } from "./SubscribedType";
2
+ import type { CommunityActions } from "./CommunityActions";
3
+ import type { InstanceActions } from "./InstanceActions";
4
+ import type { TagsView } from "./TagsView";
4
5
  /**
5
6
  * A community view.
6
7
  */
7
8
  export type CommunityView = {
8
9
  community: Community;
9
- subscribed: SubscribedType;
10
- blocked: boolean;
11
- counts: CommunityAggregates;
12
- banned_from_community: boolean;
10
+ community_actions?: CommunityActions;
11
+ instance_actions?: InstanceActions;
13
12
  can_mod: boolean;
13
+ post_tags: TagsView;
14
14
  };
@@ -1,4 +1,4 @@
1
1
  /**
2
2
  * Defines who can browse and interact with content in a community.
3
3
  */
4
- export type CommunityVisibility = "Public" | "LocalOnly" | "Private";
4
+ export type CommunityVisibility = "Public" | "Unlisted" | "LocalOnlyPublic" | "LocalOnlyPrivate" | "Private";
@@ -0,0 +1,8 @@
1
+ import type { CommunityId } from "./CommunityId";
2
+ /**
3
+ * Create a report for a community.
4
+ */
5
+ export type CreateCommunityReport = {
6
+ community_id: CommunityId;
7
+ reason: string;
8
+ };
@@ -0,0 +1,8 @@
1
+ import type { CommunityId } from "./CommunityId";
2
+ /**
3
+ * Create a tag for a community.
4
+ */
5
+ export type CreateCommunityTag = {
6
+ community_id: CommunityId;
7
+ display_name: string;
8
+ };
@@ -50,5 +50,6 @@ export type CreateSite = {
50
50
  post_downvotes?: FederationMode;
51
51
  comment_upvotes?: FederationMode;
52
52
  comment_downvotes?: FederationMode;
53
- disable_donation_dialog?: boolean;
53
+ disallow_nsfw_content?: boolean;
54
+ disable_email_notifications?: boolean;
54
55
  };
@@ -0,0 +1,7 @@
1
+ import type { TagId } from "./TagId";
2
+ /**
3
+ * Delete a community tag.
4
+ */
5
+ export type DeleteCommunityTag = {
6
+ tag_id: TagId;
7
+ };
@@ -22,9 +22,9 @@ export type EditPost = {
22
22
  * Instead of fetching a thumbnail, use a custom one.
23
23
  */
24
24
  custom_thumbnail?: string;
25
- tags?: Array<TagId>;
26
25
  /**
27
26
  * Time when this post should be scheduled. Null means publish immediately.
28
27
  */
29
28
  scheduled_publish_time?: number;
29
+ tags?: Array<TagId>;
30
30
  };
@@ -158,13 +158,12 @@ export type EditSite = {
158
158
  * What kind of comment downvotes your site allows.
159
159
  */
160
160
  comment_downvotes?: FederationMode;
161
- /**
162
- * If this is true, users will never see the dialog asking to support Lemmy development with
163
- * donations.
164
- */
165
- disable_donation_dialog?: boolean;
166
161
  /**
167
162
  * Block NSFW content being created
168
163
  */
169
164
  disallow_nsfw_content?: boolean;
165
+ /**
166
+ * Dont send email notifications to users for new replies, mentions etc
167
+ */
168
+ disable_email_notifications?: boolean;
170
169
  };
@@ -2,6 +2,7 @@ import type { CommentId } from "./CommentId";
2
2
  import type { CommentSortType } from "./CommentSortType";
3
3
  import type { CommunityId } from "./CommunityId";
4
4
  import type { ListingType } from "./ListingType";
5
+ import type { PaginationCursor } from "./PaginationCursor";
5
6
  import type { PostId } from "./PostId";
6
7
  /**
7
8
  * Get a list of comments.
@@ -15,7 +16,8 @@ export type GetComments = {
15
16
  */
16
17
  time_range_seconds?: number;
17
18
  max_depth?: number;
18
- page?: number;
19
+ page_cursor?: PaginationCursor;
20
+ page_back?: boolean;
19
21
  limit?: number;
20
22
  community_id?: CommunityId;
21
23
  community_name?: string;