@frontegg/redux-store 6.165.0-alpha.2 → 6.165.0-alpha.3
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.
- package/auth/LoginState/index.d.ts +1 -0
- package/auth/LoginState/index.js +2 -1
- package/index.js +1 -1
- package/node/auth/LoginState/index.js +7 -0
- package/node/index.js +1 -1
- package/package.json +1 -1
|
@@ -238,3 +238,4 @@ declare type DispatchedActions = {
|
|
|
238
238
|
export declare type LoginActions = DispatchedActions;
|
|
239
239
|
export { loginState, reducers as loginReducers, actions as loginActions };
|
|
240
240
|
export { getRedirectUrl, getSearchParam } from './utils';
|
|
241
|
+
export { defaultFronteggRoutes } from './consts';
|
package/auth/LoginState/index.js
CHANGED
|
@@ -139,4 +139,5 @@ const actions = {
|
|
|
139
139
|
*/
|
|
140
140
|
const Matcher = {};
|
|
141
141
|
export { loginState, reducers as loginReducers, actions as loginActions };
|
|
142
|
-
export { getRedirectUrl, getSearchParam } from './utils';
|
|
142
|
+
export { getRedirectUrl, getSearchParam } from './utils';
|
|
143
|
+
export { defaultFronteggRoutes } from './consts';
|
package/index.js
CHANGED
|
@@ -3,6 +3,12 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
|
+
Object.defineProperty(exports, "defaultFronteggRoutes", {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: function () {
|
|
9
|
+
return _consts.defaultFronteggRoutes;
|
|
10
|
+
}
|
|
11
|
+
});
|
|
6
12
|
Object.defineProperty(exports, "getRedirectUrl", {
|
|
7
13
|
enumerable: true,
|
|
8
14
|
get: function () {
|
|
@@ -21,6 +27,7 @@ var _interfaces = require("./interfaces");
|
|
|
21
27
|
var _utils = require("../utils");
|
|
22
28
|
var _constants = require("../../constants");
|
|
23
29
|
var _utils2 = require("./utils");
|
|
30
|
+
var _consts = require("./consts");
|
|
24
31
|
const loginState = {
|
|
25
32
|
flow: _interfaces.LoginFlow.Login,
|
|
26
33
|
step: _interfaces.LoginStep.preLogin,
|
package/node/index.js
CHANGED