lemmy-js-client 1.0.0-instance-user-blocking.7 → 1.0.0-invite.1

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 (406) hide show
  1. package/README.md +33 -4
  2. package/dist/http.d.ts +265 -220
  3. package/dist/http.js +451 -336
  4. package/dist/index.d.ts +59 -109
  5. package/dist/index.js +4 -0
  6. package/dist/map_request_state.d.ts +2 -0
  7. package/dist/map_request_state.js +12 -0
  8. package/dist/map_request_state.main.d.ts +2 -0
  9. package/dist/map_request_state.main.js +12 -0
  10. package/dist/map_request_state.tsoa.d.ts +1 -0
  11. package/dist/map_request_state.tsoa.js +7 -0
  12. package/dist/other_types.d.ts +10 -7
  13. package/dist/request_state.d.ts +26 -0
  14. package/dist/request_state.js +5 -0
  15. package/dist/types/AdminAllowInstanceParams.d.ts +1 -1
  16. package/dist/types/AdminBlockInstanceParams.d.ts +7 -2
  17. package/dist/types/AdminListUsers.d.ts +2 -1
  18. package/dist/types/{OAuthProvider.d.ts → AdminOAuthProvider.d.ts} +1 -1
  19. package/dist/types/AllLemmyErrors.d.ts +1 -0
  20. package/dist/types/AllLemmyErrors.js +117 -0
  21. package/dist/types/AuthenticateWithOauth.d.ts +4 -0
  22. package/dist/types/BanFromCommunity.d.ts +1 -1
  23. package/dist/types/BanPerson.d.ts +1 -1
  24. package/dist/types/ChangePassword.d.ts +4 -0
  25. package/dist/types/{PasswordChangeAfterReset.d.ts → ChangePasswordAfterReset.d.ts} +1 -1
  26. package/dist/types/Comment.d.ts +4 -0
  27. package/dist/types/CommentActions.d.ts +6 -6
  28. package/dist/types/CommentReport.d.ts +1 -0
  29. package/dist/types/CommentReportView.d.ts +4 -0
  30. package/dist/types/CommentSlimView.d.ts +0 -3
  31. package/dist/types/CommentSortType.d.ts +1 -1
  32. package/dist/types/CommentView.d.ts +4 -5
  33. package/dist/types/Community.d.ts +4 -3
  34. package/dist/types/CommunityActions.d.ts +4 -4
  35. package/dist/types/CommunityFollowerState.d.ts +1 -1
  36. package/dist/types/CommunityNotificationsMode.d.ts +1 -1
  37. package/dist/types/CommunityReport.d.ts +3 -2
  38. package/dist/types/CommunityReportView.d.ts +2 -0
  39. package/dist/types/CommunitySortType.d.ts +1 -1
  40. package/dist/types/{Tag.d.ts → CommunityTag.d.ts} +6 -4
  41. package/dist/types/CommunityTagId.d.ts +4 -0
  42. package/dist/types/CommunityTagsView.d.ts +5 -0
  43. package/dist/types/CommunityView.d.ts +2 -4
  44. package/dist/types/CommunityVisibility.d.ts +1 -1
  45. package/dist/types/CreateCommentLike.d.ts +2 -2
  46. package/dist/types/CreateCommentReport.d.ts +4 -0
  47. package/dist/types/CreateCommentWarning.d.ts +8 -0
  48. package/dist/types/CreateCommunity.d.ts +3 -11
  49. package/dist/types/CreateCommunityTag.d.ts +3 -1
  50. package/dist/types/CreateCustomEmoji.d.ts +2 -1
  51. package/dist/types/CreateCustomEmoji.js +0 -1
  52. package/dist/types/CreateInvitation.d.ts +4 -0
  53. package/dist/types/CreateInvitationResponse.d.ts +4 -0
  54. package/dist/types/CreateMultiCommunity.d.ts +2 -1
  55. package/dist/types/CreatePost.d.ts +2 -2
  56. package/dist/types/CreatePostLike.d.ts +2 -2
  57. package/dist/types/CreatePostReport.d.ts +4 -0
  58. package/dist/types/CreatePostWarning.d.ts +8 -0
  59. package/dist/types/CreateSite.d.ts +19 -8
  60. package/dist/types/DeleteCommunityTag.d.ts +3 -2
  61. package/dist/types/DeleteUserForm.d.ts +8 -0
  62. package/dist/types/EditCommunity.d.ts +2 -2
  63. package/dist/types/{UpdateCommunityNotifications.d.ts → EditCommunityNotifications.d.ts} +1 -1
  64. package/dist/types/EditCommunityTag.d.ts +11 -0
  65. package/dist/types/EditCustomEmoji.d.ts +7 -5
  66. package/dist/types/{UpdateMultiCommunity.d.ts → EditMultiCommunity.d.ts} +3 -2
  67. package/dist/types/EditPost.d.ts +2 -2
  68. package/dist/types/{UpdatePostNotifications.d.ts → EditPostNotifications.d.ts} +1 -1
  69. package/dist/types/EditSite.d.ts +36 -18
  70. package/dist/types/{UpdateTagline.d.ts → EditTagline.d.ts} +1 -1
  71. package/dist/types/{UpdateTotp.d.ts → EditTotp.d.ts} +1 -1
  72. package/dist/types/EditTotpResponse.d.ts +3 -0
  73. package/dist/types/FederatedInstanceView.d.ts +12 -0
  74. package/dist/types/FederationAllowList.d.ts +4 -0
  75. package/dist/types/FederationBlockList.d.ts +0 -2
  76. package/dist/types/FederationBlockList.js +1 -0
  77. package/dist/types/FederationMode.d.ts +1 -1
  78. package/dist/types/{ReadableFederationState.d.ts → FederationQueueState.d.ts} +1 -5
  79. package/dist/types/GetComments.d.ts +4 -1
  80. package/dist/types/GetFederatedInstances.d.ts +8 -0
  81. package/dist/types/GetFederatedInstancesKind.d.ts +1 -0
  82. package/dist/types/GetModlog.d.ts +11 -3
  83. package/dist/types/GetMultiCommunity.d.ts +2 -1
  84. package/dist/types/GetPersonDetailsResponse.d.ts +2 -0
  85. package/dist/types/GetPostResponse.d.ts +2 -0
  86. package/dist/types/GetPosts.d.ts +13 -2
  87. package/dist/types/GetSiteResponse.d.ts +9 -3
  88. package/dist/types/HideCommunity.d.ts +1 -1
  89. package/dist/types/ImageMode.d.ts +4 -0
  90. package/dist/types/InvitationId.d.ts +4 -0
  91. package/dist/types/LemmyErrorType.d.ts +29 -146
  92. package/dist/types/LemmyErrorType.js +1 -0
  93. package/dist/types/LikeType.d.ts +1 -1
  94. package/dist/types/LinkMetadata.d.ts +4 -0
  95. package/dist/types/ListCommentLikes.d.ts +0 -1
  96. package/dist/types/ListCommunities.d.ts +4 -1
  97. package/dist/types/ListCommunityPendingFollows.d.ts +1 -2
  98. package/dist/types/ListInvitations.d.ts +5 -0
  99. package/dist/types/ListMedia.d.ts +0 -1
  100. package/dist/types/ListMultiCommunities.d.ts +14 -1
  101. package/dist/types/ListNotifications.d.ts +4 -3
  102. package/dist/types/ListPersonContent.d.ts +3 -1
  103. package/dist/types/ListPersonHidden.d.ts +0 -1
  104. package/dist/types/ListPersonLiked.d.ts +0 -1
  105. package/dist/types/ListPersonRead.d.ts +0 -1
  106. package/dist/types/ListPersonSaved.d.ts +1 -1
  107. package/dist/types/ListPersons.d.ts +11 -0
  108. package/dist/types/ListPostLikes.d.ts +0 -1
  109. package/dist/types/ListRegistrationApplications.d.ts +0 -1
  110. package/dist/types/ListReports.d.ts +6 -1
  111. package/dist/types/ListTaglines.d.ts +0 -1
  112. package/dist/types/ListingType.d.ts +1 -1
  113. package/dist/types/LocalSite.d.ts +37 -18
  114. package/dist/types/LocalUser.d.ts +18 -16
  115. package/dist/types/LocalUserInvite.d.ts +11 -0
  116. package/dist/types/LocalUserSortType.d.ts +4 -0
  117. package/dist/types/LocalUserView.d.ts +1 -0
  118. package/dist/types/LockComment.d.ts +9 -0
  119. package/dist/types/LockPost.d.ts +1 -1
  120. package/dist/types/Login.d.ts +4 -0
  121. package/dist/types/MarkManyPostsAsRead.d.ts +1 -0
  122. package/dist/types/ModEditPost.d.ts +2 -2
  123. package/dist/types/Modlog.d.ts +12 -0
  124. package/dist/types/ModlogId.d.ts +1 -0
  125. package/dist/types/ModlogKind.d.ts +4 -0
  126. package/dist/types/ModlogKindFilter.d.ts +5 -0
  127. package/dist/types/ModlogView.d.ts +15 -0
  128. package/dist/types/MultiCommunity.d.ts +12 -1
  129. package/dist/types/MultiCommunityEntry.d.ts +6 -0
  130. package/dist/types/MultiCommunityListingType.d.ts +4 -0
  131. package/dist/types/MultiCommunityResponse.d.ts +4 -0
  132. package/dist/types/MultiCommunitySortType.d.ts +1 -0
  133. package/dist/types/MultiCommunityView.d.ts +2 -0
  134. package/dist/types/MyUserInfo.d.ts +2 -0
  135. package/dist/types/NodeInfo.d.ts +20 -0
  136. package/dist/types/NodeInfoServices.d.ts +4 -0
  137. package/dist/types/NodeInfoSoftware.d.ts +6 -0
  138. package/dist/types/NodeInfoUsage.d.ts +6 -0
  139. package/dist/types/NodeInfoUsers.d.ts +5 -0
  140. package/dist/types/Notification.d.ts +5 -2
  141. package/dist/types/NotificationData.d.ts +7 -4
  142. package/dist/types/NotificationType.d.ts +4 -0
  143. package/dist/types/NotificationTypeFilter.d.ts +5 -0
  144. package/dist/types/OpenGraphData.d.ts +4 -0
  145. package/dist/types/PagedResponse.d.ts +11 -0
  146. package/dist/types/PaginationCursor.d.ts +5 -1
  147. package/dist/types/PendingFollowerView.d.ts +9 -0
  148. package/dist/types/Person.d.ts +1 -0
  149. package/dist/types/PersonContentType.d.ts +1 -1
  150. package/dist/types/PersonListingType.d.ts +4 -0
  151. package/dist/types/PersonResponse.d.ts +7 -0
  152. package/dist/types/PersonSortType.d.ts +4 -0
  153. package/dist/types/PersonView.d.ts +2 -1
  154. package/dist/types/PluginMetadata.d.ts +2 -2
  155. package/dist/types/Post.d.ts +6 -4
  156. package/dist/types/PostActions.d.ts +11 -11
  157. package/dist/types/{PersonSavedCombinedView.d.ts → PostCommentCombinedView.d.ts} +3 -3
  158. package/dist/types/PostFeatureType.d.ts +1 -1
  159. package/dist/types/PostListingMode.d.ts +1 -1
  160. package/dist/types/PostNotificationsMode.d.ts +1 -1
  161. package/dist/types/PostOrCommentOrPrivateMessage.d.ts +7 -7
  162. package/dist/types/PostReport.d.ts +1 -0
  163. package/dist/types/PostReportView.d.ts +4 -0
  164. package/dist/types/PostSortType.d.ts +1 -1
  165. package/dist/types/PostView.d.ts +4 -5
  166. package/dist/types/PrivateMessage.d.ts +1 -0
  167. package/dist/types/PrivateMessageReport.d.ts +1 -0
  168. package/dist/types/PrivateMessageReportView.d.ts +1 -0
  169. package/dist/types/PublicOAuthProvider.d.ts +27 -2
  170. package/dist/types/PurgeComment.d.ts +1 -1
  171. package/dist/types/PurgeCommunity.d.ts +1 -1
  172. package/dist/types/PurgePerson.d.ts +1 -1
  173. package/dist/types/PurgePost.d.ts +1 -1
  174. package/dist/types/Register.d.ts +8 -0
  175. package/dist/types/RegistrationApplication.d.ts +1 -0
  176. package/dist/types/RegistrationMode.d.ts +1 -1
  177. package/dist/types/RemoveComment.d.ts +6 -1
  178. package/dist/types/RemoveCommunity.d.ts +1 -1
  179. package/dist/types/RemovePost.d.ts +6 -1
  180. package/dist/types/ReportCombinedView.d.ts +4 -4
  181. package/dist/types/ReportSortType.d.ts +4 -0
  182. package/dist/types/ReportType.d.ts +1 -1
  183. package/dist/types/{PasswordReset.d.ts → ResetPassword.d.ts} +1 -1
  184. package/dist/types/ResolveCommentReport.d.ts +1 -0
  185. package/dist/types/ResolveCommunityReport.d.ts +1 -0
  186. package/dist/types/{SearchCombinedView.d.ts → ResolveObjectView.d.ts} +7 -7
  187. package/dist/types/ResolvePostReport.d.ts +1 -0
  188. package/dist/types/ResolvePrivateMessageReport.d.ts +1 -0
  189. package/dist/types/RevokeInvitation.d.ts +3 -0
  190. package/dist/types/SaveUserSettings.d.ts +13 -9
  191. package/dist/types/Search.d.ts +6 -6
  192. package/dist/types/SearchResponse.d.ts +16 -4
  193. package/dist/types/SearchType.d.ts +1 -1
  194. package/dist/types/Site.d.ts +2 -3
  195. package/dist/types/TagColor.d.ts +4 -0
  196. package/dist/types/UnreadCountsResponse.d.ts +11 -0
  197. package/dist/types/UserSettingsBackup.d.ts +2 -4
  198. package/dist/types/VoteShow.d.ts +1 -1
  199. package/dist/types/VoteView.d.ts +4 -1
  200. package/package.json +13 -12
  201. package/dist/types/AdminAllowInstance.d.ts +0 -11
  202. package/dist/types/AdminAllowInstanceId.d.ts +0 -1
  203. package/dist/types/AdminAllowInstanceView.d.ts +0 -11
  204. package/dist/types/AdminBlockInstance.d.ts +0 -12
  205. package/dist/types/AdminBlockInstanceId.d.ts +0 -1
  206. package/dist/types/AdminBlockInstanceView.d.ts +0 -11
  207. package/dist/types/AdminListUsersResponse.d.ts +0 -10
  208. package/dist/types/AdminPurgeComment.d.ts +0 -13
  209. package/dist/types/AdminPurgeCommentId.d.ts +0 -1
  210. package/dist/types/AdminPurgeCommentView.d.ts +0 -11
  211. package/dist/types/AdminPurgeCommunity.d.ts +0 -11
  212. package/dist/types/AdminPurgeCommunityId.d.ts +0 -1
  213. package/dist/types/AdminPurgeCommunityView.d.ts +0 -9
  214. package/dist/types/AdminPurgePerson.d.ts +0 -11
  215. package/dist/types/AdminPurgePersonId.d.ts +0 -1
  216. package/dist/types/AdminPurgePersonView.d.ts +0 -9
  217. package/dist/types/AdminPurgePost.d.ts +0 -13
  218. package/dist/types/AdminPurgePostId.d.ts +0 -1
  219. package/dist/types/AdminPurgePostView.d.ts +0 -11
  220. package/dist/types/BanFromCommunityResponse.d.ts +0 -8
  221. package/dist/types/BanPersonResponse.d.ts +0 -8
  222. package/dist/types/BlockCommunityResponse.d.ts +0 -8
  223. package/dist/types/BlockPersonResponse.d.ts +0 -8
  224. package/dist/types/FederatedInstances.d.ts +0 -9
  225. package/dist/types/FederationError.d.ts +0 -12
  226. package/dist/types/GetCommentsResponse.d.ts +0 -10
  227. package/dist/types/GetCommentsSlimResponse.d.ts +0 -10
  228. package/dist/types/GetCommunityPendingFollowsCount.d.ts +0 -4
  229. package/dist/types/GetCommunityPendingFollowsCountResponse.d.ts +0 -3
  230. package/dist/types/GetFederatedInstancesResponse.d.ts +0 -10
  231. package/dist/types/GetModlogResponse.d.ts +0 -13
  232. package/dist/types/GetPostsResponse.d.ts +0 -13
  233. package/dist/types/GetReportCount.d.ts +0 -7
  234. package/dist/types/GetReportCountResponse.d.ts +0 -6
  235. package/dist/types/GetUnreadCountResponse.d.ts +0 -6
  236. package/dist/types/GetUnreadRegistrationApplicationCountResponse.d.ts +0 -6
  237. package/dist/types/InstanceWithFederationState.d.ts +0 -24
  238. package/dist/types/ListCommentLikesResponse.d.ts +0 -13
  239. package/dist/types/ListCommunitiesResponse.d.ts +0 -13
  240. package/dist/types/ListCommunityPendingFollowsResponse.d.ts +0 -10
  241. package/dist/types/ListMediaResponse.d.ts +0 -10
  242. package/dist/types/ListMultiCommunitiesResponse.d.ts +0 -4
  243. package/dist/types/ListNotificationsResponse.d.ts +0 -13
  244. package/dist/types/ListPersonContentResponse.d.ts +0 -13
  245. package/dist/types/ListPersonHiddenResponse.d.ts +0 -13
  246. package/dist/types/ListPersonLikedResponse.d.ts +0 -13
  247. package/dist/types/ListPersonLikedResponse.js +0 -2
  248. package/dist/types/ListPersonReadResponse.d.ts +0 -13
  249. package/dist/types/ListPersonReadResponse.js +0 -2
  250. package/dist/types/ListPersonSavedResponse.d.ts +0 -13
  251. package/dist/types/ListPersonSavedResponse.js +0 -2
  252. package/dist/types/ListPostLikesResponse.d.ts +0 -13
  253. package/dist/types/ListPostLikesResponse.js +0 -2
  254. package/dist/types/ListRegistrationApplicationsResponse.d.ts +0 -13
  255. package/dist/types/ListRegistrationApplicationsResponse.js +0 -2
  256. package/dist/types/ListReportsResponse.d.ts +0 -13
  257. package/dist/types/ListReportsResponse.js +0 -2
  258. package/dist/types/ListTaglinesResponse.d.ts +0 -13
  259. package/dist/types/ListTaglinesResponse.js +0 -2
  260. package/dist/types/MarkPrivateMessageAsRead.d.ts +0 -8
  261. package/dist/types/MarkPrivateMessageAsRead.js +0 -2
  262. package/dist/types/ModAdd.d.ts +0 -12
  263. package/dist/types/ModAdd.js +0 -2
  264. package/dist/types/ModAddCommunity.d.ts +0 -14
  265. package/dist/types/ModAddCommunity.js +0 -2
  266. package/dist/types/ModAddCommunityId.d.ts +0 -1
  267. package/dist/types/ModAddCommunityView.d.ts +0 -12
  268. package/dist/types/ModAddCommunityView.js +0 -2
  269. package/dist/types/ModAddId.d.ts +0 -1
  270. package/dist/types/ModAddView.d.ts +0 -10
  271. package/dist/types/ModAddView.js +0 -2
  272. package/dist/types/ModBan.d.ts +0 -16
  273. package/dist/types/ModBan.js +0 -2
  274. package/dist/types/ModBanFromCommunity.d.ts +0 -16
  275. package/dist/types/ModBanFromCommunity.js +0 -2
  276. package/dist/types/ModBanFromCommunityId.d.ts +0 -1
  277. package/dist/types/ModBanFromCommunityView.d.ts +0 -12
  278. package/dist/types/ModBanFromCommunityView.js +0 -2
  279. package/dist/types/ModBanId.d.ts +0 -1
  280. package/dist/types/ModBanView.d.ts +0 -10
  281. package/dist/types/ModBanView.js +0 -2
  282. package/dist/types/ModChangeCommunityVisibility.d.ts +0 -11
  283. package/dist/types/ModChangeCommunityVisibility.js +0 -2
  284. package/dist/types/ModChangeCommunityVisibilityId.d.ts +0 -1
  285. package/dist/types/ModChangeCommunityVisibilityView.d.ts +0 -11
  286. package/dist/types/ModChangeCommunityVisibilityView.js +0 -2
  287. package/dist/types/ModFeaturePost.d.ts +0 -14
  288. package/dist/types/ModFeaturePost.js +0 -2
  289. package/dist/types/ModFeaturePostId.d.ts +0 -1
  290. package/dist/types/ModFeaturePostView.d.ts +0 -14
  291. package/dist/types/ModFeaturePostView.js +0 -2
  292. package/dist/types/ModLockPost.d.ts +0 -14
  293. package/dist/types/ModLockPost.js +0 -2
  294. package/dist/types/ModLockPostId.d.ts +0 -1
  295. package/dist/types/ModLockPostView.d.ts +0 -14
  296. package/dist/types/ModLockPostView.js +0 -2
  297. package/dist/types/ModRemoveComment.d.ts +0 -14
  298. package/dist/types/ModRemoveComment.js +0 -2
  299. package/dist/types/ModRemoveCommentId.d.ts +0 -1
  300. package/dist/types/ModRemoveCommentView.d.ts +0 -16
  301. package/dist/types/ModRemoveCommentView.js +0 -2
  302. package/dist/types/ModRemoveCommunity.d.ts +0 -14
  303. package/dist/types/ModRemoveCommunity.js +0 -2
  304. package/dist/types/ModRemoveCommunityId.d.ts +0 -1
  305. package/dist/types/ModRemoveCommunityView.d.ts +0 -11
  306. package/dist/types/ModRemoveCommunityView.js +0 -2
  307. package/dist/types/ModRemovePost.d.ts +0 -14
  308. package/dist/types/ModRemovePost.js +0 -2
  309. package/dist/types/ModRemovePostId.d.ts +0 -1
  310. package/dist/types/ModRemovePostView.d.ts +0 -14
  311. package/dist/types/ModRemovePostView.js +0 -2
  312. package/dist/types/ModTransferCommunity.d.ts +0 -13
  313. package/dist/types/ModTransferCommunity.js +0 -2
  314. package/dist/types/ModTransferCommunityId.d.ts +0 -1
  315. package/dist/types/ModTransferCommunityView.d.ts +0 -12
  316. package/dist/types/ModTransferCommunityView.js +0 -2
  317. package/dist/types/ModlogActionType.d.ts +0 -4
  318. package/dist/types/ModlogCombinedView.d.ts +0 -52
  319. package/dist/types/ModlogCombinedView.js +0 -2
  320. package/dist/types/NotificationDataType.d.ts +0 -4
  321. package/dist/types/NotificationDataType.js +0 -3
  322. package/dist/types/NotificationTypes.d.ts +0 -4
  323. package/dist/types/NotificationTypes.js +0 -3
  324. package/dist/types/OAuthProvider.js +0 -2
  325. package/dist/types/PasswordChangeAfterReset.js +0 -2
  326. package/dist/types/PasswordReset.js +0 -2
  327. package/dist/types/PersonContentCombinedView.d.ts +0 -7
  328. package/dist/types/PersonContentCombinedView.js +0 -2
  329. package/dist/types/PersonLikedCombinedView.d.ts +0 -7
  330. package/dist/types/PersonLikedCombinedView.js +0 -2
  331. package/dist/types/PersonSavedCombinedView.js +0 -2
  332. package/dist/types/ReadableFederationState.js +0 -2
  333. package/dist/types/SearchCombinedView.js +0 -2
  334. package/dist/types/SearchSortType.d.ts +0 -4
  335. package/dist/types/SearchSortType.js +0 -3
  336. package/dist/types/Tag.js +0 -2
  337. package/dist/types/TagId.d.ts +0 -4
  338. package/dist/types/TagId.js +0 -3
  339. package/dist/types/TagsView.d.ts +0 -5
  340. package/dist/types/TagsView.js +0 -2
  341. package/dist/types/UpdateCommunityNotifications.js +0 -2
  342. package/dist/types/UpdateCommunityTag.d.ts +0 -9
  343. package/dist/types/UpdateCommunityTag.js +0 -2
  344. package/dist/types/UpdateMultiCommunity.js +0 -2
  345. package/dist/types/UpdatePostNotifications.js +0 -2
  346. package/dist/types/UpdateTagline.js +0 -2
  347. package/dist/types/UpdateTotp.js +0 -3
  348. package/dist/types/UpdateTotpResponse.d.ts +0 -3
  349. package/dist/types/UpdateTotpResponse.js +0 -3
  350. /package/dist/types/{AdminAllowInstance.js → AdminOAuthProvider.js} +0 -0
  351. /package/dist/types/{AdminAllowInstanceView.js → ChangePasswordAfterReset.js} +0 -0
  352. /package/dist/types/{AdminBlockInstance.js → CommunityTag.js} +0 -0
  353. /package/dist/types/{AdminAllowInstanceId.js → CommunityTagId.js} +0 -0
  354. /package/dist/types/{AdminBlockInstanceView.js → CommunityTagsView.js} +0 -0
  355. /package/dist/types/{AdminListUsersResponse.js → CreateCommentWarning.js} +0 -0
  356. /package/dist/types/{AdminBlockInstanceId.js → CreateInvitation.js} +0 -0
  357. /package/dist/types/{AdminPurgeComment.js → CreateInvitationResponse.js} +0 -0
  358. /package/dist/types/{AdminPurgeCommentView.js → CreatePostWarning.js} +0 -0
  359. /package/dist/types/{AdminPurgeCommunity.js → DeleteUserForm.js} +0 -0
  360. /package/dist/types/{AdminPurgeCommunityView.js → EditCommunityNotifications.js} +0 -0
  361. /package/dist/types/{AdminPurgePerson.js → EditCommunityTag.js} +0 -0
  362. /package/dist/types/{AdminPurgePersonView.js → EditMultiCommunity.js} +0 -0
  363. /package/dist/types/{AdminPurgePost.js → EditPostNotifications.js} +0 -0
  364. /package/dist/types/{AdminPurgePostView.js → EditTagline.js} +0 -0
  365. /package/dist/types/{AdminPurgeCommentId.js → EditTotp.js} +0 -0
  366. /package/dist/types/{AdminPurgeCommunityId.js → EditTotpResponse.js} +0 -0
  367. /package/dist/types/{BanFromCommunityResponse.js → FederatedInstanceView.js} +0 -0
  368. /package/dist/types/{AdminPurgePersonId.js → FederationAllowList.js} +0 -0
  369. /package/dist/types/{BanPersonResponse.js → FederationQueueState.js} +0 -0
  370. /package/dist/types/{BlockCommunityResponse.js → GetFederatedInstances.js} +0 -0
  371. /package/dist/types/{AdminPurgePostId.js → GetFederatedInstancesKind.js} +0 -0
  372. /package/dist/types/{FederationError.js → ImageMode.js} +0 -0
  373. /package/dist/types/{GetCommunityPendingFollowsCountResponse.js → InvitationId.js} +0 -0
  374. /package/dist/types/{BlockPersonResponse.js → ListInvitations.js} +0 -0
  375. /package/dist/types/{FederatedInstances.js → ListPersons.js} +0 -0
  376. /package/dist/types/{GetCommentsResponse.js → LocalUserInvite.js} +0 -0
  377. /package/dist/types/{GetReportCountResponse.js → LocalUserSortType.js} +0 -0
  378. /package/dist/types/{GetCommentsSlimResponse.js → LockComment.js} +0 -0
  379. /package/dist/types/{GetCommunityPendingFollowsCount.js → Modlog.js} +0 -0
  380. /package/dist/types/{GetUnreadCountResponse.js → ModlogId.js} +0 -0
  381. /package/dist/types/{GetUnreadRegistrationApplicationCountResponse.js → ModlogKind.js} +0 -0
  382. /package/dist/types/{GetFederatedInstancesResponse.js → ModlogKindFilter.js} +0 -0
  383. /package/dist/types/{GetModlogResponse.js → ModlogView.js} +0 -0
  384. /package/dist/types/{GetPostsResponse.js → MultiCommunityEntry.js} +0 -0
  385. /package/dist/types/{ModAddCommunityId.js → MultiCommunityListingType.js} +0 -0
  386. /package/dist/types/{GetReportCount.js → MultiCommunityResponse.js} +0 -0
  387. /package/dist/types/{ModAddId.js → MultiCommunitySortType.js} +0 -0
  388. /package/dist/types/{InstanceWithFederationState.js → NodeInfo.js} +0 -0
  389. /package/dist/types/{ModBanFromCommunityId.js → NodeInfoServices.js} +0 -0
  390. /package/dist/types/{ModBanId.js → NodeInfoSoftware.js} +0 -0
  391. /package/dist/types/{ListCommentLikesResponse.js → NodeInfoUsage.js} +0 -0
  392. /package/dist/types/{ModChangeCommunityVisibilityId.js → NodeInfoUsers.js} +0 -0
  393. /package/dist/types/{ModFeaturePostId.js → NotificationType.js} +0 -0
  394. /package/dist/types/{ListCommunitiesResponse.js → NotificationTypeFilter.js} +0 -0
  395. /package/dist/types/{ListCommunityPendingFollowsResponse.js → PagedResponse.js} +0 -0
  396. /package/dist/types/{ListMediaResponse.js → PendingFollowerView.js} +0 -0
  397. /package/dist/types/{ModLockPostId.js → PersonListingType.js} +0 -0
  398. /package/dist/types/{ListMultiCommunitiesResponse.js → PersonResponse.js} +0 -0
  399. /package/dist/types/{ModRemoveCommentId.js → PersonSortType.js} +0 -0
  400. /package/dist/types/{ListNotificationsResponse.js → PostCommentCombinedView.js} +0 -0
  401. /package/dist/types/{ModRemoveCommunityId.js → ReportSortType.js} +0 -0
  402. /package/dist/types/{ListPersonContentResponse.js → ResetPassword.js} +0 -0
  403. /package/dist/types/{ListPersonHiddenResponse.js → ResolveObjectView.js} +0 -0
  404. /package/dist/types/{ModRemovePostId.js → RevokeInvitation.js} +0 -0
  405. /package/dist/types/{ModTransferCommunityId.js → TagColor.js} +0 -0
  406. /package/dist/types/{ModlogActionType.js → UnreadCountsResponse.js} +0 -0
package/README.md CHANGED
@@ -26,7 +26,11 @@ import { LemmyHttp, Login } from "lemmy-js-client";
26
26
 
27
27
  // Build the client
28
28
  const baseUrl = "https://lemmy.ml";
29
- const client: LemmyHttp = new LemmyHttp(baseUrl);
29
+ const headers = {["x-real-ip": ...]};
30
+ const client: LemmyHttp = new LemmyHttp(baseUrl, {
31
+ headers,
32
+ useRequestState: true
33
+ });
30
34
 
31
35
  // Build the login form
32
36
  const loginForm: Login = {
@@ -35,15 +39,40 @@ const loginForm: Login = {
35
39
  };
36
40
 
37
41
  // Login and set the client headers with your jwt
38
- const { jwt } = await client.login(loginForm);
39
- client.setHeaders({ Authorization: `Bearer ${jwt}` });
42
+ const loginRes = await client.login(loginForm);
43
+
44
+ // Make sure its successful
45
+ if (loginRes.state === "success") {
46
+ const jwt = login.data.jwt;
47
+ client.setHeaders({ Authorization: `Bearer ${jwt}` });
48
+ } else if (loginRes.state === "failed") {
49
+ const err = login.err;
50
+ }
40
51
 
41
52
  // Fetch top posts for the day
42
53
  const getPostsForm: GetPosts = {
43
54
  sort: "TopDay",
44
55
  type_: "Local",
45
56
  };
46
- const posts = await client.getPosts(getPostsForm);
57
+ const postsRes = await client.getPosts(getPostsForm);
58
+
59
+ // Handle the different request states
60
+ switch (postsRes.state) {
61
+ case "empty": {
62
+ break;
63
+ }
64
+ case "loading": {
65
+ break;
66
+ }
67
+ case "failed": {
68
+ const err = postsRes.err;
69
+ break;
70
+ }
71
+ case "success": {
72
+ const data = postsRes.data;
73
+ break;
74
+ }
75
+ }
47
76
  ```
48
77
 
49
78
  ## Development