@frontegg/js 7.75.0-alpha.1 → 7.75.0-alpha.2

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.
@@ -1780,7 +1780,7 @@ __webpack_require__.r(__webpack_exports__);
1780
1780
  /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
1781
1781
  /* harmony export */ });
1782
1782
  /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ({
1783
- cdnVersion: '7.75.0-alpha.1'
1783
+ cdnVersion: '7.75.0-alpha.2'
1784
1784
  });
1785
1785
 
1786
1786
  /***/ }),
@@ -3376,7 +3376,6 @@ __webpack_require__.r(__webpack_exports__);
3376
3376
 
3377
3377
  const initialState = {
3378
3378
  apiTokenType: null,
3379
- searchValue: '',
3380
3379
  showAddTokenDialog: false,
3381
3380
  createdByUserIdColumn: 'show',
3382
3381
  deleteTokenDialog: {
@@ -10095,6 +10094,62 @@ const _excluded = ["callback", "profilePictureUrl"];
10095
10094
  });
10096
10095
  }
10097
10096
  };
10097
+ const updateEmail = async payload => {
10098
+ const {
10099
+ email,
10100
+ callback
10101
+ } = payload;
10102
+ setProfileState({
10103
+ saving: true,
10104
+ error: null,
10105
+ loading: true
10106
+ });
10107
+ try {
10108
+ await api.teams.updateEmail(email);
10109
+ setProfileState({
10110
+ saving: false,
10111
+ error: null,
10112
+ loading: false
10113
+ });
10114
+ callback == null ? void 0 : callback(true);
10115
+ } catch (e) {
10116
+ setProfileState({
10117
+ saving: false,
10118
+ error: (0,_helpers__WEBPACK_IMPORTED_MODULE_4__.errorHandler)(e),
10119
+ loading: false
10120
+ });
10121
+ callback == null ? void 0 : callback(null, e);
10122
+ }
10123
+ };
10124
+ const verifyEmail = async payload => {
10125
+ const {
10126
+ email,
10127
+ code,
10128
+ callback
10129
+ } = payload;
10130
+ setProfileState({
10131
+ saving: true,
10132
+ error: null,
10133
+ loading: true
10134
+ });
10135
+ try {
10136
+ await api.teams.verifyEmail(email, code);
10137
+ await actions.__refreshToken();
10138
+ setProfileState({
10139
+ saving: false,
10140
+ error: null,
10141
+ loading: false
10142
+ });
10143
+ callback == null ? void 0 : callback(true);
10144
+ } catch (e) {
10145
+ setProfileState({
10146
+ saving: false,
10147
+ error: (0,_helpers__WEBPACK_IMPORTED_MODULE_4__.errorHandler)(e),
10148
+ loading: false
10149
+ });
10150
+ callback == null ? void 0 : callback(null, e);
10151
+ }
10152
+ };
10098
10153
  const saveProfile = async _payload => {
10099
10154
  const {
10100
10155
  callback,
@@ -10172,7 +10227,9 @@ const _excluded = ["callback", "profilePictureUrl"];
10172
10227
  resetProfileState,
10173
10228
  loadProfile,
10174
10229
  saveProfile,
10175
- changePassword
10230
+ changePassword,
10231
+ updateEmail,
10232
+ verifyEmail
10176
10233
  };
10177
10234
  });
10178
10235
 
@@ -16296,6 +16353,89 @@ const initialState = {
16296
16353
 
16297
16354
  /***/ }),
16298
16355
 
16356
+ /***/ "../../dist/@frontegg/redux-store/auth/UsersEmailsPolicyState/actions.js":
16357
+ /*!*******************************************************************************!*\
16358
+ !*** ../../dist/@frontegg/redux-store/auth/UsersEmailsPolicyState/actions.js ***!
16359
+ \*******************************************************************************/
16360
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
16361
+
16362
+ "use strict";
16363
+ __webpack_require__.r(__webpack_exports__);
16364
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
16365
+ /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
16366
+ /* harmony export */ });
16367
+ /* harmony import */ var _helpers__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../helpers */ "../../dist/@frontegg/redux-store/helpers/handlers.js");
16368
+
16369
+ /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ((store, api, sharedActions) => {
16370
+ const setUserEmailPolicyState = payload => {
16371
+ Object.assign(store.auth.userEmailPolicyState, payload);
16372
+ };
16373
+ const loadUserEmailPolicyState = async () => {
16374
+ setUserEmailPolicyState({
16375
+ loading: true
16376
+ });
16377
+ try {
16378
+ const userEmailPolicyConfig = await api.userEmailPolicy.getUserEmailPolicyConfig();
16379
+ setUserEmailPolicyState({
16380
+ loading: false,
16381
+ userEmailPolicyConfig
16382
+ });
16383
+ } catch (e) {
16384
+ setUserEmailPolicyState({
16385
+ loading: false,
16386
+ error: (0,_helpers__WEBPACK_IMPORTED_MODULE_0__.errorHandler)(e)
16387
+ });
16388
+ }
16389
+ };
16390
+ return {
16391
+ loadUserEmailPolicyState
16392
+ };
16393
+ });
16394
+
16395
+ /***/ }),
16396
+
16397
+ /***/ "../../dist/@frontegg/redux-store/auth/UsersEmailsPolicyState/interfaces.js":
16398
+ /*!**********************************************************************************!*\
16399
+ !*** ../../dist/@frontegg/redux-store/auth/UsersEmailsPolicyState/interfaces.js ***!
16400
+ \**********************************************************************************/
16401
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
16402
+
16403
+ "use strict";
16404
+ __webpack_require__.r(__webpack_exports__);
16405
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
16406
+ /* harmony export */ EditEmailView: () => (/* binding */ EditEmailView)
16407
+ /* harmony export */ });
16408
+ let EditEmailView;
16409
+ (function (EditEmailView) {
16410
+ EditEmailView[EditEmailView["Email"] = 0] = "Email";
16411
+ EditEmailView[EditEmailView["Otc"] = 1] = "Otc";
16412
+ EditEmailView[EditEmailView["Success"] = 2] = "Success";
16413
+ })(EditEmailView || (EditEmailView = {}));
16414
+
16415
+ /***/ }),
16416
+
16417
+ /***/ "../../dist/@frontegg/redux-store/auth/UsersEmailsPolicyState/state.js":
16418
+ /*!*****************************************************************************!*\
16419
+ !*** ../../dist/@frontegg/redux-store/auth/UsersEmailsPolicyState/state.js ***!
16420
+ \*****************************************************************************/
16421
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
16422
+
16423
+ "use strict";
16424
+ __webpack_require__.r(__webpack_exports__);
16425
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
16426
+ /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__),
16427
+ /* harmony export */ initialState: () => (/* binding */ initialState)
16428
+ /* harmony export */ });
16429
+ /* harmony import */ var _toolkit_proxy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../toolkit/proxy */ "../../dist/@frontegg/redux-store/toolkit/proxy.js");
16430
+
16431
+ const initialState = {
16432
+ userEmailPolicyConfig: null,
16433
+ loading: false
16434
+ };
16435
+ /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (overrideState => (0,_toolkit_proxy__WEBPACK_IMPORTED_MODULE_0__.createProxy)(initialState, overrideState));
16436
+
16437
+ /***/ }),
16438
+
16299
16439
  /***/ "../../dist/@frontegg/redux-store/auth/helpers.js":
16300
16440
  /*!********************************************************!*\
16301
16441
  !*** ../../dist/@frontegg/redux-store/auth/helpers.js ***!
@@ -16431,12 +16571,13 @@ __webpack_require__.r(__webpack_exports__);
16431
16571
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
16432
16572
  /* harmony export */ AcceptInvitationStep: () => (/* reexport safe */ _AcceptInvitationState_interfaces__WEBPACK_IMPORTED_MODULE_2__.AcceptInvitationStep),
16433
16573
  /* harmony export */ ActivateAccountStep: () => (/* reexport safe */ _ActivateAccountState_interfaces__WEBPACK_IMPORTED_MODULE_3__.ActivateAccountStep),
16434
- /* harmony export */ AdminPortalPages: () => (/* reexport safe */ _interfaces__WEBPACK_IMPORTED_MODULE_19__.AdminPortalPages),
16435
- /* harmony export */ AdminPortalPagesForEvents: () => (/* reexport safe */ _interfaces__WEBPACK_IMPORTED_MODULE_19__.AdminPortalPagesForEvents),
16574
+ /* harmony export */ AdminPortalPages: () => (/* reexport safe */ _interfaces__WEBPACK_IMPORTED_MODULE_20__.AdminPortalPages),
16575
+ /* harmony export */ AdminPortalPagesForEvents: () => (/* reexport safe */ _interfaces__WEBPACK_IMPORTED_MODULE_20__.AdminPortalPagesForEvents),
16436
16576
  /* harmony export */ AllAccountsStateKeys: () => (/* reexport safe */ _MSP_interfaces__WEBPACK_IMPORTED_MODULE_12__.AllAccountsStateKeys),
16437
16577
  /* harmony export */ ApiStateKeys: () => (/* reexport safe */ _ApiTokensState_interfaces__WEBPACK_IMPORTED_MODULE_4__.ApiStateKeys),
16438
16578
  /* harmony export */ AuthStrategyEnum: () => (/* reexport safe */ _LoginState_interfaces__WEBPACK_IMPORTED_MODULE_10__.AuthStrategyEnum),
16439
- /* harmony export */ AuthenticationTypes: () => (/* reexport safe */ _interfaces__WEBPACK_IMPORTED_MODULE_19__.AuthenticationTypes),
16579
+ /* harmony export */ AuthenticationTypes: () => (/* reexport safe */ _interfaces__WEBPACK_IMPORTED_MODULE_20__.AuthenticationTypes),
16580
+ /* harmony export */ EditEmailView: () => (/* reexport safe */ _UsersEmailsPolicyState_interfaces__WEBPACK_IMPORTED_MODULE_19__.EditEmailView),
16440
16581
  /* harmony export */ ForgotPasswordStep: () => (/* reexport safe */ _ForgotPasswordState_interfaces__WEBPACK_IMPORTED_MODULE_6__.ForgotPasswordStep),
16441
16582
  /* harmony export */ GroupRelations: () => (/* reexport safe */ _GroupsState_interfaces__WEBPACK_IMPORTED_MODULE_8__.GroupRelations),
16442
16583
  /* harmony export */ GroupsStateKeys: () => (/* reexport safe */ _GroupsState_interfaces__WEBPACK_IMPORTED_MODULE_8__.GroupsStateKeys),
@@ -16448,7 +16589,7 @@ __webpack_require__.r(__webpack_exports__);
16448
16589
  /* harmony export */ MachineToMachineAuthStrategy: () => (/* reexport safe */ _ApiTokensState_interfaces__WEBPACK_IMPORTED_MODULE_4__.MachineToMachineAuthStrategy),
16449
16590
  /* harmony export */ PasswordRotationStep: () => (/* reexport safe */ _PasswordRotationState_interfaces__WEBPACK_IMPORTED_MODULE_7__.PasswordRotationStep),
16450
16591
  /* harmony export */ QuickLoginStrategy: () => (/* reexport safe */ _LoginState_interfaces__WEBPACK_IMPORTED_MODULE_10__.QuickLoginStrategy),
16451
- /* harmony export */ REQUEST_NAME: () => (/* reexport safe */ _interfaces__WEBPACK_IMPORTED_MODULE_19__.REQUEST_NAME),
16592
+ /* harmony export */ REQUEST_NAME: () => (/* reexport safe */ _interfaces__WEBPACK_IMPORTED_MODULE_20__.REQUEST_NAME),
16452
16593
  /* harmony export */ ResetPhoneNumberStep: () => (/* reexport safe */ _ResetPhoneNumberState_interfaces__WEBPACK_IMPORTED_MODULE_13__.ResetPhoneNumberStep),
16453
16594
  /* harmony export */ RolesStateKeys: () => (/* reexport safe */ _RolesState_interfaces__WEBPACK_IMPORTED_MODULE_14__.RolesStateKeys),
16454
16595
  /* harmony export */ SSOStateKeys: () => (/* reexport safe */ _SSOState_interfaces__WEBPACK_IMPORTED_MODULE_17__.SSOStateKeys),
@@ -16456,7 +16597,7 @@ __webpack_require__.r(__webpack_exports__);
16456
16597
  /* harmony export */ SecurityCenterStateKeys: () => (/* reexport safe */ _Security_SecurityCenterState_interfaces__WEBPACK_IMPORTED_MODULE_15__.SecurityCenterStateKeys),
16457
16598
  /* harmony export */ SignUpStage: () => (/* reexport safe */ _SignUpState_interfaces__WEBPACK_IMPORTED_MODULE_16__.SignUpStage),
16458
16599
  /* harmony export */ TeamStateKeys: () => (/* reexport safe */ _TeamState_interfaces__WEBPACK_IMPORTED_MODULE_18__.TeamStateKeys),
16459
- /* harmony export */ UserVerifiedOriginTypes: () => (/* reexport safe */ _interfaces__WEBPACK_IMPORTED_MODULE_19__.UserVerifiedOriginTypes),
16600
+ /* harmony export */ UserVerifiedOriginTypes: () => (/* reexport safe */ _interfaces__WEBPACK_IMPORTED_MODULE_20__.UserVerifiedOriginTypes),
16460
16601
  /* harmony export */ buildAuthActions: () => (/* binding */ buildAuthActions),
16461
16602
  /* harmony export */ createAuthState: () => (/* binding */ createAuthState),
16462
16603
  /* harmony export */ getEntitlements: () => (/* reexport safe */ _Entitlements_helpers__WEBPACK_IMPORTED_MODULE_5__.getEntitlements),
@@ -16466,76 +16607,78 @@ __webpack_require__.r(__webpack_exports__);
16466
16607
  /* harmony export */ });
16467
16608
  /* 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");
16468
16609
  /* 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");
16469
- /* harmony import */ var _AcceptInvitationState__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ./AcceptInvitationState */ "../../dist/@frontegg/redux-store/auth/AcceptInvitationState/state.js");
16470
- /* harmony import */ var _AcceptInvitationState__WEBPACK_IMPORTED_MODULE_56__ = __webpack_require__(/*! ./AcceptInvitationState */ "../../dist/@frontegg/redux-store/auth/AcceptInvitationState/actions.js");
16471
- /* harmony import */ var _AccountSettingsState__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ./AccountSettingsState */ "../../dist/@frontegg/redux-store/auth/AccountSettingsState/state.js");
16472
- /* harmony import */ var _AccountSettingsState__WEBPACK_IMPORTED_MODULE_57__ = __webpack_require__(/*! ./AccountSettingsState */ "../../dist/@frontegg/redux-store/auth/AccountSettingsState/actions.js");
16473
- /* harmony import */ var _ActivateAccountState__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ./ActivateAccountState */ "../../dist/@frontegg/redux-store/auth/ActivateAccountState/state.js");
16474
- /* harmony import */ var _ActivateAccountState__WEBPACK_IMPORTED_MODULE_58__ = __webpack_require__(/*! ./ActivateAccountState */ "../../dist/@frontegg/redux-store/auth/ActivateAccountState/actions.js");
16475
- /* harmony import */ var _UnlockAccountState__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ./UnlockAccountState */ "../../dist/@frontegg/redux-store/auth/UnlockAccountState/state.js");
16476
- /* harmony import */ var _UnlockAccountState__WEBPACK_IMPORTED_MODULE_59__ = __webpack_require__(/*! ./UnlockAccountState */ "../../dist/@frontegg/redux-store/auth/UnlockAccountState/actions.js");
16477
- /* harmony import */ var _ApiTokensState__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ./ApiTokensState */ "../../dist/@frontegg/redux-store/auth/ApiTokensState/state.js");
16478
- /* harmony import */ var _ApiTokensState__WEBPACK_IMPORTED_MODULE_60__ = __webpack_require__(/*! ./ApiTokensState */ "../../dist/@frontegg/redux-store/auth/ApiTokensState/actions.js");
16479
- /* harmony import */ var _ApplicationsState__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(/*! ./ApplicationsState */ "../../dist/@frontegg/redux-store/auth/ApplicationsState/state.js");
16480
- /* harmony import */ var _ApplicationsState__WEBPACK_IMPORTED_MODULE_61__ = __webpack_require__(/*! ./ApplicationsState */ "../../dist/@frontegg/redux-store/auth/ApplicationsState/actions.js");
16481
- /* harmony import */ var _CustomLoginState__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ./CustomLoginState */ "../../dist/@frontegg/redux-store/auth/CustomLoginState/state.js");
16482
- /* harmony import */ var _CustomLoginState__WEBPACK_IMPORTED_MODULE_62__ = __webpack_require__(/*! ./CustomLoginState */ "../../dist/@frontegg/redux-store/auth/CustomLoginState/actions.js");
16483
- /* harmony import */ var _ForgotPasswordState__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ./ForgotPasswordState */ "../../dist/@frontegg/redux-store/auth/ForgotPasswordState/state.js");
16484
- /* harmony import */ var _ForgotPasswordState__WEBPACK_IMPORTED_MODULE_64__ = __webpack_require__(/*! ./ForgotPasswordState */ "../../dist/@frontegg/redux-store/auth/ForgotPasswordState/actions.js");
16485
- /* harmony import */ var _PasswordRotationState__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ./PasswordRotationState */ "../../dist/@frontegg/redux-store/auth/PasswordRotationState/state.js");
16486
- /* harmony import */ var _PasswordRotationState__WEBPACK_IMPORTED_MODULE_65__ = __webpack_require__(/*! ./PasswordRotationState */ "../../dist/@frontegg/redux-store/auth/PasswordRotationState/actions.js");
16487
- /* harmony import */ var _GroupsState__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ./GroupsState */ "../../dist/@frontegg/redux-store/auth/GroupsState/state.js");
16488
- /* harmony import */ var _GroupsState__WEBPACK_IMPORTED_MODULE_66__ = __webpack_require__(/*! ./GroupsState */ "../../dist/@frontegg/redux-store/auth/GroupsState/actions.js");
16489
- /* harmony import */ var _GroupsDialogsState__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ./GroupsDialogsState */ "../../dist/@frontegg/redux-store/auth/GroupsDialogsState/state.js");
16490
- /* harmony import */ var _GroupsDialogsState__WEBPACK_IMPORTED_MODULE_67__ = __webpack_require__(/*! ./GroupsDialogsState */ "../../dist/@frontegg/redux-store/auth/GroupsDialogsState/actions.js");
16491
- /* harmony import */ var _ImpersonateState__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ./ImpersonateState */ "../../dist/@frontegg/redux-store/auth/ImpersonateState/state.js");
16492
- /* harmony import */ var _ImpersonateState__WEBPACK_IMPORTED_MODULE_68__ = __webpack_require__(/*! ./ImpersonateState */ "../../dist/@frontegg/redux-store/auth/ImpersonateState/actions.js");
16493
- /* harmony import */ var _LoginState__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ./LoginState */ "../../dist/@frontegg/redux-store/auth/LoginState/state.js");
16494
- /* harmony import */ var _LoginState__WEBPACK_IMPORTED_MODULE_69__ = __webpack_require__(/*! ./LoginState */ "../../dist/@frontegg/redux-store/auth/LoginState/actions/index.js");
16495
- /* harmony import */ var _MfaState__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ./MfaState */ "../../dist/@frontegg/redux-store/auth/MfaState/state.js");
16496
- /* harmony import */ var _MfaState__WEBPACK_IMPORTED_MODULE_70__ = __webpack_require__(/*! ./MfaState */ "../../dist/@frontegg/redux-store/auth/MfaState/actions.js");
16497
- /* harmony import */ var _MSP__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ./MSP */ "../../dist/@frontegg/redux-store/auth/MSP/state.js");
16498
- /* harmony import */ var _MSP__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ./MSP */ "../../dist/@frontegg/redux-store/auth/MSP/dialogs/state.js");
16499
- /* harmony import */ var _MSP__WEBPACK_IMPORTED_MODULE_71__ = __webpack_require__(/*! ./MSP */ "../../dist/@frontegg/redux-store/auth/MSP/actions.js");
16500
- /* harmony import */ var _MSP__WEBPACK_IMPORTED_MODULE_72__ = __webpack_require__(/*! ./MSP */ "../../dist/@frontegg/redux-store/auth/MSP/dialogs/actions.js");
16501
- /* harmony import */ var _PasskeysState__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! ./PasskeysState */ "../../dist/@frontegg/redux-store/auth/PasskeysState/state.js");
16502
- /* harmony import */ var _PasskeysState__WEBPACK_IMPORTED_MODULE_73__ = __webpack_require__(/*! ./PasskeysState */ "../../dist/@frontegg/redux-store/auth/PasskeysState/actions.js");
16503
- /* harmony import */ var _ProfileState__WEBPACK_IMPORTED_MODULE_39__ = __webpack_require__(/*! ./ProfileState */ "../../dist/@frontegg/redux-store/auth/ProfileState/state.js");
16504
- /* harmony import */ var _ProfileState__WEBPACK_IMPORTED_MODULE_74__ = __webpack_require__(/*! ./ProfileState */ "../../dist/@frontegg/redux-store/auth/ProfileState/actions.js");
16505
- /* harmony import */ var _ProvisioningState__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__(/*! ./ProvisioningState */ "../../dist/@frontegg/redux-store/auth/ProvisioningState/state.js");
16506
- /* harmony import */ var _ProvisioningState__WEBPACK_IMPORTED_MODULE_75__ = __webpack_require__(/*! ./ProvisioningState */ "../../dist/@frontegg/redux-store/auth/ProvisioningState/actions.js");
16507
- /* harmony import */ var _ResetPhoneNumberState__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(/*! ./ResetPhoneNumberState */ "../../dist/@frontegg/redux-store/auth/ResetPhoneNumberState/state.js");
16508
- /* harmony import */ var _ResetPhoneNumberState__WEBPACK_IMPORTED_MODULE_76__ = __webpack_require__(/*! ./ResetPhoneNumberState */ "../../dist/@frontegg/redux-store/auth/ResetPhoneNumberState/actions.js");
16509
- /* harmony import */ var _RolesState__WEBPACK_IMPORTED_MODULE_42__ = __webpack_require__(/*! ./RolesState */ "../../dist/@frontegg/redux-store/auth/RolesState/state.js");
16510
- /* harmony import */ var _RolesState__WEBPACK_IMPORTED_MODULE_77__ = __webpack_require__(/*! ./RolesState */ "../../dist/@frontegg/redux-store/auth/RolesState/actions.js");
16511
- /* harmony import */ var _Security_RestrictionsState__WEBPACK_IMPORTED_MODULE_43__ = __webpack_require__(/*! ./Security/RestrictionsState */ "../../dist/@frontegg/redux-store/auth/Security/RestrictionsState/state.js");
16512
- /* harmony import */ var _Security_RestrictionsState__WEBPACK_IMPORTED_MODULE_78__ = __webpack_require__(/*! ./Security/RestrictionsState */ "../../dist/@frontegg/redux-store/auth/Security/RestrictionsState/actions.js");
16513
- /* harmony import */ var _Security_SecurityCenterState__WEBPACK_IMPORTED_MODULE_44__ = __webpack_require__(/*! ./Security/SecurityCenterState */ "../../dist/@frontegg/redux-store/auth/Security/SecurityCenterState/state.js");
16514
- /* harmony import */ var _Security_SecurityCenterState__WEBPACK_IMPORTED_MODULE_79__ = __webpack_require__(/*! ./Security/SecurityCenterState */ "../../dist/@frontegg/redux-store/auth/Security/SecurityCenterState/actions.js");
16515
- /* harmony import */ var _Security_SecurityPolicyState__WEBPACK_IMPORTED_MODULE_45__ = __webpack_require__(/*! ./Security/SecurityPolicyState */ "../../dist/@frontegg/redux-store/auth/Security/SecurityPolicyState/state.js");
16516
- /* harmony import */ var _Security_SecurityPolicyState__WEBPACK_IMPORTED_MODULE_80__ = __webpack_require__(/*! ./Security/SecurityPolicyState */ "../../dist/@frontegg/redux-store/auth/Security/SecurityPolicyState/actions.js");
16517
- /* harmony import */ var _Security_SessionsPolicyState__WEBPACK_IMPORTED_MODULE_46__ = __webpack_require__(/*! ./Security/SessionsPolicyState */ "../../dist/@frontegg/redux-store/auth/Security/SessionsPolicyState/state.js");
16518
- /* harmony import */ var _Security_SessionsPolicyState__WEBPACK_IMPORTED_MODULE_81__ = __webpack_require__(/*! ./Security/SessionsPolicyState */ "../../dist/@frontegg/redux-store/auth/Security/SessionsPolicyState/actions.js");
16519
- /* harmony import */ var _SessionsState__WEBPACK_IMPORTED_MODULE_47__ = __webpack_require__(/*! ./SessionsState */ "../../dist/@frontegg/redux-store/auth/SessionsState/state.js");
16520
- /* harmony import */ var _SessionsState__WEBPACK_IMPORTED_MODULE_82__ = __webpack_require__(/*! ./SessionsState */ "../../dist/@frontegg/redux-store/auth/SessionsState/actions.js");
16521
- /* harmony import */ var _SignUpState__WEBPACK_IMPORTED_MODULE_48__ = __webpack_require__(/*! ./SignUpState */ "../../dist/@frontegg/redux-store/auth/SignUpState/state.js");
16522
- /* harmony import */ var _SignUpState__WEBPACK_IMPORTED_MODULE_83__ = __webpack_require__(/*! ./SignUpState */ "../../dist/@frontegg/redux-store/auth/SignUpState/actions.js");
16523
- /* harmony import */ var _SmsState__WEBPACK_IMPORTED_MODULE_49__ = __webpack_require__(/*! ./SmsState */ "../../dist/@frontegg/redux-store/auth/SmsState/state.js");
16524
- /* harmony import */ var _SmsState__WEBPACK_IMPORTED_MODULE_84__ = __webpack_require__(/*! ./SmsState */ "../../dist/@frontegg/redux-store/auth/SmsState/actions.js");
16525
- /* harmony import */ var _SocialLoginState__WEBPACK_IMPORTED_MODULE_50__ = __webpack_require__(/*! ./SocialLoginState */ "../../dist/@frontegg/redux-store/auth/SocialLoginState/state.js");
16526
- /* harmony import */ var _SocialLoginState__WEBPACK_IMPORTED_MODULE_85__ = __webpack_require__(/*! ./SocialLoginState */ "../../dist/@frontegg/redux-store/auth/SocialLoginState/actions.js");
16527
- /* harmony import */ var _SSOState__WEBPACK_IMPORTED_MODULE_51__ = __webpack_require__(/*! ./SSOState */ "../../dist/@frontegg/redux-store/auth/SSOState/state.js");
16528
- /* harmony import */ var _SSOState__WEBPACK_IMPORTED_MODULE_86__ = __webpack_require__(/*! ./SSOState */ "../../dist/@frontegg/redux-store/auth/SSOState/actions/index.js");
16529
- /* harmony import */ var _StepUpState__WEBPACK_IMPORTED_MODULE_52__ = __webpack_require__(/*! ./StepUpState */ "../../dist/@frontegg/redux-store/auth/StepUpState/state.js");
16530
- /* harmony import */ var _StepUpState__WEBPACK_IMPORTED_MODULE_87__ = __webpack_require__(/*! ./StepUpState */ "../../dist/@frontegg/redux-store/auth/StepUpState/actions/index.js");
16531
- /* harmony import */ var _TeamState__WEBPACK_IMPORTED_MODULE_53__ = __webpack_require__(/*! ./TeamState */ "../../dist/@frontegg/redux-store/auth/TeamState/state.js");
16532
- /* harmony import */ var _TeamState__WEBPACK_IMPORTED_MODULE_88__ = __webpack_require__(/*! ./TeamState */ "../../dist/@frontegg/redux-store/auth/TeamState/actions/index.js");
16533
- /* harmony import */ var _TenantsState__WEBPACK_IMPORTED_MODULE_54__ = __webpack_require__(/*! ./TenantsState */ "../../dist/@frontegg/redux-store/auth/TenantsState/state.js");
16534
- /* harmony import */ var _TenantsState__WEBPACK_IMPORTED_MODULE_89__ = __webpack_require__(/*! ./TenantsState */ "../../dist/@frontegg/redux-store/auth/TenantsState/actions.js");
16535
- /* harmony import */ var _LoginState_consts__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ./LoginState/consts */ "../../dist/@frontegg/redux-store/auth/LoginState/consts.js");
16536
- /* harmony import */ var _helpers__WEBPACK_IMPORTED_MODULE_55__ = __webpack_require__(/*! ../helpers */ "../../dist/@frontegg/redux-store/helpers/common.js");
16537
- /* harmony import */ var _Entitlements__WEBPACK_IMPORTED_MODULE_63__ = __webpack_require__(/*! ./Entitlements */ "../../dist/@frontegg/redux-store/auth/Entitlements/actions.js");
16538
- /* harmony import */ var _toolkit_proxy__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ../toolkit/proxy */ "../../dist/@frontegg/redux-store/toolkit/proxy.js");
16610
+ /* harmony import */ var _AcceptInvitationState__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ./AcceptInvitationState */ "../../dist/@frontegg/redux-store/auth/AcceptInvitationState/state.js");
16611
+ /* harmony import */ var _AcceptInvitationState__WEBPACK_IMPORTED_MODULE_58__ = __webpack_require__(/*! ./AcceptInvitationState */ "../../dist/@frontegg/redux-store/auth/AcceptInvitationState/actions.js");
16612
+ /* harmony import */ var _AccountSettingsState__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ./AccountSettingsState */ "../../dist/@frontegg/redux-store/auth/AccountSettingsState/state.js");
16613
+ /* harmony import */ var _AccountSettingsState__WEBPACK_IMPORTED_MODULE_59__ = __webpack_require__(/*! ./AccountSettingsState */ "../../dist/@frontegg/redux-store/auth/AccountSettingsState/actions.js");
16614
+ /* harmony import */ var _ActivateAccountState__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ./ActivateAccountState */ "../../dist/@frontegg/redux-store/auth/ActivateAccountState/state.js");
16615
+ /* harmony import */ var _ActivateAccountState__WEBPACK_IMPORTED_MODULE_60__ = __webpack_require__(/*! ./ActivateAccountState */ "../../dist/@frontegg/redux-store/auth/ActivateAccountState/actions.js");
16616
+ /* harmony import */ var _UnlockAccountState__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ./UnlockAccountState */ "../../dist/@frontegg/redux-store/auth/UnlockAccountState/state.js");
16617
+ /* harmony import */ var _UnlockAccountState__WEBPACK_IMPORTED_MODULE_61__ = __webpack_require__(/*! ./UnlockAccountState */ "../../dist/@frontegg/redux-store/auth/UnlockAccountState/actions.js");
16618
+ /* harmony import */ var _ApiTokensState__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(/*! ./ApiTokensState */ "../../dist/@frontegg/redux-store/auth/ApiTokensState/state.js");
16619
+ /* harmony import */ var _ApiTokensState__WEBPACK_IMPORTED_MODULE_62__ = __webpack_require__(/*! ./ApiTokensState */ "../../dist/@frontegg/redux-store/auth/ApiTokensState/actions.js");
16620
+ /* harmony import */ var _ApplicationsState__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ./ApplicationsState */ "../../dist/@frontegg/redux-store/auth/ApplicationsState/state.js");
16621
+ /* harmony import */ var _ApplicationsState__WEBPACK_IMPORTED_MODULE_63__ = __webpack_require__(/*! ./ApplicationsState */ "../../dist/@frontegg/redux-store/auth/ApplicationsState/actions.js");
16622
+ /* harmony import */ var _CustomLoginState__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ./CustomLoginState */ "../../dist/@frontegg/redux-store/auth/CustomLoginState/state.js");
16623
+ /* harmony import */ var _CustomLoginState__WEBPACK_IMPORTED_MODULE_64__ = __webpack_require__(/*! ./CustomLoginState */ "../../dist/@frontegg/redux-store/auth/CustomLoginState/actions.js");
16624
+ /* harmony import */ var _ForgotPasswordState__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ./ForgotPasswordState */ "../../dist/@frontegg/redux-store/auth/ForgotPasswordState/state.js");
16625
+ /* harmony import */ var _ForgotPasswordState__WEBPACK_IMPORTED_MODULE_66__ = __webpack_require__(/*! ./ForgotPasswordState */ "../../dist/@frontegg/redux-store/auth/ForgotPasswordState/actions.js");
16626
+ /* harmony import */ var _PasswordRotationState__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ./PasswordRotationState */ "../../dist/@frontegg/redux-store/auth/PasswordRotationState/state.js");
16627
+ /* harmony import */ var _PasswordRotationState__WEBPACK_IMPORTED_MODULE_67__ = __webpack_require__(/*! ./PasswordRotationState */ "../../dist/@frontegg/redux-store/auth/PasswordRotationState/actions.js");
16628
+ /* harmony import */ var _GroupsState__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ./GroupsState */ "../../dist/@frontegg/redux-store/auth/GroupsState/state.js");
16629
+ /* harmony import */ var _GroupsState__WEBPACK_IMPORTED_MODULE_68__ = __webpack_require__(/*! ./GroupsState */ "../../dist/@frontegg/redux-store/auth/GroupsState/actions.js");
16630
+ /* harmony import */ var _GroupsDialogsState__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ./GroupsDialogsState */ "../../dist/@frontegg/redux-store/auth/GroupsDialogsState/state.js");
16631
+ /* harmony import */ var _GroupsDialogsState__WEBPACK_IMPORTED_MODULE_69__ = __webpack_require__(/*! ./GroupsDialogsState */ "../../dist/@frontegg/redux-store/auth/GroupsDialogsState/actions.js");
16632
+ /* harmony import */ var _ImpersonateState__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ./ImpersonateState */ "../../dist/@frontegg/redux-store/auth/ImpersonateState/state.js");
16633
+ /* harmony import */ var _ImpersonateState__WEBPACK_IMPORTED_MODULE_70__ = __webpack_require__(/*! ./ImpersonateState */ "../../dist/@frontegg/redux-store/auth/ImpersonateState/actions.js");
16634
+ /* harmony import */ var _LoginState__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ./LoginState */ "../../dist/@frontegg/redux-store/auth/LoginState/state.js");
16635
+ /* harmony import */ var _LoginState__WEBPACK_IMPORTED_MODULE_71__ = __webpack_require__(/*! ./LoginState */ "../../dist/@frontegg/redux-store/auth/LoginState/actions/index.js");
16636
+ /* harmony import */ var _MfaState__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ./MfaState */ "../../dist/@frontegg/redux-store/auth/MfaState/state.js");
16637
+ /* harmony import */ var _MfaState__WEBPACK_IMPORTED_MODULE_72__ = __webpack_require__(/*! ./MfaState */ "../../dist/@frontegg/redux-store/auth/MfaState/actions.js");
16638
+ /* harmony import */ var _MSP__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ./MSP */ "../../dist/@frontegg/redux-store/auth/MSP/state.js");
16639
+ /* harmony import */ var _MSP__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! ./MSP */ "../../dist/@frontegg/redux-store/auth/MSP/dialogs/state.js");
16640
+ /* harmony import */ var _MSP__WEBPACK_IMPORTED_MODULE_73__ = __webpack_require__(/*! ./MSP */ "../../dist/@frontegg/redux-store/auth/MSP/actions.js");
16641
+ /* harmony import */ var _MSP__WEBPACK_IMPORTED_MODULE_74__ = __webpack_require__(/*! ./MSP */ "../../dist/@frontegg/redux-store/auth/MSP/dialogs/actions.js");
16642
+ /* harmony import */ var _PasskeysState__WEBPACK_IMPORTED_MODULE_39__ = __webpack_require__(/*! ./PasskeysState */ "../../dist/@frontegg/redux-store/auth/PasskeysState/state.js");
16643
+ /* harmony import */ var _PasskeysState__WEBPACK_IMPORTED_MODULE_75__ = __webpack_require__(/*! ./PasskeysState */ "../../dist/@frontegg/redux-store/auth/PasskeysState/actions.js");
16644
+ /* harmony import */ var _ProfileState__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__(/*! ./ProfileState */ "../../dist/@frontegg/redux-store/auth/ProfileState/state.js");
16645
+ /* harmony import */ var _ProfileState__WEBPACK_IMPORTED_MODULE_76__ = __webpack_require__(/*! ./ProfileState */ "../../dist/@frontegg/redux-store/auth/ProfileState/actions.js");
16646
+ /* harmony import */ var _ProvisioningState__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(/*! ./ProvisioningState */ "../../dist/@frontegg/redux-store/auth/ProvisioningState/state.js");
16647
+ /* harmony import */ var _ProvisioningState__WEBPACK_IMPORTED_MODULE_77__ = __webpack_require__(/*! ./ProvisioningState */ "../../dist/@frontegg/redux-store/auth/ProvisioningState/actions.js");
16648
+ /* harmony import */ var _ResetPhoneNumberState__WEBPACK_IMPORTED_MODULE_42__ = __webpack_require__(/*! ./ResetPhoneNumberState */ "../../dist/@frontegg/redux-store/auth/ResetPhoneNumberState/state.js");
16649
+ /* harmony import */ var _ResetPhoneNumberState__WEBPACK_IMPORTED_MODULE_78__ = __webpack_require__(/*! ./ResetPhoneNumberState */ "../../dist/@frontegg/redux-store/auth/ResetPhoneNumberState/actions.js");
16650
+ /* harmony import */ var _RolesState__WEBPACK_IMPORTED_MODULE_43__ = __webpack_require__(/*! ./RolesState */ "../../dist/@frontegg/redux-store/auth/RolesState/state.js");
16651
+ /* harmony import */ var _RolesState__WEBPACK_IMPORTED_MODULE_79__ = __webpack_require__(/*! ./RolesState */ "../../dist/@frontegg/redux-store/auth/RolesState/actions.js");
16652
+ /* harmony import */ var _Security_RestrictionsState__WEBPACK_IMPORTED_MODULE_44__ = __webpack_require__(/*! ./Security/RestrictionsState */ "../../dist/@frontegg/redux-store/auth/Security/RestrictionsState/state.js");
16653
+ /* harmony import */ var _Security_RestrictionsState__WEBPACK_IMPORTED_MODULE_80__ = __webpack_require__(/*! ./Security/RestrictionsState */ "../../dist/@frontegg/redux-store/auth/Security/RestrictionsState/actions.js");
16654
+ /* harmony import */ var _Security_SecurityCenterState__WEBPACK_IMPORTED_MODULE_45__ = __webpack_require__(/*! ./Security/SecurityCenterState */ "../../dist/@frontegg/redux-store/auth/Security/SecurityCenterState/state.js");
16655
+ /* harmony import */ var _Security_SecurityCenterState__WEBPACK_IMPORTED_MODULE_81__ = __webpack_require__(/*! ./Security/SecurityCenterState */ "../../dist/@frontegg/redux-store/auth/Security/SecurityCenterState/actions.js");
16656
+ /* harmony import */ var _Security_SecurityPolicyState__WEBPACK_IMPORTED_MODULE_46__ = __webpack_require__(/*! ./Security/SecurityPolicyState */ "../../dist/@frontegg/redux-store/auth/Security/SecurityPolicyState/state.js");
16657
+ /* harmony import */ var _Security_SecurityPolicyState__WEBPACK_IMPORTED_MODULE_82__ = __webpack_require__(/*! ./Security/SecurityPolicyState */ "../../dist/@frontegg/redux-store/auth/Security/SecurityPolicyState/actions.js");
16658
+ /* harmony import */ var _Security_SessionsPolicyState__WEBPACK_IMPORTED_MODULE_47__ = __webpack_require__(/*! ./Security/SessionsPolicyState */ "../../dist/@frontegg/redux-store/auth/Security/SessionsPolicyState/state.js");
16659
+ /* harmony import */ var _Security_SessionsPolicyState__WEBPACK_IMPORTED_MODULE_83__ = __webpack_require__(/*! ./Security/SessionsPolicyState */ "../../dist/@frontegg/redux-store/auth/Security/SessionsPolicyState/actions.js");
16660
+ /* harmony import */ var _SessionsState__WEBPACK_IMPORTED_MODULE_48__ = __webpack_require__(/*! ./SessionsState */ "../../dist/@frontegg/redux-store/auth/SessionsState/state.js");
16661
+ /* harmony import */ var _SessionsState__WEBPACK_IMPORTED_MODULE_84__ = __webpack_require__(/*! ./SessionsState */ "../../dist/@frontegg/redux-store/auth/SessionsState/actions.js");
16662
+ /* harmony import */ var _SignUpState__WEBPACK_IMPORTED_MODULE_49__ = __webpack_require__(/*! ./SignUpState */ "../../dist/@frontegg/redux-store/auth/SignUpState/state.js");
16663
+ /* harmony import */ var _SignUpState__WEBPACK_IMPORTED_MODULE_85__ = __webpack_require__(/*! ./SignUpState */ "../../dist/@frontegg/redux-store/auth/SignUpState/actions.js");
16664
+ /* harmony import */ var _SmsState__WEBPACK_IMPORTED_MODULE_50__ = __webpack_require__(/*! ./SmsState */ "../../dist/@frontegg/redux-store/auth/SmsState/state.js");
16665
+ /* harmony import */ var _SmsState__WEBPACK_IMPORTED_MODULE_86__ = __webpack_require__(/*! ./SmsState */ "../../dist/@frontegg/redux-store/auth/SmsState/actions.js");
16666
+ /* harmony import */ var _SocialLoginState__WEBPACK_IMPORTED_MODULE_51__ = __webpack_require__(/*! ./SocialLoginState */ "../../dist/@frontegg/redux-store/auth/SocialLoginState/state.js");
16667
+ /* harmony import */ var _SocialLoginState__WEBPACK_IMPORTED_MODULE_87__ = __webpack_require__(/*! ./SocialLoginState */ "../../dist/@frontegg/redux-store/auth/SocialLoginState/actions.js");
16668
+ /* harmony import */ var _SSOState__WEBPACK_IMPORTED_MODULE_52__ = __webpack_require__(/*! ./SSOState */ "../../dist/@frontegg/redux-store/auth/SSOState/state.js");
16669
+ /* harmony import */ var _SSOState__WEBPACK_IMPORTED_MODULE_88__ = __webpack_require__(/*! ./SSOState */ "../../dist/@frontegg/redux-store/auth/SSOState/actions/index.js");
16670
+ /* harmony import */ var _StepUpState__WEBPACK_IMPORTED_MODULE_53__ = __webpack_require__(/*! ./StepUpState */ "../../dist/@frontegg/redux-store/auth/StepUpState/state.js");
16671
+ /* harmony import */ var _StepUpState__WEBPACK_IMPORTED_MODULE_89__ = __webpack_require__(/*! ./StepUpState */ "../../dist/@frontegg/redux-store/auth/StepUpState/actions/index.js");
16672
+ /* harmony import */ var _TeamState__WEBPACK_IMPORTED_MODULE_54__ = __webpack_require__(/*! ./TeamState */ "../../dist/@frontegg/redux-store/auth/TeamState/state.js");
16673
+ /* harmony import */ var _TeamState__WEBPACK_IMPORTED_MODULE_90__ = __webpack_require__(/*! ./TeamState */ "../../dist/@frontegg/redux-store/auth/TeamState/actions/index.js");
16674
+ /* harmony import */ var _TenantsState__WEBPACK_IMPORTED_MODULE_55__ = __webpack_require__(/*! ./TenantsState */ "../../dist/@frontegg/redux-store/auth/TenantsState/state.js");
16675
+ /* harmony import */ var _TenantsState__WEBPACK_IMPORTED_MODULE_91__ = __webpack_require__(/*! ./TenantsState */ "../../dist/@frontegg/redux-store/auth/TenantsState/actions.js");
16676
+ /* harmony import */ var _UsersEmailsPolicyState__WEBPACK_IMPORTED_MODULE_56__ = __webpack_require__(/*! ./UsersEmailsPolicyState */ "../../dist/@frontegg/redux-store/auth/UsersEmailsPolicyState/state.js");
16677
+ /* harmony import */ var _UsersEmailsPolicyState__WEBPACK_IMPORTED_MODULE_92__ = __webpack_require__(/*! ./UsersEmailsPolicyState */ "../../dist/@frontegg/redux-store/auth/UsersEmailsPolicyState/actions.js");
16678
+ /* harmony import */ var _LoginState_consts__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ./LoginState/consts */ "../../dist/@frontegg/redux-store/auth/LoginState/consts.js");
16679
+ /* harmony import */ var _helpers__WEBPACK_IMPORTED_MODULE_57__ = __webpack_require__(/*! ../helpers */ "../../dist/@frontegg/redux-store/helpers/common.js");
16680
+ /* harmony import */ var _Entitlements__WEBPACK_IMPORTED_MODULE_65__ = __webpack_require__(/*! ./Entitlements */ "../../dist/@frontegg/redux-store/auth/Entitlements/actions.js");
16681
+ /* harmony import */ var _toolkit_proxy__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ../toolkit/proxy */ "../../dist/@frontegg/redux-store/toolkit/proxy.js");
16539
16682
  /* harmony import */ var _AcceptInvitationState_interfaces__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./AcceptInvitationState/interfaces */ "../../dist/@frontegg/redux-store/auth/AcceptInvitationState/interfaces.js");
16540
16683
  /* harmony import */ var _ActivateAccountState_interfaces__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./ActivateAccountState/interfaces */ "../../dist/@frontegg/redux-store/auth/ActivateAccountState/interfaces.js");
16541
16684
  /* harmony import */ var _ApiTokensState_interfaces__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./ApiTokensState/interfaces */ "../../dist/@frontegg/redux-store/auth/ApiTokensState/interfaces.js");
@@ -16553,7 +16696,8 @@ __webpack_require__.r(__webpack_exports__);
16553
16696
  /* harmony import */ var _SignUpState_interfaces__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./SignUpState/interfaces */ "../../dist/@frontegg/redux-store/auth/SignUpState/interfaces.js");
16554
16697
  /* harmony import */ var _SSOState_interfaces__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./SSOState/interfaces */ "../../dist/@frontegg/redux-store/auth/SSOState/interfaces.js");
16555
16698
  /* harmony import */ var _TeamState_interfaces__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./TeamState/interfaces */ "../../dist/@frontegg/redux-store/auth/TeamState/interfaces.js");
16556
- /* harmony import */ var _interfaces__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ./interfaces */ "../../dist/@frontegg/redux-store/auth/interfaces.js");
16699
+ /* harmony import */ var _UsersEmailsPolicyState_interfaces__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ./UsersEmailsPolicyState/interfaces */ "../../dist/@frontegg/redux-store/auth/UsersEmailsPolicyState/interfaces.js");
16700
+ /* harmony import */ var _interfaces__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ./interfaces */ "../../dist/@frontegg/redux-store/auth/interfaces.js");
16557
16701
 
16558
16702
 
16559
16703
  const _excluded = ["routes"],
@@ -16626,6 +16770,8 @@ const _excluded = ["routes"],
16626
16770
 
16627
16771
 
16628
16772
 
16773
+
16774
+
16629
16775
 
16630
16776
 
16631
16777
 
@@ -16635,8 +16781,8 @@ const createAuthState = _overrideState => {
16635
16781
  routes
16636
16782
  } = _ref,
16637
16783
  overrideState = (0,_babel_runtime_helpers_esm_objectWithoutPropertiesLoose__WEBPACK_IMPORTED_MODULE_1__["default"])(_ref, _excluded);
16638
- return (0,_toolkit_proxy__WEBPACK_IMPORTED_MODULE_20__.createProxy)((0,_babel_runtime_helpers_esm_extends__WEBPACK_IMPORTED_MODULE_0__["default"])({
16639
- routes: (0,_babel_runtime_helpers_esm_extends__WEBPACK_IMPORTED_MODULE_0__["default"])({}, _LoginState_consts__WEBPACK_IMPORTED_MODULE_21__.defaultFronteggRoutes, routes),
16784
+ return (0,_toolkit_proxy__WEBPACK_IMPORTED_MODULE_21__.createProxy)((0,_babel_runtime_helpers_esm_extends__WEBPACK_IMPORTED_MODULE_0__["default"])({
16785
+ routes: (0,_babel_runtime_helpers_esm_extends__WEBPACK_IMPORTED_MODULE_0__["default"])({}, _LoginState_consts__WEBPACK_IMPORTED_MODULE_22__.defaultFronteggRoutes, routes),
16640
16786
  onRedirectTo: () => void 0,
16641
16787
  isAuthenticated: false,
16642
16788
  isLoading: true,
@@ -16650,46 +16796,47 @@ const createAuthState = _overrideState => {
16650
16796
  }
16651
16797
  }, overrideState, {
16652
16798
  // nested states
16653
- acceptInvitationState: (0,_AcceptInvitationState__WEBPACK_IMPORTED_MODULE_22__["default"])(overrideState == null ? void 0 : overrideState.acceptInvitationState),
16654
- accountSettingsState: (0,_AccountSettingsState__WEBPACK_IMPORTED_MODULE_23__["default"])(overrideState == null ? void 0 : overrideState.accountSettingsState),
16655
- activateAccountState: (0,_ActivateAccountState__WEBPACK_IMPORTED_MODULE_24__["default"])(overrideState == null ? void 0 : overrideState.activateAccountState),
16656
- unlockAccountState: (0,_UnlockAccountState__WEBPACK_IMPORTED_MODULE_25__["default"])(overrideState == null ? void 0 : overrideState.unlockAccountState),
16657
- apiTokensState: (0,_ApiTokensState__WEBPACK_IMPORTED_MODULE_26__["default"])(overrideState == null ? void 0 : overrideState.apiTokensState),
16658
- applicationsState: (0,_ApplicationsState__WEBPACK_IMPORTED_MODULE_27__["default"])(overrideState == null ? void 0 : overrideState.applicationsState),
16659
- customLoginState: (0,_CustomLoginState__WEBPACK_IMPORTED_MODULE_28__["default"])(overrideState == null ? void 0 : overrideState.customLoginState),
16660
- forgotPasswordState: (0,_ForgotPasswordState__WEBPACK_IMPORTED_MODULE_29__["default"])(overrideState == null ? void 0 : overrideState.forgotPasswordState),
16661
- passwordRotationState: (0,_PasswordRotationState__WEBPACK_IMPORTED_MODULE_30__["default"])(overrideState == null ? void 0 : overrideState.passwordRotationState),
16662
- groupsState: (0,_GroupsState__WEBPACK_IMPORTED_MODULE_31__["default"])(overrideState == null ? void 0 : overrideState.groupsState),
16663
- groupsDialogsState: (0,_GroupsDialogsState__WEBPACK_IMPORTED_MODULE_32__["default"])(overrideState == null ? void 0 : overrideState.groupsDialogsState),
16664
- impersonateState: (0,_ImpersonateState__WEBPACK_IMPORTED_MODULE_33__["default"])(overrideState == null ? void 0 : overrideState.impersonateState),
16665
- loginState: (0,_LoginState__WEBPACK_IMPORTED_MODULE_34__["default"])(overrideState == null ? void 0 : overrideState.loginState),
16666
- mfaState: (0,_MfaState__WEBPACK_IMPORTED_MODULE_35__["default"])(overrideState == null ? void 0 : overrideState.mfaState),
16667
- allAccountsState: (0,_MSP__WEBPACK_IMPORTED_MODULE_36__["default"])(overrideState == null ? void 0 : overrideState.allAccountsState),
16668
- allAccountsDialogsState: (0,_MSP__WEBPACK_IMPORTED_MODULE_37__["default"])(overrideState == null ? void 0 : overrideState.allAccountsDialogsState),
16669
- passkeysState: (0,_PasskeysState__WEBPACK_IMPORTED_MODULE_38__["default"])(overrideState == null ? void 0 : overrideState.passkeysState),
16670
- profileState: (0,_ProfileState__WEBPACK_IMPORTED_MODULE_39__["default"])(overrideState == null ? void 0 : overrideState.profileState),
16671
- provisioningState: (0,_ProvisioningState__WEBPACK_IMPORTED_MODULE_40__["default"])(overrideState == null ? void 0 : overrideState.provisioningState),
16672
- resetPhoneNumberState: (0,_ResetPhoneNumberState__WEBPACK_IMPORTED_MODULE_41__["default"])(overrideState == null ? void 0 : overrideState.resetPhoneNumberState),
16673
- rolesState: (0,_RolesState__WEBPACK_IMPORTED_MODULE_42__["default"])(overrideState == null ? void 0 : overrideState.rolesState),
16674
- restrictionsState: (0,_Security_RestrictionsState__WEBPACK_IMPORTED_MODULE_43__["default"])(overrideState == null ? void 0 : overrideState.restrictionsState),
16675
- securityCenterState: (0,_Security_SecurityCenterState__WEBPACK_IMPORTED_MODULE_44__["default"])(overrideState == null ? void 0 : overrideState.securityCenterState),
16676
- securityPolicyState: (0,_Security_SecurityPolicyState__WEBPACK_IMPORTED_MODULE_45__["default"])(overrideState == null ? void 0 : overrideState.securityPolicyState),
16677
- sessionsPolicyState: (0,_Security_SessionsPolicyState__WEBPACK_IMPORTED_MODULE_46__["default"])(overrideState == null ? void 0 : overrideState.sessionsPolicyState),
16678
- sessionsState: (0,_SessionsState__WEBPACK_IMPORTED_MODULE_47__["default"])(overrideState == null ? void 0 : overrideState.sessionsState),
16679
- signUpState: (0,_SignUpState__WEBPACK_IMPORTED_MODULE_48__["default"])(overrideState == null ? void 0 : overrideState.signUpState),
16680
- smsState: (0,_SmsState__WEBPACK_IMPORTED_MODULE_49__["default"])(overrideState == null ? void 0 : overrideState.smsState),
16681
- socialLoginState: (0,_SocialLoginState__WEBPACK_IMPORTED_MODULE_50__["default"])(overrideState == null ? void 0 : overrideState.socialLoginState),
16682
- ssoState: (0,_SSOState__WEBPACK_IMPORTED_MODULE_51__["default"])(overrideState == null ? void 0 : overrideState.ssoState),
16683
- stepUpState: (0,_StepUpState__WEBPACK_IMPORTED_MODULE_52__["default"])(overrideState == null ? void 0 : overrideState.stepUpState),
16684
- teamState: (0,_TeamState__WEBPACK_IMPORTED_MODULE_53__["default"])(overrideState == null ? void 0 : overrideState.teamState),
16685
- tenantsState: (0,_TenantsState__WEBPACK_IMPORTED_MODULE_54__["default"])(overrideState == null ? void 0 : overrideState.tenantsState)
16799
+ acceptInvitationState: (0,_AcceptInvitationState__WEBPACK_IMPORTED_MODULE_23__["default"])(overrideState == null ? void 0 : overrideState.acceptInvitationState),
16800
+ accountSettingsState: (0,_AccountSettingsState__WEBPACK_IMPORTED_MODULE_24__["default"])(overrideState == null ? void 0 : overrideState.accountSettingsState),
16801
+ activateAccountState: (0,_ActivateAccountState__WEBPACK_IMPORTED_MODULE_25__["default"])(overrideState == null ? void 0 : overrideState.activateAccountState),
16802
+ unlockAccountState: (0,_UnlockAccountState__WEBPACK_IMPORTED_MODULE_26__["default"])(overrideState == null ? void 0 : overrideState.unlockAccountState),
16803
+ apiTokensState: (0,_ApiTokensState__WEBPACK_IMPORTED_MODULE_27__["default"])(overrideState == null ? void 0 : overrideState.apiTokensState),
16804
+ applicationsState: (0,_ApplicationsState__WEBPACK_IMPORTED_MODULE_28__["default"])(overrideState == null ? void 0 : overrideState.applicationsState),
16805
+ customLoginState: (0,_CustomLoginState__WEBPACK_IMPORTED_MODULE_29__["default"])(overrideState == null ? void 0 : overrideState.customLoginState),
16806
+ forgotPasswordState: (0,_ForgotPasswordState__WEBPACK_IMPORTED_MODULE_30__["default"])(overrideState == null ? void 0 : overrideState.forgotPasswordState),
16807
+ passwordRotationState: (0,_PasswordRotationState__WEBPACK_IMPORTED_MODULE_31__["default"])(overrideState == null ? void 0 : overrideState.passwordRotationState),
16808
+ groupsState: (0,_GroupsState__WEBPACK_IMPORTED_MODULE_32__["default"])(overrideState == null ? void 0 : overrideState.groupsState),
16809
+ groupsDialogsState: (0,_GroupsDialogsState__WEBPACK_IMPORTED_MODULE_33__["default"])(overrideState == null ? void 0 : overrideState.groupsDialogsState),
16810
+ impersonateState: (0,_ImpersonateState__WEBPACK_IMPORTED_MODULE_34__["default"])(overrideState == null ? void 0 : overrideState.impersonateState),
16811
+ loginState: (0,_LoginState__WEBPACK_IMPORTED_MODULE_35__["default"])(overrideState == null ? void 0 : overrideState.loginState),
16812
+ mfaState: (0,_MfaState__WEBPACK_IMPORTED_MODULE_36__["default"])(overrideState == null ? void 0 : overrideState.mfaState),
16813
+ allAccountsState: (0,_MSP__WEBPACK_IMPORTED_MODULE_37__["default"])(overrideState == null ? void 0 : overrideState.allAccountsState),
16814
+ allAccountsDialogsState: (0,_MSP__WEBPACK_IMPORTED_MODULE_38__["default"])(overrideState == null ? void 0 : overrideState.allAccountsDialogsState),
16815
+ passkeysState: (0,_PasskeysState__WEBPACK_IMPORTED_MODULE_39__["default"])(overrideState == null ? void 0 : overrideState.passkeysState),
16816
+ profileState: (0,_ProfileState__WEBPACK_IMPORTED_MODULE_40__["default"])(overrideState == null ? void 0 : overrideState.profileState),
16817
+ provisioningState: (0,_ProvisioningState__WEBPACK_IMPORTED_MODULE_41__["default"])(overrideState == null ? void 0 : overrideState.provisioningState),
16818
+ resetPhoneNumberState: (0,_ResetPhoneNumberState__WEBPACK_IMPORTED_MODULE_42__["default"])(overrideState == null ? void 0 : overrideState.resetPhoneNumberState),
16819
+ rolesState: (0,_RolesState__WEBPACK_IMPORTED_MODULE_43__["default"])(overrideState == null ? void 0 : overrideState.rolesState),
16820
+ restrictionsState: (0,_Security_RestrictionsState__WEBPACK_IMPORTED_MODULE_44__["default"])(overrideState == null ? void 0 : overrideState.restrictionsState),
16821
+ securityCenterState: (0,_Security_SecurityCenterState__WEBPACK_IMPORTED_MODULE_45__["default"])(overrideState == null ? void 0 : overrideState.securityCenterState),
16822
+ securityPolicyState: (0,_Security_SecurityPolicyState__WEBPACK_IMPORTED_MODULE_46__["default"])(overrideState == null ? void 0 : overrideState.securityPolicyState),
16823
+ sessionsPolicyState: (0,_Security_SessionsPolicyState__WEBPACK_IMPORTED_MODULE_47__["default"])(overrideState == null ? void 0 : overrideState.sessionsPolicyState),
16824
+ sessionsState: (0,_SessionsState__WEBPACK_IMPORTED_MODULE_48__["default"])(overrideState == null ? void 0 : overrideState.sessionsState),
16825
+ signUpState: (0,_SignUpState__WEBPACK_IMPORTED_MODULE_49__["default"])(overrideState == null ? void 0 : overrideState.signUpState),
16826
+ smsState: (0,_SmsState__WEBPACK_IMPORTED_MODULE_50__["default"])(overrideState == null ? void 0 : overrideState.smsState),
16827
+ socialLoginState: (0,_SocialLoginState__WEBPACK_IMPORTED_MODULE_51__["default"])(overrideState == null ? void 0 : overrideState.socialLoginState),
16828
+ ssoState: (0,_SSOState__WEBPACK_IMPORTED_MODULE_52__["default"])(overrideState == null ? void 0 : overrideState.ssoState),
16829
+ stepUpState: (0,_StepUpState__WEBPACK_IMPORTED_MODULE_53__["default"])(overrideState == null ? void 0 : overrideState.stepUpState),
16830
+ teamState: (0,_TeamState__WEBPACK_IMPORTED_MODULE_54__["default"])(overrideState == null ? void 0 : overrideState.teamState),
16831
+ tenantsState: (0,_TenantsState__WEBPACK_IMPORTED_MODULE_55__["default"])(overrideState == null ? void 0 : overrideState.tenantsState),
16832
+ userEmailPolicyState: (0,_UsersEmailsPolicyState__WEBPACK_IMPORTED_MODULE_56__["default"])(overrideState == null ? void 0 : overrideState.userEmailPolicyState)
16686
16833
  }));
16687
16834
  };
16688
16835
  const buildAuthActions = (store, api, actions, snapshotAuthState) => {
16689
16836
  const setAuthState = state => {
16690
16837
  Object.keys(state).forEach(key => {
16691
16838
  const authKey = key;
16692
- if ((0,_helpers__WEBPACK_IMPORTED_MODULE_55__.isProxy)(store.auth[authKey])) {
16839
+ if ((0,_helpers__WEBPACK_IMPORTED_MODULE_57__.isProxy)(store.auth[authKey])) {
16693
16840
  Object.assign(store.auth[authKey], state[authKey]);
16694
16841
  } else {
16695
16842
  store.auth[authKey] = state[authKey];
@@ -16697,7 +16844,7 @@ const buildAuthActions = (store, api, actions, snapshotAuthState) => {
16697
16844
  });
16698
16845
  };
16699
16846
  const resetAuthState = (state = {}) => {
16700
- (0,_helpers__WEBPACK_IMPORTED_MODULE_55__.deepResetState)(store, ['auth'], (0,_babel_runtime_helpers_esm_extends__WEBPACK_IMPORTED_MODULE_0__["default"])({}, snapshotAuthState, state));
16847
+ (0,_helpers__WEBPACK_IMPORTED_MODULE_57__.deepResetState)(store, ['auth'], (0,_babel_runtime_helpers_esm_extends__WEBPACK_IMPORTED_MODULE_0__["default"])({}, snapshotAuthState, state));
16701
16848
  };
16702
16849
  const setUser = user => {
16703
16850
  setAuthState({
@@ -16715,40 +16862,41 @@ const buildAuthActions = (store, api, actions, snapshotAuthState) => {
16715
16862
  })
16716
16863
  });
16717
16864
  };
16718
- const acceptInvitationActions = (0,_AcceptInvitationState__WEBPACK_IMPORTED_MODULE_56__["default"])(store, api, actions);
16719
- const accountSettingsActions = (0,_AccountSettingsState__WEBPACK_IMPORTED_MODULE_57__["default"])(store, api, actions);
16720
- const activateAccountActions = (0,_ActivateAccountState__WEBPACK_IMPORTED_MODULE_58__["default"])(store, api, actions);
16721
- const unlockAccountActions = (0,_UnlockAccountState__WEBPACK_IMPORTED_MODULE_59__["default"])(store, api, actions);
16722
- const apiTokensActions = (0,_ApiTokensState__WEBPACK_IMPORTED_MODULE_60__["default"])(store, api, actions);
16723
- const applicationsActions = (0,_ApplicationsState__WEBPACK_IMPORTED_MODULE_61__["default"])(store, api, actions);
16724
- const customLoginActions = (0,_CustomLoginState__WEBPACK_IMPORTED_MODULE_62__["default"])(store, api, actions);
16725
- const entitlementsActions = (0,_Entitlements__WEBPACK_IMPORTED_MODULE_63__["default"])(store, api, actions);
16726
- const forgotPasswordActions = (0,_ForgotPasswordState__WEBPACK_IMPORTED_MODULE_64__["default"])(store, api, actions);
16727
- const passwordRotationActions = (0,_PasswordRotationState__WEBPACK_IMPORTED_MODULE_65__["default"])(store, api, actions);
16728
- const groupsActions = (0,_GroupsState__WEBPACK_IMPORTED_MODULE_66__["default"])(store, api, actions);
16729
- const groupsDialogsActions = (0,_GroupsDialogsState__WEBPACK_IMPORTED_MODULE_67__["default"])(store, api, actions);
16730
- const impersonateActions = (0,_ImpersonateState__WEBPACK_IMPORTED_MODULE_68__["default"])(store, api, actions);
16731
- const loginActions = (0,_LoginState__WEBPACK_IMPORTED_MODULE_69__["default"])(store, api, actions);
16732
- const mfaActions = (0,_MfaState__WEBPACK_IMPORTED_MODULE_70__["default"])(store, api, actions);
16733
- const allAccountsActions = (0,_MSP__WEBPACK_IMPORTED_MODULE_71__["default"])(store, api, actions);
16734
- const allAccountsDialogActions = (0,_MSP__WEBPACK_IMPORTED_MODULE_72__["default"])(store, api, actions);
16735
- const passkeysActions = (0,_PasskeysState__WEBPACK_IMPORTED_MODULE_73__["default"])(store, api, actions);
16736
- const profileActions = (0,_ProfileState__WEBPACK_IMPORTED_MODULE_74__["default"])(store, api, actions);
16737
- const provisioningActions = (0,_ProvisioningState__WEBPACK_IMPORTED_MODULE_75__["default"])(store, api, actions);
16738
- const resetPhoneNumberActions = (0,_ResetPhoneNumberState__WEBPACK_IMPORTED_MODULE_76__["default"])(store, api, actions);
16739
- const rolesActions = (0,_RolesState__WEBPACK_IMPORTED_MODULE_77__["default"])(store, api, actions);
16740
- const restrictionsActions = (0,_Security_RestrictionsState__WEBPACK_IMPORTED_MODULE_78__["default"])(store, api, actions);
16741
- const securityCenterActions = (0,_Security_SecurityCenterState__WEBPACK_IMPORTED_MODULE_79__["default"])(store, api, actions);
16742
- const securityPolicyActions = (0,_Security_SecurityPolicyState__WEBPACK_IMPORTED_MODULE_80__["default"])(store, api, actions);
16743
- const sessionsPolicyActions = (0,_Security_SessionsPolicyState__WEBPACK_IMPORTED_MODULE_81__["default"])(store, api, actions);
16744
- const sessionsActions = (0,_SessionsState__WEBPACK_IMPORTED_MODULE_82__["default"])(store, api, actions);
16745
- const signUpActions = (0,_SignUpState__WEBPACK_IMPORTED_MODULE_83__["default"])(store, api, actions);
16746
- const smsActions = (0,_SmsState__WEBPACK_IMPORTED_MODULE_84__["default"])(store, api, actions);
16747
- const socialLoginActions = (0,_SocialLoginState__WEBPACK_IMPORTED_MODULE_85__["default"])(store, api, actions);
16748
- const ssoActions = (0,_SSOState__WEBPACK_IMPORTED_MODULE_86__["default"])(store, api, actions);
16749
- const stepUpActions = (0,_StepUpState__WEBPACK_IMPORTED_MODULE_87__["default"])(store, api, actions);
16750
- const teamActions = (0,_TeamState__WEBPACK_IMPORTED_MODULE_88__["default"])(store, api, actions);
16751
- const tenantsActions = (0,_TenantsState__WEBPACK_IMPORTED_MODULE_89__["default"])(store, api, actions);
16865
+ const acceptInvitationActions = (0,_AcceptInvitationState__WEBPACK_IMPORTED_MODULE_58__["default"])(store, api, actions);
16866
+ const accountSettingsActions = (0,_AccountSettingsState__WEBPACK_IMPORTED_MODULE_59__["default"])(store, api, actions);
16867
+ const activateAccountActions = (0,_ActivateAccountState__WEBPACK_IMPORTED_MODULE_60__["default"])(store, api, actions);
16868
+ const unlockAccountActions = (0,_UnlockAccountState__WEBPACK_IMPORTED_MODULE_61__["default"])(store, api, actions);
16869
+ const apiTokensActions = (0,_ApiTokensState__WEBPACK_IMPORTED_MODULE_62__["default"])(store, api, actions);
16870
+ const applicationsActions = (0,_ApplicationsState__WEBPACK_IMPORTED_MODULE_63__["default"])(store, api, actions);
16871
+ const customLoginActions = (0,_CustomLoginState__WEBPACK_IMPORTED_MODULE_64__["default"])(store, api, actions);
16872
+ const entitlementsActions = (0,_Entitlements__WEBPACK_IMPORTED_MODULE_65__["default"])(store, api, actions);
16873
+ const forgotPasswordActions = (0,_ForgotPasswordState__WEBPACK_IMPORTED_MODULE_66__["default"])(store, api, actions);
16874
+ const passwordRotationActions = (0,_PasswordRotationState__WEBPACK_IMPORTED_MODULE_67__["default"])(store, api, actions);
16875
+ const groupsActions = (0,_GroupsState__WEBPACK_IMPORTED_MODULE_68__["default"])(store, api, actions);
16876
+ const groupsDialogsActions = (0,_GroupsDialogsState__WEBPACK_IMPORTED_MODULE_69__["default"])(store, api, actions);
16877
+ const impersonateActions = (0,_ImpersonateState__WEBPACK_IMPORTED_MODULE_70__["default"])(store, api, actions);
16878
+ const loginActions = (0,_LoginState__WEBPACK_IMPORTED_MODULE_71__["default"])(store, api, actions);
16879
+ const mfaActions = (0,_MfaState__WEBPACK_IMPORTED_MODULE_72__["default"])(store, api, actions);
16880
+ const allAccountsActions = (0,_MSP__WEBPACK_IMPORTED_MODULE_73__["default"])(store, api, actions);
16881
+ const allAccountsDialogActions = (0,_MSP__WEBPACK_IMPORTED_MODULE_74__["default"])(store, api, actions);
16882
+ const passkeysActions = (0,_PasskeysState__WEBPACK_IMPORTED_MODULE_75__["default"])(store, api, actions);
16883
+ const profileActions = (0,_ProfileState__WEBPACK_IMPORTED_MODULE_76__["default"])(store, api, actions);
16884
+ const provisioningActions = (0,_ProvisioningState__WEBPACK_IMPORTED_MODULE_77__["default"])(store, api, actions);
16885
+ const resetPhoneNumberActions = (0,_ResetPhoneNumberState__WEBPACK_IMPORTED_MODULE_78__["default"])(store, api, actions);
16886
+ const rolesActions = (0,_RolesState__WEBPACK_IMPORTED_MODULE_79__["default"])(store, api, actions);
16887
+ const restrictionsActions = (0,_Security_RestrictionsState__WEBPACK_IMPORTED_MODULE_80__["default"])(store, api, actions);
16888
+ const securityCenterActions = (0,_Security_SecurityCenterState__WEBPACK_IMPORTED_MODULE_81__["default"])(store, api, actions);
16889
+ const securityPolicyActions = (0,_Security_SecurityPolicyState__WEBPACK_IMPORTED_MODULE_82__["default"])(store, api, actions);
16890
+ const sessionsPolicyActions = (0,_Security_SessionsPolicyState__WEBPACK_IMPORTED_MODULE_83__["default"])(store, api, actions);
16891
+ const sessionsActions = (0,_SessionsState__WEBPACK_IMPORTED_MODULE_84__["default"])(store, api, actions);
16892
+ const signUpActions = (0,_SignUpState__WEBPACK_IMPORTED_MODULE_85__["default"])(store, api, actions);
16893
+ const smsActions = (0,_SmsState__WEBPACK_IMPORTED_MODULE_86__["default"])(store, api, actions);
16894
+ const socialLoginActions = (0,_SocialLoginState__WEBPACK_IMPORTED_MODULE_87__["default"])(store, api, actions);
16895
+ const ssoActions = (0,_SSOState__WEBPACK_IMPORTED_MODULE_88__["default"])(store, api, actions);
16896
+ const stepUpActions = (0,_StepUpState__WEBPACK_IMPORTED_MODULE_89__["default"])(store, api, actions);
16897
+ const teamActions = (0,_TeamState__WEBPACK_IMPORTED_MODULE_90__["default"])(store, api, actions);
16898
+ const tenantsActions = (0,_TenantsState__WEBPACK_IMPORTED_MODULE_91__["default"])(store, api, actions);
16899
+ const usersEmailsPolicyActions = (0,_UsersEmailsPolicyState__WEBPACK_IMPORTED_MODULE_92__["default"])(store, api, actions);
16752
16900
  const stateActions = {
16753
16901
  acceptInvitationActions,
16754
16902
  accountSettingsActions,
@@ -16783,7 +16931,8 @@ const buildAuthActions = (store, api, actions, snapshotAuthState) => {
16783
16931
  ssoActions,
16784
16932
  stepUpActions,
16785
16933
  teamActions,
16786
- tenantsActions
16934
+ tenantsActions,
16935
+ usersEmailsPolicyActions
16787
16936
  };
16788
16937
  return [(0,_babel_runtime_helpers_esm_extends__WEBPACK_IMPORTED_MODULE_0__["default"])({
16789
16938
  setAuthState,
@@ -18468,6 +18617,7 @@ __webpack_require__.r(__webpack_exports__);
18468
18617
  /* harmony export */ AuthStrategyEnum: () => (/* reexport safe */ _toolkit__WEBPACK_IMPORTED_MODULE_0__.AuthStrategyEnum),
18469
18618
  /* harmony export */ AuthenticationTypes: () => (/* reexport safe */ _toolkit__WEBPACK_IMPORTED_MODULE_0__.AuthenticationTypes),
18470
18619
  /* harmony export */ DEFAULT_RETRY_CONFIG: () => (/* reexport safe */ _constants__WEBPACK_IMPORTED_MODULE_1__.DEFAULT_RETRY_CONFIG),
18620
+ /* harmony export */ EditEmailView: () => (/* reexport safe */ _toolkit__WEBPACK_IMPORTED_MODULE_0__.EditEmailView),
18471
18621
  /* harmony export */ FRONTEGG_AFTER_AUTH_REDIRECT_URL: () => (/* reexport safe */ _constants__WEBPACK_IMPORTED_MODULE_1__.FRONTEGG_AFTER_AUTH_REDIRECT_URL),
18472
18622
  /* harmony export */ ForgotPasswordStep: () => (/* reexport safe */ _toolkit__WEBPACK_IMPORTED_MODULE_0__.ForgotPasswordStep),
18473
18623
  /* harmony export */ FronteggNativeModule: () => (/* reexport safe */ _toolkit__WEBPACK_IMPORTED_MODULE_0__.FronteggNativeModule),
@@ -18575,7 +18725,7 @@ __webpack_require__.r(__webpack_exports__);
18575
18725
  /* harmony import */ var _subscriptions_interfaces__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./subscriptions/interfaces */ "../../dist/@frontegg/redux-store/subscriptions/interfaces.js");
18576
18726
  /* harmony import */ var _vendor__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./vendor */ "../../dist/@frontegg/redux-store/vendor/index.js");
18577
18727
  /* harmony import */ var _audits__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./audits */ "../../dist/@frontegg/redux-store/audits/index.js");
18578
- /** @license Frontegg v7.75.0-alpha.1
18728
+ /** @license Frontegg v7.75.0-alpha.2
18579
18729
  *
18580
18730
  * This source code is licensed under the MIT license found in the
18581
18731
  * LICENSE file in the root directory of this source tree.
@@ -19683,7 +19833,8 @@ __webpack_require__.r(__webpack_exports__);
19683
19833
  /* harmony import */ var _teamActions_mocks__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ./teamActions.mocks */ "../../dist/@frontegg/redux-store/mocks/auth-mocks/teamActions.mocks.js");
19684
19834
  /* harmony import */ var _tenantsActions_mocks__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ./tenantsActions.mocks */ "../../dist/@frontegg/redux-store/mocks/auth-mocks/tenantsActions.mocks.js");
19685
19835
  /* harmony import */ var _unlockAccountActions_mocks__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./unlockAccountActions.mocks */ "../../dist/@frontegg/redux-store/mocks/auth-mocks/unlockAccountActions.mocks.js");
19686
- /* harmony import */ var _helpers__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ../../helpers */ "../../dist/@frontegg/redux-store/helpers/common.js");
19836
+ /* harmony import */ var _usersEmailsPolicyActions_mocks__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ./usersEmailsPolicyActions.mocks */ "../../dist/@frontegg/redux-store/mocks/auth-mocks/usersEmailsPolicyActions.mocks.js");
19837
+ /* harmony import */ var _helpers__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ../../helpers */ "../../dist/@frontegg/redux-store/helpers/common.js");
19687
19838
 
19688
19839
 
19689
19840
  const _excluded = ["requestName"];
@@ -19722,6 +19873,7 @@ const _excluded = ["requestName"];
19722
19873
 
19723
19874
 
19724
19875
 
19876
+
19725
19877
 
19726
19878
 
19727
19879
  const buildAuthActions = (store, api, actions, snapshotAuthState) => {
@@ -19759,6 +19911,7 @@ const buildAuthActions = (store, api, actions, snapshotAuthState) => {
19759
19911
  const stepUpActions = (0,_stepUpActions_mocks__WEBPACK_IMPORTED_MODULE_33__["default"])(store, api, actions);
19760
19912
  const teamActions = (0,_teamActions_mocks__WEBPACK_IMPORTED_MODULE_34__["default"])(store, api, actions);
19761
19913
  const tenantsActions = (0,_tenantsActions_mocks__WEBPACK_IMPORTED_MODULE_35__["default"])(store, api, actions);
19914
+ const usersEmailsPolicyActions = (0,_usersEmailsPolicyActions_mocks__WEBPACK_IMPORTED_MODULE_36__["default"])(store, api, actions);
19762
19915
  const authStateActions = {
19763
19916
  acceptInvitationActions,
19764
19917
  accountSettingsActions,
@@ -19793,12 +19946,13 @@ const buildAuthActions = (store, api, actions, snapshotAuthState) => {
19793
19946
  ssoActions,
19794
19947
  stepUpActions,
19795
19948
  teamActions,
19796
- tenantsActions
19949
+ tenantsActions,
19950
+ usersEmailsPolicyActions
19797
19951
  };
19798
19952
  const setAuthState = state => {
19799
19953
  Object.keys(state).forEach(key => {
19800
19954
  const authKey = key;
19801
- if ((0,_helpers__WEBPACK_IMPORTED_MODULE_36__.isProxy)(store.auth[authKey])) {
19955
+ if ((0,_helpers__WEBPACK_IMPORTED_MODULE_37__.isProxy)(store.auth[authKey])) {
19802
19956
  Object.assign(store.auth[authKey], state[authKey]);
19803
19957
  } else {
19804
19958
  store.auth[authKey] = state[authKey];
@@ -19807,7 +19961,7 @@ const buildAuthActions = (store, api, actions, snapshotAuthState) => {
19807
19961
  };
19808
19962
  // eslint-disable-next-line @typescript-eslint/no-empty-function
19809
19963
  const resetAuthState = () => {
19810
- (0,_helpers__WEBPACK_IMPORTED_MODULE_36__.deepResetState)(store, ['auth'], snapshotAuthState);
19964
+ (0,_helpers__WEBPACK_IMPORTED_MODULE_37__.deepResetState)(store, ['auth'], snapshotAuthState);
19811
19965
  };
19812
19966
  const setUser = user => {
19813
19967
  setAuthState({
@@ -19831,7 +19985,7 @@ const buildAuthActions = (store, api, actions, snapshotAuthState) => {
19831
19985
  setErrorByRequestName,
19832
19986
  resetAuthState,
19833
19987
  setUser
19834
- }, acceptInvitationActions, accountSettingsActions, activateAccountActions, unlockAccountActions, allAccountsActions, allAccountsDialogActions, apiTokensActions, applicationsActions, customLoginActions, entitlementsActions, forgotPasswordActions, passwordRotationActions, groupsActions, groupsDialogsActions, impersonateActions, loginActions, mfaActions, passkeysActions, profileActions, provisioningActions, resetPhoneNumberActions, restrictionsActions, rolesActions, securityCenterActions, securityPolicyActions, sessionsActions, sessionsPolicyActions, signUpActions, smsActions, socialLoginActions, ssoActions, stepUpActions, teamActions, tenantsActions);
19988
+ }, acceptInvitationActions, accountSettingsActions, activateAccountActions, unlockAccountActions, allAccountsActions, allAccountsDialogActions, apiTokensActions, applicationsActions, customLoginActions, entitlementsActions, forgotPasswordActions, passwordRotationActions, groupsActions, groupsDialogsActions, impersonateActions, loginActions, mfaActions, passkeysActions, profileActions, provisioningActions, resetPhoneNumberActions, restrictionsActions, rolesActions, securityCenterActions, securityPolicyActions, sessionsActions, sessionsPolicyActions, signUpActions, smsActions, socialLoginActions, ssoActions, stepUpActions, teamActions, tenantsActions, usersEmailsPolicyActions);
19835
19989
  return {
19836
19990
  authActions,
19837
19991
  authStateActions
@@ -20271,6 +20425,36 @@ const _excluded = ["callback", "profilePictureUrl"];
20271
20425
  });
20272
20426
  (_payload$callback = payload.callback) == null ? void 0 : _payload$callback.call(payload, true);
20273
20427
  };
20428
+ mockedActions.updateEmail = async payload => {
20429
+ var _payload$callback2;
20430
+ mockedActions.setProfileState({
20431
+ saving: true,
20432
+ error: null,
20433
+ loading: true
20434
+ });
20435
+ await (0,_helpers__WEBPACK_IMPORTED_MODULE_4__.delay)();
20436
+ mockedActions.setProfileState({
20437
+ saving: false,
20438
+ error: null,
20439
+ loading: false
20440
+ });
20441
+ (_payload$callback2 = payload.callback) == null ? void 0 : _payload$callback2.call(payload, true);
20442
+ };
20443
+ mockedActions.verifyEmail = async payload => {
20444
+ var _payload$callback3;
20445
+ mockedActions.setProfileState({
20446
+ saving: true,
20447
+ error: null,
20448
+ loading: true
20449
+ });
20450
+ await (0,_helpers__WEBPACK_IMPORTED_MODULE_4__.delay)();
20451
+ mockedActions.setProfileState({
20452
+ saving: false,
20453
+ error: null,
20454
+ loading: false
20455
+ });
20456
+ (_payload$callback3 = payload.callback) == null ? void 0 : _payload$callback3.call(payload, true);
20457
+ };
20274
20458
  return mockedActions;
20275
20459
  });
20276
20460
 
@@ -21771,6 +21955,28 @@ __webpack_require__.r(__webpack_exports__);
21771
21955
 
21772
21956
  /***/ }),
21773
21957
 
21958
+ /***/ "../../dist/@frontegg/redux-store/mocks/auth-mocks/usersEmailsPolicyActions.mocks.js":
21959
+ /*!*******************************************************************************************!*\
21960
+ !*** ../../dist/@frontegg/redux-store/mocks/auth-mocks/usersEmailsPolicyActions.mocks.js ***!
21961
+ \*******************************************************************************************/
21962
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
21963
+
21964
+ "use strict";
21965
+ __webpack_require__.r(__webpack_exports__);
21966
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
21967
+ /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
21968
+ /* harmony export */ });
21969
+ /* harmony import */ var _auth_UsersEmailsPolicyState__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../auth/UsersEmailsPolicyState */ "../../dist/@frontegg/redux-store/auth/UsersEmailsPolicyState/actions.js");
21970
+ /* harmony import */ var _helpers__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../helpers */ "../../dist/@frontegg/redux-store/mocks/helpers.js");
21971
+
21972
+
21973
+ /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ((store, api, sharedActions) => {
21974
+ const originalActions = (0,_auth_UsersEmailsPolicyState__WEBPACK_IMPORTED_MODULE_0__["default"])(store, api, sharedActions);
21975
+ return (0,_helpers__WEBPACK_IMPORTED_MODULE_1__.mockActionsExpect)(originalActions, ['loadUserEmailPolicyState']);
21976
+ });
21977
+
21978
+ /***/ }),
21979
+
21774
21980
  /***/ "../../dist/@frontegg/redux-store/mocks/connectivity-mocks/index.js":
21775
21981
  /*!**************************************************************************!*\
21776
21982
  !*** ../../dist/@frontegg/redux-store/mocks/connectivity-mocks/index.js ***!
@@ -24922,6 +25128,7 @@ __webpack_require__.r(__webpack_exports__);
24922
25128
  /* harmony export */ ApiStateKeys: () => (/* reexport safe */ _store__WEBPACK_IMPORTED_MODULE_1__.ApiStateKeys),
24923
25129
  /* harmony export */ AuthStrategyEnum: () => (/* reexport safe */ _store__WEBPACK_IMPORTED_MODULE_1__.AuthStrategyEnum),
24924
25130
  /* harmony export */ AuthenticationTypes: () => (/* reexport safe */ _store__WEBPACK_IMPORTED_MODULE_1__.AuthenticationTypes),
25131
+ /* harmony export */ EditEmailView: () => (/* reexport safe */ _store__WEBPACK_IMPORTED_MODULE_1__.EditEmailView),
24925
25132
  /* harmony export */ ForgotPasswordStep: () => (/* reexport safe */ _store__WEBPACK_IMPORTED_MODULE_1__.ForgotPasswordStep),
24926
25133
  /* harmony export */ FronteggNativeModule: () => (/* reexport safe */ _FronteggNativeModule__WEBPACK_IMPORTED_MODULE_0__["default"]),
24927
25134
  /* harmony export */ GroupRelations: () => (/* reexport safe */ _store__WEBPACK_IMPORTED_MODULE_1__.GroupRelations),
@@ -25010,6 +25217,7 @@ __webpack_require__.r(__webpack_exports__);
25010
25217
  /* harmony export */ ApiStateKeys: () => (/* reexport safe */ _auth__WEBPACK_IMPORTED_MODULE_2__.ApiStateKeys),
25011
25218
  /* harmony export */ AuthStrategyEnum: () => (/* reexport safe */ _auth__WEBPACK_IMPORTED_MODULE_2__.AuthStrategyEnum),
25012
25219
  /* harmony export */ AuthenticationTypes: () => (/* reexport safe */ _auth__WEBPACK_IMPORTED_MODULE_2__.AuthenticationTypes),
25220
+ /* harmony export */ EditEmailView: () => (/* reexport safe */ _auth__WEBPACK_IMPORTED_MODULE_2__.EditEmailView),
25013
25221
  /* harmony export */ ForgotPasswordStep: () => (/* reexport safe */ _auth__WEBPACK_IMPORTED_MODULE_2__.ForgotPasswordStep),
25014
25222
  /* harmony export */ GroupRelations: () => (/* reexport safe */ _auth__WEBPACK_IMPORTED_MODULE_2__.GroupRelations),
25015
25223
  /* harmony export */ GroupsStateKeys: () => (/* reexport safe */ _auth__WEBPACK_IMPORTED_MODULE_2__.GroupsStateKeys),
@@ -28635,31 +28843,31 @@ __webpack_require__.r(__webpack_exports__);
28635
28843
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
28636
28844
  /* harmony export */ ApplicationAccessType: () => (/* reexport safe */ _applications_interfaces__WEBPACK_IMPORTED_MODULE_17__.ApplicationAccessType),
28637
28845
  /* harmony export */ AuthStrategyEnum: () => (/* reexport safe */ _auth_enums__WEBPACK_IMPORTED_MODULE_2__.AuthStrategyEnum),
28638
- /* harmony export */ ContextHolder: () => (/* reexport safe */ _ContextHolder__WEBPACK_IMPORTED_MODULE_42__.ContextHolder),
28846
+ /* harmony export */ ContextHolder: () => (/* reexport safe */ _ContextHolder__WEBPACK_IMPORTED_MODULE_43__.ContextHolder),
28639
28847
  /* harmony export */ DirectoryApi: () => (/* reexport safe */ _directory_index__WEBPACK_IMPORTED_MODULE_11__.DirectoryApi),
28640
28848
  /* harmony export */ FRONTEGG_SEPARATE_TABS_BY_TENANT: () => (/* reexport safe */ _auth__WEBPACK_IMPORTED_MODULE_4__.FRONTEGG_SEPARATE_TABS_BY_TENANT),
28641
28849
  /* harmony export */ FeatureFlags: () => (/* reexport safe */ _feature_flags_index__WEBPACK_IMPORTED_MODULE_10__.FeatureFlags),
28642
28850
  /* harmony export */ FeatureFlagsApi: () => (/* reexport safe */ _feature_flags_index__WEBPACK_IMPORTED_MODULE_10__.FeatureFlagsApi),
28643
- /* harmony export */ FetchClient: () => (/* reexport safe */ _FetchClient__WEBPACK_IMPORTED_MODULE_41__.FetchClient),
28644
- /* harmony export */ FronteggApiError: () => (/* reexport safe */ _error__WEBPACK_IMPORTED_MODULE_43__.FronteggApiError),
28645
- /* harmony export */ FronteggContext: () => (/* reexport safe */ _ContextHolder__WEBPACK_IMPORTED_MODULE_42__.FronteggContext),
28851
+ /* harmony export */ FetchClient: () => (/* reexport safe */ _FetchClient__WEBPACK_IMPORTED_MODULE_42__.FetchClient),
28852
+ /* harmony export */ FronteggApiError: () => (/* reexport safe */ _error__WEBPACK_IMPORTED_MODULE_44__.FronteggApiError),
28853
+ /* harmony export */ FronteggContext: () => (/* reexport safe */ _ContextHolder__WEBPACK_IMPORTED_MODULE_43__.FronteggContext),
28646
28854
  /* harmony export */ FronteggFrameworks: () => (/* reexport safe */ _interfaces__WEBPACK_IMPORTED_MODULE_0__.FronteggFrameworks),
28647
28855
  /* harmony export */ GENERIC_ERROR_CODE: () => (/* reexport safe */ _constants__WEBPACK_IMPORTED_MODULE_18__.GENERIC_ERROR_CODE),
28648
28856
  /* harmony export */ GENERIC_ERROR_MESSAGE: () => (/* reexport safe */ _constants__WEBPACK_IMPORTED_MODULE_18__.GENERIC_ERROR_MESSAGE),
28649
28857
  /* harmony export */ GetUsersFilterPreset: () => (/* reexport safe */ _users_interfaces__WEBPACK_IMPORTED_MODULE_14__.GetUsersFilterPreset),
28650
28858
  /* harmony export */ GroupManagedByEnum: () => (/* reexport safe */ _groups_enums__WEBPACK_IMPORTED_MODULE_13__.GroupManagedByEnum),
28651
28859
  /* harmony export */ GroupRelations: () => (/* reexport safe */ _groups_enums__WEBPACK_IMPORTED_MODULE_13__.GroupRelations),
28652
- /* harmony export */ ISubscriptionCancellationPolicy: () => (/* reexport safe */ _subscriptions__WEBPACK_IMPORTED_MODULE_44__.ISubscriptionCancellationPolicy),
28653
- /* harmony export */ ISubscriptionStatus: () => (/* reexport safe */ _subscriptions__WEBPACK_IMPORTED_MODULE_44__.ISubscriptionStatus),
28860
+ /* harmony export */ ISubscriptionCancellationPolicy: () => (/* reexport safe */ _subscriptions__WEBPACK_IMPORTED_MODULE_45__.ISubscriptionCancellationPolicy),
28861
+ /* harmony export */ ISubscriptionStatus: () => (/* reexport safe */ _subscriptions__WEBPACK_IMPORTED_MODULE_45__.ISubscriptionStatus),
28654
28862
  /* harmony export */ InsightCode: () => (/* reexport safe */ _security_center_interfaces__WEBPACK_IMPORTED_MODULE_16__.InsightCode),
28655
28863
  /* harmony export */ LOAD_AUTHORIZATION_FF: () => (/* reexport safe */ _auth_interfaces__WEBPACK_IMPORTED_MODULE_1__.LOAD_AUTHORIZATION_FF),
28656
28864
  /* harmony export */ MFAStrategyEnum: () => (/* reexport safe */ _auth_interfaces__WEBPACK_IMPORTED_MODULE_1__.MFAStrategyEnum),
28657
28865
  /* harmony export */ MachineToMachineAuthStrategy: () => (/* reexport safe */ _auth_enums__WEBPACK_IMPORTED_MODULE_2__.MachineToMachineAuthStrategy),
28658
28866
  /* harmony export */ NotEntitledJustification: () => (/* reexport safe */ _entitlements_interfaces__WEBPACK_IMPORTED_MODULE_15__.NotEntitledJustification),
28659
28867
  /* harmony export */ PaginationOrderEnum: () => (/* reexport safe */ _interfaces__WEBPACK_IMPORTED_MODULE_0__.PaginationOrderEnum),
28660
- /* harmony export */ PaymentMethodType: () => (/* reexport safe */ _subscriptions__WEBPACK_IMPORTED_MODULE_44__.PaymentMethodType),
28868
+ /* harmony export */ PaymentMethodType: () => (/* reexport safe */ _subscriptions__WEBPACK_IMPORTED_MODULE_45__.PaymentMethodType),
28661
28869
  /* harmony export */ PermissionAssignmentTypeEnum: () => (/* reexport safe */ _roles_interfaces__WEBPACK_IMPORTED_MODULE_7__.PermissionAssignmentTypeEnum),
28662
- /* harmony export */ ProviderType: () => (/* reexport safe */ _subscriptions__WEBPACK_IMPORTED_MODULE_44__.ProviderType),
28870
+ /* harmony export */ ProviderType: () => (/* reexport safe */ _subscriptions__WEBPACK_IMPORTED_MODULE_45__.ProviderType),
28663
28871
  /* harmony export */ RecommendationActionKey: () => (/* reexport safe */ _security_center_interfaces__WEBPACK_IMPORTED_MODULE_16__.RecommendationActionKey),
28664
28872
  /* harmony export */ RecommendationCode: () => (/* reexport safe */ _security_center_interfaces__WEBPACK_IMPORTED_MODULE_16__.RecommendationCode),
28665
28873
  /* harmony export */ RecommendationSeverity: () => (/* reexport safe */ _security_center_interfaces__WEBPACK_IMPORTED_MODULE_16__.RecommendationSeverity),
@@ -28679,7 +28887,7 @@ __webpack_require__.r(__webpack_exports__);
28679
28887
  /* harmony export */ api: () => (/* binding */ api),
28680
28888
  /* harmony export */ createApiClient: () => (/* binding */ createApiClient),
28681
28889
  /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__),
28682
- /* harmony export */ fetch: () => (/* reexport safe */ _FetchClient__WEBPACK_IMPORTED_MODULE_41__["default"]),
28890
+ /* harmony export */ fetch: () => (/* reexport safe */ _FetchClient__WEBPACK_IMPORTED_MODULE_42__["default"]),
28683
28891
  /* harmony export */ fronteggAuthApiRoutesRegex: () => (/* reexport safe */ _routers__WEBPACK_IMPORTED_MODULE_9__.fronteggAuthApiRoutesRegex),
28684
28892
  /* harmony export */ fronteggEntitlementsV2Url: () => (/* reexport safe */ _routers__WEBPACK_IMPORTED_MODULE_9__.fronteggEntitlementsV2Url),
28685
28893
  /* harmony export */ fronteggHeaders: () => (/* reexport safe */ _interfaces__WEBPACK_IMPORTED_MODULE_0__.fronteggHeaders),
@@ -28695,10 +28903,10 @@ __webpack_require__.r(__webpack_exports__);
28695
28903
  /* harmony export */ setTabTenantInSessionStorage: () => (/* reexport safe */ _auth__WEBPACK_IMPORTED_MODULE_3__.setTabTenantInSessionStorage)
28696
28904
  /* harmony export */ });
28697
28905
  /* harmony import */ var _auth_enums__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./auth/enums */ "../../dist/@frontegg/rest-api/auth/enums.js");
28698
- /* harmony import */ var _subscriptions__WEBPACK_IMPORTED_MODULE_44__ = __webpack_require__(/*! ./subscriptions */ "../../dist/@frontegg/rest-api/subscriptions/enums.js");
28699
- /* harmony import */ var _error__WEBPACK_IMPORTED_MODULE_43__ = __webpack_require__(/*! ./error */ "../../dist/@frontegg/rest-api/error.js");
28700
- /* harmony import */ var _FetchClient__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(/*! ./FetchClient */ "../../dist/@frontegg/rest-api/FetchClient.js");
28701
- /* harmony import */ var _ContextHolder__WEBPACK_IMPORTED_MODULE_42__ = __webpack_require__(/*! ./ContextHolder */ "../../dist/@frontegg/rest-api/ContextHolder/index.js");
28906
+ /* harmony import */ var _subscriptions__WEBPACK_IMPORTED_MODULE_45__ = __webpack_require__(/*! ./subscriptions */ "../../dist/@frontegg/rest-api/subscriptions/enums.js");
28907
+ /* harmony import */ var _error__WEBPACK_IMPORTED_MODULE_44__ = __webpack_require__(/*! ./error */ "../../dist/@frontegg/rest-api/error.js");
28908
+ /* harmony import */ var _FetchClient__WEBPACK_IMPORTED_MODULE_42__ = __webpack_require__(/*! ./FetchClient */ "../../dist/@frontegg/rest-api/FetchClient.js");
28909
+ /* harmony import */ var _ContextHolder__WEBPACK_IMPORTED_MODULE_43__ = __webpack_require__(/*! ./ContextHolder */ "../../dist/@frontegg/rest-api/ContextHolder/index.js");
28702
28910
  /* harmony import */ var _auth__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ./auth */ "../../dist/@frontegg/rest-api/auth/index.js");
28703
28911
  /* harmony import */ var _auth_secutiry_poilicy__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ./auth/secutiry-poilicy */ "../../dist/@frontegg/rest-api/auth/secutiry-poilicy/index.js");
28704
28912
  /* harmony import */ var _users__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ./users */ "../../dist/@frontegg/rest-api/users/index.js");
@@ -28723,6 +28931,7 @@ __webpack_require__.r(__webpack_exports__);
28723
28931
  /* harmony import */ var _user_phone_numbers__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! ./user-phone-numbers */ "../../dist/@frontegg/rest-api/user-phone-numbers/index.js");
28724
28932
  /* harmony import */ var _applications__WEBPACK_IMPORTED_MODULE_39__ = __webpack_require__(/*! ./applications */ "../../dist/@frontegg/rest-api/applications/index.js");
28725
28933
  /* harmony import */ var _velo__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__(/*! ./velo */ "../../dist/@frontegg/rest-api/velo/index.js");
28934
+ /* harmony import */ var _users_emails_policy__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(/*! ./users-emails-policy */ "../../dist/@frontegg/rest-api/users-emails-policy/index.js");
28726
28935
  /* harmony import */ var _interfaces__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./interfaces */ "../../dist/@frontegg/rest-api/interfaces.js");
28727
28936
  /* harmony import */ var _auth_interfaces__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./auth/interfaces */ "../../dist/@frontegg/rest-api/auth/interfaces.js");
28728
28937
  /* harmony import */ var _auth__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./auth */ "../../dist/@frontegg/rest-api/auth/utils.js");
@@ -28739,7 +28948,7 @@ __webpack_require__.r(__webpack_exports__);
28739
28948
  /* harmony import */ var _security_center_interfaces__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./security-center/interfaces */ "../../dist/@frontegg/rest-api/security-center/interfaces.js");
28740
28949
  /* harmony import */ var _applications_interfaces__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./applications/interfaces */ "../../dist/@frontegg/rest-api/applications/interfaces.js");
28741
28950
  /* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./constants */ "../../dist/@frontegg/rest-api/constants.js");
28742
- /** @license Frontegg v7.75.0-alpha.1
28951
+ /** @license Frontegg v7.75.0-alpha.2
28743
28952
  *
28744
28953
  * This source code is licensed under the MIT license found in the
28745
28954
  * LICENSE file in the root directory of this source tree.
@@ -28801,6 +29010,8 @@ __webpack_require__.r(__webpack_exports__);
28801
29010
 
28802
29011
 
28803
29012
 
29013
+
29014
+
28804
29015
 
28805
29016
 
28806
29017
 
@@ -28833,7 +29044,8 @@ const api = {
28833
29044
  securityCenter: _security_center__WEBPACK_IMPORTED_MODULE_37__["default"],
28834
29045
  userPhoneNumbers: _user_phone_numbers__WEBPACK_IMPORTED_MODULE_38__["default"],
28835
29046
  applications: _applications__WEBPACK_IMPORTED_MODULE_39__["default"],
28836
- velo: _velo__WEBPACK_IMPORTED_MODULE_40__["default"]
29047
+ velo: _velo__WEBPACK_IMPORTED_MODULE_40__["default"],
29048
+ userEmailPolicy: _users_emails_policy__WEBPACK_IMPORTED_MODULE_41__["default"]
28837
29049
  };
28838
29050
  const createApiClient = appName => ({
28839
29051
  auth: new _auth__WEBPACK_IMPORTED_MODULE_19__.AuthenticationApi(appName),
@@ -28859,24 +29071,25 @@ const createApiClient = appName => ({
28859
29071
  securityCenter: new _security_center__WEBPACK_IMPORTED_MODULE_37__.SecurityCenterApi(appName),
28860
29072
  userPhoneNumbers: new _user_phone_numbers__WEBPACK_IMPORTED_MODULE_38__.PhoneNumbersApi(appName),
28861
29073
  applications: new _applications__WEBPACK_IMPORTED_MODULE_39__.ApplicationsApi(appName),
28862
- velo: new _velo__WEBPACK_IMPORTED_MODULE_40__.VeloApi(appName)
29074
+ velo: new _velo__WEBPACK_IMPORTED_MODULE_40__.VeloApi(appName),
29075
+ userEmailPolicy: new _users_emails_policy__WEBPACK_IMPORTED_MODULE_41__.UserEmailPolicyApi(appName)
28863
29076
  });
28864
29077
 
28865
29078
  /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ({
28866
- fetch: _FetchClient__WEBPACK_IMPORTED_MODULE_41__["default"],
28867
- FetchClient: _FetchClient__WEBPACK_IMPORTED_MODULE_41__.FetchClient,
28868
- ContextHolder: _ContextHolder__WEBPACK_IMPORTED_MODULE_42__.ContextHolder,
28869
- FronteggContext: _ContextHolder__WEBPACK_IMPORTED_MODULE_42__.FronteggContext,
29079
+ fetch: _FetchClient__WEBPACK_IMPORTED_MODULE_42__["default"],
29080
+ FetchClient: _FetchClient__WEBPACK_IMPORTED_MODULE_42__.FetchClient,
29081
+ ContextHolder: _ContextHolder__WEBPACK_IMPORTED_MODULE_43__.ContextHolder,
29082
+ FronteggContext: _ContextHolder__WEBPACK_IMPORTED_MODULE_43__.FronteggContext,
28870
29083
  api,
28871
29084
  createApiClient,
28872
- FronteggApiError: _error__WEBPACK_IMPORTED_MODULE_43__.FronteggApiError,
29085
+ FronteggApiError: _error__WEBPACK_IMPORTED_MODULE_44__.FronteggApiError,
28873
29086
  AuthStrategyEnum: _auth_enums__WEBPACK_IMPORTED_MODULE_2__.AuthStrategyEnum,
28874
29087
  MachineToMachineAuthStrategy: _auth_enums__WEBPACK_IMPORTED_MODULE_2__.MachineToMachineAuthStrategy,
28875
29088
  SocialLoginProviders: _auth_enums__WEBPACK_IMPORTED_MODULE_2__.SocialLoginProviders,
28876
- ISubscriptionCancellationPolicy: _subscriptions__WEBPACK_IMPORTED_MODULE_44__.ISubscriptionCancellationPolicy,
28877
- ISubscriptionStatus: _subscriptions__WEBPACK_IMPORTED_MODULE_44__.ISubscriptionStatus,
28878
- PaymentMethodType: _subscriptions__WEBPACK_IMPORTED_MODULE_44__.PaymentMethodType,
28879
- ProviderType: _subscriptions__WEBPACK_IMPORTED_MODULE_44__.ProviderType
29089
+ ISubscriptionCancellationPolicy: _subscriptions__WEBPACK_IMPORTED_MODULE_45__.ISubscriptionCancellationPolicy,
29090
+ ISubscriptionStatus: _subscriptions__WEBPACK_IMPORTED_MODULE_45__.ISubscriptionStatus,
29091
+ PaymentMethodType: _subscriptions__WEBPACK_IMPORTED_MODULE_45__.PaymentMethodType,
29092
+ ProviderType: _subscriptions__WEBPACK_IMPORTED_MODULE_45__.ProviderType
28880
29093
  });
28881
29094
 
28882
29095
  /***/ }),
@@ -30155,6 +30368,17 @@ class TeamsApi extends _BaseApiClient__WEBPACK_IMPORTED_MODULE_1__.BaseApiClient
30155
30368
  addRoles: true
30156
30369
  });
30157
30370
  };
30371
+ this.updateEmail = async email => {
30372
+ return this.post(`${_constants__WEBPACK_IMPORTED_MODULE_2__.urls.identity.users.v1}/email/me`, {
30373
+ email
30374
+ });
30375
+ };
30376
+ this.verifyEmail = async (email, code) => {
30377
+ return this.post(`${_constants__WEBPACK_IMPORTED_MODULE_2__.urls.identity.users.v1}/email/me/verify`, {
30378
+ email,
30379
+ code
30380
+ });
30381
+ };
30158
30382
  this.updateProfile = async body => {
30159
30383
  return this.put(`${_constants__WEBPACK_IMPORTED_MODULE_2__.urls.identity.users.v2}/me`, body);
30160
30384
  };
@@ -30436,6 +30660,37 @@ class PhoneNumbersApi extends _BaseApiClient__WEBPACK_IMPORTED_MODULE_0__.BaseAp
30436
30660
 
30437
30661
  /***/ }),
30438
30662
 
30663
+ /***/ "../../dist/@frontegg/rest-api/users-emails-policy/index.js":
30664
+ /*!******************************************************************!*\
30665
+ !*** ../../dist/@frontegg/rest-api/users-emails-policy/index.js ***!
30666
+ \******************************************************************/
30667
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
30668
+
30669
+ "use strict";
30670
+ __webpack_require__.r(__webpack_exports__);
30671
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
30672
+ /* harmony export */ UserEmailPolicyApi: () => (/* binding */ UserEmailPolicyApi),
30673
+ /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
30674
+ /* harmony export */ });
30675
+ /* harmony import */ var _BaseApiClient__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../BaseApiClient */ "../../dist/@frontegg/rest-api/BaseApiClient.js");
30676
+ /* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../constants */ "../../dist/@frontegg/rest-api/constants.js");
30677
+
30678
+
30679
+ class UserEmailPolicyApi extends _BaseApiClient__WEBPACK_IMPORTED_MODULE_0__.BaseApiClient {
30680
+ constructor(appName) {
30681
+ super(appName);
30682
+ this.getUserEmailPolicyConfig = async () => {
30683
+ return this.get(`${_constants__WEBPACK_IMPORTED_MODULE_1__.urls.identity.configurations.v1}/user-emails-policy`);
30684
+ };
30685
+ }
30686
+
30687
+ /** Retrieve users email policy config. */
30688
+ }
30689
+
30690
+ /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (new UserEmailPolicyApi('default'));
30691
+
30692
+ /***/ }),
30693
+
30439
30694
  /***/ "../../dist/@frontegg/rest-api/users/index.js":
30440
30695
  /*!****************************************************!*\
30441
30696
  !*** ../../dist/@frontegg/rest-api/users/index.js ***!
@@ -31162,6 +31417,7 @@ Metadata._instances = {};
31162
31417
  "use strict";
31163
31418
  __webpack_require__.r(__webpack_exports__);
31164
31419
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
31420
+ /* harmony export */ COUNTRY_FILTER_TYPE: () => (/* binding */ COUNTRY_FILTER_TYPE),
31165
31421
  /* harmony export */ SignupFields: () => (/* binding */ SignupFields)
31166
31422
  /* harmony export */ });
31167
31423
  // interface MessageProps {
@@ -31172,6 +31428,15 @@ let SignupFields;
31172
31428
  (function (SignupFields) {
31173
31429
  SignupFields["phoneNumber"] = "phoneNumber";
31174
31430
  })(SignupFields || (SignupFields = {}));
31431
+ let COUNTRY_FILTER_TYPE;
31432
+
31433
+ /**
31434
+ * Determine which countries will be displayed or blocked in the phone number field
31435
+ */
31436
+ (function (COUNTRY_FILTER_TYPE) {
31437
+ COUNTRY_FILTER_TYPE["ALLOWED"] = "allowedCountries";
31438
+ COUNTRY_FILTER_TYPE["BLOCKED"] = "blockedCountries";
31439
+ })(COUNTRY_FILTER_TYPE || (COUNTRY_FILTER_TYPE = {}));
31175
31440
 
31176
31441
  /***/ }),
31177
31442
 
@@ -31184,6 +31449,7 @@ let SignupFields;
31184
31449
  "use strict";
31185
31450
  __webpack_require__.r(__webpack_exports__);
31186
31451
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
31452
+ /* harmony export */ COUNTRY_FILTER_TYPE: () => (/* reexport safe */ _SignupPageTheme__WEBPACK_IMPORTED_MODULE_0__.COUNTRY_FILTER_TYPE),
31187
31453
  /* harmony export */ SignupFields: () => (/* reexport safe */ _SignupPageTheme__WEBPACK_IMPORTED_MODULE_0__.SignupFields)
31188
31454
  /* harmony export */ });
31189
31455
  /* harmony import */ var _SignupPageTheme__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./SignupPageTheme */ "../../dist/@frontegg/types/ThemeOptions/LoginBoxTheme/SignupPageTheme.js");
@@ -31311,6 +31577,7 @@ __webpack_require__.r(__webpack_exports__);
31311
31577
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
31312
31578
  /* harmony export */ AccountDetailsPageTabs: () => (/* reexport safe */ _fieldsAppearanceConsts__WEBPACK_IMPORTED_MODULE_1__.AccountDetailsPageTabs),
31313
31579
  /* harmony export */ AccountPageFields: () => (/* reexport safe */ _fieldsAppearanceConsts__WEBPACK_IMPORTED_MODULE_1__.AccountPageFields),
31580
+ /* harmony export */ COUNTRY_FILTER_TYPE: () => (/* reexport safe */ _LoginBoxTheme__WEBPACK_IMPORTED_MODULE_0__.COUNTRY_FILTER_TYPE),
31314
31581
  /* harmony export */ DomainRestrictionsTabFields: () => (/* reexport safe */ _fieldsAppearanceConsts__WEBPACK_IMPORTED_MODULE_1__.DomainRestrictionsTabFields),
31315
31582
  /* harmony export */ GeneralSettingsTabFields: () => (/* reexport safe */ _fieldsAppearanceConsts__WEBPACK_IMPORTED_MODULE_1__.GeneralSettingsTabFields),
31316
31583
  /* harmony export */ InviteUserModalFields: () => (/* reexport safe */ _fieldsAppearanceConsts__WEBPACK_IMPORTED_MODULE_1__.InviteUserModalFields),
@@ -31355,6 +31622,7 @@ __webpack_require__.r(__webpack_exports__);
31355
31622
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
31356
31623
  /* harmony export */ AccountDetailsPageTabs: () => (/* reexport safe */ _ThemeOptions__WEBPACK_IMPORTED_MODULE_0__.AccountDetailsPageTabs),
31357
31624
  /* harmony export */ AccountPageFields: () => (/* reexport safe */ _ThemeOptions__WEBPACK_IMPORTED_MODULE_0__.AccountPageFields),
31625
+ /* harmony export */ COUNTRY_FILTER_TYPE: () => (/* reexport safe */ _ThemeOptions__WEBPACK_IMPORTED_MODULE_0__.COUNTRY_FILTER_TYPE),
31358
31626
  /* harmony export */ DomainRestrictionsTabFields: () => (/* reexport safe */ _ThemeOptions__WEBPACK_IMPORTED_MODULE_0__.DomainRestrictionsTabFields),
31359
31627
  /* harmony export */ GeneralSettingsTabFields: () => (/* reexport safe */ _ThemeOptions__WEBPACK_IMPORTED_MODULE_0__.GeneralSettingsTabFields),
31360
31628
  /* harmony export */ InviteUserModalFields: () => (/* reexport safe */ _ThemeOptions__WEBPACK_IMPORTED_MODULE_0__.InviteUserModalFields),
@@ -31373,7 +31641,7 @@ __webpack_require__.r(__webpack_exports__);
31373
31641
  /* harmony export */ });
31374
31642
  /* harmony import */ var _ThemeOptions__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./ThemeOptions */ "../../dist/@frontegg/types/ThemeOptions/index.js");
31375
31643
  /* harmony import */ var _Metadata__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Metadata */ "../../dist/@frontegg/types/Metadata/index.js");
31376
- /** @license Frontegg v7.75.0-alpha.1
31644
+ /** @license Frontegg v7.75.0-alpha.2
31377
31645
  *
31378
31646
  * This source code is licensed under the MIT license found in the
31379
31647
  * LICENSE file in the root directory of this source tree.