@frontegg/redux-store 5.25.0 → 5.26.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.
|
@@ -22,6 +22,10 @@ declare const reducers: {
|
|
|
22
22
|
loginState: import("..").LoginState;
|
|
23
23
|
activateState: import("..").ActivateAccountState;
|
|
24
24
|
acceptInvitationState: import("..").AcceptInvitationState;
|
|
25
|
+
/**
|
|
26
|
+
* if you see error in matcher that's mean the DispatchAction does not
|
|
27
|
+
* contains the same functions in reducers and actions
|
|
28
|
+
*/
|
|
25
29
|
forgotPasswordState: import("..").ForgotPasswordState;
|
|
26
30
|
resetPhoneNumberState: ResetPhoneNumberState;
|
|
27
31
|
ssoState: import("..").SSOState;
|
|
@@ -52,6 +56,10 @@ declare const reducers: {
|
|
|
52
56
|
loginState: import("..").LoginState;
|
|
53
57
|
activateState: import("..").ActivateAccountState;
|
|
54
58
|
acceptInvitationState: import("..").AcceptInvitationState;
|
|
59
|
+
/**
|
|
60
|
+
* if you see error in matcher that's mean the DispatchAction does not
|
|
61
|
+
* contains the same functions in reducers and actions
|
|
62
|
+
*/
|
|
55
63
|
forgotPasswordState: import("..").ForgotPasswordState;
|
|
56
64
|
resetPhoneNumberState: ResetPhoneNumberState;
|
|
57
65
|
ssoState: import("..").SSOState;
|
|
@@ -89,8 +97,8 @@ declare type DispatchedActions = {
|
|
|
89
97
|
setResetPhoneNumberState: (state: Partial<ResetPhoneNumberState>) => void;
|
|
90
98
|
resetResetPhoneNumberState: () => void;
|
|
91
99
|
resetPhoneNumber: (payload: WithCallback<IResetPhoneNumber>) => void;
|
|
92
|
-
verifyResetPhoneNumber: (payload
|
|
93
|
-
changePhoneNumber: (payload
|
|
100
|
+
verifyResetPhoneNumber: (payload: WithCallback<IVerifyResetPhoneNumber>) => void;
|
|
101
|
+
changePhoneNumber: (payload: ChangePhoneNumberPayload) => void;
|
|
94
102
|
};
|
|
95
103
|
export declare type ResetPhoneNumberActions = DispatchedActions;
|
|
96
104
|
export { resetPhoneNumberState, reducers as resetPhoneNumberReducers, actions as resetPhoneNumberActions };
|