lemmy-js-client 0.20.0-alpha.12 → 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.
- 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/LocalUser.d.ts +0 -1
- package/dist/types/MarkPostAsRead.d.ts +1 -1
- package/dist/types/Post.d.ts +1 -0
- package/dist/types/SaveUserSettings.d.ts +0 -1
- package/dist/types/Search.d.ts +1 -1
- package/package.json +1 -1
package/dist/types/EditPost.d.ts
CHANGED
package/dist/types/HidePost.d.ts
CHANGED
@@ -323,6 +323,10 @@ export type LemmyErrorType = {
|
|
323
323
|
error: "cant_delete_site";
|
324
324
|
} | {
|
325
325
|
error: "url_length_overflow";
|
326
|
+
} | {
|
327
|
+
error: "post_schedule_time_must_be_in_future";
|
328
|
+
} | {
|
329
|
+
error: "too_many_scheduled_posts";
|
326
330
|
} | {
|
327
331
|
error: "not_found";
|
328
332
|
};
|
package/dist/types/Post.d.ts
CHANGED
package/dist/types/Search.d.ts
CHANGED
package/package.json
CHANGED