Compare commits
1 commit
main
...
0.18.0_cha
Author | SHA1 | Date | |
---|---|---|---|
|
21634f8081 |
7 changed files with 4 additions and 4 deletions
|
@ -9,4 +9,5 @@ export interface CommentAggregates {
|
|||
downvotes: number;
|
||||
published: string;
|
||||
child_count: number;
|
||||
hot_rank: number;
|
||||
}
|
||||
|
|
|
@ -12,4 +12,5 @@ export interface CommunityAggregates {
|
|||
users_active_week: number;
|
||||
users_active_month: number;
|
||||
users_active_half_year: number;
|
||||
hot_rank: number;
|
||||
}
|
||||
|
|
|
@ -8,6 +8,5 @@ export interface GetCommunityResponse {
|
|||
community_view: CommunityView;
|
||||
site?: Site;
|
||||
moderators: Array<CommunityModeratorView>;
|
||||
online: number;
|
||||
discussion_languages: Array<LanguageId>;
|
||||
}
|
||||
|
|
|
@ -8,5 +8,4 @@ export interface GetPostResponse {
|
|||
community_view: CommunityView;
|
||||
moderators: Array<CommunityModeratorView>;
|
||||
cross_posts: Array<PostView>;
|
||||
online: number;
|
||||
}
|
||||
|
|
|
@ -10,7 +10,6 @@ import type { Tagline } from "./Tagline";
|
|||
export interface GetSiteResponse {
|
||||
site_view: SiteView;
|
||||
admins: Array<PersonView>;
|
||||
online: number;
|
||||
version: string;
|
||||
my_user?: MyUserInfo;
|
||||
all_languages: Array<Language>;
|
||||
|
|
|
@ -22,7 +22,6 @@ export interface LocalSite {
|
|||
slur_filter_regex?: string;
|
||||
actor_name_max_length: number;
|
||||
federation_enabled: boolean;
|
||||
federation_debug: boolean;
|
||||
federation_worker_count: number;
|
||||
captcha_enabled: boolean;
|
||||
captcha_difficulty: string;
|
||||
|
|
|
@ -13,4 +13,6 @@ export interface PostAggregates {
|
|||
newest_comment_time: string;
|
||||
featured_community: boolean;
|
||||
featured_local: boolean;
|
||||
hot_rank: number;
|
||||
hot_rank_active: number;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue