From da8a5cfc95f0655917b7471d99d7dfac6d9ca934 Mon Sep 17 00:00:00 2001 From: Dessalines Date: Wed, 29 Sep 2021 19:11:23 -0400 Subject: [PATCH] v0.13.1-rc.1 --- 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 5773576..c99e331 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 {