@frontegg/redux-store 5.4.0 → 5.5.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/index.js CHANGED
@@ -1768,7 +1768,7 @@ function* loadSaml() {
1768
1768
  function* loadSSOConfigurationsV2() {
1769
1769
  try {
1770
1770
  yield put(actions.setSSOLoader({ key: SSOStateKeys.LOAD_SSO_CONFIGURATIONS, value: true }));
1771
- const [oidcConfiguration, samlMetadata] = yield all([loadOidc, loadSaml]);
1771
+ const [oidcConfiguration, samlMetadata] = yield all([call(loadOidc), call(loadSaml)]);
1772
1772
  const ssoConfigurations = yield call(api.auth.getSSOConfigurations);
1773
1773
  yield put(actions.setSSOState({
1774
1774
  ssoConfigurations,
@@ -1770,7 +1770,7 @@ function* loadSaml() {
1770
1770
  function* loadSSOConfigurationsV2() {
1771
1771
  try {
1772
1772
  yield effects.put(actions.setSSOLoader({ key: exports.SSOStateKeys.LOAD_SSO_CONFIGURATIONS, value: true }));
1773
- const [oidcConfiguration, samlMetadata] = yield effects.all([loadOidc, loadSaml]);
1773
+ const [oidcConfiguration, samlMetadata] = yield effects.all([effects.call(loadOidc), effects.call(loadSaml)]);
1774
1774
  const ssoConfigurations = yield effects.call(restApi.api.auth.getSSOConfigurations);
1775
1775
  yield effects.put(actions.setSSOState({
1776
1776
  ssoConfigurations,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@frontegg/redux-store",
3
3
  "libName": "FronteggReduxStore",
4
- "version": "5.4.0",
4
+ "version": "5.5.0",
5
5
  "author": "Frontegg LTD",
6
6
  "main": "./node/index.js",
7
7
  "module": "./index.js",