mirror of
https://github.com/LemmyNet/lemmy-js-client.git
synced 2024-11-22 12:21:12 +00:00
This reverts commit e449cf84cf
.
This commit is contained in:
parent
e449cf84cf
commit
d7304db856
6 changed files with 14 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "lemmy-js-client",
|
||||
"description": "A javascript / typescript client for Lemmy",
|
||||
"version": "0.19.4-alpha.7",
|
||||
"version": "0.19.4-alpha.8",
|
||||
"author": "Dessalines <tyhou13@gmx.com>",
|
||||
"license": "AGPL-3.0",
|
||||
"main": "./dist/index.js",
|
||||
|
|
|
@ -137,6 +137,7 @@ 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,6 +44,7 @@ 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,6 +2,7 @@
|
|||
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";
|
||||
|
@ -16,4 +17,5 @@ export interface GetSiteResponse {
|
|||
discussion_languages: Array<LanguageId>;
|
||||
taglines: Array<Tagline>;
|
||||
custom_emojis: Array<CustomEmojiView>;
|
||||
blocked_urls: Array<LocalSiteUrlBlocklist>;
|
||||
}
|
||||
|
|
|
@ -125,6 +125,7 @@ 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" }
|
||||
|
|
8
src/types/LocalSiteUrlBlocklist.ts
Normal file
8
src/types/LocalSiteUrlBlocklist.ts
Normal file
|
@ -0,0 +1,8 @@
|
|||
// 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