@frontegg/js 7.113.0 → 7.115.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.
@@ -1924,7 +1924,7 @@ __webpack_require__.r(__webpack_exports__);
1924
1924
  /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
1925
1925
  /* harmony export */ });
1926
1926
  /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ({
1927
- cdnVersion: '7.113.0'
1927
+ cdnVersion: '7.115.0'
1928
1928
  });
1929
1929
 
1930
1930
  /***/ }),
@@ -5507,11 +5507,13 @@ __webpack_require__.r(__webpack_exports__);
5507
5507
  /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
5508
5508
  /* harmony export */ });
5509
5509
  /* harmony import */ var _babel_runtime_helpers_esm_extends__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/runtime/helpers/esm/extends */ "../../node_modules/@babel/runtime/helpers/esm/extends.js");
5510
- /* harmony import */ var _helpers__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../helpers */ "../../dist/@frontegg/redux-store/auth/LoginState/helpers.js");
5511
- /* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../../constants */ "../../dist/@frontegg/redux-store/constants.js");
5512
- /* harmony import */ var _StepUpState_consts__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../../StepUpState/consts */ "../../dist/@frontegg/redux-store/auth/StepUpState/consts.js");
5513
- /* harmony import */ var _helpers__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../helpers */ "../../dist/@frontegg/redux-store/helpers/common.js");
5514
- /* harmony import */ var _StepUpState_helpers__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../../StepUpState/helpers */ "../../dist/@frontegg/redux-store/auth/StepUpState/helpers.js");
5510
+ /* harmony import */ var _helpers__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../helpers */ "../../dist/@frontegg/redux-store/auth/LoginState/helpers.js");
5511
+ /* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../../constants */ "../../dist/@frontegg/redux-store/constants.js");
5512
+ /* harmony import */ var _StepUpState_consts__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../../StepUpState/consts */ "../../dist/@frontegg/redux-store/auth/StepUpState/consts.js");
5513
+ /* harmony import */ var _helpers__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../../../helpers */ "../../dist/@frontegg/redux-store/helpers/common.js");
5514
+ /* harmony import */ var _StepUpState_helpers__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../../StepUpState/helpers */ "../../dist/@frontegg/redux-store/auth/StepUpState/helpers.js");
5515
+ /* harmony import */ var _oauthStorage__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../oauthStorage */ "../../dist/@frontegg/redux-store/auth/LoginState/oauthStorage.js");
5516
+
5515
5517
 
5516
5518
 
5517
5519
 
@@ -5521,6 +5523,13 @@ __webpack_require__.r(__webpack_exports__);
5521
5523
  /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ((store, api, sharedActions) => {
5522
5524
  const actions = sharedActions;
5523
5525
 
5526
+ // Drop only stale (expired) hosted OAuth state so a fresh, in-progress flow is never affected.
5527
+ const clearExpiredHostedOAuthState = () => {
5528
+ if ((0,_oauthStorage__WEBPACK_IMPORTED_MODULE_1__.isHostedOAuthStateExpired)()) {
5529
+ (0,_oauthStorage__WEBPACK_IMPORTED_MODULE_1__.clearHostedOAuthState)();
5530
+ }
5531
+ };
5532
+
5524
5533
  /**
5525
5534
  * @param url
5526
5535
  * @returns url without the origin if it's the same origin as the current window origin
@@ -5574,9 +5583,9 @@ __webpack_require__.r(__webpack_exports__);
5574
5583
  enforceRedirectToSameSite = false,
5575
5584
  allowedRedirectOrigins = []
5576
5585
  } = store.auth;
5577
- const urlFromLocalStorage = window.localStorage.getItem(_constants__WEBPACK_IMPORTED_MODULE_1__.FRONTEGG_AFTER_AUTH_REDIRECT_URL);
5586
+ const urlFromLocalStorage = window.localStorage.getItem(_constants__WEBPACK_IMPORTED_MODULE_2__.FRONTEGG_AFTER_AUTH_REDIRECT_URL);
5578
5587
  if (customLoginAuthenticatedUrl && !urlFromLocalStorage) {
5579
- return (0,_helpers__WEBPACK_IMPORTED_MODULE_2__.getPathAndSearchParamsFromUrl)(customLoginAuthenticatedUrl, preventRedirectUrlOriginCleaning);
5588
+ return (0,_helpers__WEBPACK_IMPORTED_MODULE_3__.getPathAndSearchParamsFromUrl)(customLoginAuthenticatedUrl, preventRedirectUrlOriginCleaning);
5580
5589
  }
5581
5590
  const {
5582
5591
  authenticatedUrl,
@@ -5590,7 +5599,7 @@ __webpack_require__.r(__webpack_exports__);
5590
5599
  if (!finalUrl || [loginUrl, logoutUrl, socialLoginCallbackUrl, activateUrl, activateWithOTCUrl].includes(finalUrl)) {
5591
5600
  finalUrl = authenticatedUrl;
5592
5601
  }
5593
- const redirectUrl = (0,_helpers__WEBPACK_IMPORTED_MODULE_2__.getRedirectUrl)({
5602
+ const redirectUrl = (0,_helpers__WEBPACK_IMPORTED_MODULE_3__.getRedirectUrl)({
5594
5603
  authenticatedUrl: finalUrl,
5595
5604
  includeQueryParam,
5596
5605
  enforceRedirectToSameSite,
@@ -5609,6 +5618,7 @@ __webpack_require__.r(__webpack_exports__);
5609
5618
  * @param options custom login authenticated url if exists
5610
5619
  */
5611
5620
  const afterAuthNavigationUtil = async (resetStateAction, options = {}) => {
5621
+ clearExpiredHostedOAuthState();
5612
5622
  const {
5613
5623
  customLoginAuthenticatedUrl,
5614
5624
  forceStepUpUrl,
@@ -5628,8 +5638,8 @@ __webpack_require__.r(__webpack_exports__);
5628
5638
  if (shouldStepUpDuringLogin) {
5629
5639
  // getUrlForAfterAuthNavigation give priority to the redirectUrl
5630
5640
  // avoiding use of getUrlForAfterAuthNavigation because we don't want to use the redirectUrl for magic link for example
5631
- const localStorageRedirectUrl = window.localStorage.getItem(_constants__WEBPACK_IMPORTED_MODULE_1__.FRONTEGG_AFTER_AUTH_REDIRECT_URL);
5632
- if (localStorageRedirectUrl && !(0,_helpers__WEBPACK_IMPORTED_MODULE_2__.isAbsoluteUrl)(localStorageRedirectUrl)) {
5641
+ const localStorageRedirectUrl = window.localStorage.getItem(_constants__WEBPACK_IMPORTED_MODULE_2__.FRONTEGG_AFTER_AUTH_REDIRECT_URL);
5642
+ if (localStorageRedirectUrl && !(0,_helpers__WEBPACK_IMPORTED_MODULE_3__.isAbsoluteUrl)(localStorageRedirectUrl)) {
5633
5643
  redirectUrl = localStorageRedirectUrl;
5634
5644
  }
5635
5645
  }
@@ -5639,10 +5649,13 @@ __webpack_require__.r(__webpack_exports__);
5639
5649
  preventRedirectUrlOriginCleaning
5640
5650
  });
5641
5651
  }
5642
- (_window3 = window) == null ? void 0 : _window3.localStorage.removeItem(_constants__WEBPACK_IMPORTED_MODULE_1__.FRONTEGG_AFTER_AUTH_REDIRECT_URL);
5652
+ (_window3 = window) == null ? void 0 : _window3.localStorage.removeItem(_constants__WEBPACK_IMPORTED_MODULE_2__.FRONTEGG_AFTER_AUTH_REDIRECT_URL);
5643
5653
  }
5644
- await (0,_helpers__WEBPACK_IMPORTED_MODULE_3__.delay)(200);
5654
+ await (0,_helpers__WEBPACK_IMPORTED_MODULE_4__.delay)(200);
5645
5655
  await resetStateAction();
5656
+ if (redirectUrl.startsWith('http')) {
5657
+ (0,_oauthStorage__WEBPACK_IMPORTED_MODULE_1__.clearHostedOAuthState)();
5658
+ }
5646
5659
  onRedirectTo(redirectUrl, {
5647
5660
  refresh: redirectUrl.startsWith('http')
5648
5661
  });
@@ -5660,13 +5673,13 @@ __webpack_require__.r(__webpack_exports__);
5660
5673
  } = store.auth.routes;
5661
5674
 
5662
5675
  // login with magic code, try to step up, no other mfa, invalid max age, force_enroll -> logout, login with first factor, not-stepped up jwt -> navigate to step up
5663
- const shouldStepUp = (_window4 = window) == null ? void 0 : _window4.localStorage.getItem(_StepUpState_consts__WEBPACK_IMPORTED_MODULE_4__.SHOULD_STEP_UP_KEY);
5676
+ const shouldStepUp = (_window4 = window) == null ? void 0 : _window4.localStorage.getItem(_StepUpState_consts__WEBPACK_IMPORTED_MODULE_5__.SHOULD_STEP_UP_KEY);
5664
5677
  const user = store.auth.user;
5665
5678
  if (shouldStepUp) {
5666
5679
  var _window5;
5667
- (_window5 = window) == null ? void 0 : _window5.localStorage.removeItem(_StepUpState_consts__WEBPACK_IMPORTED_MODULE_4__.SHOULD_STEP_UP_KEY);
5680
+ (_window5 = window) == null ? void 0 : _window5.localStorage.removeItem(_StepUpState_consts__WEBPACK_IMPORTED_MODULE_5__.SHOULD_STEP_UP_KEY);
5668
5681
  }
5669
- if (stepUpUrl && shouldStepUp && !(0,_StepUpState_helpers__WEBPACK_IMPORTED_MODULE_5__.isSteppedUp)(user)) {
5682
+ if (stepUpUrl && shouldStepUp && !(0,_StepUpState_helpers__WEBPACK_IMPORTED_MODULE_6__.isSteppedUp)(user)) {
5670
5683
  return afterAuthNavigationUtil(actions.resetLoginState, {
5671
5684
  forceStepUpUrl: stepUpUrl
5672
5685
  });
@@ -5854,11 +5867,11 @@ __webpack_require__.r(__webpack_exports__);
5854
5867
  /* harmony export */ });
5855
5868
  /* harmony import */ var _babel_runtime_helpers_esm_extends__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/runtime/helpers/esm/extends */ "../../node_modules/@babel/runtime/helpers/esm/extends.js");
5856
5869
  /* harmony import */ var _helpers__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../helpers */ "../../dist/@frontegg/redux-store/helpers/random.js");
5857
- /* harmony import */ var _helpers__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../../../helpers */ "../../dist/@frontegg/redux-store/helpers/gtm.js");
5870
+ /* harmony import */ var _helpers__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../../../helpers */ "../../dist/@frontegg/redux-store/helpers/gtm.js");
5858
5871
  /* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../../../constants */ "../../dist/@frontegg/redux-store/constants.js");
5859
5872
  /* harmony import */ var _helpers__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../helpers */ "../../dist/@frontegg/redux-store/auth/LoginState/helpers.js");
5860
5873
  /* harmony import */ var _helpers__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../helpers */ "../../dist/@frontegg/redux-store/auth/helpers.js");
5861
- /* harmony import */ var _helpers__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../../helpers */ "../../dist/@frontegg/redux-store/auth/StepUpState/helpers.js");
5874
+ /* harmony import */ var _helpers__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../../helpers */ "../../dist/@frontegg/redux-store/auth/StepUpState/helpers.js");
5862
5875
  /* harmony import */ var _StepUpState_consts__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../../StepUpState/consts */ "../../dist/@frontegg/redux-store/auth/StepUpState/consts.js");
5863
5876
  /* harmony import */ var _toolkit__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../../toolkit */ "../../dist/@frontegg/redux-store/toolkit/FronteggNativeModule.js");
5864
5877
 
@@ -5977,7 +5990,7 @@ __webpack_require__.r(__webpack_exports__);
5977
5990
  }
5978
5991
  };
5979
5992
  const refreshOrRequestHostedLoginAuthorizeV2 = async payload => {
5980
- var _localStorage2, _additionalParams;
5993
+ var _additionalParams;
5981
5994
  const {
5982
5995
  shouldRedirectToLogin,
5983
5996
  firstTime,
@@ -5986,8 +5999,12 @@ __webpack_require__.r(__webpack_exports__);
5986
5999
  let {
5987
6000
  additionalParams
5988
6001
  } = payload != null ? payload : {};
5989
- // when the user pause the step up flow we may still have the key in the local storage in hosted - Remove it
5990
- (_localStorage2 = localStorage) == null ? void 0 : _localStorage2.removeItem(_StepUpState_consts__WEBPACK_IMPORTED_MODULE_6__.SHOULD_STEP_UP_KEY);
6002
+ const urlDerivedStepUp = (0,_helpers__WEBPACK_IMPORTED_MODULE_7__.getUrlDerivedStepUp)();
6003
+ const isNativeStepUp = _toolkit__WEBPACK_IMPORTED_MODULE_1__["default"].isGetTokensAvailable() && urlDerivedStepUp.isStepUpRequested;
6004
+ if (!isNativeStepUp) {
6005
+ var _localStorage2;
6006
+ (_localStorage2 = localStorage) == null ? void 0 : _localStorage2.removeItem(_StepUpState_consts__WEBPACK_IMPORTED_MODULE_6__.SHOULD_STEP_UP_KEY);
6007
+ }
5991
6008
  if (firstTime) {
5992
6009
  const urlStrategy = store.root.urlStrategy;
5993
6010
  const activeUri = (0,_helpers__WEBPACK_IMPORTED_MODULE_2__.getUri)(urlStrategy);
@@ -6009,6 +6026,22 @@ __webpack_require__.r(__webpack_exports__);
6009
6026
  if (((_additionalParams = additionalParams) == null ? void 0 : _additionalParams['prompt']) === 'login') {
6010
6027
  return await requestHostedLoginAuthorize(additionalParams);
6011
6028
  }
6029
+ if (isNativeStepUp && !(0,_helpers__WEBPACK_IMPORTED_MODULE_7__.isSteppedUp)(store.auth.user, {
6030
+ maxAge: urlDerivedStepUp.maxAge
6031
+ })) {
6032
+ const {
6033
+ routes,
6034
+ onRedirectTo
6035
+ } = store.auth;
6036
+ if (routes.stepUpUrl && !window.location.href.includes(routes.stepUpUrl)) {
6037
+ window.localStorage.setItem(_StepUpState_consts__WEBPACK_IMPORTED_MODULE_6__.SHOULD_STEP_UP_KEY, 'true');
6038
+ actions.setAuthState({
6039
+ isLoading: true
6040
+ });
6041
+ (0,_helpers__WEBPACK_IMPORTED_MODULE_7__.redirectByStepUpUrl)(routes.stepUpUrl, onRedirectTo, urlDerivedStepUp.maxAge);
6042
+ return;
6043
+ }
6044
+ }
6012
6045
  try {
6013
6046
  if (disableSilentRefresh) {
6014
6047
  throw new Error('silent refresh is disabled');
@@ -6063,7 +6096,7 @@ __webpack_require__.r(__webpack_exports__);
6063
6096
  email: user == null ? void 0 : user.email,
6064
6097
  name: user == null ? void 0 : user.name
6065
6098
  };
6066
- (0,_helpers__WEBPACK_IMPORTED_MODULE_7__.reportGTMEvent)(_helpers__WEBPACK_IMPORTED_MODULE_7__.GTMEventAction.LOGIN_COMPLETED, loginCompletedPayload);
6099
+ (0,_helpers__WEBPACK_IMPORTED_MODULE_8__.reportGTMEvent)(_helpers__WEBPACK_IMPORTED_MODULE_8__.GTMEventAction.LOGIN_COMPLETED, loginCompletedPayload);
6067
6100
  }
6068
6101
  } catch (e) {
6069
6102
  actions.setAuthState({
@@ -6075,7 +6108,7 @@ __webpack_require__.r(__webpack_exports__);
6075
6108
  window.localStorage.removeItem(_StepUpState_consts__WEBPACK_IMPORTED_MODULE_6__.SHOULD_STEP_UP_KEY);
6076
6109
 
6077
6110
  // when the user pause the step up flow we may still have the key in the local storage in hosted. Ignore it.
6078
- if (isStepUpFlow && (0,_helpers__WEBPACK_IMPORTED_MODULE_8__.isSteppedUp)(user)) {
6111
+ if (isStepUpFlow && (0,_helpers__WEBPACK_IMPORTED_MODULE_7__.isSteppedUp)(user)) {
6079
6112
  await actions.afterStepUpAuthNavigation();
6080
6113
  } else {
6081
6114
  await actions.afterAuthNavigation();
@@ -6106,33 +6139,35 @@ __webpack_require__.r(__webpack_exports__);
6106
6139
  /* harmony export */ });
6107
6140
  /* harmony import */ var _babel_runtime_helpers_esm_objectWithoutPropertiesLoose__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/runtime/helpers/esm/objectWithoutPropertiesLoose */ "../../node_modules/@babel/runtime/helpers/esm/objectWithoutPropertiesLoose.js");
6108
6141
  /* harmony import */ var _babel_runtime_helpers_esm_extends__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @babel/runtime/helpers/esm/extends */ "../../node_modules/@babel/runtime/helpers/esm/extends.js");
6109
- /* harmony import */ var _afterAuthNavigation_actions__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ./afterAuthNavigation.actions */ "../../dist/@frontegg/redux-store/auth/LoginState/actions/afterAuthNavigation.actions.js");
6110
- /* harmony import */ var _handleVerifyMFAResponse_actions__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ./handleVerifyMFAResponse.actions */ "../../dist/@frontegg/redux-store/auth/LoginState/actions/handleVerifyMFAResponse.actions.js");
6111
- /* harmony import */ var _mfaRequiredState_actions__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ./mfaRequiredState.actions */ "../../dist/@frontegg/redux-store/auth/LoginState/actions/mfaRequiredState.actions.js");
6112
- /* harmony import */ var _mfaWithAuthenticator_actions__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(/*! ./mfaWithAuthenticator.actions */ "../../dist/@frontegg/redux-store/auth/LoginState/actions/mfaWithAuthenticator.actions.js");
6113
- /* harmony import */ var _mfaWithEmailCode_actions__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ./mfaWithEmailCode.actions */ "../../dist/@frontegg/redux-store/auth/LoginState/actions/mfaWithEmailCode.actions.js");
6114
- /* harmony import */ var _mfaWithSMS_actions__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ./mfaWithSMS.actions */ "../../dist/@frontegg/redux-store/auth/LoginState/actions/mfaWithSMS.actions.js");
6115
- /* harmony import */ var _mfaWithWebAuthn_actions__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ./mfaWithWebAuthn.actions */ "../../dist/@frontegg/redux-store/auth/LoginState/actions/mfaWithWebAuthn.actions.js");
6142
+ /* harmony import */ var _afterAuthNavigation_actions__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ./afterAuthNavigation.actions */ "../../dist/@frontegg/redux-store/auth/LoginState/actions/afterAuthNavigation.actions.js");
6143
+ /* harmony import */ var _handleVerifyMFAResponse_actions__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(/*! ./handleVerifyMFAResponse.actions */ "../../dist/@frontegg/redux-store/auth/LoginState/actions/handleVerifyMFAResponse.actions.js");
6144
+ /* harmony import */ var _mfaRequiredState_actions__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ./mfaRequiredState.actions */ "../../dist/@frontegg/redux-store/auth/LoginState/actions/mfaRequiredState.actions.js");
6145
+ /* harmony import */ var _mfaWithAuthenticator_actions__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ./mfaWithAuthenticator.actions */ "../../dist/@frontegg/redux-store/auth/LoginState/actions/mfaWithAuthenticator.actions.js");
6146
+ /* harmony import */ var _mfaWithEmailCode_actions__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ./mfaWithEmailCode.actions */ "../../dist/@frontegg/redux-store/auth/LoginState/actions/mfaWithEmailCode.actions.js");
6147
+ /* harmony import */ var _mfaWithSMS_actions__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ./mfaWithSMS.actions */ "../../dist/@frontegg/redux-store/auth/LoginState/actions/mfaWithSMS.actions.js");
6148
+ /* harmony import */ var _mfaWithWebAuthn_actions__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ./mfaWithWebAuthn.actions */ "../../dist/@frontegg/redux-store/auth/LoginState/actions/mfaWithWebAuthn.actions.js");
6116
6149
  /* harmony import */ var _interfaces__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../interfaces */ "../../dist/@frontegg/redux-store/auth/LoginState/interfaces.js");
6117
6150
  /* harmony import */ var _helpers__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ../../../helpers */ "../../dist/@frontegg/redux-store/helpers/common.js");
6118
6151
  /* harmony import */ var _helpers__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ../../../helpers */ "../../dist/@frontegg/redux-store/helpers/handlers.js");
6119
6152
  /* harmony import */ var _helpers__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ../../../helpers */ "../../dist/@frontegg/redux-store/helpers/gtm.js");
6120
- /* harmony import */ var _helpers__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ../../../helpers */ "../../dist/@frontegg/redux-store/helpers/encoders.js");
6121
- /* harmony import */ var _helpers__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ../../../helpers */ "../../dist/@frontegg/redux-store/helpers/converters.js");
6153
+ /* harmony import */ var _helpers__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ../../../helpers */ "../../dist/@frontegg/redux-store/helpers/encoders.js");
6154
+ /* harmony import */ var _helpers__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ../../../helpers */ "../../dist/@frontegg/redux-store/helpers/converters.js");
6122
6155
  /* harmony import */ var _state__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ../state */ "../../dist/@frontegg/redux-store/auth/LoginState/state.js");
6123
6156
  /* harmony import */ var _helpers__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ../helpers */ "../../dist/@frontegg/redux-store/auth/LoginState/helpers.js");
6124
6157
  /* harmony import */ var _frontegg_rest_api__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @frontegg/rest-api */ "../../dist/@frontegg/rest-api/ContextHolder/index.js");
6125
6158
  /* harmony import */ var _frontegg_rest_api__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @frontegg/rest-api */ "../../dist/@frontegg/rest-api/auth/utils.js");
6126
6159
  /* harmony import */ var _frontegg_rest_api__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! @frontegg/rest-api */ "../../dist/@frontegg/rest-api/feature-flags/index.js");
6127
6160
  /* harmony import */ var _frontegg_rest_api__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! @frontegg/rest-api */ "../../dist/@frontegg/rest-api/auth/enums.js");
6128
- /* harmony import */ var _frontegg_rest_api__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! @frontegg/rest-api */ "../../dist/@frontegg/rest-api/auth/interfaces.js");
6129
- /* harmony import */ var _hostedLoginAuthorize_actions__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ./hostedLoginAuthorize.actions */ "../../dist/@frontegg/redux-store/auth/LoginState/actions/hostedLoginAuthorize.actions.js");
6161
+ /* harmony import */ var _frontegg_rest_api__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! @frontegg/rest-api */ "../../dist/@frontegg/rest-api/auth/interfaces.js");
6162
+ /* harmony import */ var _hostedLoginAuthorize_actions__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ./hostedLoginAuthorize.actions */ "../../dist/@frontegg/redux-store/auth/LoginState/actions/hostedLoginAuthorize.actions.js");
6163
+ /* harmony import */ var _oauthStorage__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ../oauthStorage */ "../../dist/@frontegg/redux-store/auth/LoginState/oauthStorage.js");
6164
+ /* harmony import */ var _StepUpState_consts__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ../../StepUpState/consts */ "../../dist/@frontegg/redux-store/auth/StepUpState/consts.js");
6130
6165
  /* harmony import */ var _toolkit__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../../../toolkit */ "../../dist/@frontegg/redux-store/toolkit/FronteggNativeModule.js");
6131
6166
  /* harmony import */ var _toolkit__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../../../toolkit */ "../../dist/@frontegg/redux-store/auth/Entitlements/helpers.js");
6132
6167
  /* harmony import */ var _interfaces__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ../../interfaces */ "../../dist/@frontegg/redux-store/auth/interfaces.js");
6133
- /* harmony import */ var _consts__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ../consts */ "../../dist/@frontegg/redux-store/auth/LoginState/consts.js");
6168
+ /* harmony import */ var _consts__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ../consts */ "../../dist/@frontegg/redux-store/auth/LoginState/consts.js");
6134
6169
  /* harmony import */ var _helpers__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../../helpers */ "../../dist/@frontegg/redux-store/auth/helpers.js");
6135
- /* harmony import */ var _MfaState_interfaces__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ../../MfaState/interfaces */ "../../dist/@frontegg/redux-store/auth/MfaState/interfaces.js");
6170
+ /* harmony import */ var _MfaState_interfaces__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ../../MfaState/interfaces */ "../../dist/@frontegg/redux-store/auth/MfaState/interfaces.js");
6136
6171
  /* harmony import */ var _SSOState_interfaces__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ../../SSOState/interfaces */ "../../dist/@frontegg/redux-store/auth/SSOState/interfaces.js");
6137
6172
  /* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ../../../constants */ "../../dist/@frontegg/redux-store/constants.js");
6138
6173
 
@@ -6170,6 +6205,8 @@ const _excluded = ["callback", "error"],
6170
6205
 
6171
6206
 
6172
6207
 
6208
+
6209
+
6173
6210
 
6174
6211
 
6175
6212
  /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ((store, api, sharedActions) => {
@@ -6765,6 +6802,17 @@ const _excluded = ["callback", "error"],
6765
6802
  });
6766
6803
  }
6767
6804
  };
6805
+ const clearLogoutLocalState = ({
6806
+ keepHostedOAuthState = false
6807
+ } = {}) => {
6808
+ if (contextHolder.isSessionPerTenantEnabled()) {
6809
+ (0,_frontegg_rest_api__WEBPACK_IMPORTED_MODULE_3__.removeTabTenantFromSessionStorage)();
6810
+ }
6811
+ // Step-up re-login goes through silentLogout but still needs the hosted OAuth state to finish the client flow.
6812
+ if (!keepHostedOAuthState) {
6813
+ (0,_oauthStorage__WEBPACK_IMPORTED_MODULE_18__.clearHostedOAuthState)();
6814
+ }
6815
+ };
6768
6816
  const logout = async payload => {
6769
6817
  const hostedLoginBox = store.auth.hostedLoginBox;
6770
6818
  actions.setAuthState({
@@ -6779,23 +6827,22 @@ const _excluded = ["callback", "error"],
6779
6827
  } catch {
6780
6828
  /* empty */
6781
6829
  }
6782
- if (contextHolder.isSessionPerTenantEnabled()) {
6783
- (0,_frontegg_rest_api__WEBPACK_IMPORTED_MODULE_3__.removeTabTenantFromSessionStorage)();
6784
- }
6830
+ clearLogoutLocalState();
6785
6831
  actions.resetAuthState();
6786
6832
  await actions.requestAuthorize(true);
6787
6833
  payload == null ? void 0 : payload();
6788
6834
  };
6789
6835
  const silentLogout = async payload => {
6790
- var _payload$callbackTime;
6836
+ var _window2, _payload$callbackTime;
6791
6837
  try {
6792
6838
  await api.auth.logout();
6793
6839
  } catch {
6794
6840
  /* empty */
6795
6841
  }
6796
- if (contextHolder.isSessionPerTenantEnabled()) {
6797
- (0,_frontegg_rest_api__WEBPACK_IMPORTED_MODULE_3__.removeTabTenantFromSessionStorage)();
6798
- }
6842
+ const isStepUpInProgress = !!((_window2 = window) != null && _window2.localStorage.getItem(_StepUpState_consts__WEBPACK_IMPORTED_MODULE_19__.SHOULD_STEP_UP_KEY));
6843
+ clearLogoutLocalState({
6844
+ keepHostedOAuthState: isStepUpInProgress
6845
+ });
6799
6846
  setTimeout(() => {
6800
6847
  var _payload$callback3;
6801
6848
  return payload == null ? void 0 : (_payload$callback3 = payload.callback) == null ? void 0 : _payload$callback3.call(payload, true);
@@ -6928,7 +6975,7 @@ const _excluded = ["callback", "error"],
6928
6975
  username: (_username = username) != null ? _username : ''
6929
6976
  }));
6930
6977
  // @ts-ignore
6931
- const step = _consts__WEBPACK_IMPORTED_MODULE_18__.authStrategyLoginStepMap[payload.type];
6978
+ const step = _consts__WEBPACK_IMPORTED_MODULE_20__.authStrategyLoginStepMap[payload.type];
6932
6979
  setLoginState({
6933
6980
  step,
6934
6981
  loading: false,
@@ -7093,9 +7140,9 @@ const _excluded = ["callback", "error"],
7093
7140
  const {
7094
7141
  options
7095
7142
  } = await api.auth.webAuthnPreLogin(body);
7096
- options.challenge = (0,_helpers__WEBPACK_IMPORTED_MODULE_19__.base64urlDecode)(options.challenge);
7143
+ options.challenge = (0,_helpers__WEBPACK_IMPORTED_MODULE_21__.base64urlDecode)(options.challenge);
7097
7144
  options.allowCredentials = (_options$allowCredent = options.allowCredentials) == null ? void 0 : _options$allowCredent.map(credentials => (0,_babel_runtime_helpers_esm_extends__WEBPACK_IMPORTED_MODULE_1__["default"])({}, credentials, {
7098
- id: (0,_helpers__WEBPACK_IMPORTED_MODULE_19__.base64urlDecode)(credentials.id)
7145
+ id: (0,_helpers__WEBPACK_IMPORTED_MODULE_21__.base64urlDecode)(credentials.id)
7099
7146
  }));
7100
7147
  setLoginState({
7101
7148
  error: undefined
@@ -7128,7 +7175,7 @@ const _excluded = ["callback", "error"],
7128
7175
  setLoginState({
7129
7176
  loading: true
7130
7177
  });
7131
- const publicKey = (0,_helpers__WEBPACK_IMPORTED_MODULE_20__.publicKeyCredentialToJSON)(body.publicKey);
7178
+ const publicKey = (0,_helpers__WEBPACK_IMPORTED_MODULE_22__.publicKeyCredentialToJSON)(body.publicKey);
7132
7179
  const _await$api$auth$webAu = await api.auth.webAuthnPostLoginV2((0,_babel_runtime_helpers_esm_extends__WEBPACK_IMPORTED_MODULE_1__["default"])({}, publicKey, {
7133
7180
  response: (0,_babel_runtime_helpers_esm_extends__WEBPACK_IMPORTED_MODULE_1__["default"])({}, publicKey.response, {
7134
7181
  userHandle: (_publicKey$response$u = publicKey.response.userHandle) != null ? _publicKey$response$u : undefined
@@ -7204,8 +7251,8 @@ const _excluded = ["callback", "error"],
7204
7251
  const {
7205
7252
  options
7206
7253
  } = await api.auth.webAuthnCreateNewDeviceSession();
7207
- options.user.id = (0,_helpers__WEBPACK_IMPORTED_MODULE_19__.base64urlDecode)(options.user.id);
7208
- options.challenge = (0,_helpers__WEBPACK_IMPORTED_MODULE_19__.base64urlDecode)(options.challenge);
7254
+ options.user.id = (0,_helpers__WEBPACK_IMPORTED_MODULE_21__.base64urlDecode)(options.user.id);
7255
+ options.challenge = (0,_helpers__WEBPACK_IMPORTED_MODULE_21__.base64urlDecode)(options.challenge);
7209
7256
  options.excludeCredentials = [];
7210
7257
  callback == null ? void 0 : callback(options);
7211
7258
  } catch (e) {
@@ -7228,8 +7275,8 @@ const _excluded = ["callback", "error"],
7228
7275
  setLoginState({
7229
7276
  loading: true
7230
7277
  });
7231
- const publicKey = (0,_helpers__WEBPACK_IMPORTED_MODULE_20__.publicKeyCredentialToJSON)(body.publicKey);
7232
- const deviceType = (publicKey == null ? void 0 : publicKey.authenticatorAttachment) === 'platform' ? _frontegg_rest_api__WEBPACK_IMPORTED_MODULE_21__.WebAuthnDeviceType.Platform : _frontegg_rest_api__WEBPACK_IMPORTED_MODULE_21__.WebAuthnDeviceType.CrossPlatform;
7278
+ const publicKey = (0,_helpers__WEBPACK_IMPORTED_MODULE_22__.publicKeyCredentialToJSON)(body.publicKey);
7279
+ const deviceType = (publicKey == null ? void 0 : publicKey.authenticatorAttachment) === 'platform' ? _frontegg_rest_api__WEBPACK_IMPORTED_MODULE_23__.WebAuthnDeviceType.Platform : _frontegg_rest_api__WEBPACK_IMPORTED_MODULE_23__.WebAuthnDeviceType.CrossPlatform;
7233
7280
  await api.auth.verifyNewDeviceSession({
7234
7281
  id: publicKey.id,
7235
7282
  response: publicKey.response,
@@ -7296,12 +7343,12 @@ const _excluded = ["callback", "error"],
7296
7343
  var _data$options$exclude;
7297
7344
  const data = await api.auth.preEnrollMFAWebAuthnForLogin(payload);
7298
7345
  const options = (0,_babel_runtime_helpers_esm_extends__WEBPACK_IMPORTED_MODULE_1__["default"])({}, data.options, {
7299
- challenge: (0,_helpers__WEBPACK_IMPORTED_MODULE_19__.base64urlDecode)(data.options.challenge),
7346
+ challenge: (0,_helpers__WEBPACK_IMPORTED_MODULE_21__.base64urlDecode)(data.options.challenge),
7300
7347
  user: (0,_babel_runtime_helpers_esm_extends__WEBPACK_IMPORTED_MODULE_1__["default"])({}, data.options.user, {
7301
- id: (0,_helpers__WEBPACK_IMPORTED_MODULE_19__.base64urlDecode)(data.options.user.id)
7348
+ id: (0,_helpers__WEBPACK_IMPORTED_MODULE_21__.base64urlDecode)(data.options.user.id)
7302
7349
  }),
7303
7350
  excludeCredentials: (_data$options$exclude = data.options.excludeCredentials) == null ? void 0 : _data$options$exclude.map(credentials => (0,_babel_runtime_helpers_esm_extends__WEBPACK_IMPORTED_MODULE_1__["default"])({}, credentials, {
7304
- id: (0,_helpers__WEBPACK_IMPORTED_MODULE_19__.base64urlDecode)(credentials.id)
7351
+ id: (0,_helpers__WEBPACK_IMPORTED_MODULE_21__.base64urlDecode)(credentials.id)
7305
7352
  }))
7306
7353
  });
7307
7354
  setLoginState({
@@ -7328,7 +7375,7 @@ const _excluded = ["callback", "error"],
7328
7375
  loading: true
7329
7376
  });
7330
7377
  try {
7331
- const publicKey = (0,_helpers__WEBPACK_IMPORTED_MODULE_20__.publicKeyCredentialToJSON)(payload.publicKey);
7378
+ const publicKey = (0,_helpers__WEBPACK_IMPORTED_MODULE_22__.publicKeyCredentialToJSON)(payload.publicKey);
7332
7379
  const data = await api.auth.enrollMFAWebAuthnForLoginV2((0,_babel_runtime_helpers_esm_extends__WEBPACK_IMPORTED_MODULE_1__["default"])({}, payload, {
7333
7380
  options: publicKey
7334
7381
  }));
@@ -7380,7 +7427,7 @@ const _excluded = ["callback", "error"],
7380
7427
  const data = await api.auth.preEnrollMFASMSForLogin(payload);
7381
7428
  actions.setMfaState({
7382
7429
  otcToken: data.otcToken,
7383
- step: _MfaState_interfaces__WEBPACK_IMPORTED_MODULE_22__.MFAStep.smsVerifyCode,
7430
+ step: _MfaState_interfaces__WEBPACK_IMPORTED_MODULE_24__.MFAStep.smsVerifyCode,
7384
7431
  phoneNumber: data.phoneNumber
7385
7432
  });
7386
7433
  setLoginState({
@@ -7425,7 +7472,7 @@ const _excluded = ["callback", "error"],
7425
7472
  activeTenant
7426
7473
  } = payload;
7427
7474
  const mfaState = {
7428
- step: _MfaState_interfaces__WEBPACK_IMPORTED_MODULE_22__.MFAStep.recoveryCode,
7475
+ step: _MfaState_interfaces__WEBPACK_IMPORTED_MODULE_24__.MFAStep.recoveryCode,
7429
7476
  loading: false,
7430
7477
  error: undefined,
7431
7478
  saving: false
@@ -7613,7 +7660,7 @@ const _excluded = ["callback", "error"],
7613
7660
  refreshTokenForSocialLogins,
7614
7661
  // protected
7615
7662
  __refreshToken
7616
- }, (0,_hostedLoginAuthorize_actions__WEBPACK_IMPORTED_MODULE_23__["default"])(store, api, sharedActions), (0,_afterAuthNavigation_actions__WEBPACK_IMPORTED_MODULE_24__["default"])(store, api, sharedActions), (0,_handleVerifyMFAResponse_actions__WEBPACK_IMPORTED_MODULE_25__["default"])(store, api, sharedActions), (0,_mfaRequiredState_actions__WEBPACK_IMPORTED_MODULE_26__["default"])(store, api, sharedActions), (0,_mfaWithAuthenticator_actions__WEBPACK_IMPORTED_MODULE_27__["default"])(store, api, sharedActions), (0,_mfaWithEmailCode_actions__WEBPACK_IMPORTED_MODULE_28__["default"])(store, api, sharedActions), (0,_mfaWithSMS_actions__WEBPACK_IMPORTED_MODULE_29__["default"])(store, api, sharedActions), (0,_mfaWithWebAuthn_actions__WEBPACK_IMPORTED_MODULE_30__["default"])(store, api, sharedActions));
7663
+ }, (0,_hostedLoginAuthorize_actions__WEBPACK_IMPORTED_MODULE_25__["default"])(store, api, sharedActions), (0,_afterAuthNavigation_actions__WEBPACK_IMPORTED_MODULE_26__["default"])(store, api, sharedActions), (0,_handleVerifyMFAResponse_actions__WEBPACK_IMPORTED_MODULE_27__["default"])(store, api, sharedActions), (0,_mfaRequiredState_actions__WEBPACK_IMPORTED_MODULE_28__["default"])(store, api, sharedActions), (0,_mfaWithAuthenticator_actions__WEBPACK_IMPORTED_MODULE_29__["default"])(store, api, sharedActions), (0,_mfaWithEmailCode_actions__WEBPACK_IMPORTED_MODULE_30__["default"])(store, api, sharedActions), (0,_mfaWithSMS_actions__WEBPACK_IMPORTED_MODULE_31__["default"])(store, api, sharedActions), (0,_mfaWithWebAuthn_actions__WEBPACK_IMPORTED_MODULE_32__["default"])(store, api, sharedActions));
7617
7664
  });
7618
7665
 
7619
7666
  /***/ }),
@@ -8575,6 +8622,111 @@ let LoginActionTypes;
8575
8622
 
8576
8623
  /***/ }),
8577
8624
 
8625
+ /***/ "../../dist/@frontegg/redux-store/auth/LoginState/oauthStorage.js":
8626
+ /*!************************************************************************!*\
8627
+ !*** ../../dist/@frontegg/redux-store/auth/LoginState/oauthStorage.js ***!
8628
+ \************************************************************************/
8629
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
8630
+
8631
+ "use strict";
8632
+ __webpack_require__.r(__webpack_exports__);
8633
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
8634
+ /* harmony export */ FRONTEGG_AUTHENTICATION_FLOWS_REDIRECT_AFTER_LOGIN: () => (/* binding */ FRONTEGG_AUTHENTICATION_FLOWS_REDIRECT_AFTER_LOGIN),
8635
+ /* harmony export */ FRONTEGG_OAUTH_APP_ID: () => (/* binding */ FRONTEGG_OAUTH_APP_ID),
8636
+ /* harmony export */ FRONTEGG_OAUTH_INVITATION_TOKEN_KEY: () => (/* binding */ FRONTEGG_OAUTH_INVITATION_TOKEN_KEY),
8637
+ /* harmony export */ FRONTEGG_OAUTH_LOGIN_DIRECT_ACTION: () => (/* binding */ FRONTEGG_OAUTH_LOGIN_DIRECT_ACTION),
8638
+ /* harmony export */ FRONTEGG_OAUTH_LOGIN_HINT: () => (/* binding */ FRONTEGG_OAUTH_LOGIN_HINT),
8639
+ /* harmony export */ FRONTEGG_OAUTH_ORGANIZATION: () => (/* binding */ FRONTEGG_OAUTH_ORGANIZATION),
8640
+ /* harmony export */ FRONTEGG_OAUTH_REDIRECT_AFTER_LOGIN: () => (/* binding */ FRONTEGG_OAUTH_REDIRECT_AFTER_LOGIN),
8641
+ /* harmony export */ FRONTEGG_OAUTH_SILENT_REDIRECT_ADDRESS: () => (/* binding */ FRONTEGG_OAUTH_SILENT_REDIRECT_ADDRESS),
8642
+ /* harmony export */ FRONTEGG_OAUTH_STATE_AFTER_LOGIN: () => (/* binding */ FRONTEGG_OAUTH_STATE_AFTER_LOGIN),
8643
+ /* harmony export */ FRONTEGG_OAUTH_STATE_SAVED_AT: () => (/* binding */ FRONTEGG_OAUTH_STATE_SAVED_AT),
8644
+ /* harmony export */ FRONTEGG_OAUTH_STEP_UP_ACR_VALUES: () => (/* binding */ FRONTEGG_OAUTH_STEP_UP_ACR_VALUES),
8645
+ /* harmony export */ FRONTEGG_OAUTH_STEP_UP_MAX_AGE: () => (/* binding */ FRONTEGG_OAUTH_STEP_UP_MAX_AGE),
8646
+ /* harmony export */ FRONTEGG_OAUTH_TENANT_ID: () => (/* binding */ FRONTEGG_OAUTH_TENANT_ID),
8647
+ /* harmony export */ HOSTED_OAUTH_STATE_MAX_AGE_MS: () => (/* binding */ HOSTED_OAUTH_STATE_MAX_AGE_MS),
8648
+ /* harmony export */ HOSTED_OAUTH_STORAGE_KEYS: () => (/* binding */ HOSTED_OAUTH_STORAGE_KEYS),
8649
+ /* harmony export */ clearHostedOAuthState: () => (/* binding */ clearHostedOAuthState),
8650
+ /* harmony export */ isHostedOAuthStateExpired: () => (/* binding */ isHostedOAuthStateExpired),
8651
+ /* harmony export */ markHostedOAuthStateSaved: () => (/* binding */ markHostedOAuthStateSaved)
8652
+ /* harmony export */ });
8653
+ const FRONTEGG_OAUTH_LOGIN_HINT = 'FRONTEGG_OAUTH_LOGIN_HINT';
8654
+ const FRONTEGG_OAUTH_LOGIN_DIRECT_ACTION = 'FRONTEGG_OAUTH_LOGIN_DIRECT_ACTION';
8655
+ const FRONTEGG_OAUTH_ORGANIZATION = 'FRONTEGG_OAUTH_ORGANIZATION';
8656
+ const FRONTEGG_OAUTH_STEP_UP_ACR_VALUES = 'FRONTEGG_OAUTH_STEP_UP_ACR_VALUES';
8657
+ const FRONTEGG_OAUTH_STEP_UP_MAX_AGE = 'FRONTEGG_OAUTH_STEP_UP_MAX_AGE';
8658
+ const FRONTEGG_OAUTH_TENANT_ID = 'FRONTEGG_OAUTH_TENANT_ID';
8659
+ const FRONTEGG_OAUTH_APP_ID = 'FRONTEGG_OAUTH_APP_ID';
8660
+ const FRONTEGG_OAUTH_STATE_AFTER_LOGIN = 'FRONTEGG_OAUTH_STATE_AFTER_LOGIN';
8661
+ const FRONTEGG_OAUTH_INVITATION_TOKEN_KEY = 'FRONTEGG_OAUTH_INVITATION_TOKEN_KEY';
8662
+ const FRONTEGG_OAUTH_REDIRECT_AFTER_LOGIN = 'FRONTEGG_OAUTH_REDIRECT_AFTER_LOGIN';
8663
+ const FRONTEGG_AUTHENTICATION_FLOWS_REDIRECT_AFTER_LOGIN = 'FRONTEGG_AUTHENTICATION_FLOWS_REDIRECT_AFTER_LOGIN';
8664
+ const FRONTEGG_OAUTH_SILENT_REDIRECT_ADDRESS = 'FRONTEGG_OAUTH_SILENT_REDIRECT_ADDRESS';
8665
+ const FRONTEGG_OAUTH_STATE_SAVED_AT = 'FRONTEGG_OAUTH_STATE_SAVED_AT';
8666
+
8667
+ /** Slightly under typical Redis OAuth session TTL to avoid stale postlogin attempts. */
8668
+ const HOSTED_OAUTH_STATE_MAX_AGE_MS = 23 * 60 * 60 * 1000;
8669
+ const HOSTED_OAUTH_STORAGE_KEYS = [FRONTEGG_OAUTH_REDIRECT_AFTER_LOGIN, FRONTEGG_OAUTH_STATE_AFTER_LOGIN, FRONTEGG_OAUTH_STATE_SAVED_AT, FRONTEGG_AUTHENTICATION_FLOWS_REDIRECT_AFTER_LOGIN, FRONTEGG_OAUTH_INVITATION_TOKEN_KEY, FRONTEGG_OAUTH_ORGANIZATION, FRONTEGG_OAUTH_TENANT_ID, FRONTEGG_OAUTH_STEP_UP_ACR_VALUES, FRONTEGG_OAUTH_STEP_UP_MAX_AGE, FRONTEGG_OAUTH_APP_ID, FRONTEGG_OAUTH_LOGIN_HINT, FRONTEGG_OAUTH_LOGIN_DIRECT_ACTION, FRONTEGG_OAUTH_SILENT_REDIRECT_ADDRESS];
8670
+ function removeHostedOAuthCookie(key) {
8671
+ document.cookie = `${encodeURIComponent(key)}=;expires=Thu, 01 Jan 1970 00:00:00 GMT;path=/`;
8672
+ }
8673
+ function getStoredHostedOAuthValue(key) {
8674
+ const fromLocalStorage = window.localStorage.getItem(key);
8675
+ if (fromLocalStorage) {
8676
+ return fromLocalStorage;
8677
+ }
8678
+ const fromSessionStorage = window.sessionStorage.getItem(key);
8679
+ if (fromSessionStorage) {
8680
+ return fromSessionStorage;
8681
+ }
8682
+ const decodedName = encodeURIComponent(key);
8683
+ const cookies = document.cookie.split(';');
8684
+ for (let cookie of cookies) {
8685
+ cookie = cookie.trim();
8686
+ if (cookie.indexOf(`${decodedName}=`) === 0) {
8687
+ return decodeURIComponent(cookie.substring(decodedName.length + 1));
8688
+ }
8689
+ }
8690
+ return null;
8691
+ }
8692
+ function clearHostedOAuthState() {
8693
+ if (typeof window === 'undefined') {
8694
+ return;
8695
+ }
8696
+ HOSTED_OAUTH_STORAGE_KEYS.forEach(key => {
8697
+ window.localStorage.removeItem(key);
8698
+ window.sessionStorage.removeItem(key);
8699
+ removeHostedOAuthCookie(key);
8700
+ });
8701
+ }
8702
+ function markHostedOAuthStateSaved() {
8703
+ if (typeof window === 'undefined') {
8704
+ return;
8705
+ }
8706
+ const value = Date.now().toString();
8707
+ window.localStorage.setItem(FRONTEGG_OAUTH_STATE_SAVED_AT, value);
8708
+ window.sessionStorage.setItem(FRONTEGG_OAUTH_STATE_SAVED_AT, value);
8709
+ const expires = new Date();
8710
+ expires.setTime(expires.getTime() + HOSTED_OAUTH_STATE_MAX_AGE_MS);
8711
+ document.cookie = `${encodeURIComponent(FRONTEGG_OAUTH_STATE_SAVED_AT)}=${encodeURIComponent(value)};expires=${expires.toUTCString()};path=/`;
8712
+ }
8713
+ function isHostedOAuthStateExpired() {
8714
+ if (typeof window === 'undefined') {
8715
+ return false;
8716
+ }
8717
+ const savedAt = getStoredHostedOAuthValue(FRONTEGG_OAUTH_STATE_SAVED_AT);
8718
+ if (!savedAt) {
8719
+ return false;
8720
+ }
8721
+ const savedAtMs = Number(savedAt);
8722
+ if (Number.isNaN(savedAtMs)) {
8723
+ return false;
8724
+ }
8725
+ return Date.now() - savedAtMs > HOSTED_OAUTH_STATE_MAX_AGE_MS;
8726
+ }
8727
+
8728
+ /***/ }),
8729
+
8578
8730
  /***/ "../../dist/@frontegg/redux-store/auth/LoginState/state.js":
8579
8731
  /*!*****************************************************************!*\
8580
8732
  !*** ../../dist/@frontegg/redux-store/auth/LoginState/state.js ***!
@@ -8696,7 +8848,8 @@ __webpack_require__.r(__webpack_exports__);
8696
8848
  jwt
8697
8849
  });
8698
8850
  const tenantsUsersCountArray = await api.tenants.getTenantsUsersCount({
8699
- tenantIds: items.map(tenant => tenant.tenantId)
8851
+ tenantIds: items.map(tenant => tenant.tenantId),
8852
+ excludeInvisibleUsers: true
8700
8853
  }, {
8701
8854
  jwt
8702
8855
  });
@@ -8726,7 +8879,8 @@ __webpack_require__.r(__webpack_exports__);
8726
8879
  _links
8727
8880
  } = await api.tenants.searchSubTenants(searchSubTenantsQueryParams);
8728
8881
  const tenantsUsersCountArray = await api.tenants.getTenantsUsersCount({
8729
- tenantIds: items.map(i => i.tenantId)
8882
+ tenantIds: items.map(i => i.tenantId),
8883
+ excludeInvisibleUsers: true
8730
8884
  });
8731
8885
  const accountsWithUsersCount = (0,_helpers__WEBPACK_IMPORTED_MODULE_4__.getAccountsWithUsersCount)({
8732
8886
  items
@@ -9438,7 +9592,8 @@ __webpack_require__.r(__webpack_exports__);
9438
9592
  try {
9439
9593
  var _tenantUsersCount$;
9440
9594
  const tenantUsersCount = await api.tenants.getTenantsUsersCount({
9441
- tenantIds: [activeTenant == null ? void 0 : activeTenant.tenantId]
9595
+ tenantIds: [activeTenant == null ? void 0 : activeTenant.tenantId],
9596
+ excludeInvisibleUsers: true
9442
9597
  });
9443
9598
  const rootAccount = {
9444
9599
  name: activeTenant == null ? void 0 : activeTenant.name,
@@ -9485,7 +9640,8 @@ __webpack_require__.r(__webpack_exports__);
9485
9640
  jwt
9486
9641
  });
9487
9642
  const [numberOfUsersArray, parentsAccounts, subAccountsAmount] = await Promise.all([api.tenants.getTenantsUsersCount({
9488
- tenantIds: [(_accountSettings$tena = accountSettings == null ? void 0 : accountSettings.tenantId) != null ? _accountSettings$tena : '']
9643
+ tenantIds: [(_accountSettings$tena = accountSettings == null ? void 0 : accountSettings.tenantId) != null ? _accountSettings$tena : ''],
9644
+ excludeInvisibleUsers: true
9489
9645
  }, {
9490
9646
  jwt
9491
9647
  }), api.tenants.getParentTenants({
@@ -9539,7 +9695,8 @@ __webpack_require__.r(__webpack_exports__);
9539
9695
  value: true
9540
9696
  });
9541
9697
  const numberOfUsersArray = await api.tenants.getTenantsUsersCount({
9542
- tenantIds: [tenantId]
9698
+ tenantIds: [tenantId],
9699
+ excludeInvisibleUsers: true
9543
9700
  }, {
9544
9701
  jwt
9545
9702
  });
@@ -15787,6 +15944,7 @@ const STEP_UP_MAX_AGE_PARAM_NAME = 'maxAge';
15787
15944
  "use strict";
15788
15945
  __webpack_require__.r(__webpack_exports__);
15789
15946
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
15947
+ /* harmony export */ getUrlDerivedStepUp: () => (/* binding */ getUrlDerivedStepUp),
15790
15948
  /* harmony export */ isSteppedUp: () => (/* binding */ isSteppedUp),
15791
15949
  /* harmony export */ redirectByStepUpUrl: () => (/* binding */ redirectByStepUpUrl),
15792
15950
  /* harmony export */ setAfterAuthRedirectUrlForStepUp: () => (/* binding */ setAfterAuthRedirectUrlForStepUp)
@@ -15811,16 +15969,38 @@ const isSteppedUp = (user, {
15811
15969
  acr = '',
15812
15970
  auth_time
15813
15971
  } = user;
15814
- if (maxAge && auth_time) {
15815
- // when user is logged in for a long time (more than maxAge, but jwt is still valid because it's not refreshed yet)
15816
- const isMaxAgeValid = Date.now() / 1000 - auth_time <= maxAge;
15817
- if (!isMaxAgeValid) return false;
15972
+ if (maxAge) {
15973
+ // max_age requires a verifiable, fresh auth_time; a missing or stale one is not stepped up.
15974
+ if (!auth_time || Date.now() / 1000 - auth_time > maxAge) {
15975
+ return false;
15976
+ }
15818
15977
  }
15819
15978
  const isACRValid = acr === _consts__WEBPACK_IMPORTED_MODULE_0__.ACR_VALUE;
15820
15979
  const isAMRIncludesMFA = amr.indexOf(_consts__WEBPACK_IMPORTED_MODULE_0__.AMR_MFA_VALUE) !== -1;
15821
15980
  const isAMRIncludesMethod = _consts__WEBPACK_IMPORTED_MODULE_0__.AMR_ADDITIONAL_VALUE.find(method => amr.indexOf(method)) !== undefined;
15822
15981
  return isACRValid && isAMRIncludesMFA && isAMRIncludesMethod;
15823
15982
  };
15983
+ const getUrlDerivedStepUp = () => {
15984
+ if (typeof window === 'undefined') {
15985
+ return {
15986
+ isStepUpRequested: false
15987
+ };
15988
+ }
15989
+ try {
15990
+ const params = new URLSearchParams(window.location.search);
15991
+ const acrValues = params.get('acr_values');
15992
+ const maxAgeParam = params.get('max_age');
15993
+ const maxAge = maxAgeParam !== null && maxAgeParam !== '' ? Number(maxAgeParam) : undefined;
15994
+ return {
15995
+ isStepUpRequested: acrValues === _consts__WEBPACK_IMPORTED_MODULE_0__.ACR_VALUE,
15996
+ maxAge: maxAge !== undefined && Number.isFinite(maxAge) ? maxAge : undefined
15997
+ };
15998
+ } catch {
15999
+ return {
16000
+ isStepUpRequested: false
16001
+ };
16002
+ }
16003
+ };
15824
16004
 
15825
16005
  /**
15826
16006
  * Set the url and query params in the local storage FRONTEGG_AFTER_AUTH_REDIRECT_URL value
@@ -18004,6 +18184,7 @@ __webpack_require__.r(__webpack_exports__);
18004
18184
  /* harmony export */ getSearchParam: () => (/* reexport safe */ _LoginState_helpers__WEBPACK_IMPORTED_MODULE_3__.getSearchParam),
18005
18185
  /* harmony export */ getSearchParamsFromUrl: () => (/* reexport safe */ _LoginState_helpers__WEBPACK_IMPORTED_MODULE_3__.getSearchParamsFromUrl),
18006
18186
  /* harmony export */ getUri: () => (/* binding */ getUri),
18187
+ /* harmony export */ getUrlDerivedStepUp: () => (/* reexport safe */ _StepUpState_helpers__WEBPACK_IMPORTED_MODULE_4__.getUrlDerivedStepUp),
18007
18188
  /* harmony export */ isAbsoluteUrl: () => (/* reexport safe */ _LoginState_helpers__WEBPACK_IMPORTED_MODULE_3__.isAbsoluteUrl),
18008
18189
  /* harmony export */ isAuthRoute: () => (/* binding */ isAuthRoute),
18009
18190
  /* harmony export */ isEmailPayload: () => (/* reexport safe */ _LoginState_helpers__WEBPACK_IMPORTED_MODULE_3__.isEmailPayload),
@@ -18133,9 +18314,24 @@ __webpack_require__.r(__webpack_exports__);
18133
18314
  /* harmony export */ AuthenticationTypes: () => (/* reexport safe */ _interfaces__WEBPACK_IMPORTED_MODULE_21__.AuthenticationTypes),
18134
18315
  /* harmony export */ EditEmailView: () => (/* reexport safe */ _UsersEmailsPolicyState_interfaces__WEBPACK_IMPORTED_MODULE_20__.EditEmailView),
18135
18316
  /* harmony export */ FORGOT_PASSWORD_ERROR_KEYS: () => (/* reexport safe */ _ForgotPasswordState__WEBPACK_IMPORTED_MODULE_22__.FORGOT_PASSWORD_ERROR_KEYS),
18317
+ /* harmony export */ FRONTEGG_AUTHENTICATION_FLOWS_REDIRECT_AFTER_LOGIN: () => (/* reexport safe */ _LoginState_oauthStorage__WEBPACK_IMPORTED_MODULE_23__.FRONTEGG_AUTHENTICATION_FLOWS_REDIRECT_AFTER_LOGIN),
18318
+ /* harmony export */ FRONTEGG_OAUTH_APP_ID: () => (/* reexport safe */ _LoginState_oauthStorage__WEBPACK_IMPORTED_MODULE_23__.FRONTEGG_OAUTH_APP_ID),
18319
+ /* harmony export */ FRONTEGG_OAUTH_INVITATION_TOKEN_KEY: () => (/* reexport safe */ _LoginState_oauthStorage__WEBPACK_IMPORTED_MODULE_23__.FRONTEGG_OAUTH_INVITATION_TOKEN_KEY),
18320
+ /* harmony export */ FRONTEGG_OAUTH_LOGIN_DIRECT_ACTION: () => (/* reexport safe */ _LoginState_oauthStorage__WEBPACK_IMPORTED_MODULE_23__.FRONTEGG_OAUTH_LOGIN_DIRECT_ACTION),
18321
+ /* harmony export */ FRONTEGG_OAUTH_LOGIN_HINT: () => (/* reexport safe */ _LoginState_oauthStorage__WEBPACK_IMPORTED_MODULE_23__.FRONTEGG_OAUTH_LOGIN_HINT),
18322
+ /* harmony export */ FRONTEGG_OAUTH_ORGANIZATION: () => (/* reexport safe */ _LoginState_oauthStorage__WEBPACK_IMPORTED_MODULE_23__.FRONTEGG_OAUTH_ORGANIZATION),
18323
+ /* harmony export */ FRONTEGG_OAUTH_REDIRECT_AFTER_LOGIN: () => (/* reexport safe */ _LoginState_oauthStorage__WEBPACK_IMPORTED_MODULE_23__.FRONTEGG_OAUTH_REDIRECT_AFTER_LOGIN),
18324
+ /* harmony export */ FRONTEGG_OAUTH_SILENT_REDIRECT_ADDRESS: () => (/* reexport safe */ _LoginState_oauthStorage__WEBPACK_IMPORTED_MODULE_23__.FRONTEGG_OAUTH_SILENT_REDIRECT_ADDRESS),
18325
+ /* harmony export */ FRONTEGG_OAUTH_STATE_AFTER_LOGIN: () => (/* reexport safe */ _LoginState_oauthStorage__WEBPACK_IMPORTED_MODULE_23__.FRONTEGG_OAUTH_STATE_AFTER_LOGIN),
18326
+ /* harmony export */ FRONTEGG_OAUTH_STATE_SAVED_AT: () => (/* reexport safe */ _LoginState_oauthStorage__WEBPACK_IMPORTED_MODULE_23__.FRONTEGG_OAUTH_STATE_SAVED_AT),
18327
+ /* harmony export */ FRONTEGG_OAUTH_STEP_UP_ACR_VALUES: () => (/* reexport safe */ _LoginState_oauthStorage__WEBPACK_IMPORTED_MODULE_23__.FRONTEGG_OAUTH_STEP_UP_ACR_VALUES),
18328
+ /* harmony export */ FRONTEGG_OAUTH_STEP_UP_MAX_AGE: () => (/* reexport safe */ _LoginState_oauthStorage__WEBPACK_IMPORTED_MODULE_23__.FRONTEGG_OAUTH_STEP_UP_MAX_AGE),
18329
+ /* harmony export */ FRONTEGG_OAUTH_TENANT_ID: () => (/* reexport safe */ _LoginState_oauthStorage__WEBPACK_IMPORTED_MODULE_23__.FRONTEGG_OAUTH_TENANT_ID),
18136
18330
  /* harmony export */ ForgotPasswordStep: () => (/* reexport safe */ _ForgotPasswordState_interfaces__WEBPACK_IMPORTED_MODULE_7__.ForgotPasswordStep),
18137
18331
  /* harmony export */ GroupRelations: () => (/* reexport safe */ _GroupsState_interfaces__WEBPACK_IMPORTED_MODULE_9__.GroupRelations),
18138
18332
  /* harmony export */ GroupsStateKeys: () => (/* reexport safe */ _GroupsState_interfaces__WEBPACK_IMPORTED_MODULE_9__.GroupsStateKeys),
18333
+ /* harmony export */ HOSTED_OAUTH_STATE_MAX_AGE_MS: () => (/* reexport safe */ _LoginState_oauthStorage__WEBPACK_IMPORTED_MODULE_23__.HOSTED_OAUTH_STATE_MAX_AGE_MS),
18334
+ /* harmony export */ HOSTED_OAUTH_STORAGE_KEYS: () => (/* reexport safe */ _LoginState_oauthStorage__WEBPACK_IMPORTED_MODULE_23__.HOSTED_OAUTH_STORAGE_KEYS),
18139
18335
  /* harmony export */ ImpersonateStep: () => (/* reexport safe */ _ImpersonateState_interfaces__WEBPACK_IMPORTED_MODULE_10__.ImpersonateStep),
18140
18336
  /* harmony export */ LoginActionTypes: () => (/* reexport safe */ _LoginState_interfaces__WEBPACK_IMPORTED_MODULE_11__.LoginActionTypes),
18141
18337
  /* harmony export */ LoginFlow: () => (/* reexport safe */ _LoginState_interfaces__WEBPACK_IMPORTED_MODULE_11__.LoginFlow),
@@ -18154,91 +18350,94 @@ __webpack_require__.r(__webpack_exports__);
18154
18350
  /* harmony export */ TeamStateKeys: () => (/* reexport safe */ _TeamState_interfaces__WEBPACK_IMPORTED_MODULE_19__.TeamStateKeys),
18155
18351
  /* harmony export */ UserVerifiedOriginTypes: () => (/* reexport safe */ _interfaces__WEBPACK_IMPORTED_MODULE_21__.UserVerifiedOriginTypes),
18156
18352
  /* harmony export */ buildAuthActions: () => (/* binding */ buildAuthActions),
18353
+ /* harmony export */ clearHostedOAuthState: () => (/* reexport safe */ _LoginState_oauthStorage__WEBPACK_IMPORTED_MODULE_23__.clearHostedOAuthState),
18157
18354
  /* harmony export */ createAuthState: () => (/* binding */ createAuthState),
18158
18355
  /* harmony export */ getEntitlements: () => (/* reexport safe */ _Entitlements_helpers__WEBPACK_IMPORTED_MODULE_6__.getEntitlements),
18159
18356
  /* harmony export */ getFeatureEntitlements: () => (/* reexport safe */ _Entitlements_helpers__WEBPACK_IMPORTED_MODULE_6__.getFeatureEntitlements),
18160
18357
  /* harmony export */ getPermissionEntitlements: () => (/* reexport safe */ _Entitlements_helpers__WEBPACK_IMPORTED_MODULE_6__.getPermissionEntitlements),
18161
- /* harmony export */ isEntitlementsDeeplyEqual: () => (/* reexport safe */ _Entitlements_helpers__WEBPACK_IMPORTED_MODULE_6__.isEntitlementsDeeplyEqual)
18358
+ /* harmony export */ isEntitlementsDeeplyEqual: () => (/* reexport safe */ _Entitlements_helpers__WEBPACK_IMPORTED_MODULE_6__.isEntitlementsDeeplyEqual),
18359
+ /* harmony export */ isHostedOAuthStateExpired: () => (/* reexport safe */ _LoginState_oauthStorage__WEBPACK_IMPORTED_MODULE_23__.isHostedOAuthStateExpired),
18360
+ /* harmony export */ markHostedOAuthStateSaved: () => (/* reexport safe */ _LoginState_oauthStorage__WEBPACK_IMPORTED_MODULE_23__.markHostedOAuthStateSaved)
18162
18361
  /* harmony export */ });
18163
18362
  /* harmony import */ var _babel_runtime_helpers_esm_extends__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/runtime/helpers/esm/extends */ "../../node_modules/@babel/runtime/helpers/esm/extends.js");
18164
18363
  /* harmony import */ var _babel_runtime_helpers_esm_objectWithoutPropertiesLoose__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @babel/runtime/helpers/esm/objectWithoutPropertiesLoose */ "../../node_modules/@babel/runtime/helpers/esm/objectWithoutPropertiesLoose.js");
18165
- /* harmony import */ var _AcceptInvitationState__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ./AcceptInvitationState */ "../../dist/@frontegg/redux-store/auth/AcceptInvitationState/state.js");
18166
- /* harmony import */ var _AcceptInvitationState__WEBPACK_IMPORTED_MODULE_62__ = __webpack_require__(/*! ./AcceptInvitationState */ "../../dist/@frontegg/redux-store/auth/AcceptInvitationState/actions.js");
18167
- /* harmony import */ var _AccountSettingsState__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ./AccountSettingsState */ "../../dist/@frontegg/redux-store/auth/AccountSettingsState/state.js");
18168
- /* harmony import */ var _AccountSettingsState__WEBPACK_IMPORTED_MODULE_63__ = __webpack_require__(/*! ./AccountSettingsState */ "../../dist/@frontegg/redux-store/auth/AccountSettingsState/actions.js");
18169
- /* harmony import */ var _ActivateAccountState__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(/*! ./ActivateAccountState */ "../../dist/@frontegg/redux-store/auth/ActivateAccountState/state.js");
18170
- /* harmony import */ var _ActivateAccountState__WEBPACK_IMPORTED_MODULE_64__ = __webpack_require__(/*! ./ActivateAccountState */ "../../dist/@frontegg/redux-store/auth/ActivateAccountState/actions.js");
18171
- /* harmony import */ var _UnlockAccountState__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ./UnlockAccountState */ "../../dist/@frontegg/redux-store/auth/UnlockAccountState/state.js");
18172
- /* harmony import */ var _UnlockAccountState__WEBPACK_IMPORTED_MODULE_65__ = __webpack_require__(/*! ./UnlockAccountState */ "../../dist/@frontegg/redux-store/auth/UnlockAccountState/actions.js");
18173
- /* harmony import */ var _ApprovalFlowState__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ./ApprovalFlowState */ "../../dist/@frontegg/redux-store/auth/ApprovalFlowState/state.js");
18174
- /* harmony import */ var _ApprovalFlowState__WEBPACK_IMPORTED_MODULE_66__ = __webpack_require__(/*! ./ApprovalFlowState */ "../../dist/@frontegg/redux-store/auth/ApprovalFlowState/actions.js");
18175
- /* harmony import */ var _ApiTokensState__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ./ApiTokensState */ "../../dist/@frontegg/redux-store/auth/ApiTokensState/state.js");
18176
- /* harmony import */ var _ApiTokensState__WEBPACK_IMPORTED_MODULE_67__ = __webpack_require__(/*! ./ApiTokensState */ "../../dist/@frontegg/redux-store/auth/ApiTokensState/actions.js");
18177
- /* harmony import */ var _ApplicationsState__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ./ApplicationsState */ "../../dist/@frontegg/redux-store/auth/ApplicationsState/state.js");
18178
- /* harmony import */ var _ApplicationsState__WEBPACK_IMPORTED_MODULE_68__ = __webpack_require__(/*! ./ApplicationsState */ "../../dist/@frontegg/redux-store/auth/ApplicationsState/actions.js");
18179
- /* harmony import */ var _CustomLoginState__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ./CustomLoginState */ "../../dist/@frontegg/redux-store/auth/CustomLoginState/state.js");
18180
- /* harmony import */ var _CustomLoginState__WEBPACK_IMPORTED_MODULE_69__ = __webpack_require__(/*! ./CustomLoginState */ "../../dist/@frontegg/redux-store/auth/CustomLoginState/actions.js");
18364
+ /* harmony import */ var _AcceptInvitationState__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ./AcceptInvitationState */ "../../dist/@frontegg/redux-store/auth/AcceptInvitationState/state.js");
18365
+ /* harmony import */ var _AcceptInvitationState__WEBPACK_IMPORTED_MODULE_63__ = __webpack_require__(/*! ./AcceptInvitationState */ "../../dist/@frontegg/redux-store/auth/AcceptInvitationState/actions.js");
18366
+ /* harmony import */ var _AccountSettingsState__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(/*! ./AccountSettingsState */ "../../dist/@frontegg/redux-store/auth/AccountSettingsState/state.js");
18367
+ /* harmony import */ var _AccountSettingsState__WEBPACK_IMPORTED_MODULE_64__ = __webpack_require__(/*! ./AccountSettingsState */ "../../dist/@frontegg/redux-store/auth/AccountSettingsState/actions.js");
18368
+ /* harmony import */ var _ActivateAccountState__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ./ActivateAccountState */ "../../dist/@frontegg/redux-store/auth/ActivateAccountState/state.js");
18369
+ /* harmony import */ var _ActivateAccountState__WEBPACK_IMPORTED_MODULE_65__ = __webpack_require__(/*! ./ActivateAccountState */ "../../dist/@frontegg/redux-store/auth/ActivateAccountState/actions.js");
18370
+ /* harmony import */ var _UnlockAccountState__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ./UnlockAccountState */ "../../dist/@frontegg/redux-store/auth/UnlockAccountState/state.js");
18371
+ /* harmony import */ var _UnlockAccountState__WEBPACK_IMPORTED_MODULE_66__ = __webpack_require__(/*! ./UnlockAccountState */ "../../dist/@frontegg/redux-store/auth/UnlockAccountState/actions.js");
18372
+ /* harmony import */ var _ApprovalFlowState__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ./ApprovalFlowState */ "../../dist/@frontegg/redux-store/auth/ApprovalFlowState/state.js");
18373
+ /* harmony import */ var _ApprovalFlowState__WEBPACK_IMPORTED_MODULE_67__ = __webpack_require__(/*! ./ApprovalFlowState */ "../../dist/@frontegg/redux-store/auth/ApprovalFlowState/actions.js");
18374
+ /* harmony import */ var _ApiTokensState__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ./ApiTokensState */ "../../dist/@frontegg/redux-store/auth/ApiTokensState/state.js");
18375
+ /* harmony import */ var _ApiTokensState__WEBPACK_IMPORTED_MODULE_68__ = __webpack_require__(/*! ./ApiTokensState */ "../../dist/@frontegg/redux-store/auth/ApiTokensState/actions.js");
18376
+ /* harmony import */ var _ApplicationsState__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ./ApplicationsState */ "../../dist/@frontegg/redux-store/auth/ApplicationsState/state.js");
18377
+ /* harmony import */ var _ApplicationsState__WEBPACK_IMPORTED_MODULE_69__ = __webpack_require__(/*! ./ApplicationsState */ "../../dist/@frontegg/redux-store/auth/ApplicationsState/actions.js");
18378
+ /* harmony import */ var _CustomLoginState__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ./CustomLoginState */ "../../dist/@frontegg/redux-store/auth/CustomLoginState/state.js");
18379
+ /* harmony import */ var _CustomLoginState__WEBPACK_IMPORTED_MODULE_70__ = __webpack_require__(/*! ./CustomLoginState */ "../../dist/@frontegg/redux-store/auth/CustomLoginState/actions.js");
18181
18380
  /* harmony import */ var _ForgotPasswordState__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ./ForgotPasswordState */ "../../dist/@frontegg/redux-store/auth/ForgotPasswordState/consts.js");
18182
- /* harmony import */ var _ForgotPasswordState__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ./ForgotPasswordState */ "../../dist/@frontegg/redux-store/auth/ForgotPasswordState/state.js");
18183
- /* harmony import */ var _ForgotPasswordState__WEBPACK_IMPORTED_MODULE_71__ = __webpack_require__(/*! ./ForgotPasswordState */ "../../dist/@frontegg/redux-store/auth/ForgotPasswordState/actions.js");
18184
- /* harmony import */ var _PasswordRotationState__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ./PasswordRotationState */ "../../dist/@frontegg/redux-store/auth/PasswordRotationState/state.js");
18185
- /* harmony import */ var _PasswordRotationState__WEBPACK_IMPORTED_MODULE_72__ = __webpack_require__(/*! ./PasswordRotationState */ "../../dist/@frontegg/redux-store/auth/PasswordRotationState/actions.js");
18186
- /* harmony import */ var _GroupsState__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ./GroupsState */ "../../dist/@frontegg/redux-store/auth/GroupsState/state.js");
18187
- /* harmony import */ var _GroupsState__WEBPACK_IMPORTED_MODULE_73__ = __webpack_require__(/*! ./GroupsState */ "../../dist/@frontegg/redux-store/auth/GroupsState/actions.js");
18188
- /* harmony import */ var _GroupsDialogsState__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ./GroupsDialogsState */ "../../dist/@frontegg/redux-store/auth/GroupsDialogsState/state.js");
18189
- /* harmony import */ var _GroupsDialogsState__WEBPACK_IMPORTED_MODULE_74__ = __webpack_require__(/*! ./GroupsDialogsState */ "../../dist/@frontegg/redux-store/auth/GroupsDialogsState/actions.js");
18190
- /* harmony import */ var _ImpersonateState__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ./ImpersonateState */ "../../dist/@frontegg/redux-store/auth/ImpersonateState/state.js");
18191
- /* harmony import */ var _ImpersonateState__WEBPACK_IMPORTED_MODULE_75__ = __webpack_require__(/*! ./ImpersonateState */ "../../dist/@frontegg/redux-store/auth/ImpersonateState/actions.js");
18192
- /* harmony import */ var _LoginState__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! ./LoginState */ "../../dist/@frontegg/redux-store/auth/LoginState/state.js");
18193
- /* harmony import */ var _LoginState__WEBPACK_IMPORTED_MODULE_76__ = __webpack_require__(/*! ./LoginState */ "../../dist/@frontegg/redux-store/auth/LoginState/actions/index.js");
18194
- /* harmony import */ var _MfaState__WEBPACK_IMPORTED_MODULE_39__ = __webpack_require__(/*! ./MfaState */ "../../dist/@frontegg/redux-store/auth/MfaState/state.js");
18195
- /* harmony import */ var _MfaState__WEBPACK_IMPORTED_MODULE_77__ = __webpack_require__(/*! ./MfaState */ "../../dist/@frontegg/redux-store/auth/MfaState/actions.js");
18196
- /* harmony import */ var _MSP__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__(/*! ./MSP */ "../../dist/@frontegg/redux-store/auth/MSP/state.js");
18197
- /* harmony import */ var _MSP__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(/*! ./MSP */ "../../dist/@frontegg/redux-store/auth/MSP/dialogs/state.js");
18198
- /* harmony import */ var _MSP__WEBPACK_IMPORTED_MODULE_78__ = __webpack_require__(/*! ./MSP */ "../../dist/@frontegg/redux-store/auth/MSP/actions.js");
18199
- /* harmony import */ var _MSP__WEBPACK_IMPORTED_MODULE_79__ = __webpack_require__(/*! ./MSP */ "../../dist/@frontegg/redux-store/auth/MSP/dialogs/actions.js");
18200
- /* harmony import */ var _PasskeysState__WEBPACK_IMPORTED_MODULE_42__ = __webpack_require__(/*! ./PasskeysState */ "../../dist/@frontegg/redux-store/auth/PasskeysState/state.js");
18201
- /* harmony import */ var _PasskeysState__WEBPACK_IMPORTED_MODULE_80__ = __webpack_require__(/*! ./PasskeysState */ "../../dist/@frontegg/redux-store/auth/PasskeysState/actions.js");
18202
- /* harmony import */ var _ProfileState__WEBPACK_IMPORTED_MODULE_43__ = __webpack_require__(/*! ./ProfileState */ "../../dist/@frontegg/redux-store/auth/ProfileState/state.js");
18203
- /* harmony import */ var _ProfileState__WEBPACK_IMPORTED_MODULE_81__ = __webpack_require__(/*! ./ProfileState */ "../../dist/@frontegg/redux-store/auth/ProfileState/actions.js");
18204
- /* harmony import */ var _ProvisioningState__WEBPACK_IMPORTED_MODULE_44__ = __webpack_require__(/*! ./ProvisioningState */ "../../dist/@frontegg/redux-store/auth/ProvisioningState/state.js");
18205
- /* harmony import */ var _ProvisioningState__WEBPACK_IMPORTED_MODULE_82__ = __webpack_require__(/*! ./ProvisioningState */ "../../dist/@frontegg/redux-store/auth/ProvisioningState/actions.js");
18206
- /* harmony import */ var _ResetPhoneNumberState__WEBPACK_IMPORTED_MODULE_45__ = __webpack_require__(/*! ./ResetPhoneNumberState */ "../../dist/@frontegg/redux-store/auth/ResetPhoneNumberState/state.js");
18207
- /* harmony import */ var _ResetPhoneNumberState__WEBPACK_IMPORTED_MODULE_83__ = __webpack_require__(/*! ./ResetPhoneNumberState */ "../../dist/@frontegg/redux-store/auth/ResetPhoneNumberState/actions.js");
18208
- /* harmony import */ var _RolesState__WEBPACK_IMPORTED_MODULE_46__ = __webpack_require__(/*! ./RolesState */ "../../dist/@frontegg/redux-store/auth/RolesState/state.js");
18209
- /* harmony import */ var _RolesState__WEBPACK_IMPORTED_MODULE_84__ = __webpack_require__(/*! ./RolesState */ "../../dist/@frontegg/redux-store/auth/RolesState/actions.js");
18210
- /* harmony import */ var _Security_RestrictionsState__WEBPACK_IMPORTED_MODULE_47__ = __webpack_require__(/*! ./Security/RestrictionsState */ "../../dist/@frontegg/redux-store/auth/Security/RestrictionsState/state.js");
18211
- /* harmony import */ var _Security_RestrictionsState__WEBPACK_IMPORTED_MODULE_85__ = __webpack_require__(/*! ./Security/RestrictionsState */ "../../dist/@frontegg/redux-store/auth/Security/RestrictionsState/actions.js");
18212
- /* harmony import */ var _Security_SecurityCenterState__WEBPACK_IMPORTED_MODULE_48__ = __webpack_require__(/*! ./Security/SecurityCenterState */ "../../dist/@frontegg/redux-store/auth/Security/SecurityCenterState/state.js");
18213
- /* harmony import */ var _Security_SecurityCenterState__WEBPACK_IMPORTED_MODULE_86__ = __webpack_require__(/*! ./Security/SecurityCenterState */ "../../dist/@frontegg/redux-store/auth/Security/SecurityCenterState/actions.js");
18214
- /* harmony import */ var _Security_SecurityPolicyState__WEBPACK_IMPORTED_MODULE_49__ = __webpack_require__(/*! ./Security/SecurityPolicyState */ "../../dist/@frontegg/redux-store/auth/Security/SecurityPolicyState/state.js");
18215
- /* harmony import */ var _Security_SecurityPolicyState__WEBPACK_IMPORTED_MODULE_87__ = __webpack_require__(/*! ./Security/SecurityPolicyState */ "../../dist/@frontegg/redux-store/auth/Security/SecurityPolicyState/actions.js");
18216
- /* harmony import */ var _Security_SessionsPolicyState__WEBPACK_IMPORTED_MODULE_50__ = __webpack_require__(/*! ./Security/SessionsPolicyState */ "../../dist/@frontegg/redux-store/auth/Security/SessionsPolicyState/state.js");
18217
- /* harmony import */ var _Security_SessionsPolicyState__WEBPACK_IMPORTED_MODULE_88__ = __webpack_require__(/*! ./Security/SessionsPolicyState */ "../../dist/@frontegg/redux-store/auth/Security/SessionsPolicyState/actions.js");
18218
- /* harmony import */ var _SessionsState__WEBPACK_IMPORTED_MODULE_51__ = __webpack_require__(/*! ./SessionsState */ "../../dist/@frontegg/redux-store/auth/SessionsState/state.js");
18219
- /* harmony import */ var _SessionsState__WEBPACK_IMPORTED_MODULE_89__ = __webpack_require__(/*! ./SessionsState */ "../../dist/@frontegg/redux-store/auth/SessionsState/actions.js");
18220
- /* harmony import */ var _SignUpState__WEBPACK_IMPORTED_MODULE_52__ = __webpack_require__(/*! ./SignUpState */ "../../dist/@frontegg/redux-store/auth/SignUpState/state.js");
18221
- /* harmony import */ var _SignUpState__WEBPACK_IMPORTED_MODULE_90__ = __webpack_require__(/*! ./SignUpState */ "../../dist/@frontegg/redux-store/auth/SignUpState/actions.js");
18222
- /* harmony import */ var _SmsState__WEBPACK_IMPORTED_MODULE_53__ = __webpack_require__(/*! ./SmsState */ "../../dist/@frontegg/redux-store/auth/SmsState/state.js");
18223
- /* harmony import */ var _SmsState__WEBPACK_IMPORTED_MODULE_91__ = __webpack_require__(/*! ./SmsState */ "../../dist/@frontegg/redux-store/auth/SmsState/actions.js");
18224
- /* harmony import */ var _SocialLoginState__WEBPACK_IMPORTED_MODULE_54__ = __webpack_require__(/*! ./SocialLoginState */ "../../dist/@frontegg/redux-store/auth/SocialLoginState/state.js");
18225
- /* harmony import */ var _SocialLoginState__WEBPACK_IMPORTED_MODULE_92__ = __webpack_require__(/*! ./SocialLoginState */ "../../dist/@frontegg/redux-store/auth/SocialLoginState/actions.js");
18226
- /* harmony import */ var _SSOState__WEBPACK_IMPORTED_MODULE_55__ = __webpack_require__(/*! ./SSOState */ "../../dist/@frontegg/redux-store/auth/SSOState/state.js");
18227
- /* harmony import */ var _SSOState__WEBPACK_IMPORTED_MODULE_93__ = __webpack_require__(/*! ./SSOState */ "../../dist/@frontegg/redux-store/auth/SSOState/actions/index.js");
18228
- /* harmony import */ var _StepUpState__WEBPACK_IMPORTED_MODULE_56__ = __webpack_require__(/*! ./StepUpState */ "../../dist/@frontegg/redux-store/auth/StepUpState/state.js");
18229
- /* harmony import */ var _StepUpState__WEBPACK_IMPORTED_MODULE_94__ = __webpack_require__(/*! ./StepUpState */ "../../dist/@frontegg/redux-store/auth/StepUpState/actions/index.js");
18230
- /* harmony import */ var _TeamState__WEBPACK_IMPORTED_MODULE_57__ = __webpack_require__(/*! ./TeamState */ "../../dist/@frontegg/redux-store/auth/TeamState/state.js");
18231
- /* harmony import */ var _TeamState__WEBPACK_IMPORTED_MODULE_95__ = __webpack_require__(/*! ./TeamState */ "../../dist/@frontegg/redux-store/auth/TeamState/actions/index.js");
18232
- /* harmony import */ var _TenantsState__WEBPACK_IMPORTED_MODULE_58__ = __webpack_require__(/*! ./TenantsState */ "../../dist/@frontegg/redux-store/auth/TenantsState/state.js");
18233
- /* harmony import */ var _TenantsState__WEBPACK_IMPORTED_MODULE_96__ = __webpack_require__(/*! ./TenantsState */ "../../dist/@frontegg/redux-store/auth/TenantsState/actions.js");
18234
- /* harmony import */ var _UsernamesState__WEBPACK_IMPORTED_MODULE_59__ = __webpack_require__(/*! ./UsernamesState */ "../../dist/@frontegg/redux-store/auth/UsernamesState/state.js");
18235
- /* harmony import */ var _UsernamesState__WEBPACK_IMPORTED_MODULE_97__ = __webpack_require__(/*! ./UsernamesState */ "../../dist/@frontegg/redux-store/auth/UsernamesState/actions.js");
18236
- /* harmony import */ var _UsersEmailsPolicyState__WEBPACK_IMPORTED_MODULE_60__ = __webpack_require__(/*! ./UsersEmailsPolicyState */ "../../dist/@frontegg/redux-store/auth/UsersEmailsPolicyState/state.js");
18237
- /* harmony import */ var _UsersEmailsPolicyState__WEBPACK_IMPORTED_MODULE_98__ = __webpack_require__(/*! ./UsersEmailsPolicyState */ "../../dist/@frontegg/redux-store/auth/UsersEmailsPolicyState/actions.js");
18238
- /* harmony import */ var _LoginState_consts__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ./LoginState/consts */ "../../dist/@frontegg/redux-store/auth/LoginState/consts.js");
18239
- /* harmony import */ var _helpers__WEBPACK_IMPORTED_MODULE_61__ = __webpack_require__(/*! ../helpers */ "../../dist/@frontegg/redux-store/helpers/common.js");
18240
- /* harmony import */ var _Entitlements__WEBPACK_IMPORTED_MODULE_70__ = __webpack_require__(/*! ./Entitlements */ "../../dist/@frontegg/redux-store/auth/Entitlements/actions.js");
18241
- /* harmony import */ var _toolkit_proxy__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ../toolkit/proxy */ "../../dist/@frontegg/redux-store/toolkit/proxy.js");
18381
+ /* harmony import */ var _ForgotPasswordState__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ./ForgotPasswordState */ "../../dist/@frontegg/redux-store/auth/ForgotPasswordState/state.js");
18382
+ /* harmony import */ var _ForgotPasswordState__WEBPACK_IMPORTED_MODULE_72__ = __webpack_require__(/*! ./ForgotPasswordState */ "../../dist/@frontegg/redux-store/auth/ForgotPasswordState/actions.js");
18383
+ /* harmony import */ var _PasswordRotationState__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ./PasswordRotationState */ "../../dist/@frontegg/redux-store/auth/PasswordRotationState/state.js");
18384
+ /* harmony import */ var _PasswordRotationState__WEBPACK_IMPORTED_MODULE_73__ = __webpack_require__(/*! ./PasswordRotationState */ "../../dist/@frontegg/redux-store/auth/PasswordRotationState/actions.js");
18385
+ /* harmony import */ var _GroupsState__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ./GroupsState */ "../../dist/@frontegg/redux-store/auth/GroupsState/state.js");
18386
+ /* harmony import */ var _GroupsState__WEBPACK_IMPORTED_MODULE_74__ = __webpack_require__(/*! ./GroupsState */ "../../dist/@frontegg/redux-store/auth/GroupsState/actions.js");
18387
+ /* harmony import */ var _GroupsDialogsState__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ./GroupsDialogsState */ "../../dist/@frontegg/redux-store/auth/GroupsDialogsState/state.js");
18388
+ /* harmony import */ var _GroupsDialogsState__WEBPACK_IMPORTED_MODULE_75__ = __webpack_require__(/*! ./GroupsDialogsState */ "../../dist/@frontegg/redux-store/auth/GroupsDialogsState/actions.js");
18389
+ /* harmony import */ var _ImpersonateState__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! ./ImpersonateState */ "../../dist/@frontegg/redux-store/auth/ImpersonateState/state.js");
18390
+ /* harmony import */ var _ImpersonateState__WEBPACK_IMPORTED_MODULE_76__ = __webpack_require__(/*! ./ImpersonateState */ "../../dist/@frontegg/redux-store/auth/ImpersonateState/actions.js");
18391
+ /* harmony import */ var _LoginState__WEBPACK_IMPORTED_MODULE_39__ = __webpack_require__(/*! ./LoginState */ "../../dist/@frontegg/redux-store/auth/LoginState/state.js");
18392
+ /* harmony import */ var _LoginState__WEBPACK_IMPORTED_MODULE_77__ = __webpack_require__(/*! ./LoginState */ "../../dist/@frontegg/redux-store/auth/LoginState/actions/index.js");
18393
+ /* harmony import */ var _MfaState__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__(/*! ./MfaState */ "../../dist/@frontegg/redux-store/auth/MfaState/state.js");
18394
+ /* harmony import */ var _MfaState__WEBPACK_IMPORTED_MODULE_78__ = __webpack_require__(/*! ./MfaState */ "../../dist/@frontegg/redux-store/auth/MfaState/actions.js");
18395
+ /* harmony import */ var _MSP__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(/*! ./MSP */ "../../dist/@frontegg/redux-store/auth/MSP/state.js");
18396
+ /* harmony import */ var _MSP__WEBPACK_IMPORTED_MODULE_42__ = __webpack_require__(/*! ./MSP */ "../../dist/@frontegg/redux-store/auth/MSP/dialogs/state.js");
18397
+ /* harmony import */ var _MSP__WEBPACK_IMPORTED_MODULE_79__ = __webpack_require__(/*! ./MSP */ "../../dist/@frontegg/redux-store/auth/MSP/actions.js");
18398
+ /* harmony import */ var _MSP__WEBPACK_IMPORTED_MODULE_80__ = __webpack_require__(/*! ./MSP */ "../../dist/@frontegg/redux-store/auth/MSP/dialogs/actions.js");
18399
+ /* harmony import */ var _PasskeysState__WEBPACK_IMPORTED_MODULE_43__ = __webpack_require__(/*! ./PasskeysState */ "../../dist/@frontegg/redux-store/auth/PasskeysState/state.js");
18400
+ /* harmony import */ var _PasskeysState__WEBPACK_IMPORTED_MODULE_81__ = __webpack_require__(/*! ./PasskeysState */ "../../dist/@frontegg/redux-store/auth/PasskeysState/actions.js");
18401
+ /* harmony import */ var _ProfileState__WEBPACK_IMPORTED_MODULE_44__ = __webpack_require__(/*! ./ProfileState */ "../../dist/@frontegg/redux-store/auth/ProfileState/state.js");
18402
+ /* harmony import */ var _ProfileState__WEBPACK_IMPORTED_MODULE_82__ = __webpack_require__(/*! ./ProfileState */ "../../dist/@frontegg/redux-store/auth/ProfileState/actions.js");
18403
+ /* harmony import */ var _ProvisioningState__WEBPACK_IMPORTED_MODULE_45__ = __webpack_require__(/*! ./ProvisioningState */ "../../dist/@frontegg/redux-store/auth/ProvisioningState/state.js");
18404
+ /* harmony import */ var _ProvisioningState__WEBPACK_IMPORTED_MODULE_83__ = __webpack_require__(/*! ./ProvisioningState */ "../../dist/@frontegg/redux-store/auth/ProvisioningState/actions.js");
18405
+ /* harmony import */ var _ResetPhoneNumberState__WEBPACK_IMPORTED_MODULE_46__ = __webpack_require__(/*! ./ResetPhoneNumberState */ "../../dist/@frontegg/redux-store/auth/ResetPhoneNumberState/state.js");
18406
+ /* harmony import */ var _ResetPhoneNumberState__WEBPACK_IMPORTED_MODULE_84__ = __webpack_require__(/*! ./ResetPhoneNumberState */ "../../dist/@frontegg/redux-store/auth/ResetPhoneNumberState/actions.js");
18407
+ /* harmony import */ var _RolesState__WEBPACK_IMPORTED_MODULE_47__ = __webpack_require__(/*! ./RolesState */ "../../dist/@frontegg/redux-store/auth/RolesState/state.js");
18408
+ /* harmony import */ var _RolesState__WEBPACK_IMPORTED_MODULE_85__ = __webpack_require__(/*! ./RolesState */ "../../dist/@frontegg/redux-store/auth/RolesState/actions.js");
18409
+ /* harmony import */ var _Security_RestrictionsState__WEBPACK_IMPORTED_MODULE_48__ = __webpack_require__(/*! ./Security/RestrictionsState */ "../../dist/@frontegg/redux-store/auth/Security/RestrictionsState/state.js");
18410
+ /* harmony import */ var _Security_RestrictionsState__WEBPACK_IMPORTED_MODULE_86__ = __webpack_require__(/*! ./Security/RestrictionsState */ "../../dist/@frontegg/redux-store/auth/Security/RestrictionsState/actions.js");
18411
+ /* harmony import */ var _Security_SecurityCenterState__WEBPACK_IMPORTED_MODULE_49__ = __webpack_require__(/*! ./Security/SecurityCenterState */ "../../dist/@frontegg/redux-store/auth/Security/SecurityCenterState/state.js");
18412
+ /* harmony import */ var _Security_SecurityCenterState__WEBPACK_IMPORTED_MODULE_87__ = __webpack_require__(/*! ./Security/SecurityCenterState */ "../../dist/@frontegg/redux-store/auth/Security/SecurityCenterState/actions.js");
18413
+ /* harmony import */ var _Security_SecurityPolicyState__WEBPACK_IMPORTED_MODULE_50__ = __webpack_require__(/*! ./Security/SecurityPolicyState */ "../../dist/@frontegg/redux-store/auth/Security/SecurityPolicyState/state.js");
18414
+ /* harmony import */ var _Security_SecurityPolicyState__WEBPACK_IMPORTED_MODULE_88__ = __webpack_require__(/*! ./Security/SecurityPolicyState */ "../../dist/@frontegg/redux-store/auth/Security/SecurityPolicyState/actions.js");
18415
+ /* harmony import */ var _Security_SessionsPolicyState__WEBPACK_IMPORTED_MODULE_51__ = __webpack_require__(/*! ./Security/SessionsPolicyState */ "../../dist/@frontegg/redux-store/auth/Security/SessionsPolicyState/state.js");
18416
+ /* harmony import */ var _Security_SessionsPolicyState__WEBPACK_IMPORTED_MODULE_89__ = __webpack_require__(/*! ./Security/SessionsPolicyState */ "../../dist/@frontegg/redux-store/auth/Security/SessionsPolicyState/actions.js");
18417
+ /* harmony import */ var _SessionsState__WEBPACK_IMPORTED_MODULE_52__ = __webpack_require__(/*! ./SessionsState */ "../../dist/@frontegg/redux-store/auth/SessionsState/state.js");
18418
+ /* harmony import */ var _SessionsState__WEBPACK_IMPORTED_MODULE_90__ = __webpack_require__(/*! ./SessionsState */ "../../dist/@frontegg/redux-store/auth/SessionsState/actions.js");
18419
+ /* harmony import */ var _SignUpState__WEBPACK_IMPORTED_MODULE_53__ = __webpack_require__(/*! ./SignUpState */ "../../dist/@frontegg/redux-store/auth/SignUpState/state.js");
18420
+ /* harmony import */ var _SignUpState__WEBPACK_IMPORTED_MODULE_91__ = __webpack_require__(/*! ./SignUpState */ "../../dist/@frontegg/redux-store/auth/SignUpState/actions.js");
18421
+ /* harmony import */ var _SmsState__WEBPACK_IMPORTED_MODULE_54__ = __webpack_require__(/*! ./SmsState */ "../../dist/@frontegg/redux-store/auth/SmsState/state.js");
18422
+ /* harmony import */ var _SmsState__WEBPACK_IMPORTED_MODULE_92__ = __webpack_require__(/*! ./SmsState */ "../../dist/@frontegg/redux-store/auth/SmsState/actions.js");
18423
+ /* harmony import */ var _SocialLoginState__WEBPACK_IMPORTED_MODULE_55__ = __webpack_require__(/*! ./SocialLoginState */ "../../dist/@frontegg/redux-store/auth/SocialLoginState/state.js");
18424
+ /* harmony import */ var _SocialLoginState__WEBPACK_IMPORTED_MODULE_93__ = __webpack_require__(/*! ./SocialLoginState */ "../../dist/@frontegg/redux-store/auth/SocialLoginState/actions.js");
18425
+ /* harmony import */ var _SSOState__WEBPACK_IMPORTED_MODULE_56__ = __webpack_require__(/*! ./SSOState */ "../../dist/@frontegg/redux-store/auth/SSOState/state.js");
18426
+ /* harmony import */ var _SSOState__WEBPACK_IMPORTED_MODULE_94__ = __webpack_require__(/*! ./SSOState */ "../../dist/@frontegg/redux-store/auth/SSOState/actions/index.js");
18427
+ /* harmony import */ var _StepUpState__WEBPACK_IMPORTED_MODULE_57__ = __webpack_require__(/*! ./StepUpState */ "../../dist/@frontegg/redux-store/auth/StepUpState/state.js");
18428
+ /* harmony import */ var _StepUpState__WEBPACK_IMPORTED_MODULE_95__ = __webpack_require__(/*! ./StepUpState */ "../../dist/@frontegg/redux-store/auth/StepUpState/actions/index.js");
18429
+ /* harmony import */ var _TeamState__WEBPACK_IMPORTED_MODULE_58__ = __webpack_require__(/*! ./TeamState */ "../../dist/@frontegg/redux-store/auth/TeamState/state.js");
18430
+ /* harmony import */ var _TeamState__WEBPACK_IMPORTED_MODULE_96__ = __webpack_require__(/*! ./TeamState */ "../../dist/@frontegg/redux-store/auth/TeamState/actions/index.js");
18431
+ /* harmony import */ var _TenantsState__WEBPACK_IMPORTED_MODULE_59__ = __webpack_require__(/*! ./TenantsState */ "../../dist/@frontegg/redux-store/auth/TenantsState/state.js");
18432
+ /* harmony import */ var _TenantsState__WEBPACK_IMPORTED_MODULE_97__ = __webpack_require__(/*! ./TenantsState */ "../../dist/@frontegg/redux-store/auth/TenantsState/actions.js");
18433
+ /* harmony import */ var _UsernamesState__WEBPACK_IMPORTED_MODULE_60__ = __webpack_require__(/*! ./UsernamesState */ "../../dist/@frontegg/redux-store/auth/UsernamesState/state.js");
18434
+ /* harmony import */ var _UsernamesState__WEBPACK_IMPORTED_MODULE_98__ = __webpack_require__(/*! ./UsernamesState */ "../../dist/@frontegg/redux-store/auth/UsernamesState/actions.js");
18435
+ /* harmony import */ var _UsersEmailsPolicyState__WEBPACK_IMPORTED_MODULE_61__ = __webpack_require__(/*! ./UsersEmailsPolicyState */ "../../dist/@frontegg/redux-store/auth/UsersEmailsPolicyState/state.js");
18436
+ /* harmony import */ var _UsersEmailsPolicyState__WEBPACK_IMPORTED_MODULE_99__ = __webpack_require__(/*! ./UsersEmailsPolicyState */ "../../dist/@frontegg/redux-store/auth/UsersEmailsPolicyState/actions.js");
18437
+ /* harmony import */ var _LoginState_consts__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ./LoginState/consts */ "../../dist/@frontegg/redux-store/auth/LoginState/consts.js");
18438
+ /* harmony import */ var _helpers__WEBPACK_IMPORTED_MODULE_62__ = __webpack_require__(/*! ../helpers */ "../../dist/@frontegg/redux-store/helpers/common.js");
18439
+ /* harmony import */ var _Entitlements__WEBPACK_IMPORTED_MODULE_71__ = __webpack_require__(/*! ./Entitlements */ "../../dist/@frontegg/redux-store/auth/Entitlements/actions.js");
18440
+ /* harmony import */ var _toolkit_proxy__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ../toolkit/proxy */ "../../dist/@frontegg/redux-store/toolkit/proxy.js");
18242
18441
  /* harmony import */ var _AcceptInvitationState_interfaces__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./AcceptInvitationState/interfaces */ "../../dist/@frontegg/redux-store/auth/AcceptInvitationState/interfaces.js");
18243
18442
  /* harmony import */ var _ActivateAccountState_interfaces__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./ActivateAccountState/interfaces */ "../../dist/@frontegg/redux-store/auth/ActivateAccountState/interfaces.js");
18244
18443
  /* harmony import */ var _ApprovalFlowState_interfaces__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./ApprovalFlowState/interfaces */ "../../dist/@frontegg/redux-store/auth/ApprovalFlowState/interfaces.js");
@@ -18259,6 +18458,7 @@ __webpack_require__.r(__webpack_exports__);
18259
18458
  /* harmony import */ var _TeamState_interfaces__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ./TeamState/interfaces */ "../../dist/@frontegg/redux-store/auth/TeamState/interfaces.js");
18260
18459
  /* harmony import */ var _UsersEmailsPolicyState_interfaces__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ./UsersEmailsPolicyState/interfaces */ "../../dist/@frontegg/redux-store/auth/UsersEmailsPolicyState/interfaces.js");
18261
18460
  /* harmony import */ var _interfaces__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ./interfaces */ "../../dist/@frontegg/redux-store/auth/interfaces.js");
18461
+ /* harmony import */ var _LoginState_oauthStorage__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ./LoginState/oauthStorage */ "../../dist/@frontegg/redux-store/auth/LoginState/oauthStorage.js");
18262
18462
 
18263
18463
 
18264
18464
  const _excluded = ["routes"],
@@ -18339,6 +18539,7 @@ const _excluded = ["routes"],
18339
18539
 
18340
18540
 
18341
18541
 
18542
+
18342
18543
 
18343
18544
 
18344
18545
  const createAuthState = _overrideState => {
@@ -18347,8 +18548,8 @@ const createAuthState = _overrideState => {
18347
18548
  routes
18348
18549
  } = _ref,
18349
18550
  overrideState = (0,_babel_runtime_helpers_esm_objectWithoutPropertiesLoose__WEBPACK_IMPORTED_MODULE_1__["default"])(_ref, _excluded);
18350
- return (0,_toolkit_proxy__WEBPACK_IMPORTED_MODULE_23__.createProxy)((0,_babel_runtime_helpers_esm_extends__WEBPACK_IMPORTED_MODULE_0__["default"])({
18351
- routes: (0,_babel_runtime_helpers_esm_extends__WEBPACK_IMPORTED_MODULE_0__["default"])({}, _LoginState_consts__WEBPACK_IMPORTED_MODULE_24__.defaultFronteggRoutes, routes),
18551
+ return (0,_toolkit_proxy__WEBPACK_IMPORTED_MODULE_24__.createProxy)((0,_babel_runtime_helpers_esm_extends__WEBPACK_IMPORTED_MODULE_0__["default"])({
18552
+ routes: (0,_babel_runtime_helpers_esm_extends__WEBPACK_IMPORTED_MODULE_0__["default"])({}, _LoginState_consts__WEBPACK_IMPORTED_MODULE_25__.defaultFronteggRoutes, routes),
18352
18553
  onRedirectTo: () => void 0,
18353
18554
  isAuthenticated: false,
18354
18555
  isLoading: true,
@@ -18362,49 +18563,49 @@ const createAuthState = _overrideState => {
18362
18563
  }
18363
18564
  }, overrideState, {
18364
18565
  // nested states
18365
- acceptInvitationState: (0,_AcceptInvitationState__WEBPACK_IMPORTED_MODULE_25__["default"])(overrideState == null ? void 0 : overrideState.acceptInvitationState),
18366
- accountSettingsState: (0,_AccountSettingsState__WEBPACK_IMPORTED_MODULE_26__["default"])(overrideState == null ? void 0 : overrideState.accountSettingsState),
18367
- activateAccountState: (0,_ActivateAccountState__WEBPACK_IMPORTED_MODULE_27__["default"])(overrideState == null ? void 0 : overrideState.activateAccountState),
18368
- unlockAccountState: (0,_UnlockAccountState__WEBPACK_IMPORTED_MODULE_28__["default"])(overrideState == null ? void 0 : overrideState.unlockAccountState),
18369
- approvalFlowState: (0,_ApprovalFlowState__WEBPACK_IMPORTED_MODULE_29__["default"])(overrideState == null ? void 0 : overrideState.approvalFlowState),
18370
- apiTokensState: (0,_ApiTokensState__WEBPACK_IMPORTED_MODULE_30__["default"])(overrideState == null ? void 0 : overrideState.apiTokensState),
18371
- applicationsState: (0,_ApplicationsState__WEBPACK_IMPORTED_MODULE_31__["default"])(overrideState == null ? void 0 : overrideState.applicationsState),
18372
- customLoginState: (0,_CustomLoginState__WEBPACK_IMPORTED_MODULE_32__["default"])(overrideState == null ? void 0 : overrideState.customLoginState),
18373
- forgotPasswordState: (0,_ForgotPasswordState__WEBPACK_IMPORTED_MODULE_33__["default"])(overrideState == null ? void 0 : overrideState.forgotPasswordState),
18374
- passwordRotationState: (0,_PasswordRotationState__WEBPACK_IMPORTED_MODULE_34__["default"])(overrideState == null ? void 0 : overrideState.passwordRotationState),
18375
- groupsState: (0,_GroupsState__WEBPACK_IMPORTED_MODULE_35__["default"])(overrideState == null ? void 0 : overrideState.groupsState),
18376
- groupsDialogsState: (0,_GroupsDialogsState__WEBPACK_IMPORTED_MODULE_36__["default"])(overrideState == null ? void 0 : overrideState.groupsDialogsState),
18377
- impersonateState: (0,_ImpersonateState__WEBPACK_IMPORTED_MODULE_37__["default"])(overrideState == null ? void 0 : overrideState.impersonateState),
18378
- loginState: (0,_LoginState__WEBPACK_IMPORTED_MODULE_38__["default"])(overrideState == null ? void 0 : overrideState.loginState),
18379
- mfaState: (0,_MfaState__WEBPACK_IMPORTED_MODULE_39__["default"])(overrideState == null ? void 0 : overrideState.mfaState),
18380
- allAccountsState: (0,_MSP__WEBPACK_IMPORTED_MODULE_40__["default"])(overrideState == null ? void 0 : overrideState.allAccountsState),
18381
- allAccountsDialogsState: (0,_MSP__WEBPACK_IMPORTED_MODULE_41__["default"])(overrideState == null ? void 0 : overrideState.allAccountsDialogsState),
18382
- passkeysState: (0,_PasskeysState__WEBPACK_IMPORTED_MODULE_42__["default"])(overrideState == null ? void 0 : overrideState.passkeysState),
18383
- profileState: (0,_ProfileState__WEBPACK_IMPORTED_MODULE_43__["default"])(overrideState == null ? void 0 : overrideState.profileState),
18384
- provisioningState: (0,_ProvisioningState__WEBPACK_IMPORTED_MODULE_44__["default"])(overrideState == null ? void 0 : overrideState.provisioningState),
18385
- resetPhoneNumberState: (0,_ResetPhoneNumberState__WEBPACK_IMPORTED_MODULE_45__["default"])(overrideState == null ? void 0 : overrideState.resetPhoneNumberState),
18386
- rolesState: (0,_RolesState__WEBPACK_IMPORTED_MODULE_46__["default"])(overrideState == null ? void 0 : overrideState.rolesState),
18387
- restrictionsState: (0,_Security_RestrictionsState__WEBPACK_IMPORTED_MODULE_47__["default"])(overrideState == null ? void 0 : overrideState.restrictionsState),
18388
- securityCenterState: (0,_Security_SecurityCenterState__WEBPACK_IMPORTED_MODULE_48__["default"])(overrideState == null ? void 0 : overrideState.securityCenterState),
18389
- securityPolicyState: (0,_Security_SecurityPolicyState__WEBPACK_IMPORTED_MODULE_49__["default"])(overrideState == null ? void 0 : overrideState.securityPolicyState),
18390
- sessionsPolicyState: (0,_Security_SessionsPolicyState__WEBPACK_IMPORTED_MODULE_50__["default"])(overrideState == null ? void 0 : overrideState.sessionsPolicyState),
18391
- sessionsState: (0,_SessionsState__WEBPACK_IMPORTED_MODULE_51__["default"])(overrideState == null ? void 0 : overrideState.sessionsState),
18392
- signUpState: (0,_SignUpState__WEBPACK_IMPORTED_MODULE_52__["default"])(overrideState == null ? void 0 : overrideState.signUpState),
18393
- smsState: (0,_SmsState__WEBPACK_IMPORTED_MODULE_53__["default"])(overrideState == null ? void 0 : overrideState.smsState),
18394
- socialLoginState: (0,_SocialLoginState__WEBPACK_IMPORTED_MODULE_54__["default"])(overrideState == null ? void 0 : overrideState.socialLoginState),
18395
- ssoState: (0,_SSOState__WEBPACK_IMPORTED_MODULE_55__["default"])(overrideState == null ? void 0 : overrideState.ssoState),
18396
- stepUpState: (0,_StepUpState__WEBPACK_IMPORTED_MODULE_56__["default"])(overrideState == null ? void 0 : overrideState.stepUpState),
18397
- teamState: (0,_TeamState__WEBPACK_IMPORTED_MODULE_57__["default"])(overrideState == null ? void 0 : overrideState.teamState),
18398
- tenantsState: (0,_TenantsState__WEBPACK_IMPORTED_MODULE_58__["default"])(overrideState == null ? void 0 : overrideState.tenantsState),
18399
- usernamesState: (0,_UsernamesState__WEBPACK_IMPORTED_MODULE_59__["default"])(overrideState == null ? void 0 : overrideState.usernamesState),
18400
- userEmailPolicyState: (0,_UsersEmailsPolicyState__WEBPACK_IMPORTED_MODULE_60__["default"])(overrideState == null ? void 0 : overrideState.userEmailPolicyState)
18566
+ acceptInvitationState: (0,_AcceptInvitationState__WEBPACK_IMPORTED_MODULE_26__["default"])(overrideState == null ? void 0 : overrideState.acceptInvitationState),
18567
+ accountSettingsState: (0,_AccountSettingsState__WEBPACK_IMPORTED_MODULE_27__["default"])(overrideState == null ? void 0 : overrideState.accountSettingsState),
18568
+ activateAccountState: (0,_ActivateAccountState__WEBPACK_IMPORTED_MODULE_28__["default"])(overrideState == null ? void 0 : overrideState.activateAccountState),
18569
+ unlockAccountState: (0,_UnlockAccountState__WEBPACK_IMPORTED_MODULE_29__["default"])(overrideState == null ? void 0 : overrideState.unlockAccountState),
18570
+ approvalFlowState: (0,_ApprovalFlowState__WEBPACK_IMPORTED_MODULE_30__["default"])(overrideState == null ? void 0 : overrideState.approvalFlowState),
18571
+ apiTokensState: (0,_ApiTokensState__WEBPACK_IMPORTED_MODULE_31__["default"])(overrideState == null ? void 0 : overrideState.apiTokensState),
18572
+ applicationsState: (0,_ApplicationsState__WEBPACK_IMPORTED_MODULE_32__["default"])(overrideState == null ? void 0 : overrideState.applicationsState),
18573
+ customLoginState: (0,_CustomLoginState__WEBPACK_IMPORTED_MODULE_33__["default"])(overrideState == null ? void 0 : overrideState.customLoginState),
18574
+ forgotPasswordState: (0,_ForgotPasswordState__WEBPACK_IMPORTED_MODULE_34__["default"])(overrideState == null ? void 0 : overrideState.forgotPasswordState),
18575
+ passwordRotationState: (0,_PasswordRotationState__WEBPACK_IMPORTED_MODULE_35__["default"])(overrideState == null ? void 0 : overrideState.passwordRotationState),
18576
+ groupsState: (0,_GroupsState__WEBPACK_IMPORTED_MODULE_36__["default"])(overrideState == null ? void 0 : overrideState.groupsState),
18577
+ groupsDialogsState: (0,_GroupsDialogsState__WEBPACK_IMPORTED_MODULE_37__["default"])(overrideState == null ? void 0 : overrideState.groupsDialogsState),
18578
+ impersonateState: (0,_ImpersonateState__WEBPACK_IMPORTED_MODULE_38__["default"])(overrideState == null ? void 0 : overrideState.impersonateState),
18579
+ loginState: (0,_LoginState__WEBPACK_IMPORTED_MODULE_39__["default"])(overrideState == null ? void 0 : overrideState.loginState),
18580
+ mfaState: (0,_MfaState__WEBPACK_IMPORTED_MODULE_40__["default"])(overrideState == null ? void 0 : overrideState.mfaState),
18581
+ allAccountsState: (0,_MSP__WEBPACK_IMPORTED_MODULE_41__["default"])(overrideState == null ? void 0 : overrideState.allAccountsState),
18582
+ allAccountsDialogsState: (0,_MSP__WEBPACK_IMPORTED_MODULE_42__["default"])(overrideState == null ? void 0 : overrideState.allAccountsDialogsState),
18583
+ passkeysState: (0,_PasskeysState__WEBPACK_IMPORTED_MODULE_43__["default"])(overrideState == null ? void 0 : overrideState.passkeysState),
18584
+ profileState: (0,_ProfileState__WEBPACK_IMPORTED_MODULE_44__["default"])(overrideState == null ? void 0 : overrideState.profileState),
18585
+ provisioningState: (0,_ProvisioningState__WEBPACK_IMPORTED_MODULE_45__["default"])(overrideState == null ? void 0 : overrideState.provisioningState),
18586
+ resetPhoneNumberState: (0,_ResetPhoneNumberState__WEBPACK_IMPORTED_MODULE_46__["default"])(overrideState == null ? void 0 : overrideState.resetPhoneNumberState),
18587
+ rolesState: (0,_RolesState__WEBPACK_IMPORTED_MODULE_47__["default"])(overrideState == null ? void 0 : overrideState.rolesState),
18588
+ restrictionsState: (0,_Security_RestrictionsState__WEBPACK_IMPORTED_MODULE_48__["default"])(overrideState == null ? void 0 : overrideState.restrictionsState),
18589
+ securityCenterState: (0,_Security_SecurityCenterState__WEBPACK_IMPORTED_MODULE_49__["default"])(overrideState == null ? void 0 : overrideState.securityCenterState),
18590
+ securityPolicyState: (0,_Security_SecurityPolicyState__WEBPACK_IMPORTED_MODULE_50__["default"])(overrideState == null ? void 0 : overrideState.securityPolicyState),
18591
+ sessionsPolicyState: (0,_Security_SessionsPolicyState__WEBPACK_IMPORTED_MODULE_51__["default"])(overrideState == null ? void 0 : overrideState.sessionsPolicyState),
18592
+ sessionsState: (0,_SessionsState__WEBPACK_IMPORTED_MODULE_52__["default"])(overrideState == null ? void 0 : overrideState.sessionsState),
18593
+ signUpState: (0,_SignUpState__WEBPACK_IMPORTED_MODULE_53__["default"])(overrideState == null ? void 0 : overrideState.signUpState),
18594
+ smsState: (0,_SmsState__WEBPACK_IMPORTED_MODULE_54__["default"])(overrideState == null ? void 0 : overrideState.smsState),
18595
+ socialLoginState: (0,_SocialLoginState__WEBPACK_IMPORTED_MODULE_55__["default"])(overrideState == null ? void 0 : overrideState.socialLoginState),
18596
+ ssoState: (0,_SSOState__WEBPACK_IMPORTED_MODULE_56__["default"])(overrideState == null ? void 0 : overrideState.ssoState),
18597
+ stepUpState: (0,_StepUpState__WEBPACK_IMPORTED_MODULE_57__["default"])(overrideState == null ? void 0 : overrideState.stepUpState),
18598
+ teamState: (0,_TeamState__WEBPACK_IMPORTED_MODULE_58__["default"])(overrideState == null ? void 0 : overrideState.teamState),
18599
+ tenantsState: (0,_TenantsState__WEBPACK_IMPORTED_MODULE_59__["default"])(overrideState == null ? void 0 : overrideState.tenantsState),
18600
+ usernamesState: (0,_UsernamesState__WEBPACK_IMPORTED_MODULE_60__["default"])(overrideState == null ? void 0 : overrideState.usernamesState),
18601
+ userEmailPolicyState: (0,_UsersEmailsPolicyState__WEBPACK_IMPORTED_MODULE_61__["default"])(overrideState == null ? void 0 : overrideState.userEmailPolicyState)
18401
18602
  }));
18402
18603
  };
18403
18604
  const buildAuthActions = (store, api, actions, snapshotAuthState) => {
18404
18605
  const setAuthState = state => {
18405
18606
  Object.keys(state).forEach(key => {
18406
18607
  const authKey = key;
18407
- if ((0,_helpers__WEBPACK_IMPORTED_MODULE_61__.isProxy)(store.auth[authKey])) {
18608
+ if ((0,_helpers__WEBPACK_IMPORTED_MODULE_62__.isProxy)(store.auth[authKey])) {
18408
18609
  Object.assign(store.auth[authKey], state[authKey]);
18409
18610
  } else {
18410
18611
  store.auth[authKey] = state[authKey];
@@ -18412,7 +18613,7 @@ const buildAuthActions = (store, api, actions, snapshotAuthState) => {
18412
18613
  });
18413
18614
  };
18414
18615
  const resetAuthState = (state = {}) => {
18415
- (0,_helpers__WEBPACK_IMPORTED_MODULE_61__.deepResetState)(store, ['auth'], (0,_babel_runtime_helpers_esm_extends__WEBPACK_IMPORTED_MODULE_0__["default"])({}, snapshotAuthState, state));
18616
+ (0,_helpers__WEBPACK_IMPORTED_MODULE_62__.deepResetState)(store, ['auth'], (0,_babel_runtime_helpers_esm_extends__WEBPACK_IMPORTED_MODULE_0__["default"])({}, snapshotAuthState, state));
18416
18617
  };
18417
18618
  const setUser = user => {
18418
18619
  setAuthState({
@@ -18430,43 +18631,43 @@ const buildAuthActions = (store, api, actions, snapshotAuthState) => {
18430
18631
  })
18431
18632
  });
18432
18633
  };
18433
- const acceptInvitationActions = (0,_AcceptInvitationState__WEBPACK_IMPORTED_MODULE_62__["default"])(store, api, actions);
18434
- const accountSettingsActions = (0,_AccountSettingsState__WEBPACK_IMPORTED_MODULE_63__["default"])(store, api, actions);
18435
- const activateAccountActions = (0,_ActivateAccountState__WEBPACK_IMPORTED_MODULE_64__["default"])(store, api, actions);
18436
- const unlockAccountActions = (0,_UnlockAccountState__WEBPACK_IMPORTED_MODULE_65__["default"])(store, api, actions);
18437
- const approvalFlowActions = (0,_ApprovalFlowState__WEBPACK_IMPORTED_MODULE_66__["default"])(store, api, actions);
18438
- const apiTokensActions = (0,_ApiTokensState__WEBPACK_IMPORTED_MODULE_67__["default"])(store, api, actions);
18439
- const applicationsActions = (0,_ApplicationsState__WEBPACK_IMPORTED_MODULE_68__["default"])(store, api, actions);
18440
- const customLoginActions = (0,_CustomLoginState__WEBPACK_IMPORTED_MODULE_69__["default"])(store, api, actions);
18441
- const entitlementsActions = (0,_Entitlements__WEBPACK_IMPORTED_MODULE_70__["default"])(store, api, actions);
18442
- const forgotPasswordActions = (0,_ForgotPasswordState__WEBPACK_IMPORTED_MODULE_71__["default"])(store, api, actions);
18443
- const passwordRotationActions = (0,_PasswordRotationState__WEBPACK_IMPORTED_MODULE_72__["default"])(store, api, actions);
18444
- const groupsActions = (0,_GroupsState__WEBPACK_IMPORTED_MODULE_73__["default"])(store, api, actions);
18445
- const groupsDialogsActions = (0,_GroupsDialogsState__WEBPACK_IMPORTED_MODULE_74__["default"])(store, api, actions);
18446
- const impersonateActions = (0,_ImpersonateState__WEBPACK_IMPORTED_MODULE_75__["default"])(store, api, actions);
18447
- const loginActions = (0,_LoginState__WEBPACK_IMPORTED_MODULE_76__["default"])(store, api, actions);
18448
- const mfaActions = (0,_MfaState__WEBPACK_IMPORTED_MODULE_77__["default"])(store, api, actions);
18449
- const allAccountsActions = (0,_MSP__WEBPACK_IMPORTED_MODULE_78__["default"])(store, api, actions);
18450
- const allAccountsDialogActions = (0,_MSP__WEBPACK_IMPORTED_MODULE_79__["default"])(store, api, actions);
18451
- const passkeysActions = (0,_PasskeysState__WEBPACK_IMPORTED_MODULE_80__["default"])(store, api, actions);
18452
- const profileActions = (0,_ProfileState__WEBPACK_IMPORTED_MODULE_81__["default"])(store, api, actions);
18453
- const provisioningActions = (0,_ProvisioningState__WEBPACK_IMPORTED_MODULE_82__["default"])(store, api, actions);
18454
- const resetPhoneNumberActions = (0,_ResetPhoneNumberState__WEBPACK_IMPORTED_MODULE_83__["default"])(store, api, actions);
18455
- const rolesActions = (0,_RolesState__WEBPACK_IMPORTED_MODULE_84__["default"])(store, api, actions);
18456
- const restrictionsActions = (0,_Security_RestrictionsState__WEBPACK_IMPORTED_MODULE_85__["default"])(store, api, actions);
18457
- const securityCenterActions = (0,_Security_SecurityCenterState__WEBPACK_IMPORTED_MODULE_86__["default"])(store, api, actions);
18458
- const securityPolicyActions = (0,_Security_SecurityPolicyState__WEBPACK_IMPORTED_MODULE_87__["default"])(store, api, actions);
18459
- const sessionsPolicyActions = (0,_Security_SessionsPolicyState__WEBPACK_IMPORTED_MODULE_88__["default"])(store, api, actions);
18460
- const sessionsActions = (0,_SessionsState__WEBPACK_IMPORTED_MODULE_89__["default"])(store, api, actions);
18461
- const signUpActions = (0,_SignUpState__WEBPACK_IMPORTED_MODULE_90__["default"])(store, api, actions);
18462
- const smsActions = (0,_SmsState__WEBPACK_IMPORTED_MODULE_91__["default"])(store, api, actions);
18463
- const socialLoginActions = (0,_SocialLoginState__WEBPACK_IMPORTED_MODULE_92__["default"])(store, api, actions);
18464
- const ssoActions = (0,_SSOState__WEBPACK_IMPORTED_MODULE_93__["default"])(store, api, actions);
18465
- const stepUpActions = (0,_StepUpState__WEBPACK_IMPORTED_MODULE_94__["default"])(store, api, actions);
18466
- const teamActions = (0,_TeamState__WEBPACK_IMPORTED_MODULE_95__["default"])(store, api, actions);
18467
- const tenantsActions = (0,_TenantsState__WEBPACK_IMPORTED_MODULE_96__["default"])(store, api, actions);
18468
- const usernamesActions = (0,_UsernamesState__WEBPACK_IMPORTED_MODULE_97__["default"])(store, api, actions);
18469
- const usersEmailsPolicyActions = (0,_UsersEmailsPolicyState__WEBPACK_IMPORTED_MODULE_98__["default"])(store, api, actions);
18634
+ const acceptInvitationActions = (0,_AcceptInvitationState__WEBPACK_IMPORTED_MODULE_63__["default"])(store, api, actions);
18635
+ const accountSettingsActions = (0,_AccountSettingsState__WEBPACK_IMPORTED_MODULE_64__["default"])(store, api, actions);
18636
+ const activateAccountActions = (0,_ActivateAccountState__WEBPACK_IMPORTED_MODULE_65__["default"])(store, api, actions);
18637
+ const unlockAccountActions = (0,_UnlockAccountState__WEBPACK_IMPORTED_MODULE_66__["default"])(store, api, actions);
18638
+ const approvalFlowActions = (0,_ApprovalFlowState__WEBPACK_IMPORTED_MODULE_67__["default"])(store, api, actions);
18639
+ const apiTokensActions = (0,_ApiTokensState__WEBPACK_IMPORTED_MODULE_68__["default"])(store, api, actions);
18640
+ const applicationsActions = (0,_ApplicationsState__WEBPACK_IMPORTED_MODULE_69__["default"])(store, api, actions);
18641
+ const customLoginActions = (0,_CustomLoginState__WEBPACK_IMPORTED_MODULE_70__["default"])(store, api, actions);
18642
+ const entitlementsActions = (0,_Entitlements__WEBPACK_IMPORTED_MODULE_71__["default"])(store, api, actions);
18643
+ const forgotPasswordActions = (0,_ForgotPasswordState__WEBPACK_IMPORTED_MODULE_72__["default"])(store, api, actions);
18644
+ const passwordRotationActions = (0,_PasswordRotationState__WEBPACK_IMPORTED_MODULE_73__["default"])(store, api, actions);
18645
+ const groupsActions = (0,_GroupsState__WEBPACK_IMPORTED_MODULE_74__["default"])(store, api, actions);
18646
+ const groupsDialogsActions = (0,_GroupsDialogsState__WEBPACK_IMPORTED_MODULE_75__["default"])(store, api, actions);
18647
+ const impersonateActions = (0,_ImpersonateState__WEBPACK_IMPORTED_MODULE_76__["default"])(store, api, actions);
18648
+ const loginActions = (0,_LoginState__WEBPACK_IMPORTED_MODULE_77__["default"])(store, api, actions);
18649
+ const mfaActions = (0,_MfaState__WEBPACK_IMPORTED_MODULE_78__["default"])(store, api, actions);
18650
+ const allAccountsActions = (0,_MSP__WEBPACK_IMPORTED_MODULE_79__["default"])(store, api, actions);
18651
+ const allAccountsDialogActions = (0,_MSP__WEBPACK_IMPORTED_MODULE_80__["default"])(store, api, actions);
18652
+ const passkeysActions = (0,_PasskeysState__WEBPACK_IMPORTED_MODULE_81__["default"])(store, api, actions);
18653
+ const profileActions = (0,_ProfileState__WEBPACK_IMPORTED_MODULE_82__["default"])(store, api, actions);
18654
+ const provisioningActions = (0,_ProvisioningState__WEBPACK_IMPORTED_MODULE_83__["default"])(store, api, actions);
18655
+ const resetPhoneNumberActions = (0,_ResetPhoneNumberState__WEBPACK_IMPORTED_MODULE_84__["default"])(store, api, actions);
18656
+ const rolesActions = (0,_RolesState__WEBPACK_IMPORTED_MODULE_85__["default"])(store, api, actions);
18657
+ const restrictionsActions = (0,_Security_RestrictionsState__WEBPACK_IMPORTED_MODULE_86__["default"])(store, api, actions);
18658
+ const securityCenterActions = (0,_Security_SecurityCenterState__WEBPACK_IMPORTED_MODULE_87__["default"])(store, api, actions);
18659
+ const securityPolicyActions = (0,_Security_SecurityPolicyState__WEBPACK_IMPORTED_MODULE_88__["default"])(store, api, actions);
18660
+ const sessionsPolicyActions = (0,_Security_SessionsPolicyState__WEBPACK_IMPORTED_MODULE_89__["default"])(store, api, actions);
18661
+ const sessionsActions = (0,_SessionsState__WEBPACK_IMPORTED_MODULE_90__["default"])(store, api, actions);
18662
+ const signUpActions = (0,_SignUpState__WEBPACK_IMPORTED_MODULE_91__["default"])(store, api, actions);
18663
+ const smsActions = (0,_SmsState__WEBPACK_IMPORTED_MODULE_92__["default"])(store, api, actions);
18664
+ const socialLoginActions = (0,_SocialLoginState__WEBPACK_IMPORTED_MODULE_93__["default"])(store, api, actions);
18665
+ const ssoActions = (0,_SSOState__WEBPACK_IMPORTED_MODULE_94__["default"])(store, api, actions);
18666
+ const stepUpActions = (0,_StepUpState__WEBPACK_IMPORTED_MODULE_95__["default"])(store, api, actions);
18667
+ const teamActions = (0,_TeamState__WEBPACK_IMPORTED_MODULE_96__["default"])(store, api, actions);
18668
+ const tenantsActions = (0,_TenantsState__WEBPACK_IMPORTED_MODULE_97__["default"])(store, api, actions);
18669
+ const usernamesActions = (0,_UsernamesState__WEBPACK_IMPORTED_MODULE_98__["default"])(store, api, actions);
18670
+ const usersEmailsPolicyActions = (0,_UsersEmailsPolicyState__WEBPACK_IMPORTED_MODULE_99__["default"])(store, api, actions);
18470
18671
  const stateActions = {
18471
18672
  acceptInvitationActions,
18472
18673
  accountSettingsActions,
@@ -20195,12 +20396,27 @@ __webpack_require__.r(__webpack_exports__);
20195
20396
  /* harmony export */ EditEmailView: () => (/* reexport safe */ _toolkit__WEBPACK_IMPORTED_MODULE_0__.EditEmailView),
20196
20397
  /* harmony export */ FORGOT_PASSWORD_ERROR_KEYS: () => (/* reexport safe */ _toolkit__WEBPACK_IMPORTED_MODULE_0__.FORGOT_PASSWORD_ERROR_KEYS),
20197
20398
  /* harmony export */ FRONTEGG_AFTER_AUTH_REDIRECT_URL: () => (/* reexport safe */ _constants__WEBPACK_IMPORTED_MODULE_1__.FRONTEGG_AFTER_AUTH_REDIRECT_URL),
20399
+ /* harmony export */ FRONTEGG_AUTHENTICATION_FLOWS_REDIRECT_AFTER_LOGIN: () => (/* reexport safe */ _toolkit__WEBPACK_IMPORTED_MODULE_0__.FRONTEGG_AUTHENTICATION_FLOWS_REDIRECT_AFTER_LOGIN),
20400
+ /* harmony export */ FRONTEGG_OAUTH_APP_ID: () => (/* reexport safe */ _toolkit__WEBPACK_IMPORTED_MODULE_0__.FRONTEGG_OAUTH_APP_ID),
20401
+ /* harmony export */ FRONTEGG_OAUTH_INVITATION_TOKEN_KEY: () => (/* reexport safe */ _toolkit__WEBPACK_IMPORTED_MODULE_0__.FRONTEGG_OAUTH_INVITATION_TOKEN_KEY),
20402
+ /* harmony export */ FRONTEGG_OAUTH_LOGIN_DIRECT_ACTION: () => (/* reexport safe */ _toolkit__WEBPACK_IMPORTED_MODULE_0__.FRONTEGG_OAUTH_LOGIN_DIRECT_ACTION),
20403
+ /* harmony export */ FRONTEGG_OAUTH_LOGIN_HINT: () => (/* reexport safe */ _toolkit__WEBPACK_IMPORTED_MODULE_0__.FRONTEGG_OAUTH_LOGIN_HINT),
20404
+ /* harmony export */ FRONTEGG_OAUTH_ORGANIZATION: () => (/* reexport safe */ _toolkit__WEBPACK_IMPORTED_MODULE_0__.FRONTEGG_OAUTH_ORGANIZATION),
20405
+ /* harmony export */ FRONTEGG_OAUTH_REDIRECT_AFTER_LOGIN: () => (/* reexport safe */ _toolkit__WEBPACK_IMPORTED_MODULE_0__.FRONTEGG_OAUTH_REDIRECT_AFTER_LOGIN),
20406
+ /* harmony export */ FRONTEGG_OAUTH_SILENT_REDIRECT_ADDRESS: () => (/* reexport safe */ _toolkit__WEBPACK_IMPORTED_MODULE_0__.FRONTEGG_OAUTH_SILENT_REDIRECT_ADDRESS),
20407
+ /* harmony export */ FRONTEGG_OAUTH_STATE_AFTER_LOGIN: () => (/* reexport safe */ _toolkit__WEBPACK_IMPORTED_MODULE_0__.FRONTEGG_OAUTH_STATE_AFTER_LOGIN),
20408
+ /* harmony export */ FRONTEGG_OAUTH_STATE_SAVED_AT: () => (/* reexport safe */ _toolkit__WEBPACK_IMPORTED_MODULE_0__.FRONTEGG_OAUTH_STATE_SAVED_AT),
20409
+ /* harmony export */ FRONTEGG_OAUTH_STEP_UP_ACR_VALUES: () => (/* reexport safe */ _toolkit__WEBPACK_IMPORTED_MODULE_0__.FRONTEGG_OAUTH_STEP_UP_ACR_VALUES),
20410
+ /* harmony export */ FRONTEGG_OAUTH_STEP_UP_MAX_AGE: () => (/* reexport safe */ _toolkit__WEBPACK_IMPORTED_MODULE_0__.FRONTEGG_OAUTH_STEP_UP_MAX_AGE),
20411
+ /* harmony export */ FRONTEGG_OAUTH_TENANT_ID: () => (/* reexport safe */ _toolkit__WEBPACK_IMPORTED_MODULE_0__.FRONTEGG_OAUTH_TENANT_ID),
20198
20412
  /* harmony export */ ForgotPasswordStep: () => (/* reexport safe */ _toolkit__WEBPACK_IMPORTED_MODULE_0__.ForgotPasswordStep),
20199
20413
  /* harmony export */ FronteggNativeModule: () => (/* reexport safe */ _toolkit__WEBPACK_IMPORTED_MODULE_0__.FronteggNativeModule),
20200
20414
  /* harmony export */ GTMEventAction: () => (/* reexport safe */ _helpers__WEBPACK_IMPORTED_MODULE_2__.GTMEventAction),
20201
20415
  /* harmony export */ GroupRelations: () => (/* reexport safe */ _toolkit__WEBPACK_IMPORTED_MODULE_0__.GroupRelations),
20202
20416
  /* harmony export */ GroupsStateKeys: () => (/* reexport safe */ _toolkit__WEBPACK_IMPORTED_MODULE_0__.GroupsStateKeys),
20203
20417
  /* harmony export */ HOSTED_LOGIN_VERIFIER_KEY: () => (/* reexport safe */ _constants__WEBPACK_IMPORTED_MODULE_1__.HOSTED_LOGIN_VERIFIER_KEY),
20418
+ /* harmony export */ HOSTED_OAUTH_STATE_MAX_AGE_MS: () => (/* reexport safe */ _toolkit__WEBPACK_IMPORTED_MODULE_0__.HOSTED_OAUTH_STATE_MAX_AGE_MS),
20419
+ /* harmony export */ HOSTED_OAUTH_STORAGE_KEYS: () => (/* reexport safe */ _toolkit__WEBPACK_IMPORTED_MODULE_0__.HOSTED_OAUTH_STORAGE_KEYS),
20204
20420
  /* harmony export */ ImpersonateStep: () => (/* reexport safe */ _toolkit__WEBPACK_IMPORTED_MODULE_0__.ImpersonateStep),
20205
20421
  /* harmony export */ LoginActionTypes: () => (/* reexport safe */ _toolkit__WEBPACK_IMPORTED_MODULE_0__.LoginActionTypes),
20206
20422
  /* harmony export */ LoginFlow: () => (/* reexport safe */ _toolkit__WEBPACK_IMPORTED_MODULE_0__.LoginFlow),
@@ -20234,6 +20450,7 @@ __webpack_require__.r(__webpack_exports__);
20234
20450
  /* harmony export */ buildConnectivityActions: () => (/* reexport safe */ _connectivity__WEBPACK_IMPORTED_MODULE_4__.buildConnectivityActions),
20235
20451
  /* harmony export */ buildSubscriptionsActions: () => (/* reexport safe */ _subscriptions__WEBPACK_IMPORTED_MODULE_5__.buildSubscriptionsActions),
20236
20452
  /* harmony export */ buildVendorActions: () => (/* reexport safe */ _vendor__WEBPACK_IMPORTED_MODULE_7__.buildVendorActions),
20453
+ /* harmony export */ clearHostedOAuthState: () => (/* reexport safe */ _toolkit__WEBPACK_IMPORTED_MODULE_0__.clearHostedOAuthState),
20237
20454
  /* harmony export */ createAuditsState: () => (/* reexport safe */ _audits__WEBPACK_IMPORTED_MODULE_8__.createAuditsState),
20238
20455
  /* harmony export */ createAuthState: () => (/* reexport safe */ _toolkit__WEBPACK_IMPORTED_MODULE_0__.createAuthState),
20239
20456
  /* harmony export */ createConnectivityState: () => (/* reexport safe */ _connectivity__WEBPACK_IMPORTED_MODULE_4__.createConnectivityState),
@@ -20264,6 +20481,7 @@ __webpack_require__.r(__webpack_exports__);
20264
20481
  /* harmony export */ getSearchParam: () => (/* reexport safe */ _auth_helpers__WEBPACK_IMPORTED_MODULE_3__.getSearchParam),
20265
20482
  /* harmony export */ getSearchParamsFromUrl: () => (/* reexport safe */ _auth_helpers__WEBPACK_IMPORTED_MODULE_3__.getSearchParamsFromUrl),
20266
20483
  /* harmony export */ getUri: () => (/* reexport safe */ _auth_helpers__WEBPACK_IMPORTED_MODULE_3__.getUri),
20484
+ /* harmony export */ getUrlDerivedStepUp: () => (/* reexport safe */ _auth_helpers__WEBPACK_IMPORTED_MODULE_3__.getUrlDerivedStepUp),
20267
20485
  /* harmony export */ hmac: () => (/* reexport safe */ _helpers__WEBPACK_IMPORTED_MODULE_2__.hmac),
20268
20486
  /* harmony export */ isAbsoluteUrl: () => (/* reexport safe */ _auth_helpers__WEBPACK_IMPORTED_MODULE_3__.isAbsoluteUrl),
20269
20487
  /* harmony export */ isAuthRoute: () => (/* reexport safe */ _auth_helpers__WEBPACK_IMPORTED_MODULE_3__.isAuthRoute),
@@ -20271,6 +20489,7 @@ __webpack_require__.r(__webpack_exports__);
20271
20489
  /* harmony export */ isEntitlementsDeeplyEqual: () => (/* reexport safe */ _toolkit__WEBPACK_IMPORTED_MODULE_0__.isEntitlementsDeeplyEqual),
20272
20490
  /* harmony export */ isError: () => (/* reexport safe */ _helpers__WEBPACK_IMPORTED_MODULE_2__.isError),
20273
20491
  /* harmony export */ isFronteggApiError: () => (/* reexport safe */ _helpers__WEBPACK_IMPORTED_MODULE_2__.isFronteggApiError),
20492
+ /* harmony export */ isHostedOAuthStateExpired: () => (/* reexport safe */ _toolkit__WEBPACK_IMPORTED_MODULE_0__.isHostedOAuthStateExpired),
20274
20493
  /* harmony export */ isMfaRequired: () => (/* reexport safe */ _auth_helpers__WEBPACK_IMPORTED_MODULE_3__.isMfaRequired),
20275
20494
  /* harmony export */ isOauthCallbackRoute: () => (/* reexport safe */ _auth_helpers__WEBPACK_IMPORTED_MODULE_3__.isOauthCallbackRoute),
20276
20495
  /* harmony export */ isProxy: () => (/* reexport safe */ _helpers__WEBPACK_IMPORTED_MODULE_2__.isProxy),
@@ -20278,6 +20497,7 @@ __webpack_require__.r(__webpack_exports__);
20278
20497
  /* harmony export */ isSteppedUp: () => (/* reexport safe */ _auth_helpers__WEBPACK_IMPORTED_MODULE_3__.isSteppedUp),
20279
20498
  /* harmony export */ isUsernamePayload: () => (/* reexport safe */ _auth_helpers__WEBPACK_IMPORTED_MODULE_3__.isUsernamePayload),
20280
20499
  /* harmony export */ mapMetaDataObjectToActions: () => (/* reexport safe */ _auth_helpers__WEBPACK_IMPORTED_MODULE_3__.mapMetaDataObjectToActions),
20500
+ /* harmony export */ markHostedOAuthStateSaved: () => (/* reexport safe */ _toolkit__WEBPACK_IMPORTED_MODULE_0__.markHostedOAuthStateSaved),
20281
20501
  /* harmony export */ omitProps: () => (/* reexport safe */ _helpers__WEBPACK_IMPORTED_MODULE_2__.omitProps),
20282
20502
  /* harmony export */ prepareIdentifiersForSignup: () => (/* reexport safe */ _auth_helpers__WEBPACK_IMPORTED_MODULE_3__.prepareIdentifiersForSignup),
20283
20503
  /* harmony export */ publicKeyCredentialToJSON: () => (/* reexport safe */ _helpers__WEBPACK_IMPORTED_MODULE_2__.publicKeyCredentialToJSON),
@@ -20303,7 +20523,7 @@ __webpack_require__.r(__webpack_exports__);
20303
20523
  /* harmony import */ var _subscriptions_interfaces__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./subscriptions/interfaces */ "../../dist/@frontegg/redux-store/subscriptions/interfaces.js");
20304
20524
  /* harmony import */ var _vendor__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./vendor */ "../../dist/@frontegg/redux-store/vendor/index.js");
20305
20525
  /* harmony import */ var _audits__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./audits */ "../../dist/@frontegg/redux-store/audits/index.js");
20306
- /** @license Frontegg v7.113.0
20526
+ /** @license Frontegg v7.115.0
20307
20527
  *
20308
20528
  * This source code is licensed under the MIT license found in the
20309
20529
  * LICENSE file in the root directory of this source tree.
@@ -26976,10 +27196,25 @@ __webpack_require__.r(__webpack_exports__);
26976
27196
  /* harmony export */ AuthenticationTypes: () => (/* reexport safe */ _store__WEBPACK_IMPORTED_MODULE_1__.AuthenticationTypes),
26977
27197
  /* harmony export */ EditEmailView: () => (/* reexport safe */ _store__WEBPACK_IMPORTED_MODULE_1__.EditEmailView),
26978
27198
  /* harmony export */ FORGOT_PASSWORD_ERROR_KEYS: () => (/* reexport safe */ _store__WEBPACK_IMPORTED_MODULE_1__.FORGOT_PASSWORD_ERROR_KEYS),
27199
+ /* harmony export */ FRONTEGG_AUTHENTICATION_FLOWS_REDIRECT_AFTER_LOGIN: () => (/* reexport safe */ _store__WEBPACK_IMPORTED_MODULE_1__.FRONTEGG_AUTHENTICATION_FLOWS_REDIRECT_AFTER_LOGIN),
27200
+ /* harmony export */ FRONTEGG_OAUTH_APP_ID: () => (/* reexport safe */ _store__WEBPACK_IMPORTED_MODULE_1__.FRONTEGG_OAUTH_APP_ID),
27201
+ /* harmony export */ FRONTEGG_OAUTH_INVITATION_TOKEN_KEY: () => (/* reexport safe */ _store__WEBPACK_IMPORTED_MODULE_1__.FRONTEGG_OAUTH_INVITATION_TOKEN_KEY),
27202
+ /* harmony export */ FRONTEGG_OAUTH_LOGIN_DIRECT_ACTION: () => (/* reexport safe */ _store__WEBPACK_IMPORTED_MODULE_1__.FRONTEGG_OAUTH_LOGIN_DIRECT_ACTION),
27203
+ /* harmony export */ FRONTEGG_OAUTH_LOGIN_HINT: () => (/* reexport safe */ _store__WEBPACK_IMPORTED_MODULE_1__.FRONTEGG_OAUTH_LOGIN_HINT),
27204
+ /* harmony export */ FRONTEGG_OAUTH_ORGANIZATION: () => (/* reexport safe */ _store__WEBPACK_IMPORTED_MODULE_1__.FRONTEGG_OAUTH_ORGANIZATION),
27205
+ /* harmony export */ FRONTEGG_OAUTH_REDIRECT_AFTER_LOGIN: () => (/* reexport safe */ _store__WEBPACK_IMPORTED_MODULE_1__.FRONTEGG_OAUTH_REDIRECT_AFTER_LOGIN),
27206
+ /* harmony export */ FRONTEGG_OAUTH_SILENT_REDIRECT_ADDRESS: () => (/* reexport safe */ _store__WEBPACK_IMPORTED_MODULE_1__.FRONTEGG_OAUTH_SILENT_REDIRECT_ADDRESS),
27207
+ /* harmony export */ FRONTEGG_OAUTH_STATE_AFTER_LOGIN: () => (/* reexport safe */ _store__WEBPACK_IMPORTED_MODULE_1__.FRONTEGG_OAUTH_STATE_AFTER_LOGIN),
27208
+ /* harmony export */ FRONTEGG_OAUTH_STATE_SAVED_AT: () => (/* reexport safe */ _store__WEBPACK_IMPORTED_MODULE_1__.FRONTEGG_OAUTH_STATE_SAVED_AT),
27209
+ /* harmony export */ FRONTEGG_OAUTH_STEP_UP_ACR_VALUES: () => (/* reexport safe */ _store__WEBPACK_IMPORTED_MODULE_1__.FRONTEGG_OAUTH_STEP_UP_ACR_VALUES),
27210
+ /* harmony export */ FRONTEGG_OAUTH_STEP_UP_MAX_AGE: () => (/* reexport safe */ _store__WEBPACK_IMPORTED_MODULE_1__.FRONTEGG_OAUTH_STEP_UP_MAX_AGE),
27211
+ /* harmony export */ FRONTEGG_OAUTH_TENANT_ID: () => (/* reexport safe */ _store__WEBPACK_IMPORTED_MODULE_1__.FRONTEGG_OAUTH_TENANT_ID),
26979
27212
  /* harmony export */ ForgotPasswordStep: () => (/* reexport safe */ _store__WEBPACK_IMPORTED_MODULE_1__.ForgotPasswordStep),
26980
27213
  /* harmony export */ FronteggNativeModule: () => (/* reexport safe */ _FronteggNativeModule__WEBPACK_IMPORTED_MODULE_0__["default"]),
26981
27214
  /* harmony export */ GroupRelations: () => (/* reexport safe */ _store__WEBPACK_IMPORTED_MODULE_1__.GroupRelations),
26982
27215
  /* harmony export */ GroupsStateKeys: () => (/* reexport safe */ _store__WEBPACK_IMPORTED_MODULE_1__.GroupsStateKeys),
27216
+ /* harmony export */ HOSTED_OAUTH_STATE_MAX_AGE_MS: () => (/* reexport safe */ _store__WEBPACK_IMPORTED_MODULE_1__.HOSTED_OAUTH_STATE_MAX_AGE_MS),
27217
+ /* harmony export */ HOSTED_OAUTH_STORAGE_KEYS: () => (/* reexport safe */ _store__WEBPACK_IMPORTED_MODULE_1__.HOSTED_OAUTH_STORAGE_KEYS),
26983
27218
  /* harmony export */ ImpersonateStep: () => (/* reexport safe */ _store__WEBPACK_IMPORTED_MODULE_1__.ImpersonateStep),
26984
27219
  /* harmony export */ LoginActionTypes: () => (/* reexport safe */ _store__WEBPACK_IMPORTED_MODULE_1__.LoginActionTypes),
26985
27220
  /* harmony export */ LoginFlow: () => (/* reexport safe */ _store__WEBPACK_IMPORTED_MODULE_1__.LoginFlow),
@@ -26998,6 +27233,7 @@ __webpack_require__.r(__webpack_exports__);
26998
27233
  /* harmony export */ TeamStateKeys: () => (/* reexport safe */ _store__WEBPACK_IMPORTED_MODULE_1__.TeamStateKeys),
26999
27234
  /* harmony export */ UserVerifiedOriginTypes: () => (/* reexport safe */ _store__WEBPACK_IMPORTED_MODULE_1__.UserVerifiedOriginTypes),
27000
27235
  /* harmony export */ buildAuthActions: () => (/* reexport safe */ _store__WEBPACK_IMPORTED_MODULE_1__.buildAuthActions),
27236
+ /* harmony export */ clearHostedOAuthState: () => (/* reexport safe */ _store__WEBPACK_IMPORTED_MODULE_1__.clearHostedOAuthState),
27001
27237
  /* harmony export */ createAuthState: () => (/* reexport safe */ _store__WEBPACK_IMPORTED_MODULE_1__.createAuthState),
27002
27238
  /* harmony export */ createFronteggStore: () => (/* reexport safe */ _store__WEBPACK_IMPORTED_MODULE_1__.createFronteggStore),
27003
27239
  /* harmony export */ createProxy: () => (/* reexport safe */ _proxy__WEBPACK_IMPORTED_MODULE_3__.createProxy),
@@ -27006,6 +27242,8 @@ __webpack_require__.r(__webpack_exports__);
27006
27242
  /* harmony export */ getFeatureEntitlements: () => (/* reexport safe */ _store__WEBPACK_IMPORTED_MODULE_1__.getFeatureEntitlements),
27007
27243
  /* harmony export */ getPermissionEntitlements: () => (/* reexport safe */ _store__WEBPACK_IMPORTED_MODULE_1__.getPermissionEntitlements),
27008
27244
  /* harmony export */ isEntitlementsDeeplyEqual: () => (/* reexport safe */ _store__WEBPACK_IMPORTED_MODULE_1__.isEntitlementsDeeplyEqual),
27245
+ /* harmony export */ isHostedOAuthStateExpired: () => (/* reexport safe */ _store__WEBPACK_IMPORTED_MODULE_1__.isHostedOAuthStateExpired),
27246
+ /* harmony export */ markHostedOAuthStateSaved: () => (/* reexport safe */ _store__WEBPACK_IMPORTED_MODULE_1__.markHostedOAuthStateSaved),
27009
27247
  /* harmony export */ ref: () => (/* reexport safe */ _valtio__WEBPACK_IMPORTED_MODULE_2__.ref),
27010
27248
  /* harmony export */ snapshot: () => (/* reexport safe */ _valtio__WEBPACK_IMPORTED_MODULE_2__.snapshot),
27011
27249
  /* harmony export */ subscribe: () => (/* reexport safe */ _valtio__WEBPACK_IMPORTED_MODULE_2__.subscribe)
@@ -27068,9 +27306,24 @@ __webpack_require__.r(__webpack_exports__);
27068
27306
  /* harmony export */ AuthenticationTypes: () => (/* reexport safe */ _auth__WEBPACK_IMPORTED_MODULE_2__.AuthenticationTypes),
27069
27307
  /* harmony export */ EditEmailView: () => (/* reexport safe */ _auth__WEBPACK_IMPORTED_MODULE_2__.EditEmailView),
27070
27308
  /* harmony export */ FORGOT_PASSWORD_ERROR_KEYS: () => (/* reexport safe */ _auth__WEBPACK_IMPORTED_MODULE_2__.FORGOT_PASSWORD_ERROR_KEYS),
27309
+ /* harmony export */ FRONTEGG_AUTHENTICATION_FLOWS_REDIRECT_AFTER_LOGIN: () => (/* reexport safe */ _auth__WEBPACK_IMPORTED_MODULE_2__.FRONTEGG_AUTHENTICATION_FLOWS_REDIRECT_AFTER_LOGIN),
27310
+ /* harmony export */ FRONTEGG_OAUTH_APP_ID: () => (/* reexport safe */ _auth__WEBPACK_IMPORTED_MODULE_2__.FRONTEGG_OAUTH_APP_ID),
27311
+ /* harmony export */ FRONTEGG_OAUTH_INVITATION_TOKEN_KEY: () => (/* reexport safe */ _auth__WEBPACK_IMPORTED_MODULE_2__.FRONTEGG_OAUTH_INVITATION_TOKEN_KEY),
27312
+ /* harmony export */ FRONTEGG_OAUTH_LOGIN_DIRECT_ACTION: () => (/* reexport safe */ _auth__WEBPACK_IMPORTED_MODULE_2__.FRONTEGG_OAUTH_LOGIN_DIRECT_ACTION),
27313
+ /* harmony export */ FRONTEGG_OAUTH_LOGIN_HINT: () => (/* reexport safe */ _auth__WEBPACK_IMPORTED_MODULE_2__.FRONTEGG_OAUTH_LOGIN_HINT),
27314
+ /* harmony export */ FRONTEGG_OAUTH_ORGANIZATION: () => (/* reexport safe */ _auth__WEBPACK_IMPORTED_MODULE_2__.FRONTEGG_OAUTH_ORGANIZATION),
27315
+ /* harmony export */ FRONTEGG_OAUTH_REDIRECT_AFTER_LOGIN: () => (/* reexport safe */ _auth__WEBPACK_IMPORTED_MODULE_2__.FRONTEGG_OAUTH_REDIRECT_AFTER_LOGIN),
27316
+ /* harmony export */ FRONTEGG_OAUTH_SILENT_REDIRECT_ADDRESS: () => (/* reexport safe */ _auth__WEBPACK_IMPORTED_MODULE_2__.FRONTEGG_OAUTH_SILENT_REDIRECT_ADDRESS),
27317
+ /* harmony export */ FRONTEGG_OAUTH_STATE_AFTER_LOGIN: () => (/* reexport safe */ _auth__WEBPACK_IMPORTED_MODULE_2__.FRONTEGG_OAUTH_STATE_AFTER_LOGIN),
27318
+ /* harmony export */ FRONTEGG_OAUTH_STATE_SAVED_AT: () => (/* reexport safe */ _auth__WEBPACK_IMPORTED_MODULE_2__.FRONTEGG_OAUTH_STATE_SAVED_AT),
27319
+ /* harmony export */ FRONTEGG_OAUTH_STEP_UP_ACR_VALUES: () => (/* reexport safe */ _auth__WEBPACK_IMPORTED_MODULE_2__.FRONTEGG_OAUTH_STEP_UP_ACR_VALUES),
27320
+ /* harmony export */ FRONTEGG_OAUTH_STEP_UP_MAX_AGE: () => (/* reexport safe */ _auth__WEBPACK_IMPORTED_MODULE_2__.FRONTEGG_OAUTH_STEP_UP_MAX_AGE),
27321
+ /* harmony export */ FRONTEGG_OAUTH_TENANT_ID: () => (/* reexport safe */ _auth__WEBPACK_IMPORTED_MODULE_2__.FRONTEGG_OAUTH_TENANT_ID),
27071
27322
  /* harmony export */ ForgotPasswordStep: () => (/* reexport safe */ _auth__WEBPACK_IMPORTED_MODULE_2__.ForgotPasswordStep),
27072
27323
  /* harmony export */ GroupRelations: () => (/* reexport safe */ _auth__WEBPACK_IMPORTED_MODULE_2__.GroupRelations),
27073
27324
  /* harmony export */ GroupsStateKeys: () => (/* reexport safe */ _auth__WEBPACK_IMPORTED_MODULE_2__.GroupsStateKeys),
27325
+ /* harmony export */ HOSTED_OAUTH_STATE_MAX_AGE_MS: () => (/* reexport safe */ _auth__WEBPACK_IMPORTED_MODULE_2__.HOSTED_OAUTH_STATE_MAX_AGE_MS),
27326
+ /* harmony export */ HOSTED_OAUTH_STORAGE_KEYS: () => (/* reexport safe */ _auth__WEBPACK_IMPORTED_MODULE_2__.HOSTED_OAUTH_STORAGE_KEYS),
27074
27327
  /* harmony export */ ImpersonateStep: () => (/* reexport safe */ _auth__WEBPACK_IMPORTED_MODULE_2__.ImpersonateStep),
27075
27328
  /* harmony export */ LoginActionTypes: () => (/* reexport safe */ _auth__WEBPACK_IMPORTED_MODULE_2__.LoginActionTypes),
27076
27329
  /* harmony export */ LoginFlow: () => (/* reexport safe */ _auth__WEBPACK_IMPORTED_MODULE_2__.LoginFlow),
@@ -27089,13 +27342,16 @@ __webpack_require__.r(__webpack_exports__);
27089
27342
  /* harmony export */ TeamStateKeys: () => (/* reexport safe */ _auth__WEBPACK_IMPORTED_MODULE_2__.TeamStateKeys),
27090
27343
  /* harmony export */ UserVerifiedOriginTypes: () => (/* reexport safe */ _auth__WEBPACK_IMPORTED_MODULE_2__.UserVerifiedOriginTypes),
27091
27344
  /* harmony export */ buildAuthActions: () => (/* reexport safe */ _auth__WEBPACK_IMPORTED_MODULE_2__.buildAuthActions),
27345
+ /* harmony export */ clearHostedOAuthState: () => (/* reexport safe */ _auth__WEBPACK_IMPORTED_MODULE_2__.clearHostedOAuthState),
27092
27346
  /* harmony export */ createAuthState: () => (/* reexport safe */ _auth__WEBPACK_IMPORTED_MODULE_2__.createAuthState),
27093
27347
  /* harmony export */ createFronteggStore: () => (/* binding */ createFronteggStore),
27094
27348
  /* harmony export */ createStore: () => (/* binding */ createStore),
27095
27349
  /* harmony export */ getEntitlements: () => (/* reexport safe */ _auth__WEBPACK_IMPORTED_MODULE_2__.getEntitlements),
27096
27350
  /* harmony export */ getFeatureEntitlements: () => (/* reexport safe */ _auth__WEBPACK_IMPORTED_MODULE_2__.getFeatureEntitlements),
27097
27351
  /* harmony export */ getPermissionEntitlements: () => (/* reexport safe */ _auth__WEBPACK_IMPORTED_MODULE_2__.getPermissionEntitlements),
27098
- /* harmony export */ isEntitlementsDeeplyEqual: () => (/* reexport safe */ _auth__WEBPACK_IMPORTED_MODULE_2__.isEntitlementsDeeplyEqual)
27352
+ /* harmony export */ isEntitlementsDeeplyEqual: () => (/* reexport safe */ _auth__WEBPACK_IMPORTED_MODULE_2__.isEntitlementsDeeplyEqual),
27353
+ /* harmony export */ isHostedOAuthStateExpired: () => (/* reexport safe */ _auth__WEBPACK_IMPORTED_MODULE_2__.isHostedOAuthStateExpired),
27354
+ /* harmony export */ markHostedOAuthStateSaved: () => (/* reexport safe */ _auth__WEBPACK_IMPORTED_MODULE_2__.markHostedOAuthStateSaved)
27099
27355
  /* harmony export */ });
27100
27356
  /* harmony import */ var _babel_runtime_helpers_esm_extends__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/runtime/helpers/esm/extends */ "../../node_modules/@babel/runtime/helpers/esm/extends.js");
27101
27357
  /* harmony import */ var _valtio__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ../valtio */ "../../dist/@frontegg/redux-store/valtio/utils/devtools.js");
@@ -30924,7 +31180,7 @@ __webpack_require__.r(__webpack_exports__);
30924
31180
  /* harmony import */ var _security_center_interfaces__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./security-center/interfaces */ "../../dist/@frontegg/rest-api/security-center/interfaces.js");
30925
31181
  /* harmony import */ var _applications_interfaces__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./applications/interfaces */ "../../dist/@frontegg/rest-api/applications/interfaces.js");
30926
31182
  /* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./constants */ "../../dist/@frontegg/rest-api/constants.js");
30927
- /** @license Frontegg v7.113.0
31183
+ /** @license Frontegg v7.115.0
30928
31184
  *
30929
31185
  * This source code is licensed under the MIT license found in the
30930
31186
  * LICENSE file in the root directory of this source tree.
@@ -33721,7 +33977,7 @@ __webpack_require__.r(__webpack_exports__);
33721
33977
  /* harmony export */ });
33722
33978
  /* harmony import */ var _ThemeOptions__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./ThemeOptions */ "../../dist/@frontegg/types/ThemeOptions/index.js");
33723
33979
  /* harmony import */ var _Metadata__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Metadata */ "../../dist/@frontegg/types/Metadata/index.js");
33724
- /** @license Frontegg v7.113.0
33980
+ /** @license Frontegg v7.115.0
33725
33981
  *
33726
33982
  * This source code is licensed under the MIT license found in the
33727
33983
  * LICENSE file in the root directory of this source tree.