source: src/auth/types.ts@ 5d6f37a

main
Last change on this file since 5d6f37a was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago

add customer

  • Property mode set to 100644
File size: 1.6 KB
Line 
1// ----------------------------------------------------------------------
2
3export type ActionMapType<M extends { [index: string]: any }> = {
4 [Key in keyof M]: M[Key] extends undefined
5 ? {
6 type: Key;
7 }
8 : {
9 type: Key;
10 payload: M[Key];
11 };
12};
13
14export type AuthUserType = null | Record<string, any>;
15
16export type AuthStateType = {
17 status?: string;
18 loading: boolean;
19 user: AuthUserType;
20};
21
22// ----------------------------------------------------------------------
23
24type CanRemove = {
25 login?: (email: string, password: string) => Promise<void>;
26 register?: (
27 email: string,
28 password: string,
29 firstName: string,
30 lastName: string
31 ) => Promise<void>;
32 //
33 loginWithGoogle?: () => Promise<void>;
34 loginWithGithub?: () => Promise<void>;
35 loginWithTwitter?: () => Promise<void>;
36 //
37 confirmRegister?: (email: string, code: string) => Promise<void>;
38 forgotPassword?: (email: string) => Promise<void>;
39 resendCodeRegister?: (email: string) => Promise<void>;
40 newPassword?: (email: string, code: string, password: string) => Promise<void>;
41};
42
43export type FirebaseContextType = CanRemove & {
44 user: AuthUserType;
45 method: string;
46 loading: boolean;
47 authenticated: boolean;
48 unauthenticated: boolean;
49 logout: () => Promise<void>;
50 loginWithGoogle: () => Promise<void>;
51 loginWithGithub: () => Promise<void>;
52 loginWithTwitter: () => Promise<void>;
53 forgotPassword?: (email: string) => Promise<void>;
54 login: (email: string, password: string) => Promise<void>;
55 register: (email: string, password: string, firstName: string, lastName: string) => Promise<void>;
56};
Note: See TracBrowser for help on using the repository browser.