@frontegg/redux-store 6.178.0-alpha.0 → 6.178.0-alpha.1

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/index.js CHANGED
@@ -112,7 +112,7 @@ export const buildAuthActions = (store, api, actions, snapshotAuthState) => {
112
112
  Object.assign(store.auth, state);
113
113
  };
114
114
  const resetAuthState = () => {
115
- store.auth = deepClone(snapshotAuthState);
115
+ Object.assign(store.auth, deepClone(snapshotAuthState));
116
116
  };
117
117
  const setUser = user => {
118
118
  setAuthState({
package/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license Frontegg v6.178.0-alpha.0
1
+ /** @license Frontegg v6.178.0-alpha.1
2
2
  *
3
3
  * This source code is licensed under the MIT license found in the
4
4
  * LICENSE file in the root directory of this source tree.
@@ -471,7 +471,7 @@ const buildAuthActions = (store, api, actions, snapshotAuthState) => {
471
471
  Object.assign(store.auth, state);
472
472
  };
473
473
  const resetAuthState = () => {
474
- store.auth = (0, _helpers2.deepClone)(snapshotAuthState);
474
+ Object.assign(store.auth, (0, _helpers2.deepClone)(snapshotAuthState));
475
475
  };
476
476
  const setUser = user => {
477
477
  setAuthState({
package/node/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license Frontegg v6.178.0-alpha.0
1
+ /** @license Frontegg v6.178.0-alpha.1
2
2
  *
3
3
  * This source code is licensed under the MIT license found in the
4
4
  * LICENSE file in the root directory of this source tree.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@frontegg/redux-store",
3
- "version": "6.178.0-alpha.0",
3
+ "version": "6.178.0-alpha.1",
4
4
  "main": "./node/index.js",
5
5
  "license": "MIT",
6
6
  "author": "Frontegg LTD",