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