lemmy-js-client 0.17.2-rc.1 → 0.17.2-rc.2
Sign up to get free protection for your applications and to get access to all the features.
@@ -3,6 +3,7 @@ import { CommentReplyView, CommentView, CommunityModeratorView, PersonMentionVie
|
|
3
3
|
export interface Login {
|
4
4
|
username_or_email: string;
|
5
5
|
password: string;
|
6
|
+
totp_token?: string;
|
6
7
|
}
|
7
8
|
/**
|
8
9
|
* Register a new user.
|
@@ -84,6 +85,7 @@ export interface SaveUserSettings {
|
|
84
85
|
show_read_posts?: boolean;
|
85
86
|
show_new_post_notifs?: boolean;
|
86
87
|
discussion_languages?: number[];
|
88
|
+
generate_totp?: boolean;
|
87
89
|
auth: string;
|
88
90
|
}
|
89
91
|
export interface ChangePassword {
|