lemmy-js-client 0.17.2-rc.2 → 0.17.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -3,7 +3,6 @@ import { CommentReplyView, CommentView, CommunityModeratorView, PersonMentionVie
3
3
  export interface Login {
4
4
  username_or_email: string;
5
5
  password: string;
6
- totp_token?: string;
7
6
  }
8
7
  /**
9
8
  * Register a new user.
@@ -85,7 +84,6 @@ export interface SaveUserSettings {
85
84
  show_read_posts?: boolean;
86
85
  show_new_post_notifs?: boolean;
87
86
  discussion_languages?: number[];
88
- generate_totp?: boolean;
89
87
  auth: string;
90
88
  }
91
89
  export interface ChangePassword {
@@ -16,7 +16,6 @@ export interface LocalUserSettings {
16
16
  show_new_post_notifs: boolean;
17
17
  email_verified: boolean;
18
18
  accepted_application: boolean;
19
- totp_url?: string;
20
19
  }
21
20
  export interface PersonSafe {
22
21
  id: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lemmy-js-client",
3
- "version": "0.17.2-rc.2",
3
+ "version": "0.17.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",