mirror of
https://github.com/LemmyNet/lemmy-js-client.git
synced 2024-11-22 12:21:12 +00:00
Merge remote-tracking branch 'upstream/main' into custom-emojis
This commit is contained in:
commit
0c25b7cfd2
3 changed files with 4 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "lemmy-js-client",
|
||||
"version": "0.17.0-rc.62",
|
||||
"version": "0.17.2-rc.1",
|
||||
"description": "A javascript / typescript client for Lemmy",
|
||||
"repository": "https://github.com/LemmyNet/lemmy-js-client",
|
||||
"license": "AGPL-3.0",
|
||||
|
|
|
@ -102,6 +102,7 @@ export interface CreateSite {
|
|||
default_theme?: string;
|
||||
default_post_listing_type?: string;
|
||||
application_email_admins?: boolean;
|
||||
reports_email_admins?: boolean;
|
||||
hide_modlog_mod_names?: boolean;
|
||||
discussion_languages?: number[];
|
||||
legal_information?: string;
|
||||
|
@ -147,6 +148,7 @@ export interface EditSite {
|
|||
default_post_listing_type?: string;
|
||||
legal_information?: string;
|
||||
application_email_admins?: boolean;
|
||||
reports_email_admins?: boolean;
|
||||
hide_modlog_mod_names?: boolean;
|
||||
discussion_languages?: number[];
|
||||
slur_filter_regex?: string;
|
||||
|
|
|
@ -79,6 +79,7 @@ export interface LocalSite {
|
|||
legal_information?: string;
|
||||
hide_modlog_mod_names: boolean;
|
||||
application_email_admins: boolean;
|
||||
reports_email_admins: boolean;
|
||||
slur_filter_regex?: string;
|
||||
actor_name_max_length: number;
|
||||
federation_enabled: boolean;
|
||||
|
|
Loading…
Reference in a new issue