Revert "Add URL blocklist (#245)" (#248)

This reverts commit 8fd4367206.
This commit is contained in:
Dessalines 2024-03-14 12:25:42 -04:00 committed by GitHub
parent 8fd4367206
commit e449cf84cf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 1 additions and 14 deletions

View file

@ -1,7 +1,7 @@
{ {
"name": "lemmy-js-client", "name": "lemmy-js-client",
"description": "A javascript / typescript client for Lemmy", "description": "A javascript / typescript client for Lemmy",
"version": "0.19.4-alpha.8", "version": "0.19.4-alpha.7",
"author": "Dessalines <tyhou13@gmx.com>", "author": "Dessalines <tyhou13@gmx.com>",
"license": "AGPL-3.0", "license": "AGPL-3.0",
"main": "./dist/index.js", "main": "./dist/index.js",

View file

@ -137,7 +137,6 @@ export { ListingType } from "./types/ListingType";
export { LocalSite } from "./types/LocalSite"; export { LocalSite } from "./types/LocalSite";
export { LocalSiteId } from "./types/LocalSiteId"; export { LocalSiteId } from "./types/LocalSiteId";
export { LocalSiteRateLimit } from "./types/LocalSiteRateLimit"; export { LocalSiteRateLimit } from "./types/LocalSiteRateLimit";
export { LocalSiteUrlBlocklist } from "./types/LocalSiteUrlBlocklist";
export { LocalUser } from "./types/LocalUser"; export { LocalUser } from "./types/LocalUser";
export { LocalUserId } from "./types/LocalUserId"; export { LocalUserId } from "./types/LocalUserId";
export { LocalUserView } from "./types/LocalUserView"; export { LocalUserView } from "./types/LocalUserView";

View file

@ -44,7 +44,6 @@ export interface EditSite {
captcha_difficulty?: string; captcha_difficulty?: string;
allowed_instances?: Array<string>; allowed_instances?: Array<string>;
blocked_instances?: Array<string>; blocked_instances?: Array<string>;
blocked_urls?: Array<string>;
taglines?: Array<string>; taglines?: Array<string>;
registration_mode?: RegistrationMode; registration_mode?: RegistrationMode;
reports_email_admins?: boolean; reports_email_admins?: boolean;

View file

@ -2,7 +2,6 @@
import type { CustomEmojiView } from "./CustomEmojiView"; import type { CustomEmojiView } from "./CustomEmojiView";
import type { Language } from "./Language"; import type { Language } from "./Language";
import type { LanguageId } from "./LanguageId"; import type { LanguageId } from "./LanguageId";
import type { LocalSiteUrlBlocklist } from "./LocalSiteUrlBlocklist";
import type { MyUserInfo } from "./MyUserInfo"; import type { MyUserInfo } from "./MyUserInfo";
import type { PersonView } from "./PersonView"; import type { PersonView } from "./PersonView";
import type { SiteView } from "./SiteView"; import type { SiteView } from "./SiteView";
@ -17,5 +16,4 @@ export interface GetSiteResponse {
discussion_languages: Array<LanguageId>; discussion_languages: Array<LanguageId>;
taglines: Array<Tagline>; taglines: Array<Tagline>;
custom_emojis: Array<CustomEmojiView>; custom_emojis: Array<CustomEmojiView>;
blocked_urls: Array<LocalSiteUrlBlocklist>;
} }

View file

@ -125,7 +125,6 @@ export type LemmyErrorType =
| { error: "couldnt_set_all_registrations_accepted" } | { error: "couldnt_set_all_registrations_accepted" }
| { error: "couldnt_set_all_email_verified" } | { error: "couldnt_set_all_email_verified" }
| { error: "banned" } | { error: "banned" }
| { error: "blocked_url" }
| { error: "couldnt_get_comments" } | { error: "couldnt_get_comments" }
| { error: "couldnt_get_posts" } | { error: "couldnt_get_posts" }
| { error: "invalid_url" } | { error: "invalid_url" }

View file

@ -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;
}