mirror of
https://github.com/LemmyNet/lemmy-js-client.git
synced 2024-11-26 14:21:12 +00:00
Adding some more active aggregates fields.
This commit is contained in:
parent
7b26039441
commit
2e92062011
2 changed files with 11 additions and 3 deletions
|
@ -14,6 +14,10 @@ export interface SiteAggregates {
|
||||||
posts: number;
|
posts: number;
|
||||||
comments: number;
|
comments: number;
|
||||||
communities: number;
|
communities: number;
|
||||||
|
users_active_day: number;
|
||||||
|
users_active_week: number;
|
||||||
|
users_active_month: number;
|
||||||
|
users_active_half_year: number;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface PostAggregates {
|
export interface PostAggregates {
|
||||||
|
@ -32,6 +36,10 @@ export interface CommunityAggregates {
|
||||||
subscribers: number;
|
subscribers: number;
|
||||||
posts: number;
|
posts: number;
|
||||||
comments: number;
|
comments: number;
|
||||||
|
users_active_day: number;
|
||||||
|
users_active_week: number;
|
||||||
|
users_active_month: number;
|
||||||
|
users_active_half_year: number;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface CommentAggregates {
|
export interface CommentAggregates {
|
||||||
|
|
|
@ -40,17 +40,17 @@ export interface CaptchaResponse {
|
||||||
|
|
||||||
export interface SaveUserSettings {
|
export interface SaveUserSettings {
|
||||||
show_nsfw: boolean;
|
show_nsfw: boolean;
|
||||||
theme: string; // Default 'default'
|
theme: string; // Default 'browser'
|
||||||
default_sort_type: number; // The Sort types from above, zero indexed as a number
|
default_sort_type: number; // The Sort types from above, zero indexed as a number
|
||||||
default_listing_type: number; // Post listing types are `All, Subscribed, Community`
|
default_listing_type: number; // Post listing types are `All, Subscribed, Community`
|
||||||
lang: string;
|
lang: string;
|
||||||
avatar?: string;
|
avatar?: string;
|
||||||
banner?: string;
|
banner?: string;
|
||||||
preferred_username?: string;
|
preferred_username?: string; // The display name
|
||||||
email?: string;
|
email?: string;
|
||||||
bio?: string;
|
bio?: string;
|
||||||
matrix_user_id?: string;
|
matrix_user_id?: string;
|
||||||
new_password?: string;
|
new_password?: string; // If setting a new password, you need all 3 password fields
|
||||||
new_password_verify?: string;
|
new_password_verify?: string;
|
||||||
old_password?: string;
|
old_password?: string;
|
||||||
show_avatars: boolean;
|
show_avatars: boolean;
|
||||||
|
|
Loading…
Reference in a new issue