@frontegg/js 7.96.0 → 7.98.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.
@@ -1839,7 +1839,7 @@ __webpack_require__.r(__webpack_exports__);
1839
1839
  /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
1840
1840
  /* harmony export */ });
1841
1841
  /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ({
1842
- cdnVersion: '7.96.0'
1842
+ cdnVersion: '7.98.0-alpha.0'
1843
1843
  });
1844
1844
 
1845
1845
  /***/ }),
@@ -4277,17 +4277,19 @@ __webpack_require__.r(__webpack_exports__);
4277
4277
  /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
4278
4278
  /* harmony export */ });
4279
4279
  /* 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");
4280
- /* harmony import */ var _frontegg_rest_api__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @frontegg/rest-api */ "../../dist/@frontegg/rest-api/auth/enums.js");
4280
+ /* harmony import */ var _frontegg_rest_api__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @frontegg/rest-api */ "../../dist/@frontegg/rest-api/auth/enums.js");
4281
4281
  /* harmony import */ var _interfaces__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./interfaces */ "../../dist/@frontegg/redux-store/auth/ForgotPasswordState/interfaces.js");
4282
4282
  /* harmony import */ var _state__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./state */ "../../dist/@frontegg/redux-store/auth/ForgotPasswordState/state.js");
4283
4283
  /* harmony import */ var _helpers__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../helpers */ "../../dist/@frontegg/redux-store/helpers/handlers.js");
4284
4284
  /* harmony import */ var _helpers__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../helpers */ "../../dist/@frontegg/redux-store/helpers/common.js");
4285
+ /* harmony import */ var _consts__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./consts */ "../../dist/@frontegg/redux-store/auth/ForgotPasswordState/consts.js");
4285
4286
 
4286
4287
  const _excluded = ["callback"];
4287
4288
 
4288
4289
 
4289
4290
 
4290
4291
 
4292
+
4291
4293
  /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ((store, api, sharedActions) => {
4292
4294
  const actions = sharedActions;
4293
4295
  const loadPasswordRecoveryStrategies = async () => {
@@ -4330,7 +4332,7 @@ const _excluded = ["callback"];
4330
4332
  var _payload$callback2;
4331
4333
  setForgotPasswordState({
4332
4334
  loading: false,
4333
- error: (0,_helpers__WEBPACK_IMPORTED_MODULE_1__.errorHandler)(e, 'Unknown error occurred')
4335
+ error: (0,_helpers__WEBPACK_IMPORTED_MODULE_1__.errorHandler)(e, _consts__WEBPACK_IMPORTED_MODULE_5__.FORGOT_PASSWORD_ERROR_KEYS.UNKNOWN_ERROR)
4334
4336
  });
4335
4337
  (_payload$callback2 = payload.callback) == null ? void 0 : _payload$callback2.call(payload, false, e);
4336
4338
  }
@@ -4356,7 +4358,7 @@ const _excluded = ["callback"];
4356
4358
  } catch (e) {
4357
4359
  setForgotPasswordState({
4358
4360
  loading: false,
4359
- error: (0,_helpers__WEBPACK_IMPORTED_MODULE_1__.errorHandler)(e, 'An error occurred while sending recovery email')
4361
+ error: (0,_helpers__WEBPACK_IMPORTED_MODULE_1__.errorHandler)(e, _consts__WEBPACK_IMPORTED_MODULE_5__.FORGOT_PASSWORD_ERROR_KEYS.SENDING_RECOVERY_EMAIL_ERROR)
4360
4362
  });
4361
4363
  }
4362
4364
  };
@@ -4381,7 +4383,7 @@ const _excluded = ["callback"];
4381
4383
  } catch (e) {
4382
4384
  setForgotPasswordState({
4383
4385
  loading: false,
4384
- error: (0,_helpers__WEBPACK_IMPORTED_MODULE_1__.errorHandler)(e, 'An error occurred while sending recovery sms')
4386
+ error: (0,_helpers__WEBPACK_IMPORTED_MODULE_1__.errorHandler)(e, _consts__WEBPACK_IMPORTED_MODULE_5__.FORGOT_PASSWORD_ERROR_KEYS.SENDING_RECOVERY_SMS_ERROR)
4385
4387
  });
4386
4388
  }
4387
4389
  };
@@ -4390,10 +4392,9 @@ const _excluded = ["callback"];
4390
4392
  sessionId
4391
4393
  } = store.auth.forgotPasswordState;
4392
4394
  if (!sessionId) {
4393
- const error = 'Session ID not found in state for verifying password via sms.';
4394
4395
  setForgotPasswordState({
4395
4396
  loading: false,
4396
- error
4397
+ error: _consts__WEBPACK_IMPORTED_MODULE_5__.FORGOT_PASSWORD_ERROR_KEYS.SESSION_ID_NOT_FOUND
4397
4398
  });
4398
4399
  return;
4399
4400
  }
@@ -4406,8 +4407,7 @@ const _excluded = ["callback"];
4406
4407
  sessionId
4407
4408
  });
4408
4409
  if (!response.userId || !response.token) {
4409
- const error = 'Invalid response from server: missing userId or token';
4410
- throw new Error(error);
4410
+ throw new Error(_consts__WEBPACK_IMPORTED_MODULE_5__.FORGOT_PASSWORD_ERROR_KEYS.INVALID_SERVER_RESPONSE);
4411
4411
  }
4412
4412
  setForgotPasswordState({
4413
4413
  loading: false,
@@ -4419,7 +4419,7 @@ const _excluded = ["callback"];
4419
4419
  } catch (e) {
4420
4420
  setForgotPasswordState({
4421
4421
  loading: false,
4422
- error: (0,_helpers__WEBPACK_IMPORTED_MODULE_1__.errorHandler)(e, 'An error occurred while verifying password via sms')
4422
+ error: (0,_helpers__WEBPACK_IMPORTED_MODULE_1__.errorHandler)(e, _consts__WEBPACK_IMPORTED_MODULE_5__.FORGOT_PASSWORD_ERROR_KEYS.VERIFYING_SMS_ERROR)
4423
4423
  });
4424
4424
  }
4425
4425
  };
@@ -4432,8 +4432,8 @@ const _excluded = ["callback"];
4432
4432
  });
4433
4433
  try {
4434
4434
  const strategies = await api.auth.getPasswordRecoveryStrategies();
4435
- const isEmailActive = strategies.some(s => s.strategy === _frontegg_rest_api__WEBPACK_IMPORTED_MODULE_5__.PasswordRecoveryStrategyEnum.Email && s.isActive);
4436
- const isSmsActive = strategies.some(s => s.strategy === _frontegg_rest_api__WEBPACK_IMPORTED_MODULE_5__.PasswordRecoveryStrategyEnum.Sms && s.isActive);
4435
+ const isEmailActive = strategies.some(s => s.strategy === _frontegg_rest_api__WEBPACK_IMPORTED_MODULE_6__.PasswordRecoveryStrategyEnum.Email && s.isActive);
4436
+ const isSmsActive = strategies.some(s => s.strategy === _frontegg_rest_api__WEBPACK_IMPORTED_MODULE_6__.PasswordRecoveryStrategyEnum.Sms && s.isActive);
4437
4437
  if (isEmailActive && isSmsActive) {
4438
4438
  setForgotPasswordState({
4439
4439
  loading: false,
@@ -4449,17 +4449,16 @@ const _excluded = ["callback"];
4449
4449
  activeStrategies: strategies
4450
4450
  });
4451
4451
  } else {
4452
- const error = 'No active password recovery methods found.';
4453
4452
  setForgotPasswordState({
4454
4453
  loading: false,
4455
- error,
4454
+ error: _consts__WEBPACK_IMPORTED_MODULE_5__.FORGOT_PASSWORD_ERROR_KEYS.NO_ACTIVE_RECOVERY_METHODS,
4456
4455
  activeStrategies: strategies
4457
4456
  });
4458
4457
  }
4459
4458
  } catch (e) {
4460
4459
  setForgotPasswordState({
4461
4460
  loading: false,
4462
- error: (0,_helpers__WEBPACK_IMPORTED_MODULE_1__.errorHandler)(e, 'An error occurred while determining recovery strategy')
4461
+ error: (0,_helpers__WEBPACK_IMPORTED_MODULE_1__.errorHandler)(e, _consts__WEBPACK_IMPORTED_MODULE_5__.FORGOT_PASSWORD_ERROR_KEYS.DETERMINING_RECOVERY_STRATEGY_ERROR)
4463
4462
  });
4464
4463
  }
4465
4464
  };
@@ -4520,6 +4519,31 @@ const _excluded = ["callback"];
4520
4519
 
4521
4520
  /***/ }),
4522
4521
 
4522
+ /***/ "../../dist/@frontegg/redux-store/auth/ForgotPasswordState/consts.js":
4523
+ /*!***************************************************************************!*\
4524
+ !*** ../../dist/@frontegg/redux-store/auth/ForgotPasswordState/consts.js ***!
4525
+ \***************************************************************************/
4526
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
4527
+
4528
+ "use strict";
4529
+ __webpack_require__.r(__webpack_exports__);
4530
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
4531
+ /* harmony export */ FORGOT_PASSWORD_ERROR_KEYS: () => (/* binding */ FORGOT_PASSWORD_ERROR_KEYS)
4532
+ /* harmony export */ });
4533
+ // Error keys for localization - these map to loginBox.forgetPassword.{key}
4534
+ const FORGOT_PASSWORD_ERROR_KEYS = {
4535
+ UNKNOWN_ERROR: 'unknownError',
4536
+ SENDING_RECOVERY_EMAIL_ERROR: 'sendingRecoveryEmailError',
4537
+ SENDING_RECOVERY_SMS_ERROR: 'sendingRecoverySmsError',
4538
+ SESSION_ID_NOT_FOUND: 'sessionIdNotFound',
4539
+ INVALID_SERVER_RESPONSE: 'invalidServerResponse',
4540
+ VERIFYING_SMS_ERROR: 'verifyingSmsError',
4541
+ NO_ACTIVE_RECOVERY_METHODS: 'noActiveRecoveryMethods',
4542
+ DETERMINING_RECOVERY_STRATEGY_ERROR: 'determiningRecoveryStrategyError'
4543
+ };
4544
+
4545
+ /***/ }),
4546
+
4523
4547
  /***/ "../../dist/@frontegg/redux-store/auth/ForgotPasswordState/interfaces.js":
4524
4548
  /*!*******************************************************************************!*\
4525
4549
  !*** ../../dist/@frontegg/redux-store/auth/ForgotPasswordState/interfaces.js ***!
@@ -17606,141 +17630,143 @@ const isAuthRoute = (path, routes) => {
17606
17630
  "use strict";
17607
17631
  __webpack_require__.r(__webpack_exports__);
17608
17632
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
17609
- /* harmony export */ AcceptInvitationStep: () => (/* reexport safe */ _AcceptInvitationState_interfaces__WEBPACK_IMPORTED_MODULE_2__.AcceptInvitationStep),
17610
- /* harmony export */ ActivateAccountStep: () => (/* reexport safe */ _ActivateAccountState_interfaces__WEBPACK_IMPORTED_MODULE_3__.ActivateAccountStep),
17611
- /* harmony export */ AdminPortalPages: () => (/* reexport safe */ _interfaces__WEBPACK_IMPORTED_MODULE_21__.AdminPortalPages),
17612
- /* harmony export */ AdminPortalPagesForEvents: () => (/* reexport safe */ _interfaces__WEBPACK_IMPORTED_MODULE_21__.AdminPortalPagesForEvents),
17613
- /* harmony export */ AllAccountsStateKeys: () => (/* reexport safe */ _MSP_interfaces__WEBPACK_IMPORTED_MODULE_13__.AllAccountsStateKeys),
17614
- /* harmony export */ ApiStateKeys: () => (/* reexport safe */ _ApiTokensState_interfaces__WEBPACK_IMPORTED_MODULE_5__.ApiStateKeys),
17615
- /* harmony export */ ApprovalFlowStep: () => (/* reexport safe */ _ApprovalFlowState_interfaces__WEBPACK_IMPORTED_MODULE_4__.ApprovalFlowStep),
17616
- /* harmony export */ AuthStrategyEnum: () => (/* reexport safe */ _LoginState_interfaces__WEBPACK_IMPORTED_MODULE_11__.AuthStrategyEnum),
17617
- /* harmony export */ AuthenticationTypes: () => (/* reexport safe */ _interfaces__WEBPACK_IMPORTED_MODULE_21__.AuthenticationTypes),
17618
- /* harmony export */ EditEmailView: () => (/* reexport safe */ _UsersEmailsPolicyState_interfaces__WEBPACK_IMPORTED_MODULE_20__.EditEmailView),
17619
- /* harmony export */ ForgotPasswordStep: () => (/* reexport safe */ _ForgotPasswordState_interfaces__WEBPACK_IMPORTED_MODULE_7__.ForgotPasswordStep),
17620
- /* harmony export */ GroupRelations: () => (/* reexport safe */ _GroupsState_interfaces__WEBPACK_IMPORTED_MODULE_9__.GroupRelations),
17621
- /* harmony export */ GroupsStateKeys: () => (/* reexport safe */ _GroupsState_interfaces__WEBPACK_IMPORTED_MODULE_9__.GroupsStateKeys),
17622
- /* harmony export */ ImpersonateStep: () => (/* reexport safe */ _ImpersonateState_interfaces__WEBPACK_IMPORTED_MODULE_10__.ImpersonateStep),
17623
- /* harmony export */ LoginActionTypes: () => (/* reexport safe */ _LoginState_interfaces__WEBPACK_IMPORTED_MODULE_11__.LoginActionTypes),
17624
- /* harmony export */ LoginFlow: () => (/* reexport safe */ _LoginState_interfaces__WEBPACK_IMPORTED_MODULE_11__.LoginFlow),
17625
- /* harmony export */ LoginStep: () => (/* reexport safe */ _LoginState_interfaces__WEBPACK_IMPORTED_MODULE_11__.LoginStep),
17626
- /* harmony export */ MFAStep: () => (/* reexport safe */ _MfaState_interfaces__WEBPACK_IMPORTED_MODULE_12__.MFAStep),
17627
- /* harmony export */ MachineToMachineAuthStrategy: () => (/* reexport safe */ _ApiTokensState_interfaces__WEBPACK_IMPORTED_MODULE_5__.MachineToMachineAuthStrategy),
17628
- /* harmony export */ PasswordRotationStep: () => (/* reexport safe */ _PasswordRotationState_interfaces__WEBPACK_IMPORTED_MODULE_8__.PasswordRotationStep),
17629
- /* harmony export */ QuickLoginStrategy: () => (/* reexport safe */ _LoginState_interfaces__WEBPACK_IMPORTED_MODULE_11__.QuickLoginStrategy),
17630
- /* harmony export */ REQUEST_NAME: () => (/* reexport safe */ _interfaces__WEBPACK_IMPORTED_MODULE_21__.REQUEST_NAME),
17631
- /* harmony export */ ResetPhoneNumberStep: () => (/* reexport safe */ _ResetPhoneNumberState_interfaces__WEBPACK_IMPORTED_MODULE_14__.ResetPhoneNumberStep),
17632
- /* harmony export */ RolesStateKeys: () => (/* reexport safe */ _RolesState_interfaces__WEBPACK_IMPORTED_MODULE_15__.RolesStateKeys),
17633
- /* harmony export */ SSOStateKeys: () => (/* reexport safe */ _SSOState_interfaces__WEBPACK_IMPORTED_MODULE_18__.SSOStateKeys),
17634
- /* harmony export */ SamlVendors: () => (/* reexport safe */ _SSOState_interfaces__WEBPACK_IMPORTED_MODULE_18__.SamlVendors),
17635
- /* harmony export */ SecurityCenterStateKeys: () => (/* reexport safe */ _Security_SecurityCenterState_interfaces__WEBPACK_IMPORTED_MODULE_16__.SecurityCenterStateKeys),
17636
- /* harmony export */ SignUpStage: () => (/* reexport safe */ _SignUpState_interfaces__WEBPACK_IMPORTED_MODULE_17__.SignUpStage),
17637
- /* harmony export */ TeamStateKeys: () => (/* reexport safe */ _TeamState_interfaces__WEBPACK_IMPORTED_MODULE_19__.TeamStateKeys),
17638
- /* harmony export */ UserVerifiedOriginTypes: () => (/* reexport safe */ _interfaces__WEBPACK_IMPORTED_MODULE_21__.UserVerifiedOriginTypes),
17633
+ /* harmony export */ AcceptInvitationStep: () => (/* reexport safe */ _AcceptInvitationState_interfaces__WEBPACK_IMPORTED_MODULE_3__.AcceptInvitationStep),
17634
+ /* harmony export */ ActivateAccountStep: () => (/* reexport safe */ _ActivateAccountState_interfaces__WEBPACK_IMPORTED_MODULE_4__.ActivateAccountStep),
17635
+ /* harmony export */ AdminPortalPages: () => (/* reexport safe */ _interfaces__WEBPACK_IMPORTED_MODULE_22__.AdminPortalPages),
17636
+ /* harmony export */ AdminPortalPagesForEvents: () => (/* reexport safe */ _interfaces__WEBPACK_IMPORTED_MODULE_22__.AdminPortalPagesForEvents),
17637
+ /* harmony export */ AllAccountsStateKeys: () => (/* reexport safe */ _MSP_interfaces__WEBPACK_IMPORTED_MODULE_14__.AllAccountsStateKeys),
17638
+ /* harmony export */ ApiStateKeys: () => (/* reexport safe */ _ApiTokensState_interfaces__WEBPACK_IMPORTED_MODULE_6__.ApiStateKeys),
17639
+ /* harmony export */ ApprovalFlowStep: () => (/* reexport safe */ _ApprovalFlowState_interfaces__WEBPACK_IMPORTED_MODULE_5__.ApprovalFlowStep),
17640
+ /* harmony export */ AuthStrategyEnum: () => (/* reexport safe */ _LoginState_interfaces__WEBPACK_IMPORTED_MODULE_12__.AuthStrategyEnum),
17641
+ /* harmony export */ AuthenticationTypes: () => (/* reexport safe */ _interfaces__WEBPACK_IMPORTED_MODULE_22__.AuthenticationTypes),
17642
+ /* harmony export */ EditEmailView: () => (/* reexport safe */ _UsersEmailsPolicyState_interfaces__WEBPACK_IMPORTED_MODULE_21__.EditEmailView),
17643
+ /* harmony export */ FORGOT_PASSWORD_ERROR_KEYS: () => (/* reexport safe */ _ForgotPasswordState__WEBPACK_IMPORTED_MODULE_2__.FORGOT_PASSWORD_ERROR_KEYS),
17644
+ /* harmony export */ ForgotPasswordStep: () => (/* reexport safe */ _ForgotPasswordState_interfaces__WEBPACK_IMPORTED_MODULE_8__.ForgotPasswordStep),
17645
+ /* harmony export */ GroupRelations: () => (/* reexport safe */ _GroupsState_interfaces__WEBPACK_IMPORTED_MODULE_10__.GroupRelations),
17646
+ /* harmony export */ GroupsStateKeys: () => (/* reexport safe */ _GroupsState_interfaces__WEBPACK_IMPORTED_MODULE_10__.GroupsStateKeys),
17647
+ /* harmony export */ ImpersonateStep: () => (/* reexport safe */ _ImpersonateState_interfaces__WEBPACK_IMPORTED_MODULE_11__.ImpersonateStep),
17648
+ /* harmony export */ LoginActionTypes: () => (/* reexport safe */ _LoginState_interfaces__WEBPACK_IMPORTED_MODULE_12__.LoginActionTypes),
17649
+ /* harmony export */ LoginFlow: () => (/* reexport safe */ _LoginState_interfaces__WEBPACK_IMPORTED_MODULE_12__.LoginFlow),
17650
+ /* harmony export */ LoginStep: () => (/* reexport safe */ _LoginState_interfaces__WEBPACK_IMPORTED_MODULE_12__.LoginStep),
17651
+ /* harmony export */ MFAStep: () => (/* reexport safe */ _MfaState_interfaces__WEBPACK_IMPORTED_MODULE_13__.MFAStep),
17652
+ /* harmony export */ MachineToMachineAuthStrategy: () => (/* reexport safe */ _ApiTokensState_interfaces__WEBPACK_IMPORTED_MODULE_6__.MachineToMachineAuthStrategy),
17653
+ /* harmony export */ PasswordRotationStep: () => (/* reexport safe */ _PasswordRotationState_interfaces__WEBPACK_IMPORTED_MODULE_9__.PasswordRotationStep),
17654
+ /* harmony export */ QuickLoginStrategy: () => (/* reexport safe */ _LoginState_interfaces__WEBPACK_IMPORTED_MODULE_12__.QuickLoginStrategy),
17655
+ /* harmony export */ REQUEST_NAME: () => (/* reexport safe */ _interfaces__WEBPACK_IMPORTED_MODULE_22__.REQUEST_NAME),
17656
+ /* harmony export */ ResetPhoneNumberStep: () => (/* reexport safe */ _ResetPhoneNumberState_interfaces__WEBPACK_IMPORTED_MODULE_15__.ResetPhoneNumberStep),
17657
+ /* harmony export */ RolesStateKeys: () => (/* reexport safe */ _RolesState_interfaces__WEBPACK_IMPORTED_MODULE_16__.RolesStateKeys),
17658
+ /* harmony export */ SSOStateKeys: () => (/* reexport safe */ _SSOState_interfaces__WEBPACK_IMPORTED_MODULE_19__.SSOStateKeys),
17659
+ /* harmony export */ SamlVendors: () => (/* reexport safe */ _SSOState_interfaces__WEBPACK_IMPORTED_MODULE_19__.SamlVendors),
17660
+ /* harmony export */ SecurityCenterStateKeys: () => (/* reexport safe */ _Security_SecurityCenterState_interfaces__WEBPACK_IMPORTED_MODULE_17__.SecurityCenterStateKeys),
17661
+ /* harmony export */ SignUpStage: () => (/* reexport safe */ _SignUpState_interfaces__WEBPACK_IMPORTED_MODULE_18__.SignUpStage),
17662
+ /* harmony export */ TeamStateKeys: () => (/* reexport safe */ _TeamState_interfaces__WEBPACK_IMPORTED_MODULE_20__.TeamStateKeys),
17663
+ /* harmony export */ UserVerifiedOriginTypes: () => (/* reexport safe */ _interfaces__WEBPACK_IMPORTED_MODULE_22__.UserVerifiedOriginTypes),
17639
17664
  /* harmony export */ buildAuthActions: () => (/* binding */ buildAuthActions),
17640
17665
  /* harmony export */ createAuthState: () => (/* binding */ createAuthState),
17641
- /* harmony export */ getEntitlements: () => (/* reexport safe */ _Entitlements_helpers__WEBPACK_IMPORTED_MODULE_6__.getEntitlements),
17642
- /* harmony export */ getFeatureEntitlements: () => (/* reexport safe */ _Entitlements_helpers__WEBPACK_IMPORTED_MODULE_6__.getFeatureEntitlements),
17643
- /* harmony export */ getPermissionEntitlements: () => (/* reexport safe */ _Entitlements_helpers__WEBPACK_IMPORTED_MODULE_6__.getPermissionEntitlements),
17644
- /* harmony export */ isEntitlementsDeeplyEqual: () => (/* reexport safe */ _Entitlements_helpers__WEBPACK_IMPORTED_MODULE_6__.isEntitlementsDeeplyEqual)
17666
+ /* harmony export */ getEntitlements: () => (/* reexport safe */ _Entitlements_helpers__WEBPACK_IMPORTED_MODULE_7__.getEntitlements),
17667
+ /* harmony export */ getFeatureEntitlements: () => (/* reexport safe */ _Entitlements_helpers__WEBPACK_IMPORTED_MODULE_7__.getFeatureEntitlements),
17668
+ /* harmony export */ getPermissionEntitlements: () => (/* reexport safe */ _Entitlements_helpers__WEBPACK_IMPORTED_MODULE_7__.getPermissionEntitlements),
17669
+ /* harmony export */ isEntitlementsDeeplyEqual: () => (/* reexport safe */ _Entitlements_helpers__WEBPACK_IMPORTED_MODULE_7__.isEntitlementsDeeplyEqual)
17645
17670
  /* harmony export */ });
17646
17671
  /* 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");
17647
17672
  /* 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");
17648
- /* harmony import */ var _AcceptInvitationState__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ./AcceptInvitationState */ "../../dist/@frontegg/redux-store/auth/AcceptInvitationState/state.js");
17649
- /* harmony import */ var _AcceptInvitationState__WEBPACK_IMPORTED_MODULE_61__ = __webpack_require__(/*! ./AcceptInvitationState */ "../../dist/@frontegg/redux-store/auth/AcceptInvitationState/actions.js");
17650
- /* harmony import */ var _AccountSettingsState__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ./AccountSettingsState */ "../../dist/@frontegg/redux-store/auth/AccountSettingsState/state.js");
17651
- /* harmony import */ var _AccountSettingsState__WEBPACK_IMPORTED_MODULE_62__ = __webpack_require__(/*! ./AccountSettingsState */ "../../dist/@frontegg/redux-store/auth/AccountSettingsState/actions.js");
17652
- /* harmony import */ var _ActivateAccountState__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ./ActivateAccountState */ "../../dist/@frontegg/redux-store/auth/ActivateAccountState/state.js");
17653
- /* harmony import */ var _ActivateAccountState__WEBPACK_IMPORTED_MODULE_63__ = __webpack_require__(/*! ./ActivateAccountState */ "../../dist/@frontegg/redux-store/auth/ActivateAccountState/actions.js");
17654
- /* harmony import */ var _UnlockAccountState__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(/*! ./UnlockAccountState */ "../../dist/@frontegg/redux-store/auth/UnlockAccountState/state.js");
17655
- /* harmony import */ var _UnlockAccountState__WEBPACK_IMPORTED_MODULE_64__ = __webpack_require__(/*! ./UnlockAccountState */ "../../dist/@frontegg/redux-store/auth/UnlockAccountState/actions.js");
17656
- /* harmony import */ var _ApprovalFlowState__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ./ApprovalFlowState */ "../../dist/@frontegg/redux-store/auth/ApprovalFlowState/state.js");
17657
- /* harmony import */ var _ApprovalFlowState__WEBPACK_IMPORTED_MODULE_65__ = __webpack_require__(/*! ./ApprovalFlowState */ "../../dist/@frontegg/redux-store/auth/ApprovalFlowState/actions.js");
17658
- /* harmony import */ var _ApiTokensState__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ./ApiTokensState */ "../../dist/@frontegg/redux-store/auth/ApiTokensState/state.js");
17659
- /* harmony import */ var _ApiTokensState__WEBPACK_IMPORTED_MODULE_66__ = __webpack_require__(/*! ./ApiTokensState */ "../../dist/@frontegg/redux-store/auth/ApiTokensState/actions.js");
17660
- /* harmony import */ var _ApplicationsState__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ./ApplicationsState */ "../../dist/@frontegg/redux-store/auth/ApplicationsState/state.js");
17661
- /* harmony import */ var _ApplicationsState__WEBPACK_IMPORTED_MODULE_67__ = __webpack_require__(/*! ./ApplicationsState */ "../../dist/@frontegg/redux-store/auth/ApplicationsState/actions.js");
17662
- /* harmony import */ var _CustomLoginState__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ./CustomLoginState */ "../../dist/@frontegg/redux-store/auth/CustomLoginState/state.js");
17663
- /* harmony import */ var _CustomLoginState__WEBPACK_IMPORTED_MODULE_68__ = __webpack_require__(/*! ./CustomLoginState */ "../../dist/@frontegg/redux-store/auth/CustomLoginState/actions.js");
17664
- /* harmony import */ var _ForgotPasswordState__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ./ForgotPasswordState */ "../../dist/@frontegg/redux-store/auth/ForgotPasswordState/state.js");
17665
- /* harmony import */ var _ForgotPasswordState__WEBPACK_IMPORTED_MODULE_70__ = __webpack_require__(/*! ./ForgotPasswordState */ "../../dist/@frontegg/redux-store/auth/ForgotPasswordState/actions.js");
17666
- /* harmony import */ var _PasswordRotationState__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ./PasswordRotationState */ "../../dist/@frontegg/redux-store/auth/PasswordRotationState/state.js");
17667
- /* harmony import */ var _PasswordRotationState__WEBPACK_IMPORTED_MODULE_71__ = __webpack_require__(/*! ./PasswordRotationState */ "../../dist/@frontegg/redux-store/auth/PasswordRotationState/actions.js");
17668
- /* harmony import */ var _GroupsState__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ./GroupsState */ "../../dist/@frontegg/redux-store/auth/GroupsState/state.js");
17669
- /* harmony import */ var _GroupsState__WEBPACK_IMPORTED_MODULE_72__ = __webpack_require__(/*! ./GroupsState */ "../../dist/@frontegg/redux-store/auth/GroupsState/actions.js");
17670
- /* harmony import */ var _GroupsDialogsState__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ./GroupsDialogsState */ "../../dist/@frontegg/redux-store/auth/GroupsDialogsState/state.js");
17671
- /* harmony import */ var _GroupsDialogsState__WEBPACK_IMPORTED_MODULE_73__ = __webpack_require__(/*! ./GroupsDialogsState */ "../../dist/@frontegg/redux-store/auth/GroupsDialogsState/actions.js");
17672
- /* harmony import */ var _ImpersonateState__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ./ImpersonateState */ "../../dist/@frontegg/redux-store/auth/ImpersonateState/state.js");
17673
- /* harmony import */ var _ImpersonateState__WEBPACK_IMPORTED_MODULE_74__ = __webpack_require__(/*! ./ImpersonateState */ "../../dist/@frontegg/redux-store/auth/ImpersonateState/actions.js");
17674
- /* harmony import */ var _LoginState__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ./LoginState */ "../../dist/@frontegg/redux-store/auth/LoginState/state.js");
17675
- /* harmony import */ var _LoginState__WEBPACK_IMPORTED_MODULE_75__ = __webpack_require__(/*! ./LoginState */ "../../dist/@frontegg/redux-store/auth/LoginState/actions/index.js");
17676
- /* harmony import */ var _MfaState__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! ./MfaState */ "../../dist/@frontegg/redux-store/auth/MfaState/state.js");
17677
- /* harmony import */ var _MfaState__WEBPACK_IMPORTED_MODULE_76__ = __webpack_require__(/*! ./MfaState */ "../../dist/@frontegg/redux-store/auth/MfaState/actions.js");
17678
- /* harmony import */ var _MSP__WEBPACK_IMPORTED_MODULE_39__ = __webpack_require__(/*! ./MSP */ "../../dist/@frontegg/redux-store/auth/MSP/state.js");
17679
- /* harmony import */ var _MSP__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__(/*! ./MSP */ "../../dist/@frontegg/redux-store/auth/MSP/dialogs/state.js");
17680
- /* harmony import */ var _MSP__WEBPACK_IMPORTED_MODULE_77__ = __webpack_require__(/*! ./MSP */ "../../dist/@frontegg/redux-store/auth/MSP/actions.js");
17681
- /* harmony import */ var _MSP__WEBPACK_IMPORTED_MODULE_78__ = __webpack_require__(/*! ./MSP */ "../../dist/@frontegg/redux-store/auth/MSP/dialogs/actions.js");
17682
- /* harmony import */ var _PasskeysState__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(/*! ./PasskeysState */ "../../dist/@frontegg/redux-store/auth/PasskeysState/state.js");
17683
- /* harmony import */ var _PasskeysState__WEBPACK_IMPORTED_MODULE_79__ = __webpack_require__(/*! ./PasskeysState */ "../../dist/@frontegg/redux-store/auth/PasskeysState/actions.js");
17684
- /* harmony import */ var _ProfileState__WEBPACK_IMPORTED_MODULE_42__ = __webpack_require__(/*! ./ProfileState */ "../../dist/@frontegg/redux-store/auth/ProfileState/state.js");
17685
- /* harmony import */ var _ProfileState__WEBPACK_IMPORTED_MODULE_80__ = __webpack_require__(/*! ./ProfileState */ "../../dist/@frontegg/redux-store/auth/ProfileState/actions.js");
17686
- /* harmony import */ var _ProvisioningState__WEBPACK_IMPORTED_MODULE_43__ = __webpack_require__(/*! ./ProvisioningState */ "../../dist/@frontegg/redux-store/auth/ProvisioningState/state.js");
17687
- /* harmony import */ var _ProvisioningState__WEBPACK_IMPORTED_MODULE_81__ = __webpack_require__(/*! ./ProvisioningState */ "../../dist/@frontegg/redux-store/auth/ProvisioningState/actions.js");
17688
- /* harmony import */ var _ResetPhoneNumberState__WEBPACK_IMPORTED_MODULE_44__ = __webpack_require__(/*! ./ResetPhoneNumberState */ "../../dist/@frontegg/redux-store/auth/ResetPhoneNumberState/state.js");
17689
- /* harmony import */ var _ResetPhoneNumberState__WEBPACK_IMPORTED_MODULE_82__ = __webpack_require__(/*! ./ResetPhoneNumberState */ "../../dist/@frontegg/redux-store/auth/ResetPhoneNumberState/actions.js");
17690
- /* harmony import */ var _RolesState__WEBPACK_IMPORTED_MODULE_45__ = __webpack_require__(/*! ./RolesState */ "../../dist/@frontegg/redux-store/auth/RolesState/state.js");
17691
- /* harmony import */ var _RolesState__WEBPACK_IMPORTED_MODULE_83__ = __webpack_require__(/*! ./RolesState */ "../../dist/@frontegg/redux-store/auth/RolesState/actions.js");
17692
- /* harmony import */ var _Security_RestrictionsState__WEBPACK_IMPORTED_MODULE_46__ = __webpack_require__(/*! ./Security/RestrictionsState */ "../../dist/@frontegg/redux-store/auth/Security/RestrictionsState/state.js");
17693
- /* harmony import */ var _Security_RestrictionsState__WEBPACK_IMPORTED_MODULE_84__ = __webpack_require__(/*! ./Security/RestrictionsState */ "../../dist/@frontegg/redux-store/auth/Security/RestrictionsState/actions.js");
17694
- /* harmony import */ var _Security_SecurityCenterState__WEBPACK_IMPORTED_MODULE_47__ = __webpack_require__(/*! ./Security/SecurityCenterState */ "../../dist/@frontegg/redux-store/auth/Security/SecurityCenterState/state.js");
17695
- /* harmony import */ var _Security_SecurityCenterState__WEBPACK_IMPORTED_MODULE_85__ = __webpack_require__(/*! ./Security/SecurityCenterState */ "../../dist/@frontegg/redux-store/auth/Security/SecurityCenterState/actions.js");
17696
- /* harmony import */ var _Security_SecurityPolicyState__WEBPACK_IMPORTED_MODULE_48__ = __webpack_require__(/*! ./Security/SecurityPolicyState */ "../../dist/@frontegg/redux-store/auth/Security/SecurityPolicyState/state.js");
17697
- /* harmony import */ var _Security_SecurityPolicyState__WEBPACK_IMPORTED_MODULE_86__ = __webpack_require__(/*! ./Security/SecurityPolicyState */ "../../dist/@frontegg/redux-store/auth/Security/SecurityPolicyState/actions.js");
17698
- /* harmony import */ var _Security_SessionsPolicyState__WEBPACK_IMPORTED_MODULE_49__ = __webpack_require__(/*! ./Security/SessionsPolicyState */ "../../dist/@frontegg/redux-store/auth/Security/SessionsPolicyState/state.js");
17699
- /* harmony import */ var _Security_SessionsPolicyState__WEBPACK_IMPORTED_MODULE_87__ = __webpack_require__(/*! ./Security/SessionsPolicyState */ "../../dist/@frontegg/redux-store/auth/Security/SessionsPolicyState/actions.js");
17700
- /* harmony import */ var _SessionsState__WEBPACK_IMPORTED_MODULE_50__ = __webpack_require__(/*! ./SessionsState */ "../../dist/@frontegg/redux-store/auth/SessionsState/state.js");
17701
- /* harmony import */ var _SessionsState__WEBPACK_IMPORTED_MODULE_88__ = __webpack_require__(/*! ./SessionsState */ "../../dist/@frontegg/redux-store/auth/SessionsState/actions.js");
17702
- /* harmony import */ var _SignUpState__WEBPACK_IMPORTED_MODULE_51__ = __webpack_require__(/*! ./SignUpState */ "../../dist/@frontegg/redux-store/auth/SignUpState/state.js");
17703
- /* harmony import */ var _SignUpState__WEBPACK_IMPORTED_MODULE_89__ = __webpack_require__(/*! ./SignUpState */ "../../dist/@frontegg/redux-store/auth/SignUpState/actions.js");
17704
- /* harmony import */ var _SmsState__WEBPACK_IMPORTED_MODULE_52__ = __webpack_require__(/*! ./SmsState */ "../../dist/@frontegg/redux-store/auth/SmsState/state.js");
17705
- /* harmony import */ var _SmsState__WEBPACK_IMPORTED_MODULE_90__ = __webpack_require__(/*! ./SmsState */ "../../dist/@frontegg/redux-store/auth/SmsState/actions.js");
17706
- /* harmony import */ var _SocialLoginState__WEBPACK_IMPORTED_MODULE_53__ = __webpack_require__(/*! ./SocialLoginState */ "../../dist/@frontegg/redux-store/auth/SocialLoginState/state.js");
17707
- /* harmony import */ var _SocialLoginState__WEBPACK_IMPORTED_MODULE_91__ = __webpack_require__(/*! ./SocialLoginState */ "../../dist/@frontegg/redux-store/auth/SocialLoginState/actions.js");
17708
- /* harmony import */ var _SSOState__WEBPACK_IMPORTED_MODULE_54__ = __webpack_require__(/*! ./SSOState */ "../../dist/@frontegg/redux-store/auth/SSOState/state.js");
17709
- /* harmony import */ var _SSOState__WEBPACK_IMPORTED_MODULE_92__ = __webpack_require__(/*! ./SSOState */ "../../dist/@frontegg/redux-store/auth/SSOState/actions/index.js");
17710
- /* harmony import */ var _StepUpState__WEBPACK_IMPORTED_MODULE_55__ = __webpack_require__(/*! ./StepUpState */ "../../dist/@frontegg/redux-store/auth/StepUpState/state.js");
17711
- /* harmony import */ var _StepUpState__WEBPACK_IMPORTED_MODULE_93__ = __webpack_require__(/*! ./StepUpState */ "../../dist/@frontegg/redux-store/auth/StepUpState/actions/index.js");
17712
- /* harmony import */ var _TeamState__WEBPACK_IMPORTED_MODULE_56__ = __webpack_require__(/*! ./TeamState */ "../../dist/@frontegg/redux-store/auth/TeamState/state.js");
17713
- /* harmony import */ var _TeamState__WEBPACK_IMPORTED_MODULE_94__ = __webpack_require__(/*! ./TeamState */ "../../dist/@frontegg/redux-store/auth/TeamState/actions/index.js");
17714
- /* harmony import */ var _TenantsState__WEBPACK_IMPORTED_MODULE_57__ = __webpack_require__(/*! ./TenantsState */ "../../dist/@frontegg/redux-store/auth/TenantsState/state.js");
17715
- /* harmony import */ var _TenantsState__WEBPACK_IMPORTED_MODULE_95__ = __webpack_require__(/*! ./TenantsState */ "../../dist/@frontegg/redux-store/auth/TenantsState/actions.js");
17716
- /* harmony import */ var _UsernamesState__WEBPACK_IMPORTED_MODULE_58__ = __webpack_require__(/*! ./UsernamesState */ "../../dist/@frontegg/redux-store/auth/UsernamesState/state.js");
17717
- /* harmony import */ var _UsernamesState__WEBPACK_IMPORTED_MODULE_96__ = __webpack_require__(/*! ./UsernamesState */ "../../dist/@frontegg/redux-store/auth/UsernamesState/actions.js");
17718
- /* harmony import */ var _UsersEmailsPolicyState__WEBPACK_IMPORTED_MODULE_59__ = __webpack_require__(/*! ./UsersEmailsPolicyState */ "../../dist/@frontegg/redux-store/auth/UsersEmailsPolicyState/state.js");
17719
- /* harmony import */ var _UsersEmailsPolicyState__WEBPACK_IMPORTED_MODULE_97__ = __webpack_require__(/*! ./UsersEmailsPolicyState */ "../../dist/@frontegg/redux-store/auth/UsersEmailsPolicyState/actions.js");
17720
- /* harmony import */ var _LoginState_consts__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ./LoginState/consts */ "../../dist/@frontegg/redux-store/auth/LoginState/consts.js");
17721
- /* harmony import */ var _helpers__WEBPACK_IMPORTED_MODULE_60__ = __webpack_require__(/*! ../helpers */ "../../dist/@frontegg/redux-store/helpers/common.js");
17722
- /* harmony import */ var _Entitlements__WEBPACK_IMPORTED_MODULE_69__ = __webpack_require__(/*! ./Entitlements */ "../../dist/@frontegg/redux-store/auth/Entitlements/actions.js");
17723
- /* harmony import */ var _toolkit_proxy__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ../toolkit/proxy */ "../../dist/@frontegg/redux-store/toolkit/proxy.js");
17724
- /* harmony import */ var _AcceptInvitationState_interfaces__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./AcceptInvitationState/interfaces */ "../../dist/@frontegg/redux-store/auth/AcceptInvitationState/interfaces.js");
17725
- /* harmony import */ var _ActivateAccountState_interfaces__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./ActivateAccountState/interfaces */ "../../dist/@frontegg/redux-store/auth/ActivateAccountState/interfaces.js");
17726
- /* harmony import */ var _ApprovalFlowState_interfaces__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./ApprovalFlowState/interfaces */ "../../dist/@frontegg/redux-store/auth/ApprovalFlowState/interfaces.js");
17727
- /* harmony import */ var _ApiTokensState_interfaces__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./ApiTokensState/interfaces */ "../../dist/@frontegg/redux-store/auth/ApiTokensState/interfaces.js");
17728
- /* harmony import */ var _Entitlements_helpers__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./Entitlements/helpers */ "../../dist/@frontegg/redux-store/auth/Entitlements/helpers.js");
17729
- /* harmony import */ var _ForgotPasswordState_interfaces__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./ForgotPasswordState/interfaces */ "../../dist/@frontegg/redux-store/auth/ForgotPasswordState/interfaces.js");
17730
- /* harmony import */ var _PasswordRotationState_interfaces__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./PasswordRotationState/interfaces */ "../../dist/@frontegg/redux-store/auth/PasswordRotationState/interfaces.js");
17731
- /* harmony import */ var _GroupsState_interfaces__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./GroupsState/interfaces */ "../../dist/@frontegg/redux-store/auth/GroupsState/interfaces.js");
17732
- /* harmony import */ var _ImpersonateState_interfaces__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./ImpersonateState/interfaces */ "../../dist/@frontegg/redux-store/auth/ImpersonateState/interfaces.js");
17733
- /* harmony import */ var _LoginState_interfaces__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./LoginState/interfaces */ "../../dist/@frontegg/redux-store/auth/LoginState/interfaces.js");
17734
- /* harmony import */ var _MfaState_interfaces__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./MfaState/interfaces */ "../../dist/@frontegg/redux-store/auth/MfaState/interfaces.js");
17735
- /* harmony import */ var _MSP_interfaces__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./MSP/interfaces */ "../../dist/@frontegg/redux-store/auth/MSP/interfaces/index.js");
17736
- /* harmony import */ var _ResetPhoneNumberState_interfaces__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./ResetPhoneNumberState/interfaces */ "../../dist/@frontegg/redux-store/auth/ResetPhoneNumberState/interfaces.js");
17737
- /* harmony import */ var _RolesState_interfaces__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./RolesState/interfaces */ "../../dist/@frontegg/redux-store/auth/RolesState/interfaces.js");
17738
- /* harmony import */ var _Security_SecurityCenterState_interfaces__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./Security/SecurityCenterState/interfaces */ "../../dist/@frontegg/redux-store/auth/Security/SecurityCenterState/interfaces.js");
17739
- /* harmony import */ var _SignUpState_interfaces__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./SignUpState/interfaces */ "../../dist/@frontegg/redux-store/auth/SignUpState/interfaces.js");
17740
- /* harmony import */ var _SSOState_interfaces__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./SSOState/interfaces */ "../../dist/@frontegg/redux-store/auth/SSOState/interfaces.js");
17741
- /* harmony import */ var _TeamState_interfaces__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ./TeamState/interfaces */ "../../dist/@frontegg/redux-store/auth/TeamState/interfaces.js");
17742
- /* harmony import */ var _UsersEmailsPolicyState_interfaces__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ./UsersEmailsPolicyState/interfaces */ "../../dist/@frontegg/redux-store/auth/UsersEmailsPolicyState/interfaces.js");
17743
- /* harmony import */ var _interfaces__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ./interfaces */ "../../dist/@frontegg/redux-store/auth/interfaces.js");
17673
+ /* harmony import */ var _AcceptInvitationState__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ./AcceptInvitationState */ "../../dist/@frontegg/redux-store/auth/AcceptInvitationState/state.js");
17674
+ /* harmony import */ var _AcceptInvitationState__WEBPACK_IMPORTED_MODULE_62__ = __webpack_require__(/*! ./AcceptInvitationState */ "../../dist/@frontegg/redux-store/auth/AcceptInvitationState/actions.js");
17675
+ /* harmony import */ var _AccountSettingsState__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ./AccountSettingsState */ "../../dist/@frontegg/redux-store/auth/AccountSettingsState/state.js");
17676
+ /* harmony import */ var _AccountSettingsState__WEBPACK_IMPORTED_MODULE_63__ = __webpack_require__(/*! ./AccountSettingsState */ "../../dist/@frontegg/redux-store/auth/AccountSettingsState/actions.js");
17677
+ /* harmony import */ var _ActivateAccountState__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(/*! ./ActivateAccountState */ "../../dist/@frontegg/redux-store/auth/ActivateAccountState/state.js");
17678
+ /* harmony import */ var _ActivateAccountState__WEBPACK_IMPORTED_MODULE_64__ = __webpack_require__(/*! ./ActivateAccountState */ "../../dist/@frontegg/redux-store/auth/ActivateAccountState/actions.js");
17679
+ /* harmony import */ var _UnlockAccountState__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ./UnlockAccountState */ "../../dist/@frontegg/redux-store/auth/UnlockAccountState/state.js");
17680
+ /* harmony import */ var _UnlockAccountState__WEBPACK_IMPORTED_MODULE_65__ = __webpack_require__(/*! ./UnlockAccountState */ "../../dist/@frontegg/redux-store/auth/UnlockAccountState/actions.js");
17681
+ /* harmony import */ var _ApprovalFlowState__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ./ApprovalFlowState */ "../../dist/@frontegg/redux-store/auth/ApprovalFlowState/state.js");
17682
+ /* harmony import */ var _ApprovalFlowState__WEBPACK_IMPORTED_MODULE_66__ = __webpack_require__(/*! ./ApprovalFlowState */ "../../dist/@frontegg/redux-store/auth/ApprovalFlowState/actions.js");
17683
+ /* harmony import */ var _ApiTokensState__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ./ApiTokensState */ "../../dist/@frontegg/redux-store/auth/ApiTokensState/state.js");
17684
+ /* harmony import */ var _ApiTokensState__WEBPACK_IMPORTED_MODULE_67__ = __webpack_require__(/*! ./ApiTokensState */ "../../dist/@frontegg/redux-store/auth/ApiTokensState/actions.js");
17685
+ /* harmony import */ var _ApplicationsState__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ./ApplicationsState */ "../../dist/@frontegg/redux-store/auth/ApplicationsState/state.js");
17686
+ /* harmony import */ var _ApplicationsState__WEBPACK_IMPORTED_MODULE_68__ = __webpack_require__(/*! ./ApplicationsState */ "../../dist/@frontegg/redux-store/auth/ApplicationsState/actions.js");
17687
+ /* harmony import */ var _CustomLoginState__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ./CustomLoginState */ "../../dist/@frontegg/redux-store/auth/CustomLoginState/state.js");
17688
+ /* harmony import */ var _CustomLoginState__WEBPACK_IMPORTED_MODULE_69__ = __webpack_require__(/*! ./CustomLoginState */ "../../dist/@frontegg/redux-store/auth/CustomLoginState/actions.js");
17689
+ /* harmony import */ var _ForgotPasswordState__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./ForgotPasswordState */ "../../dist/@frontegg/redux-store/auth/ForgotPasswordState/consts.js");
17690
+ /* harmony import */ var _ForgotPasswordState__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ./ForgotPasswordState */ "../../dist/@frontegg/redux-store/auth/ForgotPasswordState/state.js");
17691
+ /* harmony import */ var _ForgotPasswordState__WEBPACK_IMPORTED_MODULE_71__ = __webpack_require__(/*! ./ForgotPasswordState */ "../../dist/@frontegg/redux-store/auth/ForgotPasswordState/actions.js");
17692
+ /* harmony import */ var _PasswordRotationState__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ./PasswordRotationState */ "../../dist/@frontegg/redux-store/auth/PasswordRotationState/state.js");
17693
+ /* harmony import */ var _PasswordRotationState__WEBPACK_IMPORTED_MODULE_72__ = __webpack_require__(/*! ./PasswordRotationState */ "../../dist/@frontegg/redux-store/auth/PasswordRotationState/actions.js");
17694
+ /* harmony import */ var _GroupsState__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ./GroupsState */ "../../dist/@frontegg/redux-store/auth/GroupsState/state.js");
17695
+ /* harmony import */ var _GroupsState__WEBPACK_IMPORTED_MODULE_73__ = __webpack_require__(/*! ./GroupsState */ "../../dist/@frontegg/redux-store/auth/GroupsState/actions.js");
17696
+ /* harmony import */ var _GroupsDialogsState__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ./GroupsDialogsState */ "../../dist/@frontegg/redux-store/auth/GroupsDialogsState/state.js");
17697
+ /* harmony import */ var _GroupsDialogsState__WEBPACK_IMPORTED_MODULE_74__ = __webpack_require__(/*! ./GroupsDialogsState */ "../../dist/@frontegg/redux-store/auth/GroupsDialogsState/actions.js");
17698
+ /* harmony import */ var _ImpersonateState__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ./ImpersonateState */ "../../dist/@frontegg/redux-store/auth/ImpersonateState/state.js");
17699
+ /* harmony import */ var _ImpersonateState__WEBPACK_IMPORTED_MODULE_75__ = __webpack_require__(/*! ./ImpersonateState */ "../../dist/@frontegg/redux-store/auth/ImpersonateState/actions.js");
17700
+ /* harmony import */ var _LoginState__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! ./LoginState */ "../../dist/@frontegg/redux-store/auth/LoginState/state.js");
17701
+ /* harmony import */ var _LoginState__WEBPACK_IMPORTED_MODULE_76__ = __webpack_require__(/*! ./LoginState */ "../../dist/@frontegg/redux-store/auth/LoginState/actions/index.js");
17702
+ /* harmony import */ var _MfaState__WEBPACK_IMPORTED_MODULE_39__ = __webpack_require__(/*! ./MfaState */ "../../dist/@frontegg/redux-store/auth/MfaState/state.js");
17703
+ /* harmony import */ var _MfaState__WEBPACK_IMPORTED_MODULE_77__ = __webpack_require__(/*! ./MfaState */ "../../dist/@frontegg/redux-store/auth/MfaState/actions.js");
17704
+ /* harmony import */ var _MSP__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__(/*! ./MSP */ "../../dist/@frontegg/redux-store/auth/MSP/state.js");
17705
+ /* harmony import */ var _MSP__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(/*! ./MSP */ "../../dist/@frontegg/redux-store/auth/MSP/dialogs/state.js");
17706
+ /* harmony import */ var _MSP__WEBPACK_IMPORTED_MODULE_78__ = __webpack_require__(/*! ./MSP */ "../../dist/@frontegg/redux-store/auth/MSP/actions.js");
17707
+ /* harmony import */ var _MSP__WEBPACK_IMPORTED_MODULE_79__ = __webpack_require__(/*! ./MSP */ "../../dist/@frontegg/redux-store/auth/MSP/dialogs/actions.js");
17708
+ /* harmony import */ var _PasskeysState__WEBPACK_IMPORTED_MODULE_42__ = __webpack_require__(/*! ./PasskeysState */ "../../dist/@frontegg/redux-store/auth/PasskeysState/state.js");
17709
+ /* harmony import */ var _PasskeysState__WEBPACK_IMPORTED_MODULE_80__ = __webpack_require__(/*! ./PasskeysState */ "../../dist/@frontegg/redux-store/auth/PasskeysState/actions.js");
17710
+ /* harmony import */ var _ProfileState__WEBPACK_IMPORTED_MODULE_43__ = __webpack_require__(/*! ./ProfileState */ "../../dist/@frontegg/redux-store/auth/ProfileState/state.js");
17711
+ /* harmony import */ var _ProfileState__WEBPACK_IMPORTED_MODULE_81__ = __webpack_require__(/*! ./ProfileState */ "../../dist/@frontegg/redux-store/auth/ProfileState/actions.js");
17712
+ /* harmony import */ var _ProvisioningState__WEBPACK_IMPORTED_MODULE_44__ = __webpack_require__(/*! ./ProvisioningState */ "../../dist/@frontegg/redux-store/auth/ProvisioningState/state.js");
17713
+ /* harmony import */ var _ProvisioningState__WEBPACK_IMPORTED_MODULE_82__ = __webpack_require__(/*! ./ProvisioningState */ "../../dist/@frontegg/redux-store/auth/ProvisioningState/actions.js");
17714
+ /* harmony import */ var _ResetPhoneNumberState__WEBPACK_IMPORTED_MODULE_45__ = __webpack_require__(/*! ./ResetPhoneNumberState */ "../../dist/@frontegg/redux-store/auth/ResetPhoneNumberState/state.js");
17715
+ /* harmony import */ var _ResetPhoneNumberState__WEBPACK_IMPORTED_MODULE_83__ = __webpack_require__(/*! ./ResetPhoneNumberState */ "../../dist/@frontegg/redux-store/auth/ResetPhoneNumberState/actions.js");
17716
+ /* harmony import */ var _RolesState__WEBPACK_IMPORTED_MODULE_46__ = __webpack_require__(/*! ./RolesState */ "../../dist/@frontegg/redux-store/auth/RolesState/state.js");
17717
+ /* harmony import */ var _RolesState__WEBPACK_IMPORTED_MODULE_84__ = __webpack_require__(/*! ./RolesState */ "../../dist/@frontegg/redux-store/auth/RolesState/actions.js");
17718
+ /* harmony import */ var _Security_RestrictionsState__WEBPACK_IMPORTED_MODULE_47__ = __webpack_require__(/*! ./Security/RestrictionsState */ "../../dist/@frontegg/redux-store/auth/Security/RestrictionsState/state.js");
17719
+ /* harmony import */ var _Security_RestrictionsState__WEBPACK_IMPORTED_MODULE_85__ = __webpack_require__(/*! ./Security/RestrictionsState */ "../../dist/@frontegg/redux-store/auth/Security/RestrictionsState/actions.js");
17720
+ /* harmony import */ var _Security_SecurityCenterState__WEBPACK_IMPORTED_MODULE_48__ = __webpack_require__(/*! ./Security/SecurityCenterState */ "../../dist/@frontegg/redux-store/auth/Security/SecurityCenterState/state.js");
17721
+ /* harmony import */ var _Security_SecurityCenterState__WEBPACK_IMPORTED_MODULE_86__ = __webpack_require__(/*! ./Security/SecurityCenterState */ "../../dist/@frontegg/redux-store/auth/Security/SecurityCenterState/actions.js");
17722
+ /* harmony import */ var _Security_SecurityPolicyState__WEBPACK_IMPORTED_MODULE_49__ = __webpack_require__(/*! ./Security/SecurityPolicyState */ "../../dist/@frontegg/redux-store/auth/Security/SecurityPolicyState/state.js");
17723
+ /* harmony import */ var _Security_SecurityPolicyState__WEBPACK_IMPORTED_MODULE_87__ = __webpack_require__(/*! ./Security/SecurityPolicyState */ "../../dist/@frontegg/redux-store/auth/Security/SecurityPolicyState/actions.js");
17724
+ /* harmony import */ var _Security_SessionsPolicyState__WEBPACK_IMPORTED_MODULE_50__ = __webpack_require__(/*! ./Security/SessionsPolicyState */ "../../dist/@frontegg/redux-store/auth/Security/SessionsPolicyState/state.js");
17725
+ /* harmony import */ var _Security_SessionsPolicyState__WEBPACK_IMPORTED_MODULE_88__ = __webpack_require__(/*! ./Security/SessionsPolicyState */ "../../dist/@frontegg/redux-store/auth/Security/SessionsPolicyState/actions.js");
17726
+ /* harmony import */ var _SessionsState__WEBPACK_IMPORTED_MODULE_51__ = __webpack_require__(/*! ./SessionsState */ "../../dist/@frontegg/redux-store/auth/SessionsState/state.js");
17727
+ /* harmony import */ var _SessionsState__WEBPACK_IMPORTED_MODULE_89__ = __webpack_require__(/*! ./SessionsState */ "../../dist/@frontegg/redux-store/auth/SessionsState/actions.js");
17728
+ /* harmony import */ var _SignUpState__WEBPACK_IMPORTED_MODULE_52__ = __webpack_require__(/*! ./SignUpState */ "../../dist/@frontegg/redux-store/auth/SignUpState/state.js");
17729
+ /* harmony import */ var _SignUpState__WEBPACK_IMPORTED_MODULE_90__ = __webpack_require__(/*! ./SignUpState */ "../../dist/@frontegg/redux-store/auth/SignUpState/actions.js");
17730
+ /* harmony import */ var _SmsState__WEBPACK_IMPORTED_MODULE_53__ = __webpack_require__(/*! ./SmsState */ "../../dist/@frontegg/redux-store/auth/SmsState/state.js");
17731
+ /* harmony import */ var _SmsState__WEBPACK_IMPORTED_MODULE_91__ = __webpack_require__(/*! ./SmsState */ "../../dist/@frontegg/redux-store/auth/SmsState/actions.js");
17732
+ /* harmony import */ var _SocialLoginState__WEBPACK_IMPORTED_MODULE_54__ = __webpack_require__(/*! ./SocialLoginState */ "../../dist/@frontegg/redux-store/auth/SocialLoginState/state.js");
17733
+ /* harmony import */ var _SocialLoginState__WEBPACK_IMPORTED_MODULE_92__ = __webpack_require__(/*! ./SocialLoginState */ "../../dist/@frontegg/redux-store/auth/SocialLoginState/actions.js");
17734
+ /* harmony import */ var _SSOState__WEBPACK_IMPORTED_MODULE_55__ = __webpack_require__(/*! ./SSOState */ "../../dist/@frontegg/redux-store/auth/SSOState/state.js");
17735
+ /* harmony import */ var _SSOState__WEBPACK_IMPORTED_MODULE_93__ = __webpack_require__(/*! ./SSOState */ "../../dist/@frontegg/redux-store/auth/SSOState/actions/index.js");
17736
+ /* harmony import */ var _StepUpState__WEBPACK_IMPORTED_MODULE_56__ = __webpack_require__(/*! ./StepUpState */ "../../dist/@frontegg/redux-store/auth/StepUpState/state.js");
17737
+ /* harmony import */ var _StepUpState__WEBPACK_IMPORTED_MODULE_94__ = __webpack_require__(/*! ./StepUpState */ "../../dist/@frontegg/redux-store/auth/StepUpState/actions/index.js");
17738
+ /* harmony import */ var _TeamState__WEBPACK_IMPORTED_MODULE_57__ = __webpack_require__(/*! ./TeamState */ "../../dist/@frontegg/redux-store/auth/TeamState/state.js");
17739
+ /* harmony import */ var _TeamState__WEBPACK_IMPORTED_MODULE_95__ = __webpack_require__(/*! ./TeamState */ "../../dist/@frontegg/redux-store/auth/TeamState/actions/index.js");
17740
+ /* harmony import */ var _TenantsState__WEBPACK_IMPORTED_MODULE_58__ = __webpack_require__(/*! ./TenantsState */ "../../dist/@frontegg/redux-store/auth/TenantsState/state.js");
17741
+ /* harmony import */ var _TenantsState__WEBPACK_IMPORTED_MODULE_96__ = __webpack_require__(/*! ./TenantsState */ "../../dist/@frontegg/redux-store/auth/TenantsState/actions.js");
17742
+ /* harmony import */ var _UsernamesState__WEBPACK_IMPORTED_MODULE_59__ = __webpack_require__(/*! ./UsernamesState */ "../../dist/@frontegg/redux-store/auth/UsernamesState/state.js");
17743
+ /* harmony import */ var _UsernamesState__WEBPACK_IMPORTED_MODULE_97__ = __webpack_require__(/*! ./UsernamesState */ "../../dist/@frontegg/redux-store/auth/UsernamesState/actions.js");
17744
+ /* harmony import */ var _UsersEmailsPolicyState__WEBPACK_IMPORTED_MODULE_60__ = __webpack_require__(/*! ./UsersEmailsPolicyState */ "../../dist/@frontegg/redux-store/auth/UsersEmailsPolicyState/state.js");
17745
+ /* harmony import */ var _UsersEmailsPolicyState__WEBPACK_IMPORTED_MODULE_98__ = __webpack_require__(/*! ./UsersEmailsPolicyState */ "../../dist/@frontegg/redux-store/auth/UsersEmailsPolicyState/actions.js");
17746
+ /* harmony import */ var _LoginState_consts__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ./LoginState/consts */ "../../dist/@frontegg/redux-store/auth/LoginState/consts.js");
17747
+ /* harmony import */ var _helpers__WEBPACK_IMPORTED_MODULE_61__ = __webpack_require__(/*! ../helpers */ "../../dist/@frontegg/redux-store/helpers/common.js");
17748
+ /* harmony import */ var _Entitlements__WEBPACK_IMPORTED_MODULE_70__ = __webpack_require__(/*! ./Entitlements */ "../../dist/@frontegg/redux-store/auth/Entitlements/actions.js");
17749
+ /* harmony import */ var _toolkit_proxy__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ../toolkit/proxy */ "../../dist/@frontegg/redux-store/toolkit/proxy.js");
17750
+ /* harmony import */ var _AcceptInvitationState_interfaces__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./AcceptInvitationState/interfaces */ "../../dist/@frontegg/redux-store/auth/AcceptInvitationState/interfaces.js");
17751
+ /* harmony import */ var _ActivateAccountState_interfaces__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./ActivateAccountState/interfaces */ "../../dist/@frontegg/redux-store/auth/ActivateAccountState/interfaces.js");
17752
+ /* harmony import */ var _ApprovalFlowState_interfaces__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./ApprovalFlowState/interfaces */ "../../dist/@frontegg/redux-store/auth/ApprovalFlowState/interfaces.js");
17753
+ /* harmony import */ var _ApiTokensState_interfaces__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./ApiTokensState/interfaces */ "../../dist/@frontegg/redux-store/auth/ApiTokensState/interfaces.js");
17754
+ /* harmony import */ var _Entitlements_helpers__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./Entitlements/helpers */ "../../dist/@frontegg/redux-store/auth/Entitlements/helpers.js");
17755
+ /* harmony import */ var _ForgotPasswordState_interfaces__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./ForgotPasswordState/interfaces */ "../../dist/@frontegg/redux-store/auth/ForgotPasswordState/interfaces.js");
17756
+ /* harmony import */ var _PasswordRotationState_interfaces__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./PasswordRotationState/interfaces */ "../../dist/@frontegg/redux-store/auth/PasswordRotationState/interfaces.js");
17757
+ /* harmony import */ var _GroupsState_interfaces__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./GroupsState/interfaces */ "../../dist/@frontegg/redux-store/auth/GroupsState/interfaces.js");
17758
+ /* harmony import */ var _ImpersonateState_interfaces__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./ImpersonateState/interfaces */ "../../dist/@frontegg/redux-store/auth/ImpersonateState/interfaces.js");
17759
+ /* harmony import */ var _LoginState_interfaces__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./LoginState/interfaces */ "../../dist/@frontegg/redux-store/auth/LoginState/interfaces.js");
17760
+ /* harmony import */ var _MfaState_interfaces__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./MfaState/interfaces */ "../../dist/@frontegg/redux-store/auth/MfaState/interfaces.js");
17761
+ /* harmony import */ var _MSP_interfaces__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./MSP/interfaces */ "../../dist/@frontegg/redux-store/auth/MSP/interfaces/index.js");
17762
+ /* harmony import */ var _ResetPhoneNumberState_interfaces__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./ResetPhoneNumberState/interfaces */ "../../dist/@frontegg/redux-store/auth/ResetPhoneNumberState/interfaces.js");
17763
+ /* harmony import */ var _RolesState_interfaces__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./RolesState/interfaces */ "../../dist/@frontegg/redux-store/auth/RolesState/interfaces.js");
17764
+ /* harmony import */ var _Security_SecurityCenterState_interfaces__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./Security/SecurityCenterState/interfaces */ "../../dist/@frontegg/redux-store/auth/Security/SecurityCenterState/interfaces.js");
17765
+ /* harmony import */ var _SignUpState_interfaces__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./SignUpState/interfaces */ "../../dist/@frontegg/redux-store/auth/SignUpState/interfaces.js");
17766
+ /* harmony import */ var _SSOState_interfaces__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ./SSOState/interfaces */ "../../dist/@frontegg/redux-store/auth/SSOState/interfaces.js");
17767
+ /* harmony import */ var _TeamState_interfaces__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ./TeamState/interfaces */ "../../dist/@frontegg/redux-store/auth/TeamState/interfaces.js");
17768
+ /* harmony import */ var _UsersEmailsPolicyState_interfaces__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ./UsersEmailsPolicyState/interfaces */ "../../dist/@frontegg/redux-store/auth/UsersEmailsPolicyState/interfaces.js");
17769
+ /* harmony import */ var _interfaces__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ./interfaces */ "../../dist/@frontegg/redux-store/auth/interfaces.js");
17744
17770
 
17745
17771
 
17746
17772
  const _excluded = ["routes"],
@@ -17820,6 +17846,7 @@ const _excluded = ["routes"],
17820
17846
 
17821
17847
 
17822
17848
 
17849
+
17823
17850
 
17824
17851
 
17825
17852
  const createAuthState = _overrideState => {
@@ -17828,8 +17855,8 @@ const createAuthState = _overrideState => {
17828
17855
  routes
17829
17856
  } = _ref,
17830
17857
  overrideState = (0,_babel_runtime_helpers_esm_objectWithoutPropertiesLoose__WEBPACK_IMPORTED_MODULE_1__["default"])(_ref, _excluded);
17831
- return (0,_toolkit_proxy__WEBPACK_IMPORTED_MODULE_22__.createProxy)((0,_babel_runtime_helpers_esm_extends__WEBPACK_IMPORTED_MODULE_0__["default"])({
17832
- routes: (0,_babel_runtime_helpers_esm_extends__WEBPACK_IMPORTED_MODULE_0__["default"])({}, _LoginState_consts__WEBPACK_IMPORTED_MODULE_23__.defaultFronteggRoutes, routes),
17858
+ return (0,_toolkit_proxy__WEBPACK_IMPORTED_MODULE_23__.createProxy)((0,_babel_runtime_helpers_esm_extends__WEBPACK_IMPORTED_MODULE_0__["default"])({
17859
+ routes: (0,_babel_runtime_helpers_esm_extends__WEBPACK_IMPORTED_MODULE_0__["default"])({}, _LoginState_consts__WEBPACK_IMPORTED_MODULE_24__.defaultFronteggRoutes, routes),
17833
17860
  onRedirectTo: () => void 0,
17834
17861
  isAuthenticated: false,
17835
17862
  isLoading: true,
@@ -17843,49 +17870,49 @@ const createAuthState = _overrideState => {
17843
17870
  }
17844
17871
  }, overrideState, {
17845
17872
  // nested states
17846
- acceptInvitationState: (0,_AcceptInvitationState__WEBPACK_IMPORTED_MODULE_24__["default"])(overrideState == null ? void 0 : overrideState.acceptInvitationState),
17847
- accountSettingsState: (0,_AccountSettingsState__WEBPACK_IMPORTED_MODULE_25__["default"])(overrideState == null ? void 0 : overrideState.accountSettingsState),
17848
- activateAccountState: (0,_ActivateAccountState__WEBPACK_IMPORTED_MODULE_26__["default"])(overrideState == null ? void 0 : overrideState.activateAccountState),
17849
- unlockAccountState: (0,_UnlockAccountState__WEBPACK_IMPORTED_MODULE_27__["default"])(overrideState == null ? void 0 : overrideState.unlockAccountState),
17850
- approvalFlowState: (0,_ApprovalFlowState__WEBPACK_IMPORTED_MODULE_28__["default"])(overrideState == null ? void 0 : overrideState.approvalFlowState),
17851
- apiTokensState: (0,_ApiTokensState__WEBPACK_IMPORTED_MODULE_29__["default"])(overrideState == null ? void 0 : overrideState.apiTokensState),
17852
- applicationsState: (0,_ApplicationsState__WEBPACK_IMPORTED_MODULE_30__["default"])(overrideState == null ? void 0 : overrideState.applicationsState),
17853
- customLoginState: (0,_CustomLoginState__WEBPACK_IMPORTED_MODULE_31__["default"])(overrideState == null ? void 0 : overrideState.customLoginState),
17854
- forgotPasswordState: (0,_ForgotPasswordState__WEBPACK_IMPORTED_MODULE_32__["default"])(overrideState == null ? void 0 : overrideState.forgotPasswordState),
17855
- passwordRotationState: (0,_PasswordRotationState__WEBPACK_IMPORTED_MODULE_33__["default"])(overrideState == null ? void 0 : overrideState.passwordRotationState),
17856
- groupsState: (0,_GroupsState__WEBPACK_IMPORTED_MODULE_34__["default"])(overrideState == null ? void 0 : overrideState.groupsState),
17857
- groupsDialogsState: (0,_GroupsDialogsState__WEBPACK_IMPORTED_MODULE_35__["default"])(overrideState == null ? void 0 : overrideState.groupsDialogsState),
17858
- impersonateState: (0,_ImpersonateState__WEBPACK_IMPORTED_MODULE_36__["default"])(overrideState == null ? void 0 : overrideState.impersonateState),
17859
- loginState: (0,_LoginState__WEBPACK_IMPORTED_MODULE_37__["default"])(overrideState == null ? void 0 : overrideState.loginState),
17860
- mfaState: (0,_MfaState__WEBPACK_IMPORTED_MODULE_38__["default"])(overrideState == null ? void 0 : overrideState.mfaState),
17861
- allAccountsState: (0,_MSP__WEBPACK_IMPORTED_MODULE_39__["default"])(overrideState == null ? void 0 : overrideState.allAccountsState),
17862
- allAccountsDialogsState: (0,_MSP__WEBPACK_IMPORTED_MODULE_40__["default"])(overrideState == null ? void 0 : overrideState.allAccountsDialogsState),
17863
- passkeysState: (0,_PasskeysState__WEBPACK_IMPORTED_MODULE_41__["default"])(overrideState == null ? void 0 : overrideState.passkeysState),
17864
- profileState: (0,_ProfileState__WEBPACK_IMPORTED_MODULE_42__["default"])(overrideState == null ? void 0 : overrideState.profileState),
17865
- provisioningState: (0,_ProvisioningState__WEBPACK_IMPORTED_MODULE_43__["default"])(overrideState == null ? void 0 : overrideState.provisioningState),
17866
- resetPhoneNumberState: (0,_ResetPhoneNumberState__WEBPACK_IMPORTED_MODULE_44__["default"])(overrideState == null ? void 0 : overrideState.resetPhoneNumberState),
17867
- rolesState: (0,_RolesState__WEBPACK_IMPORTED_MODULE_45__["default"])(overrideState == null ? void 0 : overrideState.rolesState),
17868
- restrictionsState: (0,_Security_RestrictionsState__WEBPACK_IMPORTED_MODULE_46__["default"])(overrideState == null ? void 0 : overrideState.restrictionsState),
17869
- securityCenterState: (0,_Security_SecurityCenterState__WEBPACK_IMPORTED_MODULE_47__["default"])(overrideState == null ? void 0 : overrideState.securityCenterState),
17870
- securityPolicyState: (0,_Security_SecurityPolicyState__WEBPACK_IMPORTED_MODULE_48__["default"])(overrideState == null ? void 0 : overrideState.securityPolicyState),
17871
- sessionsPolicyState: (0,_Security_SessionsPolicyState__WEBPACK_IMPORTED_MODULE_49__["default"])(overrideState == null ? void 0 : overrideState.sessionsPolicyState),
17872
- sessionsState: (0,_SessionsState__WEBPACK_IMPORTED_MODULE_50__["default"])(overrideState == null ? void 0 : overrideState.sessionsState),
17873
- signUpState: (0,_SignUpState__WEBPACK_IMPORTED_MODULE_51__["default"])(overrideState == null ? void 0 : overrideState.signUpState),
17874
- smsState: (0,_SmsState__WEBPACK_IMPORTED_MODULE_52__["default"])(overrideState == null ? void 0 : overrideState.smsState),
17875
- socialLoginState: (0,_SocialLoginState__WEBPACK_IMPORTED_MODULE_53__["default"])(overrideState == null ? void 0 : overrideState.socialLoginState),
17876
- ssoState: (0,_SSOState__WEBPACK_IMPORTED_MODULE_54__["default"])(overrideState == null ? void 0 : overrideState.ssoState),
17877
- stepUpState: (0,_StepUpState__WEBPACK_IMPORTED_MODULE_55__["default"])(overrideState == null ? void 0 : overrideState.stepUpState),
17878
- teamState: (0,_TeamState__WEBPACK_IMPORTED_MODULE_56__["default"])(overrideState == null ? void 0 : overrideState.teamState),
17879
- tenantsState: (0,_TenantsState__WEBPACK_IMPORTED_MODULE_57__["default"])(overrideState == null ? void 0 : overrideState.tenantsState),
17880
- usernamesState: (0,_UsernamesState__WEBPACK_IMPORTED_MODULE_58__["default"])(overrideState == null ? void 0 : overrideState.usernamesState),
17881
- userEmailPolicyState: (0,_UsersEmailsPolicyState__WEBPACK_IMPORTED_MODULE_59__["default"])(overrideState == null ? void 0 : overrideState.userEmailPolicyState)
17873
+ acceptInvitationState: (0,_AcceptInvitationState__WEBPACK_IMPORTED_MODULE_25__["default"])(overrideState == null ? void 0 : overrideState.acceptInvitationState),
17874
+ accountSettingsState: (0,_AccountSettingsState__WEBPACK_IMPORTED_MODULE_26__["default"])(overrideState == null ? void 0 : overrideState.accountSettingsState),
17875
+ activateAccountState: (0,_ActivateAccountState__WEBPACK_IMPORTED_MODULE_27__["default"])(overrideState == null ? void 0 : overrideState.activateAccountState),
17876
+ unlockAccountState: (0,_UnlockAccountState__WEBPACK_IMPORTED_MODULE_28__["default"])(overrideState == null ? void 0 : overrideState.unlockAccountState),
17877
+ approvalFlowState: (0,_ApprovalFlowState__WEBPACK_IMPORTED_MODULE_29__["default"])(overrideState == null ? void 0 : overrideState.approvalFlowState),
17878
+ apiTokensState: (0,_ApiTokensState__WEBPACK_IMPORTED_MODULE_30__["default"])(overrideState == null ? void 0 : overrideState.apiTokensState),
17879
+ applicationsState: (0,_ApplicationsState__WEBPACK_IMPORTED_MODULE_31__["default"])(overrideState == null ? void 0 : overrideState.applicationsState),
17880
+ customLoginState: (0,_CustomLoginState__WEBPACK_IMPORTED_MODULE_32__["default"])(overrideState == null ? void 0 : overrideState.customLoginState),
17881
+ forgotPasswordState: (0,_ForgotPasswordState__WEBPACK_IMPORTED_MODULE_33__["default"])(overrideState == null ? void 0 : overrideState.forgotPasswordState),
17882
+ passwordRotationState: (0,_PasswordRotationState__WEBPACK_IMPORTED_MODULE_34__["default"])(overrideState == null ? void 0 : overrideState.passwordRotationState),
17883
+ groupsState: (0,_GroupsState__WEBPACK_IMPORTED_MODULE_35__["default"])(overrideState == null ? void 0 : overrideState.groupsState),
17884
+ groupsDialogsState: (0,_GroupsDialogsState__WEBPACK_IMPORTED_MODULE_36__["default"])(overrideState == null ? void 0 : overrideState.groupsDialogsState),
17885
+ impersonateState: (0,_ImpersonateState__WEBPACK_IMPORTED_MODULE_37__["default"])(overrideState == null ? void 0 : overrideState.impersonateState),
17886
+ loginState: (0,_LoginState__WEBPACK_IMPORTED_MODULE_38__["default"])(overrideState == null ? void 0 : overrideState.loginState),
17887
+ mfaState: (0,_MfaState__WEBPACK_IMPORTED_MODULE_39__["default"])(overrideState == null ? void 0 : overrideState.mfaState),
17888
+ allAccountsState: (0,_MSP__WEBPACK_IMPORTED_MODULE_40__["default"])(overrideState == null ? void 0 : overrideState.allAccountsState),
17889
+ allAccountsDialogsState: (0,_MSP__WEBPACK_IMPORTED_MODULE_41__["default"])(overrideState == null ? void 0 : overrideState.allAccountsDialogsState),
17890
+ passkeysState: (0,_PasskeysState__WEBPACK_IMPORTED_MODULE_42__["default"])(overrideState == null ? void 0 : overrideState.passkeysState),
17891
+ profileState: (0,_ProfileState__WEBPACK_IMPORTED_MODULE_43__["default"])(overrideState == null ? void 0 : overrideState.profileState),
17892
+ provisioningState: (0,_ProvisioningState__WEBPACK_IMPORTED_MODULE_44__["default"])(overrideState == null ? void 0 : overrideState.provisioningState),
17893
+ resetPhoneNumberState: (0,_ResetPhoneNumberState__WEBPACK_IMPORTED_MODULE_45__["default"])(overrideState == null ? void 0 : overrideState.resetPhoneNumberState),
17894
+ rolesState: (0,_RolesState__WEBPACK_IMPORTED_MODULE_46__["default"])(overrideState == null ? void 0 : overrideState.rolesState),
17895
+ restrictionsState: (0,_Security_RestrictionsState__WEBPACK_IMPORTED_MODULE_47__["default"])(overrideState == null ? void 0 : overrideState.restrictionsState),
17896
+ securityCenterState: (0,_Security_SecurityCenterState__WEBPACK_IMPORTED_MODULE_48__["default"])(overrideState == null ? void 0 : overrideState.securityCenterState),
17897
+ securityPolicyState: (0,_Security_SecurityPolicyState__WEBPACK_IMPORTED_MODULE_49__["default"])(overrideState == null ? void 0 : overrideState.securityPolicyState),
17898
+ sessionsPolicyState: (0,_Security_SessionsPolicyState__WEBPACK_IMPORTED_MODULE_50__["default"])(overrideState == null ? void 0 : overrideState.sessionsPolicyState),
17899
+ sessionsState: (0,_SessionsState__WEBPACK_IMPORTED_MODULE_51__["default"])(overrideState == null ? void 0 : overrideState.sessionsState),
17900
+ signUpState: (0,_SignUpState__WEBPACK_IMPORTED_MODULE_52__["default"])(overrideState == null ? void 0 : overrideState.signUpState),
17901
+ smsState: (0,_SmsState__WEBPACK_IMPORTED_MODULE_53__["default"])(overrideState == null ? void 0 : overrideState.smsState),
17902
+ socialLoginState: (0,_SocialLoginState__WEBPACK_IMPORTED_MODULE_54__["default"])(overrideState == null ? void 0 : overrideState.socialLoginState),
17903
+ ssoState: (0,_SSOState__WEBPACK_IMPORTED_MODULE_55__["default"])(overrideState == null ? void 0 : overrideState.ssoState),
17904
+ stepUpState: (0,_StepUpState__WEBPACK_IMPORTED_MODULE_56__["default"])(overrideState == null ? void 0 : overrideState.stepUpState),
17905
+ teamState: (0,_TeamState__WEBPACK_IMPORTED_MODULE_57__["default"])(overrideState == null ? void 0 : overrideState.teamState),
17906
+ tenantsState: (0,_TenantsState__WEBPACK_IMPORTED_MODULE_58__["default"])(overrideState == null ? void 0 : overrideState.tenantsState),
17907
+ usernamesState: (0,_UsernamesState__WEBPACK_IMPORTED_MODULE_59__["default"])(overrideState == null ? void 0 : overrideState.usernamesState),
17908
+ userEmailPolicyState: (0,_UsersEmailsPolicyState__WEBPACK_IMPORTED_MODULE_60__["default"])(overrideState == null ? void 0 : overrideState.userEmailPolicyState)
17882
17909
  }));
17883
17910
  };
17884
17911
  const buildAuthActions = (store, api, actions, snapshotAuthState) => {
17885
17912
  const setAuthState = state => {
17886
17913
  Object.keys(state).forEach(key => {
17887
17914
  const authKey = key;
17888
- if ((0,_helpers__WEBPACK_IMPORTED_MODULE_60__.isProxy)(store.auth[authKey])) {
17915
+ if ((0,_helpers__WEBPACK_IMPORTED_MODULE_61__.isProxy)(store.auth[authKey])) {
17889
17916
  Object.assign(store.auth[authKey], state[authKey]);
17890
17917
  } else {
17891
17918
  store.auth[authKey] = state[authKey];
@@ -17893,7 +17920,7 @@ const buildAuthActions = (store, api, actions, snapshotAuthState) => {
17893
17920
  });
17894
17921
  };
17895
17922
  const resetAuthState = (state = {}) => {
17896
- (0,_helpers__WEBPACK_IMPORTED_MODULE_60__.deepResetState)(store, ['auth'], (0,_babel_runtime_helpers_esm_extends__WEBPACK_IMPORTED_MODULE_0__["default"])({}, snapshotAuthState, state));
17923
+ (0,_helpers__WEBPACK_IMPORTED_MODULE_61__.deepResetState)(store, ['auth'], (0,_babel_runtime_helpers_esm_extends__WEBPACK_IMPORTED_MODULE_0__["default"])({}, snapshotAuthState, state));
17897
17924
  };
17898
17925
  const setUser = user => {
17899
17926
  setAuthState({
@@ -17911,43 +17938,43 @@ const buildAuthActions = (store, api, actions, snapshotAuthState) => {
17911
17938
  })
17912
17939
  });
17913
17940
  };
17914
- const acceptInvitationActions = (0,_AcceptInvitationState__WEBPACK_IMPORTED_MODULE_61__["default"])(store, api, actions);
17915
- const accountSettingsActions = (0,_AccountSettingsState__WEBPACK_IMPORTED_MODULE_62__["default"])(store, api, actions);
17916
- const activateAccountActions = (0,_ActivateAccountState__WEBPACK_IMPORTED_MODULE_63__["default"])(store, api, actions);
17917
- const unlockAccountActions = (0,_UnlockAccountState__WEBPACK_IMPORTED_MODULE_64__["default"])(store, api, actions);
17918
- const approvalFlowActions = (0,_ApprovalFlowState__WEBPACK_IMPORTED_MODULE_65__["default"])(store, api, actions);
17919
- const apiTokensActions = (0,_ApiTokensState__WEBPACK_IMPORTED_MODULE_66__["default"])(store, api, actions);
17920
- const applicationsActions = (0,_ApplicationsState__WEBPACK_IMPORTED_MODULE_67__["default"])(store, api, actions);
17921
- const customLoginActions = (0,_CustomLoginState__WEBPACK_IMPORTED_MODULE_68__["default"])(store, api, actions);
17922
- const entitlementsActions = (0,_Entitlements__WEBPACK_IMPORTED_MODULE_69__["default"])(store, api, actions);
17923
- const forgotPasswordActions = (0,_ForgotPasswordState__WEBPACK_IMPORTED_MODULE_70__["default"])(store, api, actions);
17924
- const passwordRotationActions = (0,_PasswordRotationState__WEBPACK_IMPORTED_MODULE_71__["default"])(store, api, actions);
17925
- const groupsActions = (0,_GroupsState__WEBPACK_IMPORTED_MODULE_72__["default"])(store, api, actions);
17926
- const groupsDialogsActions = (0,_GroupsDialogsState__WEBPACK_IMPORTED_MODULE_73__["default"])(store, api, actions);
17927
- const impersonateActions = (0,_ImpersonateState__WEBPACK_IMPORTED_MODULE_74__["default"])(store, api, actions);
17928
- const loginActions = (0,_LoginState__WEBPACK_IMPORTED_MODULE_75__["default"])(store, api, actions);
17929
- const mfaActions = (0,_MfaState__WEBPACK_IMPORTED_MODULE_76__["default"])(store, api, actions);
17930
- const allAccountsActions = (0,_MSP__WEBPACK_IMPORTED_MODULE_77__["default"])(store, api, actions);
17931
- const allAccountsDialogActions = (0,_MSP__WEBPACK_IMPORTED_MODULE_78__["default"])(store, api, actions);
17932
- const passkeysActions = (0,_PasskeysState__WEBPACK_IMPORTED_MODULE_79__["default"])(store, api, actions);
17933
- const profileActions = (0,_ProfileState__WEBPACK_IMPORTED_MODULE_80__["default"])(store, api, actions);
17934
- const provisioningActions = (0,_ProvisioningState__WEBPACK_IMPORTED_MODULE_81__["default"])(store, api, actions);
17935
- const resetPhoneNumberActions = (0,_ResetPhoneNumberState__WEBPACK_IMPORTED_MODULE_82__["default"])(store, api, actions);
17936
- const rolesActions = (0,_RolesState__WEBPACK_IMPORTED_MODULE_83__["default"])(store, api, actions);
17937
- const restrictionsActions = (0,_Security_RestrictionsState__WEBPACK_IMPORTED_MODULE_84__["default"])(store, api, actions);
17938
- const securityCenterActions = (0,_Security_SecurityCenterState__WEBPACK_IMPORTED_MODULE_85__["default"])(store, api, actions);
17939
- const securityPolicyActions = (0,_Security_SecurityPolicyState__WEBPACK_IMPORTED_MODULE_86__["default"])(store, api, actions);
17940
- const sessionsPolicyActions = (0,_Security_SessionsPolicyState__WEBPACK_IMPORTED_MODULE_87__["default"])(store, api, actions);
17941
- const sessionsActions = (0,_SessionsState__WEBPACK_IMPORTED_MODULE_88__["default"])(store, api, actions);
17942
- const signUpActions = (0,_SignUpState__WEBPACK_IMPORTED_MODULE_89__["default"])(store, api, actions);
17943
- const smsActions = (0,_SmsState__WEBPACK_IMPORTED_MODULE_90__["default"])(store, api, actions);
17944
- const socialLoginActions = (0,_SocialLoginState__WEBPACK_IMPORTED_MODULE_91__["default"])(store, api, actions);
17945
- const ssoActions = (0,_SSOState__WEBPACK_IMPORTED_MODULE_92__["default"])(store, api, actions);
17946
- const stepUpActions = (0,_StepUpState__WEBPACK_IMPORTED_MODULE_93__["default"])(store, api, actions);
17947
- const teamActions = (0,_TeamState__WEBPACK_IMPORTED_MODULE_94__["default"])(store, api, actions);
17948
- const tenantsActions = (0,_TenantsState__WEBPACK_IMPORTED_MODULE_95__["default"])(store, api, actions);
17949
- const usernamesActions = (0,_UsernamesState__WEBPACK_IMPORTED_MODULE_96__["default"])(store, api, actions);
17950
- const usersEmailsPolicyActions = (0,_UsersEmailsPolicyState__WEBPACK_IMPORTED_MODULE_97__["default"])(store, api, actions);
17941
+ const acceptInvitationActions = (0,_AcceptInvitationState__WEBPACK_IMPORTED_MODULE_62__["default"])(store, api, actions);
17942
+ const accountSettingsActions = (0,_AccountSettingsState__WEBPACK_IMPORTED_MODULE_63__["default"])(store, api, actions);
17943
+ const activateAccountActions = (0,_ActivateAccountState__WEBPACK_IMPORTED_MODULE_64__["default"])(store, api, actions);
17944
+ const unlockAccountActions = (0,_UnlockAccountState__WEBPACK_IMPORTED_MODULE_65__["default"])(store, api, actions);
17945
+ const approvalFlowActions = (0,_ApprovalFlowState__WEBPACK_IMPORTED_MODULE_66__["default"])(store, api, actions);
17946
+ const apiTokensActions = (0,_ApiTokensState__WEBPACK_IMPORTED_MODULE_67__["default"])(store, api, actions);
17947
+ const applicationsActions = (0,_ApplicationsState__WEBPACK_IMPORTED_MODULE_68__["default"])(store, api, actions);
17948
+ const customLoginActions = (0,_CustomLoginState__WEBPACK_IMPORTED_MODULE_69__["default"])(store, api, actions);
17949
+ const entitlementsActions = (0,_Entitlements__WEBPACK_IMPORTED_MODULE_70__["default"])(store, api, actions);
17950
+ const forgotPasswordActions = (0,_ForgotPasswordState__WEBPACK_IMPORTED_MODULE_71__["default"])(store, api, actions);
17951
+ const passwordRotationActions = (0,_PasswordRotationState__WEBPACK_IMPORTED_MODULE_72__["default"])(store, api, actions);
17952
+ const groupsActions = (0,_GroupsState__WEBPACK_IMPORTED_MODULE_73__["default"])(store, api, actions);
17953
+ const groupsDialogsActions = (0,_GroupsDialogsState__WEBPACK_IMPORTED_MODULE_74__["default"])(store, api, actions);
17954
+ const impersonateActions = (0,_ImpersonateState__WEBPACK_IMPORTED_MODULE_75__["default"])(store, api, actions);
17955
+ const loginActions = (0,_LoginState__WEBPACK_IMPORTED_MODULE_76__["default"])(store, api, actions);
17956
+ const mfaActions = (0,_MfaState__WEBPACK_IMPORTED_MODULE_77__["default"])(store, api, actions);
17957
+ const allAccountsActions = (0,_MSP__WEBPACK_IMPORTED_MODULE_78__["default"])(store, api, actions);
17958
+ const allAccountsDialogActions = (0,_MSP__WEBPACK_IMPORTED_MODULE_79__["default"])(store, api, actions);
17959
+ const passkeysActions = (0,_PasskeysState__WEBPACK_IMPORTED_MODULE_80__["default"])(store, api, actions);
17960
+ const profileActions = (0,_ProfileState__WEBPACK_IMPORTED_MODULE_81__["default"])(store, api, actions);
17961
+ const provisioningActions = (0,_ProvisioningState__WEBPACK_IMPORTED_MODULE_82__["default"])(store, api, actions);
17962
+ const resetPhoneNumberActions = (0,_ResetPhoneNumberState__WEBPACK_IMPORTED_MODULE_83__["default"])(store, api, actions);
17963
+ const rolesActions = (0,_RolesState__WEBPACK_IMPORTED_MODULE_84__["default"])(store, api, actions);
17964
+ const restrictionsActions = (0,_Security_RestrictionsState__WEBPACK_IMPORTED_MODULE_85__["default"])(store, api, actions);
17965
+ const securityCenterActions = (0,_Security_SecurityCenterState__WEBPACK_IMPORTED_MODULE_86__["default"])(store, api, actions);
17966
+ const securityPolicyActions = (0,_Security_SecurityPolicyState__WEBPACK_IMPORTED_MODULE_87__["default"])(store, api, actions);
17967
+ const sessionsPolicyActions = (0,_Security_SessionsPolicyState__WEBPACK_IMPORTED_MODULE_88__["default"])(store, api, actions);
17968
+ const sessionsActions = (0,_SessionsState__WEBPACK_IMPORTED_MODULE_89__["default"])(store, api, actions);
17969
+ const signUpActions = (0,_SignUpState__WEBPACK_IMPORTED_MODULE_90__["default"])(store, api, actions);
17970
+ const smsActions = (0,_SmsState__WEBPACK_IMPORTED_MODULE_91__["default"])(store, api, actions);
17971
+ const socialLoginActions = (0,_SocialLoginState__WEBPACK_IMPORTED_MODULE_92__["default"])(store, api, actions);
17972
+ const ssoActions = (0,_SSOState__WEBPACK_IMPORTED_MODULE_93__["default"])(store, api, actions);
17973
+ const stepUpActions = (0,_StepUpState__WEBPACK_IMPORTED_MODULE_94__["default"])(store, api, actions);
17974
+ const teamActions = (0,_TeamState__WEBPACK_IMPORTED_MODULE_95__["default"])(store, api, actions);
17975
+ const tenantsActions = (0,_TenantsState__WEBPACK_IMPORTED_MODULE_96__["default"])(store, api, actions);
17976
+ const usernamesActions = (0,_UsernamesState__WEBPACK_IMPORTED_MODULE_97__["default"])(store, api, actions);
17977
+ const usersEmailsPolicyActions = (0,_UsersEmailsPolicyState__WEBPACK_IMPORTED_MODULE_98__["default"])(store, api, actions);
17951
17978
  const stateActions = {
17952
17979
  acceptInvitationActions,
17953
17980
  accountSettingsActions,
@@ -19673,6 +19700,7 @@ __webpack_require__.r(__webpack_exports__);
19673
19700
  /* harmony export */ AuthenticationTypes: () => (/* reexport safe */ _toolkit__WEBPACK_IMPORTED_MODULE_0__.AuthenticationTypes),
19674
19701
  /* harmony export */ DEFAULT_RETRY_CONFIG: () => (/* reexport safe */ _constants__WEBPACK_IMPORTED_MODULE_1__.DEFAULT_RETRY_CONFIG),
19675
19702
  /* harmony export */ EditEmailView: () => (/* reexport safe */ _toolkit__WEBPACK_IMPORTED_MODULE_0__.EditEmailView),
19703
+ /* harmony export */ FORGOT_PASSWORD_ERROR_KEYS: () => (/* reexport safe */ _toolkit__WEBPACK_IMPORTED_MODULE_0__.FORGOT_PASSWORD_ERROR_KEYS),
19676
19704
  /* harmony export */ FRONTEGG_AFTER_AUTH_REDIRECT_URL: () => (/* reexport safe */ _constants__WEBPACK_IMPORTED_MODULE_1__.FRONTEGG_AFTER_AUTH_REDIRECT_URL),
19677
19705
  /* harmony export */ ForgotPasswordStep: () => (/* reexport safe */ _toolkit__WEBPACK_IMPORTED_MODULE_0__.ForgotPasswordStep),
19678
19706
  /* harmony export */ FronteggNativeModule: () => (/* reexport safe */ _toolkit__WEBPACK_IMPORTED_MODULE_0__.FronteggNativeModule),
@@ -19782,7 +19810,7 @@ __webpack_require__.r(__webpack_exports__);
19782
19810
  /* harmony import */ var _subscriptions_interfaces__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./subscriptions/interfaces */ "../../dist/@frontegg/redux-store/subscriptions/interfaces.js");
19783
19811
  /* harmony import */ var _vendor__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./vendor */ "../../dist/@frontegg/redux-store/vendor/index.js");
19784
19812
  /* harmony import */ var _audits__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./audits */ "../../dist/@frontegg/redux-store/audits/index.js");
19785
- /** @license Frontegg v7.96.0
19813
+ /** @license Frontegg v7.98.0-alpha.0
19786
19814
  *
19787
19815
  * This source code is licensed under the MIT license found in the
19788
19816
  * LICENSE file in the root directory of this source tree.
@@ -26238,6 +26266,7 @@ __webpack_require__.r(__webpack_exports__);
26238
26266
  /* harmony export */ AuthStrategyEnum: () => (/* reexport safe */ _store__WEBPACK_IMPORTED_MODULE_1__.AuthStrategyEnum),
26239
26267
  /* harmony export */ AuthenticationTypes: () => (/* reexport safe */ _store__WEBPACK_IMPORTED_MODULE_1__.AuthenticationTypes),
26240
26268
  /* harmony export */ EditEmailView: () => (/* reexport safe */ _store__WEBPACK_IMPORTED_MODULE_1__.EditEmailView),
26269
+ /* harmony export */ FORGOT_PASSWORD_ERROR_KEYS: () => (/* reexport safe */ _store__WEBPACK_IMPORTED_MODULE_1__.FORGOT_PASSWORD_ERROR_KEYS),
26241
26270
  /* harmony export */ ForgotPasswordStep: () => (/* reexport safe */ _store__WEBPACK_IMPORTED_MODULE_1__.ForgotPasswordStep),
26242
26271
  /* harmony export */ FronteggNativeModule: () => (/* reexport safe */ _FronteggNativeModule__WEBPACK_IMPORTED_MODULE_0__["default"]),
26243
26272
  /* harmony export */ GroupRelations: () => (/* reexport safe */ _store__WEBPACK_IMPORTED_MODULE_1__.GroupRelations),
@@ -26329,6 +26358,7 @@ __webpack_require__.r(__webpack_exports__);
26329
26358
  /* harmony export */ AuthStrategyEnum: () => (/* reexport safe */ _auth__WEBPACK_IMPORTED_MODULE_2__.AuthStrategyEnum),
26330
26359
  /* harmony export */ AuthenticationTypes: () => (/* reexport safe */ _auth__WEBPACK_IMPORTED_MODULE_2__.AuthenticationTypes),
26331
26360
  /* harmony export */ EditEmailView: () => (/* reexport safe */ _auth__WEBPACK_IMPORTED_MODULE_2__.EditEmailView),
26361
+ /* harmony export */ FORGOT_PASSWORD_ERROR_KEYS: () => (/* reexport safe */ _auth__WEBPACK_IMPORTED_MODULE_2__.FORGOT_PASSWORD_ERROR_KEYS),
26332
26362
  /* harmony export */ ForgotPasswordStep: () => (/* reexport safe */ _auth__WEBPACK_IMPORTED_MODULE_2__.ForgotPasswordStep),
26333
26363
  /* harmony export */ GroupRelations: () => (/* reexport safe */ _auth__WEBPACK_IMPORTED_MODULE_2__.GroupRelations),
26334
26364
  /* harmony export */ GroupsStateKeys: () => (/* reexport safe */ _auth__WEBPACK_IMPORTED_MODULE_2__.GroupsStateKeys),
@@ -30107,7 +30137,7 @@ __webpack_require__.r(__webpack_exports__);
30107
30137
  /* harmony import */ var _security_center_interfaces__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./security-center/interfaces */ "../../dist/@frontegg/rest-api/security-center/interfaces.js");
30108
30138
  /* harmony import */ var _applications_interfaces__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./applications/interfaces */ "../../dist/@frontegg/rest-api/applications/interfaces.js");
30109
30139
  /* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./constants */ "../../dist/@frontegg/rest-api/constants.js");
30110
- /** @license Frontegg v7.96.0
30140
+ /** @license Frontegg v7.98.0-alpha.0
30111
30141
  *
30112
30142
  * This source code is licensed under the MIT license found in the
30113
30143
  * LICENSE file in the root directory of this source tree.
@@ -32902,7 +32932,7 @@ __webpack_require__.r(__webpack_exports__);
32902
32932
  /* harmony export */ });
32903
32933
  /* harmony import */ var _ThemeOptions__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./ThemeOptions */ "../../dist/@frontegg/types/ThemeOptions/index.js");
32904
32934
  /* harmony import */ var _Metadata__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Metadata */ "../../dist/@frontegg/types/Metadata/index.js");
32905
- /** @license Frontegg v7.96.0
32935
+ /** @license Frontegg v7.98.0-alpha.0
32906
32936
  *
32907
32937
  * This source code is licensed under the MIT license found in the
32908
32938
  * LICENSE file in the root directory of this source tree.