lemmy-js-client 0.18.3-rc.2 → 0.19.0-rc.1

Sign up to get free protection for your applications and to get access to all the features.
package/dist/http.js CHANGED
@@ -801,7 +801,13 @@ _LemmyHttp_apiUrl = new WeakMap(), _LemmyHttp_headers = new WeakMap(), _LemmyHtt
801
801
  body: JSON.stringify(form),
802
802
  });
803
803
  }
804
- const json = yield response.json();
804
+ let json = undefined;
805
+ try {
806
+ json = yield response.json();
807
+ }
808
+ catch (error) {
809
+ throw response.statusText;
810
+ }
805
811
  if (!response.ok) {
806
812
  throw (_a = json["error"]) !== null && _a !== void 0 ? _a : response.statusText;
807
813
  }
package/dist/index.d.ts CHANGED
@@ -121,6 +121,7 @@ export { InstanceId } from "./types/InstanceId";
121
121
  export { Language } from "./types/Language";
122
122
  export { LanguageId } from "./types/LanguageId";
123
123
  export { LeaveAdmin } from "./types/LeaveAdmin";
124
+ export { LemmyErrorType } from "./types/LemmyErrorType";
124
125
  export { ListCommentReports } from "./types/ListCommentReports";
125
126
  export { ListCommentReportsResponse } from "./types/ListCommentReportsResponse";
126
127
  export { ListCommunities } from "./types/ListCommunities";
@@ -185,6 +186,7 @@ export { PersonMention } from "./types/PersonMention";
185
186
  export { PersonMentionId } from "./types/PersonMentionId";
186
187
  export { PersonMentionResponse } from "./types/PersonMentionResponse";
187
188
  export { PersonMentionView } from "./types/PersonMentionView";
189
+ export { PersonSortType } from "./types/PersonSortType";
188
190
  export { PersonView } from "./types/PersonView";
189
191
  export { Post } from "./types/Post";
190
192
  export { PostAggregates } from "./types/PostAggregates";
@@ -246,4 +248,4 @@ export { UserJoin } from "./types/UserJoin";
246
248
  export { UserJoinResponse } from "./types/UserJoinResponse";
247
249
  export { VerifyEmail } from "./types/VerifyEmail";
248
250
  export { VerifyEmailResponse } from "./types/VerifyEmailResponse";
249
- export { ImageFile, UploadImage, UploadImageResponse } from "./types/others";
251
+ export { UploadImage, UploadImageResponse, ImageFile } from "./types/others";
@@ -8,4 +8,5 @@ export interface CommentAggregates {
8
8
  published: string;
9
9
  child_count: number;
10
10
  hot_rank: number;
11
+ controversy_rank: number;
11
12
  }
@@ -1 +1 @@
1
- export type CommentSortType = "Hot" | "Top" | "New" | "Old";
1
+ export type CommentSortType = "Hot" | "Top" | "New" | "Old" | "Controversial";
@@ -0,0 +1,277 @@
1
+ export type LemmyErrorType = {
2
+ error_type: "ReportReasonRequired";
3
+ } | {
4
+ error_type: "ReportTooLong";
5
+ } | {
6
+ error_type: "NotAModerator";
7
+ } | {
8
+ error_type: "NotAnAdmin";
9
+ } | {
10
+ error_type: "CannotBlockYourself";
11
+ } | {
12
+ error_type: "CannotBlockAdmin";
13
+ } | {
14
+ error_type: "CouldNotUpdateUser";
15
+ } | {
16
+ error_type: "PasswordsDoNotMatch";
17
+ } | {
18
+ error_type: "PasswordIncorrect";
19
+ } | {
20
+ error_type: "EmailNotVerified";
21
+ } | {
22
+ error_type: "EmailRequired";
23
+ } | {
24
+ error_type: "CouldNotUpdateComment";
25
+ } | {
26
+ error_type: "CouldNotUpdatePrivateMessage";
27
+ } | {
28
+ error_type: "CannotLeaveAdmin";
29
+ } | {
30
+ error_type: "NoLinesInHtml";
31
+ } | {
32
+ error_type: "SiteMetadataPageIsNotDoctypeHtml";
33
+ } | {
34
+ error_type: "PictrsResponseError";
35
+ message: string;
36
+ } | {
37
+ error_type: "PictrsPurgeResponseError";
38
+ message: string;
39
+ } | {
40
+ error_type: "ImageUrlMissingPathSegments";
41
+ } | {
42
+ error_type: "ImageUrlMissingLastPathSegment";
43
+ } | {
44
+ error_type: "PictrsApiKeyNotProvided";
45
+ } | {
46
+ error_type: "NoContentTypeHeader";
47
+ } | {
48
+ error_type: "NotAnImageType";
49
+ } | {
50
+ error_type: "NotAModOrAdmin";
51
+ } | {
52
+ error_type: "NoAdmins";
53
+ } | {
54
+ error_type: "NotTopAdmin";
55
+ } | {
56
+ error_type: "NotTopMod";
57
+ } | {
58
+ error_type: "NotLoggedIn";
59
+ } | {
60
+ error_type: "SiteBan";
61
+ } | {
62
+ error_type: "Deleted";
63
+ } | {
64
+ error_type: "BannedFromCommunity";
65
+ } | {
66
+ error_type: "CouldNotFindCommunity";
67
+ } | {
68
+ error_type: "PersonIsBlocked";
69
+ } | {
70
+ error_type: "DownvotesAreDisabled";
71
+ } | {
72
+ error_type: "InstanceIsPrivate";
73
+ } | {
74
+ error_type: "InvalidPassword";
75
+ } | {
76
+ error_type: "SiteDescriptionLengthOverflow";
77
+ } | {
78
+ error_type: "HoneypotFailed";
79
+ } | {
80
+ error_type: "RegistrationApplicationIsPending";
81
+ } | {
82
+ error_type: "PrivateInstanceCannotHaveFederationEnabled";
83
+ } | {
84
+ error_type: "Locked";
85
+ } | {
86
+ error_type: "CouldNotCreateComment";
87
+ } | {
88
+ error_type: "MaxCommentDepthReached";
89
+ } | {
90
+ error_type: "EditCommentNotAllowed";
91
+ } | {
92
+ error_type: "OnlyAdminsCanCreateCommunities";
93
+ } | {
94
+ error_type: "CommunityAlreadyExists";
95
+ } | {
96
+ error_type: "LanguageNotAllowed";
97
+ } | {
98
+ error_type: "OnlyModsCanPostInCommunity";
99
+ } | {
100
+ error_type: "CouldNotUpdatePost";
101
+ } | {
102
+ error_type: "EditPostNotAllowed";
103
+ } | {
104
+ error_type: "CouldNotFindPost";
105
+ } | {
106
+ error_type: "EditPrivateMessageNotAllowed";
107
+ } | {
108
+ error_type: "SiteAlreadyExists";
109
+ } | {
110
+ error_type: "ApplicationQuestionRequired";
111
+ } | {
112
+ error_type: "InvalidDefaultPostListingType";
113
+ } | {
114
+ error_type: "RegistrationClosed";
115
+ } | {
116
+ error_type: "RegistrationApplicationAnswerRequired";
117
+ } | {
118
+ error_type: "EmailAlreadyExists";
119
+ } | {
120
+ error_type: "FederationError";
121
+ message: string;
122
+ } | {
123
+ error_type: "FederationForbiddenByStrictAllowList";
124
+ } | {
125
+ error_type: "PersonIsBannedFromCommunity";
126
+ } | {
127
+ error_type: "ObjectIsNotPublic";
128
+ } | {
129
+ error_type: "InvalidCommunity";
130
+ } | {
131
+ error_type: "CannotCreatePostOrCommentInDeletedOrRemovedCommunity";
132
+ } | {
133
+ error_type: "CannotReceivePage";
134
+ } | {
135
+ error_type: "NewPostCannotBeLocked";
136
+ } | {
137
+ error_type: "OnlyLocalAdminCanRemoveCommunity";
138
+ } | {
139
+ error_type: "OnlyLocalAdminCanRestoreCommunity";
140
+ } | {
141
+ error_type: "NoIdGiven";
142
+ } | {
143
+ error_type: "CouldNotFindUsernameOrEmail";
144
+ } | {
145
+ error_type: "InvalidQuery";
146
+ } | {
147
+ error_type: "ObjectNotLocal";
148
+ } | {
149
+ error_type: "PostIsLocked";
150
+ } | {
151
+ error_type: "PersonIsBannedFromSite";
152
+ } | {
153
+ error_type: "InvalidVoteValue";
154
+ } | {
155
+ error_type: "PageDoesNotSpecifyCreator";
156
+ } | {
157
+ error_type: "PageDoesNotSpecifyGroup";
158
+ } | {
159
+ error_type: "NoCommunityFoundInCC";
160
+ } | {
161
+ error_type: "NoEmailSetup";
162
+ } | {
163
+ error_type: "EmailSmtpServerNeedsAPort";
164
+ } | {
165
+ error_type: "MissingAnEmail";
166
+ } | {
167
+ error_type: "RateLimitError";
168
+ } | {
169
+ error_type: "InvalidName";
170
+ } | {
171
+ error_type: "InvalidDisplayName";
172
+ } | {
173
+ error_type: "InvalidMatrixId";
174
+ } | {
175
+ error_type: "InvalidPostTitle";
176
+ } | {
177
+ error_type: "InvalidBodyField";
178
+ } | {
179
+ error_type: "BioLengthOverflow";
180
+ } | {
181
+ error_type: "MissingTotpToken";
182
+ } | {
183
+ error_type: "IncorrectTotpToken";
184
+ } | {
185
+ error_type: "CouldNotParseTotpSecret";
186
+ } | {
187
+ error_type: "CouldNotLikeComment";
188
+ } | {
189
+ error_type: "CouldNotSaveComment";
190
+ } | {
191
+ error_type: "CouldNotCreateReport";
192
+ } | {
193
+ error_type: "CouldNotResolveReport";
194
+ } | {
195
+ error_type: "CommunityModeratorAlreadyExists";
196
+ } | {
197
+ error_type: "CommunityUserIsAlreadyBanned";
198
+ } | {
199
+ error_type: "CommunityBlockAlreadyExists";
200
+ } | {
201
+ error_type: "CommunityFollowerAlreadyExists";
202
+ } | {
203
+ error_type: "CouldNotUpdateCommunityHiddenStatus";
204
+ } | {
205
+ error_type: "PersonBlockAlreadyExists";
206
+ } | {
207
+ error_type: "UserAlreadyExists";
208
+ } | {
209
+ error_type: "TokenNotFound";
210
+ } | {
211
+ error_type: "CouldNotLikePost";
212
+ } | {
213
+ error_type: "CouldNotSavePost";
214
+ } | {
215
+ error_type: "CouldNotMarkPostAsRead";
216
+ } | {
217
+ error_type: "CouldNotUpdateCommunity";
218
+ } | {
219
+ error_type: "CouldNotUpdateReplies";
220
+ } | {
221
+ error_type: "CouldNotUpdatePersonMentions";
222
+ } | {
223
+ error_type: "PostTitleTooLong";
224
+ } | {
225
+ error_type: "CouldNotCreatePost";
226
+ } | {
227
+ error_type: "CouldNotCreatePrivateMessage";
228
+ } | {
229
+ error_type: "CouldNotUpdatePrivate";
230
+ } | {
231
+ error_type: "SystemErrLogin";
232
+ } | {
233
+ error_type: "CouldNotSetAllRegistrationsAccepted";
234
+ } | {
235
+ error_type: "CouldNotSetAllEmailVerified";
236
+ } | {
237
+ error_type: "Banned";
238
+ } | {
239
+ error_type: "CouldNotGetComments";
240
+ } | {
241
+ error_type: "CouldNotGetPosts";
242
+ } | {
243
+ error_type: "InvalidUrl";
244
+ } | {
245
+ error_type: "EmailSendFailed";
246
+ } | {
247
+ error_type: "Slurs";
248
+ } | {
249
+ error_type: "CouldNotGenerateTotp";
250
+ } | {
251
+ error_type: "CouldNotFindObject";
252
+ } | {
253
+ error_type: "RegistrationDenied";
254
+ message: string;
255
+ } | {
256
+ error_type: "FederationDisabled";
257
+ } | {
258
+ error_type: "DomainBlocked";
259
+ } | {
260
+ error_type: "DomainNotInAllowList";
261
+ } | {
262
+ error_type: "FederationDisabledByStrictAllowList";
263
+ } | {
264
+ error_type: "SiteNameRequired";
265
+ } | {
266
+ error_type: "SiteNameLengthOverflow";
267
+ } | {
268
+ error_type: "PermissiveRegex";
269
+ } | {
270
+ error_type: "InvalidRegex";
271
+ } | {
272
+ error_type: "CaptchaIncorrect";
273
+ } | {
274
+ error_type: "PasswordResetLimitReached";
275
+ } | {
276
+ error_type: "CouldNotCreateAudioCaptcha";
277
+ };
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ // This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
3
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -7,8 +7,6 @@ export interface LocalUser {
7
7
  person_id: PersonId;
8
8
  email?: string;
9
9
  show_nsfw: boolean;
10
- blur_nsfw: boolean;
11
- auto_expand: boolean;
12
10
  theme: string;
13
11
  default_sort_type: SortType;
14
12
  default_listing_type: ListingType;
@@ -24,4 +22,7 @@ export interface LocalUser {
24
22
  accepted_application: boolean;
25
23
  totp_2fa_url?: string;
26
24
  open_links_in_new_tab: boolean;
25
+ blur_nsfw: boolean;
26
+ auto_expand: boolean;
27
+ infinite_scroll_enabled: boolean;
27
28
  }
@@ -0,0 +1 @@
1
+ export type PersonSortType = "New" | "Old" | "MostComments" | "CommentScore" | "PostScore" | "PostCount";
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ // This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
3
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,3 +1,5 @@
1
+ import type { CommunityId } from "./CommunityId";
2
+ import type { PersonId } from "./PersonId";
1
3
  import type { PostId } from "./PostId";
2
4
  export interface PostAggregates {
3
5
  id: number;
@@ -13,4 +15,7 @@ export interface PostAggregates {
13
15
  featured_local: boolean;
14
16
  hot_rank: number;
15
17
  hot_rank_active: number;
18
+ community_id: CommunityId;
19
+ creator_id: PersonId;
20
+ controversy_rank: number;
16
21
  }
@@ -1,4 +1,4 @@
1
1
  export interface ResolveObject {
2
2
  q: string;
3
- auth: string;
3
+ auth: string | null;
4
4
  }
@@ -26,4 +26,5 @@ export interface SaveUserSettings {
26
26
  generate_totp_2fa?: boolean;
27
27
  auth: string;
28
28
  open_links_in_new_tab?: boolean;
29
+ infinite_scroll_enabled?: boolean;
29
30
  }
@@ -1 +1 @@
1
- export type SortType = "Active" | "Hot" | "New" | "Old" | "TopDay" | "TopWeek" | "TopMonth" | "TopYear" | "TopAll" | "MostComments" | "NewComments" | "TopHour" | "TopSixHour" | "TopTwelveHour" | "TopThreeMonths" | "TopSixMonths" | "TopNineMonths";
1
+ export type SortType = "Active" | "Hot" | "New" | "Old" | "TopDay" | "TopWeek" | "TopMonth" | "TopYear" | "TopAll" | "MostComments" | "NewComments" | "TopHour" | "TopSixHour" | "TopTwelveHour" | "TopThreeMonths" | "TopSixMonths" | "TopNineMonths" | "Controversial";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lemmy-js-client",
3
- "version": "0.18.3-rc.2",
3
+ "version": "0.19.0-rc.1",
4
4
  "description": "A javascript / typescript client for Lemmy",
5
5
  "repository": "https://github.com/LemmyNet/lemmy-js-client",
6
6
  "license": "AGPL-3.0",
@@ -37,7 +37,7 @@
37
37
  "eslint-plugin-prettier": "^4.2.1",
38
38
  "husky": "^8.0.3",
39
39
  "lint-staged": "^13.2.2",
40
- "prettier": "^2.8.8",
40
+ "prettier": "^3.0.0",
41
41
  "prettier-plugin-import-sort": "^0.0.7",
42
42
  "prettier-plugin-organize-imports": "^3.2.2",
43
43
  "prettier-plugin-packagejson": "^2.4.3",