mirror of
https://github.com/LemmyNet/lemmy-js-client.git
synced 2024-11-01 01:59:55 +00:00
This reverts commit 8fd4367206
.
This commit is contained in:
parent
8fd4367206
commit
e449cf84cf
6 changed files with 1 additions and 14 deletions
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "lemmy-js-client",
|
||||
"description": "A javascript / typescript client for Lemmy",
|
||||
"version": "0.19.4-alpha.8",
|
||||
"version": "0.19.4-alpha.7",
|
||||
"author": "Dessalines <tyhou13@gmx.com>",
|
||||
"license": "AGPL-3.0",
|
||||
"main": "./dist/index.js",
|
||||
|
|
|
@ -137,7 +137,6 @@ export { ListingType } from "./types/ListingType";
|
|||
export { LocalSite } from "./types/LocalSite";
|
||||
export { LocalSiteId } from "./types/LocalSiteId";
|
||||
export { LocalSiteRateLimit } from "./types/LocalSiteRateLimit";
|
||||
export { LocalSiteUrlBlocklist } from "./types/LocalSiteUrlBlocklist";
|
||||
export { LocalUser } from "./types/LocalUser";
|
||||
export { LocalUserId } from "./types/LocalUserId";
|
||||
export { LocalUserView } from "./types/LocalUserView";
|
||||
|
|
|
@ -44,7 +44,6 @@ export interface EditSite {
|
|||
captcha_difficulty?: string;
|
||||
allowed_instances?: Array<string>;
|
||||
blocked_instances?: Array<string>;
|
||||
blocked_urls?: Array<string>;
|
||||
taglines?: Array<string>;
|
||||
registration_mode?: RegistrationMode;
|
||||
reports_email_admins?: boolean;
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
import type { CustomEmojiView } from "./CustomEmojiView";
|
||||
import type { Language } from "./Language";
|
||||
import type { LanguageId } from "./LanguageId";
|
||||
import type { LocalSiteUrlBlocklist } from "./LocalSiteUrlBlocklist";
|
||||
import type { MyUserInfo } from "./MyUserInfo";
|
||||
import type { PersonView } from "./PersonView";
|
||||
import type { SiteView } from "./SiteView";
|
||||
|
@ -17,5 +16,4 @@ export interface GetSiteResponse {
|
|||
discussion_languages: Array<LanguageId>;
|
||||
taglines: Array<Tagline>;
|
||||
custom_emojis: Array<CustomEmojiView>;
|
||||
blocked_urls: Array<LocalSiteUrlBlocklist>;
|
||||
}
|
||||
|
|
|
@ -125,7 +125,6 @@ export type LemmyErrorType =
|
|||
| { error: "couldnt_set_all_registrations_accepted" }
|
||||
| { error: "couldnt_set_all_email_verified" }
|
||||
| { error: "banned" }
|
||||
| { error: "blocked_url" }
|
||||
| { error: "couldnt_get_comments" }
|
||||
| { error: "couldnt_get_posts" }
|
||||
| { error: "invalid_url" }
|
||||
|
|
|
@ -1,8 +0,0 @@
|
|||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
|
||||
export interface LocalSiteUrlBlocklist {
|
||||
id: number;
|
||||
url: string;
|
||||
published: string;
|
||||
updated?: string;
|
||||
}
|
Loading…
Reference in a new issue