@fctc/interface-logic 1.9.10 → 1.10.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,3 +1,30 @@
1
+ interface LoginCredentialBody {
2
+ email: string;
3
+ password: string;
4
+ path?: string;
5
+ }
6
+ interface ResetPasswordRequest {
7
+ password: string;
8
+ confirmPassword: string;
9
+ }
10
+ interface UpdatePasswordRequest {
11
+ newPassword: string;
12
+ oldPassword: string;
13
+ }
14
+ interface ForgotPasswordBody {
15
+ data: ResetPasswordRequest;
16
+ token: string | null;
17
+ }
18
+ interface updatePasswordBody {
19
+ data: UpdatePasswordRequest;
20
+ token: string | null;
21
+ }
22
+ interface SocialTokenBody {
23
+ state: object;
24
+ access_token: string;
25
+ db: string;
26
+ }
27
+
1
28
  interface Specification {
2
29
  [key: string]: any;
3
30
  }
@@ -69,33 +96,6 @@ type GetSelectionType = {
69
96
  specification?: any;
70
97
  };
71
98
 
72
- interface LoginCredentialBody {
73
- email: string;
74
- password: string;
75
- path?: string;
76
- }
77
- interface ResetPasswordRequest {
78
- password: string;
79
- confirmPassword: string;
80
- }
81
- interface UpdatePasswordRequest {
82
- newPassword: string;
83
- oldPassword: string;
84
- }
85
- interface ForgotPasswordBody {
86
- data: ResetPasswordRequest;
87
- token: string | null;
88
- }
89
- interface updatePasswordBody {
90
- data: UpdatePasswordRequest;
91
- token: string | null;
92
- }
93
- interface SocialTokenBody {
94
- state: object;
95
- access_token: string;
96
- db: string;
97
- }
98
-
99
99
  type View = [number | boolean, string];
100
100
  type Option = {
101
101
  action_id?: number;
@@ -1,3 +1,30 @@
1
+ interface LoginCredentialBody {
2
+ email: string;
3
+ password: string;
4
+ path?: string;
5
+ }
6
+ interface ResetPasswordRequest {
7
+ password: string;
8
+ confirmPassword: string;
9
+ }
10
+ interface UpdatePasswordRequest {
11
+ newPassword: string;
12
+ oldPassword: string;
13
+ }
14
+ interface ForgotPasswordBody {
15
+ data: ResetPasswordRequest;
16
+ token: string | null;
17
+ }
18
+ interface updatePasswordBody {
19
+ data: UpdatePasswordRequest;
20
+ token: string | null;
21
+ }
22
+ interface SocialTokenBody {
23
+ state: object;
24
+ access_token: string;
25
+ db: string;
26
+ }
27
+
1
28
  interface Specification {
2
29
  [key: string]: any;
3
30
  }
@@ -69,33 +96,6 @@ type GetSelectionType = {
69
96
  specification?: any;
70
97
  };
71
98
 
72
- interface LoginCredentialBody {
73
- email: string;
74
- password: string;
75
- path?: string;
76
- }
77
- interface ResetPasswordRequest {
78
- password: string;
79
- confirmPassword: string;
80
- }
81
- interface UpdatePasswordRequest {
82
- newPassword: string;
83
- oldPassword: string;
84
- }
85
- interface ForgotPasswordBody {
86
- data: ResetPasswordRequest;
87
- token: string | null;
88
- }
89
- interface updatePasswordBody {
90
- data: UpdatePasswordRequest;
91
- token: string | null;
92
- }
93
- interface SocialTokenBody {
94
- state: object;
95
- access_token: string;
96
- db: string;
97
- }
98
-
99
99
  type View = [number | boolean, string];
100
100
  type Option = {
101
101
  action_id?: number;