From ae670251abd667b713a0a484fabc5f6415d5c940 Mon Sep 17 00:00:00 2001 From: Dessalines Date: Fri, 1 Oct 2021 10:18:47 -0400 Subject: [PATCH] v0.13.1-rc.1 (#33) --- package.json | 2 +- src/interfaces/api/person.ts | 1 + src/interfaces/api/post.ts | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index ab6c60f..ec6c714 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "lemmy-js-client", "description": "A javascript / typescript client for Lemmy", - "version": "0.13.0", + "version": "0.13.1-rc.1", "author": "Dessalines ", "license": "AGPL-3.0", "main": "./dist/index.js", diff --git a/src/interfaces/api/person.ts b/src/interfaces/api/person.ts index c023f0c..5f27730 100644 --- a/src/interfaces/api/person.ts +++ b/src/interfaces/api/person.ts @@ -28,6 +28,7 @@ export interface Register { */ captcha_uuid?: string; captcha_answer?: string; + honeypot?: string; } export interface GetCaptcha {} diff --git a/src/interfaces/api/post.ts b/src/interfaces/api/post.ts index 0a52422..be05d2d 100644 --- a/src/interfaces/api/post.ts +++ b/src/interfaces/api/post.ts @@ -14,6 +14,7 @@ export interface CreatePost { nsfw?: boolean; community_id: number; auth: string; + honeypot?: string; } export interface PostResponse {