We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6fa2af8 commit 7ba6d48Copy full SHA for 7ba6d48
1 file changed
src/messaging/incoming.ts
@@ -1,5 +1,4 @@
1
import { TestBoxMessage } from ".";
2
-import { MessageSender } from "./types";
3
4
export const NAVIGATE = "navigate";
5
export const INITIALIZE = "initialize";
@@ -27,9 +26,11 @@ export type NavigateEvent = {
27
26
export type NavigateMessage = TestBoxMessage<typeof NAVIGATE, NavigateEvent>;
28
29
export type LoginEvent = {
30
- username?: string;
+ email: string;
31
password?: string;
32
- totpCode?: string;
+ totp_token?: string;
+ first_name?: string;
33
+ last_name?: string;
34
};
35
36
export type LoginMessage = TestBoxMessage<typeof LOGIN, LoginEvent>;
0 commit comments