mirror of
https://github.com/LemmyNet/lemmy-js-client.git
synced 2024-11-01 01:59:55 +00:00
v0.13.1-rc.1 (#33)
This commit is contained in:
parent
93cdfa0eed
commit
ae670251ab
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.13.0",
|
"version": "0.13.1-rc.1",
|
||||||
"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",
|
||||||
|
|
|
@ -28,6 +28,7 @@ export interface Register {
|
||||||
*/
|
*/
|
||||||
captcha_uuid?: string;
|
captcha_uuid?: string;
|
||||||
captcha_answer?: string;
|
captcha_answer?: string;
|
||||||
|
honeypot?: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface GetCaptcha {}
|
export interface GetCaptcha {}
|
||||||
|
|
|
@ -14,6 +14,7 @@ export interface CreatePost {
|
||||||
nsfw?: boolean;
|
nsfw?: boolean;
|
||||||
community_id: number;
|
community_id: number;
|
||||||
auth: string;
|
auth: string;
|
||||||
|
honeypot?: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface PostResponse {
|
export interface PostResponse {
|
||||||
|
|
Loading…
Reference in a new issue