From 22b0777f51fd22c6312d07d52d289e7e430f0129 Mon Sep 17 00:00:00 2001 From: Dessalines Date: Tue, 6 Jun 2023 09:06:58 -0400 Subject: [PATCH] Add taglines to site response. --- src/index.ts | 1 - src/types/GetCommunityResponse.ts | 1 - src/types/SiteResponse.ts | 2 ++ 3 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/index.ts b/src/index.ts index dbeaec3..7cfc723 100644 --- a/src/index.ts +++ b/src/index.ts @@ -252,4 +252,3 @@ export { UploadImageResponse, UserOperation, } from "./types/others"; -export * from "./websocket"; diff --git a/src/types/GetCommunityResponse.ts b/src/types/GetCommunityResponse.ts index f43fa2e..cbbfbd9 100644 --- a/src/types/GetCommunityResponse.ts +++ b/src/types/GetCommunityResponse.ts @@ -10,5 +10,4 @@ export interface GetCommunityResponse { moderators: Array; online: number; discussion_languages: Array; - default_post_language?: LanguageId; } diff --git a/src/types/SiteResponse.ts b/src/types/SiteResponse.ts index 91b7bc9..7844e11 100644 --- a/src/types/SiteResponse.ts +++ b/src/types/SiteResponse.ts @@ -1,6 +1,8 @@ // This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually. import type { SiteView } from "./SiteView"; +import type { Tagline } from "./Tagline"; export interface SiteResponse { site_view: SiteView; + taglines: Array; }