mirror of
https://github.com/LemmyNet/lemmy-js-client.git
synced 2024-11-01 01:59:55 +00:00
Removing local_user from LocalImageView.
This commit is contained in:
parent
1e9ae47df1
commit
55cd495f96
2 changed files with 11 additions and 2 deletions
|
@ -34,6 +34,16 @@ export type LemmyErrorType =
|
|||
| { error: "banned_from_community" }
|
||||
| { error: "couldnt_find_community" }
|
||||
| { error: "couldnt_find_person" }
|
||||
| { error: "couldnt_find_comment" }
|
||||
| { error: "couldnt_find_comment_report" }
|
||||
| { error: "couldnt_find_post_report" }
|
||||
| { error: "couldnt_find_private_message_report" }
|
||||
| { error: "couldnt_find_local_user" }
|
||||
| { error: "couldnt_find_person_mention" }
|
||||
| { error: "couldnt_find_registration_application" }
|
||||
| { error: "couldnt_find_comment_reply" }
|
||||
| { error: "couldnt_find_private_message" }
|
||||
| { error: "couldnt_find_activity" }
|
||||
| { error: "person_is_blocked" }
|
||||
| { error: "community_is_blocked" }
|
||||
| { error: "instance_is_blocked" }
|
||||
|
@ -82,6 +92,7 @@ export type LemmyErrorType =
|
|||
| { error: "page_does_not_specify_group" }
|
||||
| { error: "no_community_found_in_cc" }
|
||||
| { error: "no_email_setup" }
|
||||
| { error: "local_site_not_setup" }
|
||||
| { error: "email_smtp_server_needs_a_port" }
|
||||
| { error: "missing_an_email" }
|
||||
| { error: "rate_limit_error" }
|
||||
|
|
|
@ -1,10 +1,8 @@
|
|||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
import type { LocalImage } from "./LocalImage";
|
||||
import type { LocalUser } from "./LocalUser";
|
||||
import type { Person } from "./Person";
|
||||
|
||||
export interface LocalImageView {
|
||||
local_image: LocalImage;
|
||||
local_user: LocalUser;
|
||||
person: Person;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue