@frontegg/js 6.65.0 → 6.66.0-alpha.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.
@@ -1315,7 +1315,7 @@ __webpack_require__.r(__webpack_exports__);
1315
1315
  /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
1316
1316
  /* harmony export */ });
1317
1317
  /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ({
1318
- "cdnVersion": "6.65.0"
1318
+ "cdnVersion": "6.66.0-alpha.0"
1319
1319
  });
1320
1320
 
1321
1321
  /***/ }),
@@ -3983,6 +3983,134 @@ function* forgotPasswordSagas() {
3983
3983
 
3984
3984
  /***/ }),
3985
3985
 
3986
+ /***/ "../../dist/@frontegg/redux-store/auth/ImpersonationState/index.js":
3987
+ /*!*************************************************************************!*\
3988
+ !*** ../../dist/@frontegg/redux-store/auth/ImpersonationState/index.js ***!
3989
+ \*************************************************************************/
3990
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
3991
+
3992
+ "use strict";
3993
+ __webpack_require__.r(__webpack_exports__);
3994
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
3995
+ /* harmony export */ "impersonateActions": () => (/* binding */ actions),
3996
+ /* harmony export */ "impersonateReducers": () => (/* binding */ reducers),
3997
+ /* harmony export */ "impersonateState": () => (/* binding */ impersonateState)
3998
+ /* harmony export */ });
3999
+ /* harmony import */ var _reduxjs_toolkit__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @reduxjs/toolkit */ "../../node_modules/@reduxjs/toolkit/dist/redux-toolkit.esm.js");
4000
+ /* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../constants */ "../../dist/@frontegg/redux-store/constants.js");
4001
+ /* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../utils */ "../../dist/@frontegg/redux-store/auth/utils.js");
4002
+ /* harmony import */ var _interfaces__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./interfaces */ "../../dist/@frontegg/redux-store/auth/ImpersonationState/interfaces.js");
4003
+
4004
+
4005
+
4006
+
4007
+ const impersonateState = {
4008
+ step: _interfaces__WEBPACK_IMPORTED_MODULE_0__.ImpersonateStep.impersonating,
4009
+ loading: false
4010
+ };
4011
+ const reducers = {
4012
+ setImpersonateState: (0,_utils__WEBPACK_IMPORTED_MODULE_1__.typeReducerForKey)('impersonateState'),
4013
+ resetImpersonateState: (0,_utils__WEBPACK_IMPORTED_MODULE_1__.resetStateByKey)('impersonateState', {
4014
+ impersonateState
4015
+ })
4016
+ };
4017
+ const actions = {
4018
+ impersonate: (0,_reduxjs_toolkit__WEBPACK_IMPORTED_MODULE_2__.createAction)(`${_constants__WEBPACK_IMPORTED_MODULE_3__.impersonationStoreName}/impersonate`, payload => ({
4019
+ payload
4020
+ }))
4021
+ };
4022
+ /**
4023
+ * To be used for actions types after dispatch, and should contains
4024
+ * the reducers and actions as standalone function
4025
+ */
4026
+
4027
+ // noinspection JSUnusedLocalSymbols
4028
+
4029
+ /**
4030
+ * if you see error in matcher that's mean the DispatchAction does not
4031
+ * contains the same functions in reducers and actions
4032
+ */
4033
+ const Matcher = {};
4034
+
4035
+
4036
+ /***/ }),
4037
+
4038
+ /***/ "../../dist/@frontegg/redux-store/auth/ImpersonationState/interfaces.js":
4039
+ /*!******************************************************************************!*\
4040
+ !*** ../../dist/@frontegg/redux-store/auth/ImpersonationState/interfaces.js ***!
4041
+ \******************************************************************************/
4042
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
4043
+
4044
+ "use strict";
4045
+ __webpack_require__.r(__webpack_exports__);
4046
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
4047
+ /* harmony export */ "ImpersonateStep": () => (/* binding */ ImpersonateStep)
4048
+ /* harmony export */ });
4049
+ let ImpersonateStep;
4050
+
4051
+ (function (ImpersonateStep) {
4052
+ ImpersonateStep["impersonating"] = "impersonating";
4053
+ ImpersonateStep["success"] = "success";
4054
+ })(ImpersonateStep || (ImpersonateStep = {}));
4055
+
4056
+ /***/ }),
4057
+
4058
+ /***/ "../../dist/@frontegg/redux-store/auth/ImpersonationState/saga.js":
4059
+ /*!************************************************************************!*\
4060
+ !*** ../../dist/@frontegg/redux-store/auth/ImpersonationState/saga.js ***!
4061
+ \************************************************************************/
4062
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
4063
+
4064
+ "use strict";
4065
+ __webpack_require__.r(__webpack_exports__);
4066
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
4067
+ /* harmony export */ "impersonateSagas": () => (/* binding */ impersonateSagas)
4068
+ /* harmony export */ });
4069
+ /* 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");
4070
+ /* harmony import */ var _frontegg_rest_api__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @frontegg/rest-api */ "../../node_modules/@frontegg/rest-api/index.js");
4071
+ /* harmony import */ var redux_saga_effects__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! redux-saga/effects */ "../../node_modules/redux-saga/dist/redux-saga-effects-npm-proxy.esm.js");
4072
+ /* harmony import */ var _reducer__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../reducer */ "../../dist/@frontegg/redux-store/auth/reducer.js");
4073
+ /* harmony import */ var _interfaces__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./interfaces */ "../../dist/@frontegg/redux-store/auth/ImpersonationState/interfaces.js");
4074
+
4075
+ const _excluded = ["callback", "events"];
4076
+
4077
+
4078
+
4079
+
4080
+
4081
+ function* impersonate(_ref) {
4082
+ let {
4083
+ payload: {
4084
+ callback
4085
+ }
4086
+ } = _ref,
4087
+ payload = (0,_babel_runtime_helpers_esm_objectWithoutPropertiesLoose__WEBPACK_IMPORTED_MODULE_0__["default"])(_ref.payload, _excluded);
4088
+
4089
+ yield (0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_1__.put)(_reducer__WEBPACK_IMPORTED_MODULE_2__.actions.setImpersonateState({
4090
+ loading: true
4091
+ }));
4092
+
4093
+ try {
4094
+ const data = yield (0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_1__.call)(_frontegg_rest_api__WEBPACK_IMPORTED_MODULE_3__.api.impersonate.impersonate, payload);
4095
+ yield (0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_1__.put)(_reducer__WEBPACK_IMPORTED_MODULE_2__.actions.setImpersonateState({
4096
+ step: _interfaces__WEBPACK_IMPORTED_MODULE_4__.ImpersonateStep.success
4097
+ }));
4098
+ yield (0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_1__.put)(_reducer__WEBPACK_IMPORTED_MODULE_2__.actions.resetImpersonateState());
4099
+ callback == null ? void 0 : callback(true);
4100
+ } catch (e) {
4101
+ yield (0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_1__.put)(_reducer__WEBPACK_IMPORTED_MODULE_2__.actions.setImpersonateState({
4102
+ loading: false,
4103
+ error: e.message
4104
+ }));
4105
+ }
4106
+ }
4107
+
4108
+ function* impersonateSagas() {
4109
+ yield (0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_1__.takeLeading)(_reducer__WEBPACK_IMPORTED_MODULE_2__.actions.impersonate, impersonate);
4110
+ }
4111
+
4112
+ /***/ }),
4113
+
3986
4114
  /***/ "../../dist/@frontegg/redux-store/auth/LoginState/index.js":
3987
4115
  /*!*****************************************************************!*\
3988
4116
  !*** ../../dist/@frontegg/redux-store/auth/LoginState/index.js ***!
@@ -13616,127 +13744,133 @@ const dummyIps = [{
13616
13744
  "use strict";
13617
13745
  __webpack_require__.r(__webpack_exports__);
13618
13746
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
13619
- /* harmony export */ "AcceptInvitationStep": () => (/* reexport safe */ _AcceptInvitationState_interfaces__WEBPACK_IMPORTED_MODULE_5__.AcceptInvitationStep),
13747
+ /* harmony export */ "AcceptInvitationStep": () => (/* reexport safe */ _AcceptInvitationState_interfaces__WEBPACK_IMPORTED_MODULE_7__.AcceptInvitationStep),
13620
13748
  /* harmony export */ "ActivateAccountStep": () => (/* reexport safe */ _ActivateState_interfaces__WEBPACK_IMPORTED_MODULE_3__.ActivateAccountStep),
13621
13749
  /* harmony export */ "AdminPortalPages": () => (/* reexport safe */ _interfaces__WEBPACK_IMPORTED_MODULE_0__.AdminPortalPages),
13622
13750
  /* harmony export */ "AdminPortalPagesForEvents": () => (/* reexport safe */ _interfaces__WEBPACK_IMPORTED_MODULE_0__.AdminPortalPagesForEvents),
13623
- /* harmony export */ "ApiStateKeys": () => (/* reexport safe */ _ApiTokensState_interfaces__WEBPACK_IMPORTED_MODULE_21__.ApiStateKeys),
13751
+ /* harmony export */ "ApiStateKeys": () => (/* reexport safe */ _ApiTokensState_interfaces__WEBPACK_IMPORTED_MODULE_23__.ApiStateKeys),
13624
13752
  /* harmony export */ "AuthStrategyEnum": () => (/* reexport safe */ _LoginState_interfaces__WEBPACK_IMPORTED_MODULE_1__.AuthStrategyEnum),
13625
13753
  /* harmony export */ "AuthenticationTypes": () => (/* reexport safe */ _interfaces__WEBPACK_IMPORTED_MODULE_0__.AuthenticationTypes),
13626
- /* harmony export */ "ForgotPasswordStep": () => (/* reexport safe */ _ForgotPasswordState_interfaces__WEBPACK_IMPORTED_MODULE_7__.ForgotPasswordStep),
13754
+ /* harmony export */ "ForgotPasswordStep": () => (/* reexport safe */ _ForgotPasswordState_interfaces__WEBPACK_IMPORTED_MODULE_9__.ForgotPasswordStep),
13755
+ /* harmony export */ "ImpersonateStep": () => (/* reexport safe */ _ImpersonationState_interfaces__WEBPACK_IMPORTED_MODULE_5__.ImpersonateStep),
13627
13756
  /* harmony export */ "LoginFlow": () => (/* reexport safe */ _LoginState_interfaces__WEBPACK_IMPORTED_MODULE_1__.LoginFlow),
13628
13757
  /* harmony export */ "LoginStep": () => (/* reexport safe */ _LoginState_interfaces__WEBPACK_IMPORTED_MODULE_1__.LoginStep),
13629
- /* harmony export */ "MFAStep": () => (/* reexport safe */ _MfaState_interfaces__WEBPACK_IMPORTED_MODULE_13__.MFAStep),
13758
+ /* harmony export */ "MFAStep": () => (/* reexport safe */ _MfaState_interfaces__WEBPACK_IMPORTED_MODULE_15__.MFAStep),
13630
13759
  /* harmony export */ "QuickLoginStrategy": () => (/* reexport safe */ _LoginState_interfaces__WEBPACK_IMPORTED_MODULE_1__.QuickLoginStrategy),
13631
- /* harmony export */ "ResetPhoneNumberStep": () => (/* reexport safe */ _ResetPhoneNumberState_interfaces__WEBPACK_IMPORTED_MODULE_9__.ResetPhoneNumberStep),
13632
- /* harmony export */ "SSOStateKeys": () => (/* reexport safe */ _SSOState_interfaces__WEBPACK_IMPORTED_MODULE_11__.SSOStateKeys),
13633
- /* harmony export */ "SamlVendors": () => (/* reexport safe */ _SSOState_interfaces__WEBPACK_IMPORTED_MODULE_11__.SamlVendors),
13634
- /* harmony export */ "SignUpStage": () => (/* reexport safe */ _SignUp_interfaces__WEBPACK_IMPORTED_MODULE_19__.SignUpStage),
13635
- /* harmony export */ "TeamStateKeys": () => (/* reexport safe */ _TeamState_interfaces__WEBPACK_IMPORTED_MODULE_16__.TeamStateKeys),
13760
+ /* harmony export */ "ResetPhoneNumberStep": () => (/* reexport safe */ _ResetPhoneNumberState_interfaces__WEBPACK_IMPORTED_MODULE_11__.ResetPhoneNumberStep),
13761
+ /* harmony export */ "SSOStateKeys": () => (/* reexport safe */ _SSOState_interfaces__WEBPACK_IMPORTED_MODULE_13__.SSOStateKeys),
13762
+ /* harmony export */ "SamlVendors": () => (/* reexport safe */ _SSOState_interfaces__WEBPACK_IMPORTED_MODULE_13__.SamlVendors),
13763
+ /* harmony export */ "SignUpStage": () => (/* reexport safe */ _SignUp_interfaces__WEBPACK_IMPORTED_MODULE_21__.SignUpStage),
13764
+ /* harmony export */ "TeamStateKeys": () => (/* reexport safe */ _TeamState_interfaces__WEBPACK_IMPORTED_MODULE_18__.TeamStateKeys),
13636
13765
  /* harmony export */ "UserVeirifedOriginTypes": () => (/* reexport safe */ _interfaces__WEBPACK_IMPORTED_MODULE_0__.UserVeirifedOriginTypes),
13637
- /* harmony export */ "acceptInvitationActions": () => (/* reexport safe */ _AcceptInvitationState__WEBPACK_IMPORTED_MODULE_6__.acceptInvitationActions),
13638
- /* harmony export */ "acceptInvitationReducers": () => (/* reexport safe */ _AcceptInvitationState__WEBPACK_IMPORTED_MODULE_6__.acceptInvitationReducers),
13639
- /* harmony export */ "acceptInvitationState": () => (/* reexport safe */ _AcceptInvitationState__WEBPACK_IMPORTED_MODULE_6__.acceptInvitationState),
13640
- /* harmony export */ "accountSettingsActions": () => (/* reexport safe */ _AccountSettingsState__WEBPACK_IMPORTED_MODULE_24__.accountSettingsActions),
13641
- /* harmony export */ "accountSettingsReducers": () => (/* reexport safe */ _AccountSettingsState__WEBPACK_IMPORTED_MODULE_24__.accountSettingsReducers),
13642
- /* harmony export */ "accountSettingsState": () => (/* reexport safe */ _AccountSettingsState__WEBPACK_IMPORTED_MODULE_24__.accountSettingsState),
13766
+ /* harmony export */ "acceptInvitationActions": () => (/* reexport safe */ _AcceptInvitationState__WEBPACK_IMPORTED_MODULE_8__.acceptInvitationActions),
13767
+ /* harmony export */ "acceptInvitationReducers": () => (/* reexport safe */ _AcceptInvitationState__WEBPACK_IMPORTED_MODULE_8__.acceptInvitationReducers),
13768
+ /* harmony export */ "acceptInvitationState": () => (/* reexport safe */ _AcceptInvitationState__WEBPACK_IMPORTED_MODULE_8__.acceptInvitationState),
13769
+ /* harmony export */ "accountSettingsActions": () => (/* reexport safe */ _AccountSettingsState__WEBPACK_IMPORTED_MODULE_26__.accountSettingsActions),
13770
+ /* harmony export */ "accountSettingsReducers": () => (/* reexport safe */ _AccountSettingsState__WEBPACK_IMPORTED_MODULE_26__.accountSettingsReducers),
13771
+ /* harmony export */ "accountSettingsState": () => (/* reexport safe */ _AccountSettingsState__WEBPACK_IMPORTED_MODULE_26__.accountSettingsState),
13643
13772
  /* harmony export */ "activateAccountActions": () => (/* reexport safe */ _ActivateState__WEBPACK_IMPORTED_MODULE_4__.activateAccountActions),
13644
13773
  /* harmony export */ "activateAccountReducers": () => (/* reexport safe */ _ActivateState__WEBPACK_IMPORTED_MODULE_4__.activateAccountReducers),
13645
13774
  /* harmony export */ "activateState": () => (/* reexport safe */ _ActivateState__WEBPACK_IMPORTED_MODULE_4__.activateState),
13646
- /* harmony export */ "apiTokensActions": () => (/* reexport safe */ _ApiTokensState__WEBPACK_IMPORTED_MODULE_22__.apiTokensActions),
13647
- /* harmony export */ "apiTokensReducers": () => (/* reexport safe */ _ApiTokensState__WEBPACK_IMPORTED_MODULE_22__.apiTokensReducers),
13648
- /* harmony export */ "apiTokensState": () => (/* reexport safe */ _ApiTokensState__WEBPACK_IMPORTED_MODULE_22__.apiTokensState),
13649
- /* harmony export */ "authActions": () => (/* reexport safe */ _reducer__WEBPACK_IMPORTED_MODULE_32__.actions),
13650
- /* harmony export */ "authInitialState": () => (/* reexport safe */ _initialState__WEBPACK_IMPORTED_MODULE_33__.initialState),
13651
- /* harmony export */ "authMockSagas": () => (/* reexport safe */ _saga__WEBPACK_IMPORTED_MODULE_31__.mockSagas),
13652
- /* harmony export */ "authReducers": () => (/* reexport safe */ _reducer__WEBPACK_IMPORTED_MODULE_32__.reducer),
13653
- /* harmony export */ "authSagas": () => (/* reexport safe */ _saga__WEBPACK_IMPORTED_MODULE_31__.sagas),
13654
- /* harmony export */ "authStoreName": () => (/* reexport safe */ _constants__WEBPACK_IMPORTED_MODULE_34__.authStoreName),
13775
+ /* harmony export */ "apiTokensActions": () => (/* reexport safe */ _ApiTokensState__WEBPACK_IMPORTED_MODULE_24__.apiTokensActions),
13776
+ /* harmony export */ "apiTokensReducers": () => (/* reexport safe */ _ApiTokensState__WEBPACK_IMPORTED_MODULE_24__.apiTokensReducers),
13777
+ /* harmony export */ "apiTokensState": () => (/* reexport safe */ _ApiTokensState__WEBPACK_IMPORTED_MODULE_24__.apiTokensState),
13778
+ /* harmony export */ "authActions": () => (/* reexport safe */ _reducer__WEBPACK_IMPORTED_MODULE_34__.actions),
13779
+ /* harmony export */ "authInitialState": () => (/* reexport safe */ _initialState__WEBPACK_IMPORTED_MODULE_35__.initialState),
13780
+ /* harmony export */ "authMockSagas": () => (/* reexport safe */ _saga__WEBPACK_IMPORTED_MODULE_33__.mockSagas),
13781
+ /* harmony export */ "authReducers": () => (/* reexport safe */ _reducer__WEBPACK_IMPORTED_MODULE_34__.reducer),
13782
+ /* harmony export */ "authSagas": () => (/* reexport safe */ _saga__WEBPACK_IMPORTED_MODULE_33__.sagas),
13783
+ /* harmony export */ "authStoreName": () => (/* reexport safe */ _constants__WEBPACK_IMPORTED_MODULE_36__.authStoreName),
13655
13784
  /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__),
13656
- /* harmony export */ "forgotPasswordActions": () => (/* reexport safe */ _ForgotPasswordState__WEBPACK_IMPORTED_MODULE_8__.forgotPasswordActions),
13657
- /* harmony export */ "forgotPasswordReducers": () => (/* reexport safe */ _ForgotPasswordState__WEBPACK_IMPORTED_MODULE_8__.forgotPasswordReducers),
13658
- /* harmony export */ "forgotPasswordState": () => (/* reexport safe */ _ForgotPasswordState__WEBPACK_IMPORTED_MODULE_8__.forgotPasswordState),
13785
+ /* harmony export */ "forgotPasswordActions": () => (/* reexport safe */ _ForgotPasswordState__WEBPACK_IMPORTED_MODULE_10__.forgotPasswordActions),
13786
+ /* harmony export */ "forgotPasswordReducers": () => (/* reexport safe */ _ForgotPasswordState__WEBPACK_IMPORTED_MODULE_10__.forgotPasswordReducers),
13787
+ /* harmony export */ "forgotPasswordState": () => (/* reexport safe */ _ForgotPasswordState__WEBPACK_IMPORTED_MODULE_10__.forgotPasswordState),
13788
+ /* harmony export */ "impersonateActions": () => (/* reexport safe */ _ImpersonationState__WEBPACK_IMPORTED_MODULE_6__.impersonateActions),
13789
+ /* harmony export */ "impersonateReducers": () => (/* reexport safe */ _ImpersonationState__WEBPACK_IMPORTED_MODULE_6__.impersonateReducers),
13790
+ /* harmony export */ "impersonateState": () => (/* reexport safe */ _ImpersonationState__WEBPACK_IMPORTED_MODULE_6__.impersonateState),
13659
13791
  /* harmony export */ "loginActions": () => (/* reexport safe */ _LoginState__WEBPACK_IMPORTED_MODULE_2__.loginActions),
13660
13792
  /* harmony export */ "loginReducers": () => (/* reexport safe */ _LoginState__WEBPACK_IMPORTED_MODULE_2__.loginReducers),
13661
13793
  /* harmony export */ "loginState": () => (/* reexport safe */ _LoginState__WEBPACK_IMPORTED_MODULE_2__.loginState),
13662
- /* harmony export */ "mfaActions": () => (/* reexport safe */ _MfaState__WEBPACK_IMPORTED_MODULE_14__.mfaActions),
13663
- /* harmony export */ "mfaReducers": () => (/* reexport safe */ _MfaState__WEBPACK_IMPORTED_MODULE_14__.mfaReducers),
13664
- /* harmony export */ "mfaState": () => (/* reexport safe */ _MfaState__WEBPACK_IMPORTED_MODULE_14__.mfaState),
13665
- /* harmony export */ "profileActions": () => (/* reexport safe */ _ProfileState__WEBPACK_IMPORTED_MODULE_15__.profileActions),
13666
- /* harmony export */ "profileReducers": () => (/* reexport safe */ _ProfileState__WEBPACK_IMPORTED_MODULE_15__.profileReducers),
13667
- /* harmony export */ "profileState": () => (/* reexport safe */ _ProfileState__WEBPACK_IMPORTED_MODULE_15__.profileState),
13668
- /* harmony export */ "provisioningActions": () => (/* reexport safe */ _Provisioning__WEBPACK_IMPORTED_MODULE_30__.provisioningActions),
13669
- /* harmony export */ "provisioningReducers": () => (/* reexport safe */ _Provisioning__WEBPACK_IMPORTED_MODULE_30__.provisioningReducers),
13670
- /* harmony export */ "provisioningState": () => (/* reexport safe */ _Provisioning__WEBPACK_IMPORTED_MODULE_30__.provisioningState),
13671
- /* harmony export */ "resetPhoneNumberActions": () => (/* reexport safe */ _ResetPhoneNumberState__WEBPACK_IMPORTED_MODULE_10__.resetPhoneNumberActions),
13672
- /* harmony export */ "resetPhoneNumberReducers": () => (/* reexport safe */ _ResetPhoneNumberState__WEBPACK_IMPORTED_MODULE_10__.resetPhoneNumberReducers),
13673
- /* harmony export */ "resetPhoneNumberState": () => (/* reexport safe */ _ResetPhoneNumberState__WEBPACK_IMPORTED_MODULE_10__.resetPhoneNumberState),
13674
- /* harmony export */ "restrictionsActions": () => (/* reexport safe */ _RestrictionsState__WEBPACK_IMPORTED_MODULE_29__.restrictionsActions),
13675
- /* harmony export */ "restrictionsReducers": () => (/* reexport safe */ _RestrictionsState__WEBPACK_IMPORTED_MODULE_29__.restrictionsReducers),
13676
- /* harmony export */ "restrictionsState": () => (/* reexport safe */ _RestrictionsState__WEBPACK_IMPORTED_MODULE_29__.restrictionsState),
13677
- /* harmony export */ "rolesActions": () => (/* reexport safe */ _RolesState__WEBPACK_IMPORTED_MODULE_26__.rolesActions),
13678
- /* harmony export */ "rolesReducers": () => (/* reexport safe */ _RolesState__WEBPACK_IMPORTED_MODULE_26__.rolesReducers),
13679
- /* harmony export */ "rolesState": () => (/* reexport safe */ _RolesState__WEBPACK_IMPORTED_MODULE_26__.rolesState),
13680
- /* harmony export */ "securityPolicyActions": () => (/* reexport safe */ _SecurityPolicyState__WEBPACK_IMPORTED_MODULE_23__.securityPolicyActions),
13681
- /* harmony export */ "securityPolicyReducers": () => (/* reexport safe */ _SecurityPolicyState__WEBPACK_IMPORTED_MODULE_23__.securityPolicyReducers),
13682
- /* harmony export */ "securityPolicyState": () => (/* reexport safe */ _SecurityPolicyState__WEBPACK_IMPORTED_MODULE_23__.securityPolicyState),
13683
- /* harmony export */ "sessionsActions": () => (/* reexport safe */ _SessionsState__WEBPACK_IMPORTED_MODULE_27__.sessionsActions),
13684
- /* harmony export */ "sessionsPolicyActions": () => (/* reexport safe */ _SessionsPolicyState__WEBPACK_IMPORTED_MODULE_28__.sessionsPolicyActions),
13685
- /* harmony export */ "sessionsPolicyReducers": () => (/* reexport safe */ _SessionsPolicyState__WEBPACK_IMPORTED_MODULE_28__.sessionsPolicyReducers),
13686
- /* harmony export */ "sessionsPolicyState": () => (/* reexport safe */ _SessionsPolicyState__WEBPACK_IMPORTED_MODULE_28__.sessionsPolicyState),
13687
- /* harmony export */ "sessionsReducers": () => (/* reexport safe */ _SessionsState__WEBPACK_IMPORTED_MODULE_27__.sessionsReducers),
13688
- /* harmony export */ "sessionsState": () => (/* reexport safe */ _SessionsState__WEBPACK_IMPORTED_MODULE_27__.sessionsState),
13689
- /* harmony export */ "signUpActions": () => (/* reexport safe */ _SignUp__WEBPACK_IMPORTED_MODULE_20__.signUpActions),
13690
- /* harmony export */ "signUpReducers": () => (/* reexport safe */ _SignUp__WEBPACK_IMPORTED_MODULE_20__.signUpReducers),
13691
- /* harmony export */ "signUpState": () => (/* reexport safe */ _SignUp__WEBPACK_IMPORTED_MODULE_20__.signUpState),
13692
- /* harmony export */ "socialLoginState": () => (/* reexport safe */ _SocialLogins__WEBPACK_IMPORTED_MODULE_18__.socialLoginState),
13693
- /* harmony export */ "socialLoginsActions": () => (/* reexport safe */ _SocialLogins__WEBPACK_IMPORTED_MODULE_18__.socialLoginsActions),
13694
- /* harmony export */ "socialLoginsReducer": () => (/* reexport safe */ _SocialLogins__WEBPACK_IMPORTED_MODULE_18__.socialLoginsReducer),
13695
- /* harmony export */ "ssoActions": () => (/* reexport safe */ _SSOState__WEBPACK_IMPORTED_MODULE_12__.ssoActions),
13696
- /* harmony export */ "ssoReducers": () => (/* reexport safe */ _SSOState__WEBPACK_IMPORTED_MODULE_12__.ssoReducers),
13697
- /* harmony export */ "ssoState": () => (/* reexport safe */ _SSOState__WEBPACK_IMPORTED_MODULE_12__.ssoState),
13698
- /* harmony export */ "teamActions": () => (/* reexport safe */ _TeamState__WEBPACK_IMPORTED_MODULE_17__.teamActions),
13699
- /* harmony export */ "teamReducers": () => (/* reexport safe */ _TeamState__WEBPACK_IMPORTED_MODULE_17__.teamReducers),
13700
- /* harmony export */ "teamState": () => (/* reexport safe */ _TeamState__WEBPACK_IMPORTED_MODULE_17__.teamState),
13701
- /* harmony export */ "tenantsActions": () => (/* reexport safe */ _TenantsState__WEBPACK_IMPORTED_MODULE_25__.tenantsActions),
13702
- /* harmony export */ "tenantsReducers": () => (/* reexport safe */ _TenantsState__WEBPACK_IMPORTED_MODULE_25__.tenantsReducers),
13703
- /* harmony export */ "tenantsState": () => (/* reexport safe */ _TenantsState__WEBPACK_IMPORTED_MODULE_25__.tenantsState)
13794
+ /* harmony export */ "mfaActions": () => (/* reexport safe */ _MfaState__WEBPACK_IMPORTED_MODULE_16__.mfaActions),
13795
+ /* harmony export */ "mfaReducers": () => (/* reexport safe */ _MfaState__WEBPACK_IMPORTED_MODULE_16__.mfaReducers),
13796
+ /* harmony export */ "mfaState": () => (/* reexport safe */ _MfaState__WEBPACK_IMPORTED_MODULE_16__.mfaState),
13797
+ /* harmony export */ "profileActions": () => (/* reexport safe */ _ProfileState__WEBPACK_IMPORTED_MODULE_17__.profileActions),
13798
+ /* harmony export */ "profileReducers": () => (/* reexport safe */ _ProfileState__WEBPACK_IMPORTED_MODULE_17__.profileReducers),
13799
+ /* harmony export */ "profileState": () => (/* reexport safe */ _ProfileState__WEBPACK_IMPORTED_MODULE_17__.profileState),
13800
+ /* harmony export */ "provisioningActions": () => (/* reexport safe */ _Provisioning__WEBPACK_IMPORTED_MODULE_32__.provisioningActions),
13801
+ /* harmony export */ "provisioningReducers": () => (/* reexport safe */ _Provisioning__WEBPACK_IMPORTED_MODULE_32__.provisioningReducers),
13802
+ /* harmony export */ "provisioningState": () => (/* reexport safe */ _Provisioning__WEBPACK_IMPORTED_MODULE_32__.provisioningState),
13803
+ /* harmony export */ "resetPhoneNumberActions": () => (/* reexport safe */ _ResetPhoneNumberState__WEBPACK_IMPORTED_MODULE_12__.resetPhoneNumberActions),
13804
+ /* harmony export */ "resetPhoneNumberReducers": () => (/* reexport safe */ _ResetPhoneNumberState__WEBPACK_IMPORTED_MODULE_12__.resetPhoneNumberReducers),
13805
+ /* harmony export */ "resetPhoneNumberState": () => (/* reexport safe */ _ResetPhoneNumberState__WEBPACK_IMPORTED_MODULE_12__.resetPhoneNumberState),
13806
+ /* harmony export */ "restrictionsActions": () => (/* reexport safe */ _RestrictionsState__WEBPACK_IMPORTED_MODULE_31__.restrictionsActions),
13807
+ /* harmony export */ "restrictionsReducers": () => (/* reexport safe */ _RestrictionsState__WEBPACK_IMPORTED_MODULE_31__.restrictionsReducers),
13808
+ /* harmony export */ "restrictionsState": () => (/* reexport safe */ _RestrictionsState__WEBPACK_IMPORTED_MODULE_31__.restrictionsState),
13809
+ /* harmony export */ "rolesActions": () => (/* reexport safe */ _RolesState__WEBPACK_IMPORTED_MODULE_28__.rolesActions),
13810
+ /* harmony export */ "rolesReducers": () => (/* reexport safe */ _RolesState__WEBPACK_IMPORTED_MODULE_28__.rolesReducers),
13811
+ /* harmony export */ "rolesState": () => (/* reexport safe */ _RolesState__WEBPACK_IMPORTED_MODULE_28__.rolesState),
13812
+ /* harmony export */ "securityPolicyActions": () => (/* reexport safe */ _SecurityPolicyState__WEBPACK_IMPORTED_MODULE_25__.securityPolicyActions),
13813
+ /* harmony export */ "securityPolicyReducers": () => (/* reexport safe */ _SecurityPolicyState__WEBPACK_IMPORTED_MODULE_25__.securityPolicyReducers),
13814
+ /* harmony export */ "securityPolicyState": () => (/* reexport safe */ _SecurityPolicyState__WEBPACK_IMPORTED_MODULE_25__.securityPolicyState),
13815
+ /* harmony export */ "sessionsActions": () => (/* reexport safe */ _SessionsState__WEBPACK_IMPORTED_MODULE_29__.sessionsActions),
13816
+ /* harmony export */ "sessionsPolicyActions": () => (/* reexport safe */ _SessionsPolicyState__WEBPACK_IMPORTED_MODULE_30__.sessionsPolicyActions),
13817
+ /* harmony export */ "sessionsPolicyReducers": () => (/* reexport safe */ _SessionsPolicyState__WEBPACK_IMPORTED_MODULE_30__.sessionsPolicyReducers),
13818
+ /* harmony export */ "sessionsPolicyState": () => (/* reexport safe */ _SessionsPolicyState__WEBPACK_IMPORTED_MODULE_30__.sessionsPolicyState),
13819
+ /* harmony export */ "sessionsReducers": () => (/* reexport safe */ _SessionsState__WEBPACK_IMPORTED_MODULE_29__.sessionsReducers),
13820
+ /* harmony export */ "sessionsState": () => (/* reexport safe */ _SessionsState__WEBPACK_IMPORTED_MODULE_29__.sessionsState),
13821
+ /* harmony export */ "signUpActions": () => (/* reexport safe */ _SignUp__WEBPACK_IMPORTED_MODULE_22__.signUpActions),
13822
+ /* harmony export */ "signUpReducers": () => (/* reexport safe */ _SignUp__WEBPACK_IMPORTED_MODULE_22__.signUpReducers),
13823
+ /* harmony export */ "signUpState": () => (/* reexport safe */ _SignUp__WEBPACK_IMPORTED_MODULE_22__.signUpState),
13824
+ /* harmony export */ "socialLoginState": () => (/* reexport safe */ _SocialLogins__WEBPACK_IMPORTED_MODULE_20__.socialLoginState),
13825
+ /* harmony export */ "socialLoginsActions": () => (/* reexport safe */ _SocialLogins__WEBPACK_IMPORTED_MODULE_20__.socialLoginsActions),
13826
+ /* harmony export */ "socialLoginsReducer": () => (/* reexport safe */ _SocialLogins__WEBPACK_IMPORTED_MODULE_20__.socialLoginsReducer),
13827
+ /* harmony export */ "ssoActions": () => (/* reexport safe */ _SSOState__WEBPACK_IMPORTED_MODULE_14__.ssoActions),
13828
+ /* harmony export */ "ssoReducers": () => (/* reexport safe */ _SSOState__WEBPACK_IMPORTED_MODULE_14__.ssoReducers),
13829
+ /* harmony export */ "ssoState": () => (/* reexport safe */ _SSOState__WEBPACK_IMPORTED_MODULE_14__.ssoState),
13830
+ /* harmony export */ "teamActions": () => (/* reexport safe */ _TeamState__WEBPACK_IMPORTED_MODULE_19__.teamActions),
13831
+ /* harmony export */ "teamReducers": () => (/* reexport safe */ _TeamState__WEBPACK_IMPORTED_MODULE_19__.teamReducers),
13832
+ /* harmony export */ "teamState": () => (/* reexport safe */ _TeamState__WEBPACK_IMPORTED_MODULE_19__.teamState),
13833
+ /* harmony export */ "tenantsActions": () => (/* reexport safe */ _TenantsState__WEBPACK_IMPORTED_MODULE_27__.tenantsActions),
13834
+ /* harmony export */ "tenantsReducers": () => (/* reexport safe */ _TenantsState__WEBPACK_IMPORTED_MODULE_27__.tenantsReducers),
13835
+ /* harmony export */ "tenantsState": () => (/* reexport safe */ _TenantsState__WEBPACK_IMPORTED_MODULE_27__.tenantsState)
13704
13836
  /* harmony export */ });
13705
- /* harmony import */ var _reducer__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ./reducer */ "../../dist/@frontegg/redux-store/auth/reducer.js");
13706
- /* harmony import */ var _saga__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ./saga */ "../../dist/@frontegg/redux-store/auth/saga.js");
13707
- /* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ../constants */ "../../dist/@frontegg/redux-store/constants.js");
13708
- /* harmony import */ var _initialState__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ./initialState */ "../../dist/@frontegg/redux-store/auth/initialState.js");
13837
+ /* harmony import */ var _reducer__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ./reducer */ "../../dist/@frontegg/redux-store/auth/reducer.js");
13838
+ /* harmony import */ var _saga__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ./saga */ "../../dist/@frontegg/redux-store/auth/saga.js");
13839
+ /* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ../constants */ "../../dist/@frontegg/redux-store/constants.js");
13840
+ /* harmony import */ var _initialState__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ./initialState */ "../../dist/@frontegg/redux-store/auth/initialState.js");
13709
13841
  /* harmony import */ var _interfaces__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./interfaces */ "../../dist/@frontegg/redux-store/auth/interfaces.js");
13710
13842
  /* harmony import */ var _LoginState_interfaces__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./LoginState/interfaces */ "../../dist/@frontegg/redux-store/auth/LoginState/interfaces.js");
13711
13843
  /* harmony import */ var _LoginState__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./LoginState */ "../../dist/@frontegg/redux-store/auth/LoginState/index.js");
13712
13844
  /* harmony import */ var _ActivateState_interfaces__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./ActivateState/interfaces */ "../../dist/@frontegg/redux-store/auth/ActivateState/interfaces.js");
13713
13845
  /* harmony import */ var _ActivateState__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./ActivateState */ "../../dist/@frontegg/redux-store/auth/ActivateState/index.js");
13714
- /* harmony import */ var _AcceptInvitationState_interfaces__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./AcceptInvitationState/interfaces */ "../../dist/@frontegg/redux-store/auth/AcceptInvitationState/interfaces.js");
13715
- /* harmony import */ var _AcceptInvitationState__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./AcceptInvitationState */ "../../dist/@frontegg/redux-store/auth/AcceptInvitationState/index.js");
13716
- /* harmony import */ var _ForgotPasswordState_interfaces__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./ForgotPasswordState/interfaces */ "../../dist/@frontegg/redux-store/auth/ForgotPasswordState/interfaces.js");
13717
- /* harmony import */ var _ForgotPasswordState__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./ForgotPasswordState */ "../../dist/@frontegg/redux-store/auth/ForgotPasswordState/index.js");
13718
- /* harmony import */ var _ResetPhoneNumberState_interfaces__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./ResetPhoneNumberState/interfaces */ "../../dist/@frontegg/redux-store/auth/ResetPhoneNumberState/interfaces.js");
13719
- /* harmony import */ var _ResetPhoneNumberState__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./ResetPhoneNumberState */ "../../dist/@frontegg/redux-store/auth/ResetPhoneNumberState/index.js");
13720
- /* harmony import */ var _SSOState_interfaces__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./SSOState/interfaces */ "../../dist/@frontegg/redux-store/auth/SSOState/interfaces.js");
13721
- /* harmony import */ var _SSOState__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./SSOState */ "../../dist/@frontegg/redux-store/auth/SSOState/index.js");
13722
- /* harmony import */ var _MfaState_interfaces__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./MfaState/interfaces */ "../../dist/@frontegg/redux-store/auth/MfaState/interfaces.js");
13723
- /* harmony import */ var _MfaState__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./MfaState */ "../../dist/@frontegg/redux-store/auth/MfaState/index.js");
13724
- /* harmony import */ var _ProfileState__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./ProfileState */ "../../dist/@frontegg/redux-store/auth/ProfileState/index.js");
13725
- /* harmony import */ var _TeamState_interfaces__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./TeamState/interfaces */ "../../dist/@frontegg/redux-store/auth/TeamState/interfaces.js");
13726
- /* harmony import */ var _TeamState__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./TeamState */ "../../dist/@frontegg/redux-store/auth/TeamState/index.js");
13727
- /* harmony import */ var _SocialLogins__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./SocialLogins */ "../../dist/@frontegg/redux-store/auth/SocialLogins/index.js");
13728
- /* harmony import */ var _SignUp_interfaces__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ./SignUp/interfaces */ "../../dist/@frontegg/redux-store/auth/SignUp/interfaces.js");
13729
- /* harmony import */ var _SignUp__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ./SignUp */ "../../dist/@frontegg/redux-store/auth/SignUp/index.js");
13730
- /* harmony import */ var _ApiTokensState_interfaces__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ./ApiTokensState/interfaces */ "../../dist/@frontegg/redux-store/auth/ApiTokensState/interfaces.js");
13731
- /* harmony import */ var _ApiTokensState__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ./ApiTokensState */ "../../dist/@frontegg/redux-store/auth/ApiTokensState/index.js");
13732
- /* harmony import */ var _SecurityPolicyState__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ./SecurityPolicyState */ "../../dist/@frontegg/redux-store/auth/SecurityPolicyState/index.js");
13733
- /* harmony import */ var _AccountSettingsState__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ./AccountSettingsState */ "../../dist/@frontegg/redux-store/auth/AccountSettingsState/index.js");
13734
- /* harmony import */ var _TenantsState__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ./TenantsState */ "../../dist/@frontegg/redux-store/auth/TenantsState/index.js");
13735
- /* harmony import */ var _RolesState__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ./RolesState */ "../../dist/@frontegg/redux-store/auth/RolesState/index.js");
13736
- /* harmony import */ var _SessionsState__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(/*! ./SessionsState */ "../../dist/@frontegg/redux-store/auth/SessionsState/index.js");
13737
- /* harmony import */ var _SessionsPolicyState__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ./SessionsPolicyState */ "../../dist/@frontegg/redux-store/auth/SessionsPolicyState/index.js");
13738
- /* harmony import */ var _RestrictionsState__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ./RestrictionsState */ "../../dist/@frontegg/redux-store/auth/RestrictionsState/index.js");
13739
- /* harmony import */ var _Provisioning__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ./Provisioning */ "../../dist/@frontegg/redux-store/auth/Provisioning/index.js");
13846
+ /* harmony import */ var _ImpersonationState_interfaces__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./ImpersonationState/interfaces */ "../../dist/@frontegg/redux-store/auth/ImpersonationState/interfaces.js");
13847
+ /* harmony import */ var _ImpersonationState__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./ImpersonationState */ "../../dist/@frontegg/redux-store/auth/ImpersonationState/index.js");
13848
+ /* harmony import */ var _AcceptInvitationState_interfaces__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./AcceptInvitationState/interfaces */ "../../dist/@frontegg/redux-store/auth/AcceptInvitationState/interfaces.js");
13849
+ /* harmony import */ var _AcceptInvitationState__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./AcceptInvitationState */ "../../dist/@frontegg/redux-store/auth/AcceptInvitationState/index.js");
13850
+ /* harmony import */ var _ForgotPasswordState_interfaces__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./ForgotPasswordState/interfaces */ "../../dist/@frontegg/redux-store/auth/ForgotPasswordState/interfaces.js");
13851
+ /* harmony import */ var _ForgotPasswordState__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./ForgotPasswordState */ "../../dist/@frontegg/redux-store/auth/ForgotPasswordState/index.js");
13852
+ /* harmony import */ var _ResetPhoneNumberState_interfaces__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./ResetPhoneNumberState/interfaces */ "../../dist/@frontegg/redux-store/auth/ResetPhoneNumberState/interfaces.js");
13853
+ /* harmony import */ var _ResetPhoneNumberState__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./ResetPhoneNumberState */ "../../dist/@frontegg/redux-store/auth/ResetPhoneNumberState/index.js");
13854
+ /* harmony import */ var _SSOState_interfaces__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./SSOState/interfaces */ "../../dist/@frontegg/redux-store/auth/SSOState/interfaces.js");
13855
+ /* harmony import */ var _SSOState__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./SSOState */ "../../dist/@frontegg/redux-store/auth/SSOState/index.js");
13856
+ /* harmony import */ var _MfaState_interfaces__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./MfaState/interfaces */ "../../dist/@frontegg/redux-store/auth/MfaState/interfaces.js");
13857
+ /* harmony import */ var _MfaState__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./MfaState */ "../../dist/@frontegg/redux-store/auth/MfaState/index.js");
13858
+ /* harmony import */ var _ProfileState__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./ProfileState */ "../../dist/@frontegg/redux-store/auth/ProfileState/index.js");
13859
+ /* harmony import */ var _TeamState_interfaces__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./TeamState/interfaces */ "../../dist/@frontegg/redux-store/auth/TeamState/interfaces.js");
13860
+ /* harmony import */ var _TeamState__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ./TeamState */ "../../dist/@frontegg/redux-store/auth/TeamState/index.js");
13861
+ /* harmony import */ var _SocialLogins__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ./SocialLogins */ "../../dist/@frontegg/redux-store/auth/SocialLogins/index.js");
13862
+ /* harmony import */ var _SignUp_interfaces__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ./SignUp/interfaces */ "../../dist/@frontegg/redux-store/auth/SignUp/interfaces.js");
13863
+ /* harmony import */ var _SignUp__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ./SignUp */ "../../dist/@frontegg/redux-store/auth/SignUp/index.js");
13864
+ /* harmony import */ var _ApiTokensState_interfaces__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ./ApiTokensState/interfaces */ "../../dist/@frontegg/redux-store/auth/ApiTokensState/interfaces.js");
13865
+ /* harmony import */ var _ApiTokensState__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ./ApiTokensState */ "../../dist/@frontegg/redux-store/auth/ApiTokensState/index.js");
13866
+ /* harmony import */ var _SecurityPolicyState__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ./SecurityPolicyState */ "../../dist/@frontegg/redux-store/auth/SecurityPolicyState/index.js");
13867
+ /* harmony import */ var _AccountSettingsState__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ./AccountSettingsState */ "../../dist/@frontegg/redux-store/auth/AccountSettingsState/index.js");
13868
+ /* harmony import */ var _TenantsState__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(/*! ./TenantsState */ "../../dist/@frontegg/redux-store/auth/TenantsState/index.js");
13869
+ /* harmony import */ var _RolesState__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ./RolesState */ "../../dist/@frontegg/redux-store/auth/RolesState/index.js");
13870
+ /* harmony import */ var _SessionsState__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ./SessionsState */ "../../dist/@frontegg/redux-store/auth/SessionsState/index.js");
13871
+ /* harmony import */ var _SessionsPolicyState__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ./SessionsPolicyState */ "../../dist/@frontegg/redux-store/auth/SessionsPolicyState/index.js");
13872
+ /* harmony import */ var _RestrictionsState__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ./RestrictionsState */ "../../dist/@frontegg/redux-store/auth/RestrictionsState/index.js");
13873
+ /* harmony import */ var _Provisioning__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ./Provisioning */ "../../dist/@frontegg/redux-store/auth/Provisioning/index.js");
13740
13874
 
13741
13875
 
13742
13876
 
@@ -13780,18 +13914,20 @@ __webpack_require__.r(__webpack_exports__);
13780
13914
 
13781
13915
 
13782
13916
 
13917
+
13918
+
13783
13919
 
13784
13920
 
13785
13921
 
13786
13922
  // export store
13787
13923
 
13788
13924
  /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ({
13789
- sagas: _saga__WEBPACK_IMPORTED_MODULE_31__.sagas,
13790
- mockSagas: _saga__WEBPACK_IMPORTED_MODULE_31__.mockSagas,
13791
- storeName: _constants__WEBPACK_IMPORTED_MODULE_34__.authStoreName,
13792
- initialState: _initialState__WEBPACK_IMPORTED_MODULE_33__.initialState,
13793
- reducer: _reducer__WEBPACK_IMPORTED_MODULE_32__.reducer,
13794
- actions: _reducer__WEBPACK_IMPORTED_MODULE_32__.actions
13925
+ sagas: _saga__WEBPACK_IMPORTED_MODULE_33__.sagas,
13926
+ mockSagas: _saga__WEBPACK_IMPORTED_MODULE_33__.mockSagas,
13927
+ storeName: _constants__WEBPACK_IMPORTED_MODULE_36__.authStoreName,
13928
+ initialState: _initialState__WEBPACK_IMPORTED_MODULE_35__.initialState,
13929
+ reducer: _reducer__WEBPACK_IMPORTED_MODULE_34__.reducer,
13930
+ actions: _reducer__WEBPACK_IMPORTED_MODULE_34__.actions
13795
13931
  });
13796
13932
 
13797
13933
  /***/ }),
@@ -13882,6 +14018,7 @@ const initialState = (0,_babel_runtime_helpers_esm_extends__WEBPACK_IMPORTED_MOD
13882
14018
  loginUrl: '/account/login',
13883
14019
  logoutUrl: '/account/logout',
13884
14020
  activateUrl: '/account/activate',
14021
+ impersonationUrl: '/account/impersonate',
13885
14022
  acceptInvitationUrl: '/account/invitation/accept',
13886
14023
  forgetPasswordUrl: '/account/forget-password',
13887
14024
  resetPhoneNumberUrl: '/account/reset-phone-number',
@@ -13980,24 +14117,26 @@ __webpack_require__.r(__webpack_exports__);
13980
14117
  /* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../constants */ "../../dist/@frontegg/redux-store/constants.js");
13981
14118
  /* harmony import */ var _LoginState__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./LoginState */ "../../dist/@frontegg/redux-store/auth/LoginState/index.js");
13982
14119
  /* harmony import */ var _ActivateState__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./ActivateState */ "../../dist/@frontegg/redux-store/auth/ActivateState/index.js");
13983
- /* harmony import */ var _AcceptInvitationState__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./AcceptInvitationState */ "../../dist/@frontegg/redux-store/auth/AcceptInvitationState/index.js");
13984
- /* harmony import */ var _ForgotPasswordState__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./ForgotPasswordState */ "../../dist/@frontegg/redux-store/auth/ForgotPasswordState/index.js");
13985
- /* harmony import */ var _SSOState__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./SSOState */ "../../dist/@frontegg/redux-store/auth/SSOState/index.js");
13986
- /* harmony import */ var _MfaState__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./MfaState */ "../../dist/@frontegg/redux-store/auth/MfaState/index.js");
13987
- /* harmony import */ var _ProfileState__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./ProfileState */ "../../dist/@frontegg/redux-store/auth/ProfileState/index.js");
13988
- /* harmony import */ var _TeamState__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./TeamState */ "../../dist/@frontegg/redux-store/auth/TeamState/index.js");
14120
+ /* harmony import */ var _AcceptInvitationState__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./AcceptInvitationState */ "../../dist/@frontegg/redux-store/auth/AcceptInvitationState/index.js");
14121
+ /* harmony import */ var _ForgotPasswordState__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./ForgotPasswordState */ "../../dist/@frontegg/redux-store/auth/ForgotPasswordState/index.js");
14122
+ /* harmony import */ var _SSOState__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./SSOState */ "../../dist/@frontegg/redux-store/auth/SSOState/index.js");
14123
+ /* harmony import */ var _MfaState__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./MfaState */ "../../dist/@frontegg/redux-store/auth/MfaState/index.js");
14124
+ /* harmony import */ var _ProfileState__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./ProfileState */ "../../dist/@frontegg/redux-store/auth/ProfileState/index.js");
14125
+ /* harmony import */ var _TeamState__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./TeamState */ "../../dist/@frontegg/redux-store/auth/TeamState/index.js");
13989
14126
  /* harmony import */ var _SocialLogins__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./SocialLogins */ "../../dist/@frontegg/redux-store/auth/SocialLogins/index.js");
13990
- /* harmony import */ var _SignUp__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./SignUp */ "../../dist/@frontegg/redux-store/auth/SignUp/index.js");
13991
- /* harmony import */ var _ApiTokensState__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./ApiTokensState */ "../../dist/@frontegg/redux-store/auth/ApiTokensState/index.js");
13992
- /* harmony import */ var _SecurityPolicyState__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./SecurityPolicyState */ "../../dist/@frontegg/redux-store/auth/SecurityPolicyState/index.js");
13993
- /* harmony import */ var _AccountSettingsState__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./AccountSettingsState */ "../../dist/@frontegg/redux-store/auth/AccountSettingsState/index.js");
13994
- /* harmony import */ var _TenantsState__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ./TenantsState */ "../../dist/@frontegg/redux-store/auth/TenantsState/index.js");
13995
- /* harmony import */ var _RolesState__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ./RolesState */ "../../dist/@frontegg/redux-store/auth/RolesState/index.js");
13996
- /* harmony import */ var _ResetPhoneNumberState__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./ResetPhoneNumberState */ "../../dist/@frontegg/redux-store/auth/ResetPhoneNumberState/index.js");
13997
- /* harmony import */ var _SessionsState__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ./SessionsState */ "../../dist/@frontegg/redux-store/auth/SessionsState/index.js");
13998
- /* harmony import */ var _SessionsPolicyState__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ./SessionsPolicyState */ "../../dist/@frontegg/redux-store/auth/SessionsPolicyState/index.js");
13999
- /* harmony import */ var _RestrictionsState__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ./RestrictionsState */ "../../dist/@frontegg/redux-store/auth/RestrictionsState/index.js");
14000
- /* harmony import */ var _Provisioning__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ./Provisioning */ "../../dist/@frontegg/redux-store/auth/Provisioning/index.js");
14127
+ /* harmony import */ var _SignUp__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./SignUp */ "../../dist/@frontegg/redux-store/auth/SignUp/index.js");
14128
+ /* harmony import */ var _ApiTokensState__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./ApiTokensState */ "../../dist/@frontegg/redux-store/auth/ApiTokensState/index.js");
14129
+ /* harmony import */ var _SecurityPolicyState__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./SecurityPolicyState */ "../../dist/@frontegg/redux-store/auth/SecurityPolicyState/index.js");
14130
+ /* harmony import */ var _AccountSettingsState__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ./AccountSettingsState */ "../../dist/@frontegg/redux-store/auth/AccountSettingsState/index.js");
14131
+ /* harmony import */ var _TenantsState__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ./TenantsState */ "../../dist/@frontegg/redux-store/auth/TenantsState/index.js");
14132
+ /* harmony import */ var _RolesState__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ./RolesState */ "../../dist/@frontegg/redux-store/auth/RolesState/index.js");
14133
+ /* harmony import */ var _ResetPhoneNumberState__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./ResetPhoneNumberState */ "../../dist/@frontegg/redux-store/auth/ResetPhoneNumberState/index.js");
14134
+ /* harmony import */ var _SessionsState__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ./SessionsState */ "../../dist/@frontegg/redux-store/auth/SessionsState/index.js");
14135
+ /* harmony import */ var _SessionsPolicyState__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ./SessionsPolicyState */ "../../dist/@frontegg/redux-store/auth/SessionsPolicyState/index.js");
14136
+ /* harmony import */ var _RestrictionsState__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ./RestrictionsState */ "../../dist/@frontegg/redux-store/auth/RestrictionsState/index.js");
14137
+ /* harmony import */ var _Provisioning__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ./Provisioning */ "../../dist/@frontegg/redux-store/auth/Provisioning/index.js");
14138
+ /* harmony import */ var _ImpersonationState__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./ImpersonationState */ "../../dist/@frontegg/redux-store/auth/ImpersonationState/index.js");
14139
+
14001
14140
 
14002
14141
 
14003
14142
 
@@ -14035,10 +14174,10 @@ const {
14035
14174
  payload
14036
14175
  }) => (0,_babel_runtime_helpers_esm_extends__WEBPACK_IMPORTED_MODULE_0__["default"])({}, state, payload),
14037
14176
  setUser: (0,_utils__WEBPACK_IMPORTED_MODULE_4__.typeReducer)('user')
14038
- }, _LoginState__WEBPACK_IMPORTED_MODULE_5__.loginReducers, _SocialLogins__WEBPACK_IMPORTED_MODULE_6__.socialLoginsReducer, _ActivateState__WEBPACK_IMPORTED_MODULE_7__.activateAccountReducers, _AcceptInvitationState__WEBPACK_IMPORTED_MODULE_8__.acceptInvitationReducers, _ForgotPasswordState__WEBPACK_IMPORTED_MODULE_9__.forgotPasswordReducers, _ResetPhoneNumberState__WEBPACK_IMPORTED_MODULE_10__.resetPhoneNumberReducers, _SignUp__WEBPACK_IMPORTED_MODULE_11__.signUpReducers, _ProfileState__WEBPACK_IMPORTED_MODULE_12__.profileReducers, _SSOState__WEBPACK_IMPORTED_MODULE_13__.ssoReducers, _MfaState__WEBPACK_IMPORTED_MODULE_14__.mfaReducers, _TeamState__WEBPACK_IMPORTED_MODULE_15__.teamReducers, _ApiTokensState__WEBPACK_IMPORTED_MODULE_16__.apiTokensReducers, _SecurityPolicyState__WEBPACK_IMPORTED_MODULE_17__.securityPolicyReducers, _AccountSettingsState__WEBPACK_IMPORTED_MODULE_18__.accountSettingsReducers, _TenantsState__WEBPACK_IMPORTED_MODULE_19__.tenantsReducers, _RolesState__WEBPACK_IMPORTED_MODULE_20__.rolesReducers, _SessionsState__WEBPACK_IMPORTED_MODULE_21__.sessionsReducers, _SessionsPolicyState__WEBPACK_IMPORTED_MODULE_22__.sessionsPolicyReducers, _RestrictionsState__WEBPACK_IMPORTED_MODULE_23__.restrictionsReducers, _Provisioning__WEBPACK_IMPORTED_MODULE_24__.provisioningReducers)
14177
+ }, _LoginState__WEBPACK_IMPORTED_MODULE_5__.loginReducers, _SocialLogins__WEBPACK_IMPORTED_MODULE_6__.socialLoginsReducer, _ActivateState__WEBPACK_IMPORTED_MODULE_7__.activateAccountReducers, _ImpersonationState__WEBPACK_IMPORTED_MODULE_8__.impersonateReducers, _AcceptInvitationState__WEBPACK_IMPORTED_MODULE_9__.acceptInvitationReducers, _ForgotPasswordState__WEBPACK_IMPORTED_MODULE_10__.forgotPasswordReducers, _ResetPhoneNumberState__WEBPACK_IMPORTED_MODULE_11__.resetPhoneNumberReducers, _SignUp__WEBPACK_IMPORTED_MODULE_12__.signUpReducers, _ProfileState__WEBPACK_IMPORTED_MODULE_13__.profileReducers, _SSOState__WEBPACK_IMPORTED_MODULE_14__.ssoReducers, _MfaState__WEBPACK_IMPORTED_MODULE_15__.mfaReducers, _TeamState__WEBPACK_IMPORTED_MODULE_16__.teamReducers, _ApiTokensState__WEBPACK_IMPORTED_MODULE_17__.apiTokensReducers, _SecurityPolicyState__WEBPACK_IMPORTED_MODULE_18__.securityPolicyReducers, _AccountSettingsState__WEBPACK_IMPORTED_MODULE_19__.accountSettingsReducers, _TenantsState__WEBPACK_IMPORTED_MODULE_20__.tenantsReducers, _RolesState__WEBPACK_IMPORTED_MODULE_21__.rolesReducers, _SessionsState__WEBPACK_IMPORTED_MODULE_22__.sessionsReducers, _SessionsPolicyState__WEBPACK_IMPORTED_MODULE_23__.sessionsPolicyReducers, _RestrictionsState__WEBPACK_IMPORTED_MODULE_24__.restrictionsReducers, _Provisioning__WEBPACK_IMPORTED_MODULE_25__.provisioningReducers)
14039
14178
  });
14040
14179
 
14041
- const actions = (0,_babel_runtime_helpers_esm_extends__WEBPACK_IMPORTED_MODULE_0__["default"])({}, sliceActions, _LoginState__WEBPACK_IMPORTED_MODULE_5__.loginActions, _SocialLogins__WEBPACK_IMPORTED_MODULE_6__.socialLoginsActions, _ActivateState__WEBPACK_IMPORTED_MODULE_7__.activateAccountActions, _AcceptInvitationState__WEBPACK_IMPORTED_MODULE_8__.acceptInvitationActions, _ForgotPasswordState__WEBPACK_IMPORTED_MODULE_9__.forgotPasswordActions, _ResetPhoneNumberState__WEBPACK_IMPORTED_MODULE_10__.resetPhoneNumberActions, _SignUp__WEBPACK_IMPORTED_MODULE_11__.signUpActions, _ProfileState__WEBPACK_IMPORTED_MODULE_12__.profileActions, _SSOState__WEBPACK_IMPORTED_MODULE_13__.ssoActions, _MfaState__WEBPACK_IMPORTED_MODULE_14__.mfaActions, _TeamState__WEBPACK_IMPORTED_MODULE_15__.teamActions, _ApiTokensState__WEBPACK_IMPORTED_MODULE_16__.apiTokensActions, _SecurityPolicyState__WEBPACK_IMPORTED_MODULE_17__.securityPolicyActions, _AccountSettingsState__WEBPACK_IMPORTED_MODULE_18__.accountSettingsActions, _TenantsState__WEBPACK_IMPORTED_MODULE_19__.tenantsActions, _RolesState__WEBPACK_IMPORTED_MODULE_20__.rolesActions, _SessionsState__WEBPACK_IMPORTED_MODULE_21__.sessionsActions, _SessionsPolicyState__WEBPACK_IMPORTED_MODULE_22__.sessionsPolicyActions, _RestrictionsState__WEBPACK_IMPORTED_MODULE_23__.restrictionsActions, _Provisioning__WEBPACK_IMPORTED_MODULE_24__.provisioningActions);
14180
+ const actions = (0,_babel_runtime_helpers_esm_extends__WEBPACK_IMPORTED_MODULE_0__["default"])({}, sliceActions, _LoginState__WEBPACK_IMPORTED_MODULE_5__.loginActions, _SocialLogins__WEBPACK_IMPORTED_MODULE_6__.socialLoginsActions, _ActivateState__WEBPACK_IMPORTED_MODULE_7__.activateAccountActions, _AcceptInvitationState__WEBPACK_IMPORTED_MODULE_9__.acceptInvitationActions, _ForgotPasswordState__WEBPACK_IMPORTED_MODULE_10__.forgotPasswordActions, _ResetPhoneNumberState__WEBPACK_IMPORTED_MODULE_11__.resetPhoneNumberActions, _SignUp__WEBPACK_IMPORTED_MODULE_12__.signUpActions, _ProfileState__WEBPACK_IMPORTED_MODULE_13__.profileActions, _SSOState__WEBPACK_IMPORTED_MODULE_14__.ssoActions, _MfaState__WEBPACK_IMPORTED_MODULE_15__.mfaActions, _TeamState__WEBPACK_IMPORTED_MODULE_16__.teamActions, _ApiTokensState__WEBPACK_IMPORTED_MODULE_17__.apiTokensActions, _SecurityPolicyState__WEBPACK_IMPORTED_MODULE_18__.securityPolicyActions, _AccountSettingsState__WEBPACK_IMPORTED_MODULE_19__.accountSettingsActions, _TenantsState__WEBPACK_IMPORTED_MODULE_20__.tenantsActions, _RolesState__WEBPACK_IMPORTED_MODULE_21__.rolesActions, _SessionsState__WEBPACK_IMPORTED_MODULE_22__.sessionsActions, _SessionsPolicyState__WEBPACK_IMPORTED_MODULE_23__.sessionsPolicyActions, _RestrictionsState__WEBPACK_IMPORTED_MODULE_24__.restrictionsActions, _Provisioning__WEBPACK_IMPORTED_MODULE_25__.provisioningActions, _ImpersonationState__WEBPACK_IMPORTED_MODULE_8__.impersonateActions);
14042
14181
 
14043
14182
 
14044
14183
 
@@ -14078,6 +14217,8 @@ __webpack_require__.r(__webpack_exports__);
14078
14217
  /* harmony import */ var _SessionsPolicyState_saga__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ./SessionsPolicyState/saga */ "../../dist/@frontegg/redux-store/auth/SessionsPolicyState/saga.js");
14079
14218
  /* harmony import */ var _RestrictionsState_saga__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ./RestrictionsState/saga */ "../../dist/@frontegg/redux-store/auth/RestrictionsState/saga.js");
14080
14219
  /* harmony import */ var _Provisioning_saga__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ./Provisioning/saga */ "../../dist/@frontegg/redux-store/auth/Provisioning/saga.js");
14220
+ /* harmony import */ var _ImpersonationState_saga__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ./ImpersonationState/saga */ "../../dist/@frontegg/redux-store/auth/ImpersonationState/saga.js");
14221
+
14081
14222
 
14082
14223
 
14083
14224
 
@@ -14101,7 +14242,7 @@ __webpack_require__.r(__webpack_exports__);
14101
14242
 
14102
14243
 
14103
14244
  function* sagas() {
14104
- yield (0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_0__.all)([(0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_0__.call)(_LoginState_saga__WEBPACK_IMPORTED_MODULE_1__.loginSagas), (0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_0__.call)(_ActivateState_saga__WEBPACK_IMPORTED_MODULE_2__.activateSagas), (0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_0__.call)(_AcceptInvitationState_saga__WEBPACK_IMPORTED_MODULE_3__.acceptInvitationSagas), (0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_0__.call)(_ForgotPasswordState_saga__WEBPACK_IMPORTED_MODULE_4__.forgotPasswordSagas), (0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_0__.call)(_ResetPhoneNumberState_saga__WEBPACK_IMPORTED_MODULE_5__.resetPhoneNumberSagas), (0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_0__.call)(_SSOState_saga__WEBPACK_IMPORTED_MODULE_6__.ssoSagas), (0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_0__.call)(_SSOState_saga_v2__WEBPACK_IMPORTED_MODULE_7__.ssoSagas), (0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_0__.call)(_ProfileState_saga__WEBPACK_IMPORTED_MODULE_8__.profileSagas), (0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_0__.call)(_MfaState_saga__WEBPACK_IMPORTED_MODULE_9__.mfaSagas), (0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_0__.call)(_TeamState_saga__WEBPACK_IMPORTED_MODULE_10__.teamSagas), (0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_0__.call)(_SocialLogins_saga__WEBPACK_IMPORTED_MODULE_11__.socialLoginsSaga), (0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_0__.call)(_SignUp_saga__WEBPACK_IMPORTED_MODULE_12__.signUpSaga), (0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_0__.call)(_ApiTokensState_saga__WEBPACK_IMPORTED_MODULE_13__.apiTokensSaga), (0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_0__.call)(_SecurityPolicyState_saga__WEBPACK_IMPORTED_MODULE_14__.securityPolicySagas), (0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_0__.call)(_AccountSettingsState_saga__WEBPACK_IMPORTED_MODULE_15__.accountSettingsSaga), (0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_0__.call)(_TenantsState_saga__WEBPACK_IMPORTED_MODULE_16__.tenantsSagas), (0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_0__.call)(_RolesState_saga__WEBPACK_IMPORTED_MODULE_17__.rolesSagas), (0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_0__.call)(_SessionsState_saga__WEBPACK_IMPORTED_MODULE_18__.sessionsSaga), (0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_0__.call)(_SessionsPolicyState_saga__WEBPACK_IMPORTED_MODULE_19__.sessionsPolicySaga), (0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_0__.call)(_RestrictionsState_saga__WEBPACK_IMPORTED_MODULE_20__.restrictionsSagas), (0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_0__.call)(_Provisioning_saga__WEBPACK_IMPORTED_MODULE_21__.provisionSagas)]);
14245
+ yield (0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_0__.all)([(0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_0__.call)(_LoginState_saga__WEBPACK_IMPORTED_MODULE_1__.loginSagas), (0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_0__.call)(_ActivateState_saga__WEBPACK_IMPORTED_MODULE_2__.activateSagas), (0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_0__.call)(_AcceptInvitationState_saga__WEBPACK_IMPORTED_MODULE_3__.acceptInvitationSagas), (0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_0__.call)(_ForgotPasswordState_saga__WEBPACK_IMPORTED_MODULE_4__.forgotPasswordSagas), (0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_0__.call)(_ResetPhoneNumberState_saga__WEBPACK_IMPORTED_MODULE_5__.resetPhoneNumberSagas), (0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_0__.call)(_SSOState_saga__WEBPACK_IMPORTED_MODULE_6__.ssoSagas), (0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_0__.call)(_SSOState_saga_v2__WEBPACK_IMPORTED_MODULE_7__.ssoSagas), (0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_0__.call)(_ProfileState_saga__WEBPACK_IMPORTED_MODULE_8__.profileSagas), (0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_0__.call)(_MfaState_saga__WEBPACK_IMPORTED_MODULE_9__.mfaSagas), (0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_0__.call)(_TeamState_saga__WEBPACK_IMPORTED_MODULE_10__.teamSagas), (0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_0__.call)(_SocialLogins_saga__WEBPACK_IMPORTED_MODULE_11__.socialLoginsSaga), (0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_0__.call)(_SignUp_saga__WEBPACK_IMPORTED_MODULE_12__.signUpSaga), (0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_0__.call)(_ApiTokensState_saga__WEBPACK_IMPORTED_MODULE_13__.apiTokensSaga), (0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_0__.call)(_SecurityPolicyState_saga__WEBPACK_IMPORTED_MODULE_14__.securityPolicySagas), (0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_0__.call)(_AccountSettingsState_saga__WEBPACK_IMPORTED_MODULE_15__.accountSettingsSaga), (0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_0__.call)(_TenantsState_saga__WEBPACK_IMPORTED_MODULE_16__.tenantsSagas), (0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_0__.call)(_RolesState_saga__WEBPACK_IMPORTED_MODULE_17__.rolesSagas), (0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_0__.call)(_SessionsState_saga__WEBPACK_IMPORTED_MODULE_18__.sessionsSaga), (0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_0__.call)(_SessionsPolicyState_saga__WEBPACK_IMPORTED_MODULE_19__.sessionsPolicySaga), (0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_0__.call)(_RestrictionsState_saga__WEBPACK_IMPORTED_MODULE_20__.restrictionsSagas), (0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_0__.call)(_Provisioning_saga__WEBPACK_IMPORTED_MODULE_21__.provisionSagas), (0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_0__.call)(_ImpersonationState_saga__WEBPACK_IMPORTED_MODULE_22__.impersonateSagas)]);
14105
14246
  }
14106
14247
  function* mockSagas() {
14107
14248
  yield (0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_0__.all)([(0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_0__.call)(_LoginState_saga__WEBPACK_IMPORTED_MODULE_1__.loginSagasMock), // call(activateSagas),
@@ -15212,12 +15353,14 @@ __webpack_require__.r(__webpack_exports__);
15212
15353
  /* harmony export */ "auditsStoreName": () => (/* binding */ auditsStoreName),
15213
15354
  /* harmony export */ "authStoreName": () => (/* binding */ authStoreName),
15214
15355
  /* harmony export */ "connectivityStoreName": () => (/* binding */ connectivityStoreName),
15356
+ /* harmony export */ "impersonationStoreName": () => (/* binding */ impersonationStoreName),
15215
15357
  /* harmony export */ "subscriptionsStoreName": () => (/* binding */ subscriptionsStoreName),
15216
15358
  /* harmony export */ "vendorStoreName": () => (/* binding */ vendorStoreName)
15217
15359
  /* harmony export */ });
15218
15360
  const FRONTEGG_AFTER_AUTH_REDIRECT_URL = 'FRONTEGG_AFTER_AUTH_REDIRECT_URL';
15219
15361
  const HOSTED_LOGIN_VERIFIER_KEY = 'HOSTED_LOGIN_VERIFIER_KEY';
15220
15362
  const authStoreName = 'auth';
15363
+ const impersonationStoreName = 'impersonation';
15221
15364
  const connectivityStoreName = 'connectivity';
15222
15365
  const auditsStoreName = 'auditLogs';
15223
15366
  const subscriptionsStoreName = 'subscriptions';
@@ -18311,7 +18454,7 @@ __webpack_require__.r(__webpack_exports__);
18311
18454
  /* harmony export */ });
18312
18455
  /* harmony import */ var _ThemeOptions__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./ThemeOptions */ "../../dist/@frontegg/types/ThemeOptions/index.js");
18313
18456
  /* harmony import */ var _Metadata__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Metadata */ "../../dist/@frontegg/types/Metadata/index.js");
18314
- /** @license Frontegg v6.65.0
18457
+ /** @license Frontegg v6.66.0-alpha.0
18315
18458
  *
18316
18459
  * This source code is licensed under the MIT license found in the
18317
18460
  * LICENSE file in the root directory of this source tree.