v0.13.1-rc.1

This commit is contained in:
Dessalines 2021-09-29 19:11:23 -04:00
parent 013c4f5af3
commit da8a5cfc95
3 changed files with 3 additions and 1 deletions

View file

@ -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",

View file

@ -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 {}

View file

@ -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 {