lemmy-js-client 0.20.0-alpha.13 → 0.20.0-alpha.14
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.
@@ -321,12 +321,12 @@ export type LemmyErrorType = {
|
|
321
321
|
message: string;
|
322
322
|
} | {
|
323
323
|
error: "cant_delete_site";
|
324
|
+
} | {
|
325
|
+
error: "url_length_overflow";
|
324
326
|
} | {
|
325
327
|
error: "post_schedule_time_must_be_in_future";
|
326
328
|
} | {
|
327
329
|
error: "too_many_scheduled_posts";
|
328
|
-
} | {
|
329
|
-
error: "url_length_overflow";
|
330
330
|
} | {
|
331
331
|
error: "not_found";
|
332
332
|
};
|
package/dist/types/Post.d.ts
CHANGED
package/dist/types/Search.d.ts
CHANGED
@@ -13,5 +13,9 @@ export interface Search {
|
|
13
13
|
listing_type?: ListingType;
|
14
14
|
page?: number;
|
15
15
|
limit?: number;
|
16
|
-
|
16
|
+
title_only?: boolean;
|
17
|
+
post_url_only?: boolean;
|
18
|
+
saved_only?: boolean;
|
19
|
+
liked_only?: boolean;
|
20
|
+
disliked_only?: boolean;
|
17
21
|
}
|
@@ -1 +1 @@
|
|
1
|
-
export type SearchType = "All" | "Comments" | "Posts" | "Communities" | "Users"
|
1
|
+
export type SearchType = "All" | "Comments" | "Posts" | "Communities" | "Users";
|
package/package.json
CHANGED