lemmy-js-client 0.19.0-rc.1 → 0.19.0-rc.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -3,5 +3,4 @@ import type { LocalUserId } from "./LocalUserId";
3
3
  export interface CommentResponse {
4
4
  comment_view: CommentView;
5
5
  recipient_ids: Array<LocalUserId>;
6
- form_id?: string;
7
6
  }
@@ -6,6 +6,5 @@ export interface CreateComment {
6
6
  post_id: PostId;
7
7
  parent_id?: CommentId;
8
8
  language_id?: LanguageId;
9
- form_id?: string;
10
9
  auth: string;
11
10
  }
@@ -1,4 +1,5 @@
1
1
  export interface DeleteAccount {
2
2
  password: string;
3
+ delete_content: boolean;
3
4
  auth: string;
4
5
  }
@@ -4,6 +4,5 @@ export interface EditComment {
4
4
  comment_id: CommentId;
5
5
  content?: string;
6
6
  language_id?: LanguageId;
7
- form_id?: string;
8
7
  auth: string;
9
8
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lemmy-js-client",
3
- "version": "0.19.0-rc.1",
3
+ "version": "0.19.0-rc.2",
4
4
  "description": "A javascript / typescript client for Lemmy",
5
5
  "repository": "https://github.com/LemmyNet/lemmy-js-client",
6
6
  "license": "AGPL-3.0",