lemmy-js-client 0.20.0-alpha.12 → 0.20.0-alpha.13
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.
- package/dist/types/CreatePost.d.ts +1 -0
- package/dist/types/EditPost.d.ts +1 -0
- package/dist/types/HidePost.d.ts +1 -1
- package/dist/types/LemmyErrorType.d.ts +4 -0
- package/dist/types/MarkPostAsRead.d.ts +1 -1
- package/dist/types/Post.d.ts +1 -0
- package/dist/types/Search.d.ts +0 -4
- package/dist/types/SearchType.d.ts +1 -1
- package/package.json +1 -1
package/dist/types/EditPost.d.ts
CHANGED
package/dist/types/HidePost.d.ts
CHANGED
@@ -321,6 +321,10 @@ export type LemmyErrorType = {
|
|
321
321
|
message: string;
|
322
322
|
} | {
|
323
323
|
error: "cant_delete_site";
|
324
|
+
} | {
|
325
|
+
error: "post_schedule_time_must_be_in_future";
|
326
|
+
} | {
|
327
|
+
error: "too_many_scheduled_posts";
|
324
328
|
} | {
|
325
329
|
error: "url_length_overflow";
|
326
330
|
} | {
|
package/dist/types/Post.d.ts
CHANGED
package/dist/types/Search.d.ts
CHANGED
@@ -1 +1 @@
|
|
1
|
-
export type SearchType = "All" | "Comments" | "Posts" | "Communities" | "Users";
|
1
|
+
export type SearchType = "All" | "Comments" | "Posts" | "Communities" | "Users" | "Url";
|
package/package.json
CHANGED