mirror of
https://github.com/LemmyNet/lemmy-js-client.git
synced 2024-11-01 01:59:55 +00:00
parent
a564816fe5
commit
85f19d28da
3 changed files with 3 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "lemmy-js-client",
|
||||
"description": "A javascript / typescript client for Lemmy",
|
||||
"version": "0.9.4",
|
||||
"version": "0.9.8-rc.3",
|
||||
"author": "Dessalines <tyhou13@gmx.com>",
|
||||
"license": "AGPL-3.0",
|
||||
"main": "./dist/index.js",
|
||||
|
|
|
@ -27,6 +27,7 @@ export interface PostAggregates {
|
|||
score: number;
|
||||
upvotes: number;
|
||||
downvotes: number;
|
||||
newest_comment_time_necro: string;
|
||||
newest_comment_time: string;
|
||||
}
|
||||
|
||||
|
|
|
@ -74,6 +74,7 @@ export enum SortType {
|
|||
TopYear = 'TopYear',
|
||||
TopAll = 'TopAll',
|
||||
MostComments = 'MostComments',
|
||||
NewComments = 'NewComments',
|
||||
}
|
||||
|
||||
export enum ListingType {
|
||||
|
|
Loading…
Reference in a new issue