Add active aggregates (#3)

* Adding some more active aggregates fields.

* v0.9.1-rc.2

* v0.9.1-rc.3
This commit is contained in:
Dessalines 2021-01-29 10:11:11 -05:00 committed by GitHub
parent 7b26039441
commit 32b783b407
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 12 additions and 4 deletions

View file

@ -1,7 +1,7 @@
{
"name": "lemmy-js-client",
"description": "A javascript / typescript client for Lemmy",
"version": "0.9.1-rc.1",
"version": "0.9.1-rc.3",
"author": "Dessalines <tyhou13@gmx.com>",
"license": "AGPL-3.0",
"main": "./dist/index.js",

View file

@ -14,6 +14,10 @@ export interface SiteAggregates {
posts: number;
comments: number;
communities: number;
users_active_day: number;
users_active_week: number;
users_active_month: number;
users_active_half_year: number;
}
export interface PostAggregates {
@ -32,6 +36,10 @@ export interface CommunityAggregates {
subscribers: number;
posts: number;
comments: number;
users_active_day: number;
users_active_week: number;
users_active_month: number;
users_active_half_year: number;
}
export interface CommentAggregates {

View file

@ -40,17 +40,17 @@ export interface CaptchaResponse {
export interface SaveUserSettings {
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_listing_type: number; // Post listing types are `All, Subscribed, Community`
lang: string;
avatar?: string;
banner?: string;
preferred_username?: string;
preferred_username?: string; // The display name
email?: string;
bio?: 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;
old_password?: string;
show_avatars: boolean;