v0.13.1-rc.1 (#33)

This commit is contained in:
Dessalines 2021-10-01 10:18:47 -04:00 committed by GitHub
parent 93cdfa0eed
commit ae670251ab
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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 {