@frontegg/redux-store 6.82.0 → 6.83.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.
- package/auth/TeamState/saga.js +3 -1
- package/index.js +1 -1
- package/node/auth/TeamState/saga.js +3 -1
- package/node/index.js +1 -1
- package/package.json +1 -1
package/auth/TeamState/saga.js
CHANGED
|
@@ -971,7 +971,9 @@ function* addUserMock({
|
|
|
971
971
|
})
|
|
972
972
|
}));
|
|
973
973
|
yield delay();
|
|
974
|
-
const newUser = _extends({}, userTeamDemo,
|
|
974
|
+
const newUser = _extends({}, userTeamDemo, {
|
|
975
|
+
groups: []
|
|
976
|
+
}, body, {
|
|
975
977
|
id: `${uuidv4()}`
|
|
976
978
|
});
|
|
977
979
|
callback == null ? void 0 : callback(newUser);
|
package/index.js
CHANGED
|
@@ -979,7 +979,9 @@ function* addUserMock({
|
|
|
979
979
|
})
|
|
980
980
|
}));
|
|
981
981
|
yield (0, _utils.delay)();
|
|
982
|
-
const newUser = (0, _extends2.default)({}, _dummy.userTeamDemo,
|
|
982
|
+
const newUser = (0, _extends2.default)({}, _dummy.userTeamDemo, {
|
|
983
|
+
groups: []
|
|
984
|
+
}, body, {
|
|
983
985
|
id: `${(0, _uuid.v4)()}`
|
|
984
986
|
});
|
|
985
987
|
callback == null ? void 0 : callback(newUser);
|
package/node/index.js
CHANGED