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