@frontegg/js 7.75.0-alpha.0 → 7.75.0-alpha.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +1 -1
- package/node/index.js +1 -1
- package/node/version.js +1 -1
- package/package.json +2 -2
- package/umd/frontegg.development.js +107 -337
- package/umd/frontegg.production.min.js +1 -1
- package/umd/frontegg.production.min.js.LICENSE.txt +1 -1
- package/version.js +1 -1
|
@@ -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.
|
|
1783
|
+
cdnVersion: '7.75.0-alpha.1'
|
|
1784
1784
|
});
|
|
1785
1785
|
|
|
1786
1786
|
/***/ }),
|
|
@@ -10095,61 +10095,6 @@ const _excluded = ["callback", "profilePictureUrl"];
|
|
|
10095
10095
|
});
|
|
10096
10096
|
}
|
|
10097
10097
|
};
|
|
10098
|
-
const updateEmail = async payload => {
|
|
10099
|
-
const {
|
|
10100
|
-
email,
|
|
10101
|
-
callback
|
|
10102
|
-
} = payload;
|
|
10103
|
-
setProfileState({
|
|
10104
|
-
saving: true,
|
|
10105
|
-
error: null,
|
|
10106
|
-
loading: true
|
|
10107
|
-
});
|
|
10108
|
-
try {
|
|
10109
|
-
await api.teams.updateEmail(email);
|
|
10110
|
-
setProfileState({
|
|
10111
|
-
saving: false,
|
|
10112
|
-
error: null,
|
|
10113
|
-
loading: false
|
|
10114
|
-
});
|
|
10115
|
-
callback == null ? void 0 : callback(true);
|
|
10116
|
-
} catch (e) {
|
|
10117
|
-
setProfileState({
|
|
10118
|
-
saving: false,
|
|
10119
|
-
error: (0,_helpers__WEBPACK_IMPORTED_MODULE_4__.errorHandler)(e),
|
|
10120
|
-
loading: false
|
|
10121
|
-
});
|
|
10122
|
-
callback == null ? void 0 : callback(null, e);
|
|
10123
|
-
}
|
|
10124
|
-
};
|
|
10125
|
-
const verifyEmail = async payload => {
|
|
10126
|
-
const {
|
|
10127
|
-
email,
|
|
10128
|
-
code,
|
|
10129
|
-
callback
|
|
10130
|
-
} = payload;
|
|
10131
|
-
setProfileState({
|
|
10132
|
-
saving: true,
|
|
10133
|
-
error: null,
|
|
10134
|
-
loading: true
|
|
10135
|
-
});
|
|
10136
|
-
try {
|
|
10137
|
-
await api.teams.verifyEmail(email, code);
|
|
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
|
-
};
|
|
10153
10098
|
const saveProfile = async _payload => {
|
|
10154
10099
|
const {
|
|
10155
10100
|
callback,
|
|
@@ -10227,9 +10172,7 @@ const _excluded = ["callback", "profilePictureUrl"];
|
|
|
10227
10172
|
resetProfileState,
|
|
10228
10173
|
loadProfile,
|
|
10229
10174
|
saveProfile,
|
|
10230
|
-
changePassword
|
|
10231
|
-
updateEmail,
|
|
10232
|
-
verifyEmail
|
|
10175
|
+
changePassword
|
|
10233
10176
|
};
|
|
10234
10177
|
});
|
|
10235
10178
|
|
|
@@ -16353,69 +16296,6 @@ const initialState = {
|
|
|
16353
16296
|
|
|
16354
16297
|
/***/ }),
|
|
16355
16298
|
|
|
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/state.js":
|
|
16398
|
-
/*!*****************************************************************************!*\
|
|
16399
|
-
!*** ../../dist/@frontegg/redux-store/auth/UsersEmailsPolicyState/state.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 */ "default": () => (__WEBPACK_DEFAULT_EXPORT__),
|
|
16407
|
-
/* harmony export */ initialState: () => (/* binding */ initialState)
|
|
16408
|
-
/* harmony export */ });
|
|
16409
|
-
/* harmony import */ var _toolkit_proxy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../toolkit/proxy */ "../../dist/@frontegg/redux-store/toolkit/proxy.js");
|
|
16410
|
-
|
|
16411
|
-
const initialState = {
|
|
16412
|
-
userEmailPolicyConfig: null,
|
|
16413
|
-
loading: false
|
|
16414
|
-
};
|
|
16415
|
-
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (overrideState => (0,_toolkit_proxy__WEBPACK_IMPORTED_MODULE_0__.createProxy)(initialState, overrideState));
|
|
16416
|
-
|
|
16417
|
-
/***/ }),
|
|
16418
|
-
|
|
16419
16299
|
/***/ "../../dist/@frontegg/redux-store/auth/helpers.js":
|
|
16420
16300
|
/*!********************************************************!*\
|
|
16421
16301
|
!*** ../../dist/@frontegg/redux-store/auth/helpers.js ***!
|
|
@@ -16587,76 +16467,74 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
16587
16467
|
/* 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");
|
|
16588
16468
|
/* 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");
|
|
16589
16469
|
/* harmony import */ var _AcceptInvitationState__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ./AcceptInvitationState */ "../../dist/@frontegg/redux-store/auth/AcceptInvitationState/state.js");
|
|
16590
|
-
/* harmony import */ var
|
|
16470
|
+
/* harmony import */ var _AcceptInvitationState__WEBPACK_IMPORTED_MODULE_56__ = __webpack_require__(/*! ./AcceptInvitationState */ "../../dist/@frontegg/redux-store/auth/AcceptInvitationState/actions.js");
|
|
16591
16471
|
/* harmony import */ var _AccountSettingsState__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ./AccountSettingsState */ "../../dist/@frontegg/redux-store/auth/AccountSettingsState/state.js");
|
|
16592
|
-
/* harmony import */ var
|
|
16472
|
+
/* harmony import */ var _AccountSettingsState__WEBPACK_IMPORTED_MODULE_57__ = __webpack_require__(/*! ./AccountSettingsState */ "../../dist/@frontegg/redux-store/auth/AccountSettingsState/actions.js");
|
|
16593
16473
|
/* harmony import */ var _ActivateAccountState__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ./ActivateAccountState */ "../../dist/@frontegg/redux-store/auth/ActivateAccountState/state.js");
|
|
16594
|
-
/* harmony import */ var
|
|
16474
|
+
/* harmony import */ var _ActivateAccountState__WEBPACK_IMPORTED_MODULE_58__ = __webpack_require__(/*! ./ActivateAccountState */ "../../dist/@frontegg/redux-store/auth/ActivateAccountState/actions.js");
|
|
16595
16475
|
/* harmony import */ var _UnlockAccountState__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ./UnlockAccountState */ "../../dist/@frontegg/redux-store/auth/UnlockAccountState/state.js");
|
|
16596
|
-
/* harmony import */ var
|
|
16476
|
+
/* harmony import */ var _UnlockAccountState__WEBPACK_IMPORTED_MODULE_59__ = __webpack_require__(/*! ./UnlockAccountState */ "../../dist/@frontegg/redux-store/auth/UnlockAccountState/actions.js");
|
|
16597
16477
|
/* harmony import */ var _ApiTokensState__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ./ApiTokensState */ "../../dist/@frontegg/redux-store/auth/ApiTokensState/state.js");
|
|
16598
|
-
/* harmony import */ var
|
|
16478
|
+
/* harmony import */ var _ApiTokensState__WEBPACK_IMPORTED_MODULE_60__ = __webpack_require__(/*! ./ApiTokensState */ "../../dist/@frontegg/redux-store/auth/ApiTokensState/actions.js");
|
|
16599
16479
|
/* harmony import */ var _ApplicationsState__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(/*! ./ApplicationsState */ "../../dist/@frontegg/redux-store/auth/ApplicationsState/state.js");
|
|
16600
|
-
/* harmony import */ var
|
|
16480
|
+
/* harmony import */ var _ApplicationsState__WEBPACK_IMPORTED_MODULE_61__ = __webpack_require__(/*! ./ApplicationsState */ "../../dist/@frontegg/redux-store/auth/ApplicationsState/actions.js");
|
|
16601
16481
|
/* harmony import */ var _CustomLoginState__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ./CustomLoginState */ "../../dist/@frontegg/redux-store/auth/CustomLoginState/state.js");
|
|
16602
|
-
/* harmony import */ var
|
|
16482
|
+
/* harmony import */ var _CustomLoginState__WEBPACK_IMPORTED_MODULE_62__ = __webpack_require__(/*! ./CustomLoginState */ "../../dist/@frontegg/redux-store/auth/CustomLoginState/actions.js");
|
|
16603
16483
|
/* harmony import */ var _ForgotPasswordState__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ./ForgotPasswordState */ "../../dist/@frontegg/redux-store/auth/ForgotPasswordState/state.js");
|
|
16604
|
-
/* harmony import */ var
|
|
16484
|
+
/* harmony import */ var _ForgotPasswordState__WEBPACK_IMPORTED_MODULE_64__ = __webpack_require__(/*! ./ForgotPasswordState */ "../../dist/@frontegg/redux-store/auth/ForgotPasswordState/actions.js");
|
|
16605
16485
|
/* harmony import */ var _PasswordRotationState__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ./PasswordRotationState */ "../../dist/@frontegg/redux-store/auth/PasswordRotationState/state.js");
|
|
16606
|
-
/* harmony import */ var
|
|
16486
|
+
/* harmony import */ var _PasswordRotationState__WEBPACK_IMPORTED_MODULE_65__ = __webpack_require__(/*! ./PasswordRotationState */ "../../dist/@frontegg/redux-store/auth/PasswordRotationState/actions.js");
|
|
16607
16487
|
/* harmony import */ var _GroupsState__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ./GroupsState */ "../../dist/@frontegg/redux-store/auth/GroupsState/state.js");
|
|
16608
|
-
/* harmony import */ var
|
|
16488
|
+
/* harmony import */ var _GroupsState__WEBPACK_IMPORTED_MODULE_66__ = __webpack_require__(/*! ./GroupsState */ "../../dist/@frontegg/redux-store/auth/GroupsState/actions.js");
|
|
16609
16489
|
/* harmony import */ var _GroupsDialogsState__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ./GroupsDialogsState */ "../../dist/@frontegg/redux-store/auth/GroupsDialogsState/state.js");
|
|
16610
|
-
/* harmony import */ var
|
|
16490
|
+
/* harmony import */ var _GroupsDialogsState__WEBPACK_IMPORTED_MODULE_67__ = __webpack_require__(/*! ./GroupsDialogsState */ "../../dist/@frontegg/redux-store/auth/GroupsDialogsState/actions.js");
|
|
16611
16491
|
/* harmony import */ var _ImpersonateState__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ./ImpersonateState */ "../../dist/@frontegg/redux-store/auth/ImpersonateState/state.js");
|
|
16612
|
-
/* harmony import */ var
|
|
16492
|
+
/* harmony import */ var _ImpersonateState__WEBPACK_IMPORTED_MODULE_68__ = __webpack_require__(/*! ./ImpersonateState */ "../../dist/@frontegg/redux-store/auth/ImpersonateState/actions.js");
|
|
16613
16493
|
/* harmony import */ var _LoginState__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ./LoginState */ "../../dist/@frontegg/redux-store/auth/LoginState/state.js");
|
|
16614
|
-
/* harmony import */ var
|
|
16494
|
+
/* harmony import */ var _LoginState__WEBPACK_IMPORTED_MODULE_69__ = __webpack_require__(/*! ./LoginState */ "../../dist/@frontegg/redux-store/auth/LoginState/actions/index.js");
|
|
16615
16495
|
/* harmony import */ var _MfaState__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ./MfaState */ "../../dist/@frontegg/redux-store/auth/MfaState/state.js");
|
|
16616
|
-
/* harmony import */ var
|
|
16496
|
+
/* harmony import */ var _MfaState__WEBPACK_IMPORTED_MODULE_70__ = __webpack_require__(/*! ./MfaState */ "../../dist/@frontegg/redux-store/auth/MfaState/actions.js");
|
|
16617
16497
|
/* harmony import */ var _MSP__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ./MSP */ "../../dist/@frontegg/redux-store/auth/MSP/state.js");
|
|
16618
16498
|
/* harmony import */ var _MSP__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ./MSP */ "../../dist/@frontegg/redux-store/auth/MSP/dialogs/state.js");
|
|
16619
|
-
/* harmony import */ var
|
|
16620
|
-
/* harmony import */ var
|
|
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");
|
|
16621
16501
|
/* harmony import */ var _PasskeysState__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! ./PasskeysState */ "../../dist/@frontegg/redux-store/auth/PasskeysState/state.js");
|
|
16622
|
-
/* harmony import */ var
|
|
16502
|
+
/* harmony import */ var _PasskeysState__WEBPACK_IMPORTED_MODULE_73__ = __webpack_require__(/*! ./PasskeysState */ "../../dist/@frontegg/redux-store/auth/PasskeysState/actions.js");
|
|
16623
16503
|
/* harmony import */ var _ProfileState__WEBPACK_IMPORTED_MODULE_39__ = __webpack_require__(/*! ./ProfileState */ "../../dist/@frontegg/redux-store/auth/ProfileState/state.js");
|
|
16624
|
-
/* harmony import */ var
|
|
16504
|
+
/* harmony import */ var _ProfileState__WEBPACK_IMPORTED_MODULE_74__ = __webpack_require__(/*! ./ProfileState */ "../../dist/@frontegg/redux-store/auth/ProfileState/actions.js");
|
|
16625
16505
|
/* harmony import */ var _ProvisioningState__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__(/*! ./ProvisioningState */ "../../dist/@frontegg/redux-store/auth/ProvisioningState/state.js");
|
|
16626
|
-
/* harmony import */ var
|
|
16506
|
+
/* harmony import */ var _ProvisioningState__WEBPACK_IMPORTED_MODULE_75__ = __webpack_require__(/*! ./ProvisioningState */ "../../dist/@frontegg/redux-store/auth/ProvisioningState/actions.js");
|
|
16627
16507
|
/* harmony import */ var _ResetPhoneNumberState__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(/*! ./ResetPhoneNumberState */ "../../dist/@frontegg/redux-store/auth/ResetPhoneNumberState/state.js");
|
|
16628
|
-
/* harmony import */ var
|
|
16508
|
+
/* harmony import */ var _ResetPhoneNumberState__WEBPACK_IMPORTED_MODULE_76__ = __webpack_require__(/*! ./ResetPhoneNumberState */ "../../dist/@frontegg/redux-store/auth/ResetPhoneNumberState/actions.js");
|
|
16629
16509
|
/* harmony import */ var _RolesState__WEBPACK_IMPORTED_MODULE_42__ = __webpack_require__(/*! ./RolesState */ "../../dist/@frontegg/redux-store/auth/RolesState/state.js");
|
|
16630
|
-
/* harmony import */ var
|
|
16510
|
+
/* harmony import */ var _RolesState__WEBPACK_IMPORTED_MODULE_77__ = __webpack_require__(/*! ./RolesState */ "../../dist/@frontegg/redux-store/auth/RolesState/actions.js");
|
|
16631
16511
|
/* harmony import */ var _Security_RestrictionsState__WEBPACK_IMPORTED_MODULE_43__ = __webpack_require__(/*! ./Security/RestrictionsState */ "../../dist/@frontegg/redux-store/auth/Security/RestrictionsState/state.js");
|
|
16632
|
-
/* harmony import */ var
|
|
16512
|
+
/* harmony import */ var _Security_RestrictionsState__WEBPACK_IMPORTED_MODULE_78__ = __webpack_require__(/*! ./Security/RestrictionsState */ "../../dist/@frontegg/redux-store/auth/Security/RestrictionsState/actions.js");
|
|
16633
16513
|
/* harmony import */ var _Security_SecurityCenterState__WEBPACK_IMPORTED_MODULE_44__ = __webpack_require__(/*! ./Security/SecurityCenterState */ "../../dist/@frontegg/redux-store/auth/Security/SecurityCenterState/state.js");
|
|
16634
|
-
/* harmony import */ var
|
|
16514
|
+
/* harmony import */ var _Security_SecurityCenterState__WEBPACK_IMPORTED_MODULE_79__ = __webpack_require__(/*! ./Security/SecurityCenterState */ "../../dist/@frontegg/redux-store/auth/Security/SecurityCenterState/actions.js");
|
|
16635
16515
|
/* harmony import */ var _Security_SecurityPolicyState__WEBPACK_IMPORTED_MODULE_45__ = __webpack_require__(/*! ./Security/SecurityPolicyState */ "../../dist/@frontegg/redux-store/auth/Security/SecurityPolicyState/state.js");
|
|
16636
|
-
/* harmony import */ var
|
|
16516
|
+
/* harmony import */ var _Security_SecurityPolicyState__WEBPACK_IMPORTED_MODULE_80__ = __webpack_require__(/*! ./Security/SecurityPolicyState */ "../../dist/@frontegg/redux-store/auth/Security/SecurityPolicyState/actions.js");
|
|
16637
16517
|
/* harmony import */ var _Security_SessionsPolicyState__WEBPACK_IMPORTED_MODULE_46__ = __webpack_require__(/*! ./Security/SessionsPolicyState */ "../../dist/@frontegg/redux-store/auth/Security/SessionsPolicyState/state.js");
|
|
16638
|
-
/* harmony import */ var
|
|
16518
|
+
/* harmony import */ var _Security_SessionsPolicyState__WEBPACK_IMPORTED_MODULE_81__ = __webpack_require__(/*! ./Security/SessionsPolicyState */ "../../dist/@frontegg/redux-store/auth/Security/SessionsPolicyState/actions.js");
|
|
16639
16519
|
/* harmony import */ var _SessionsState__WEBPACK_IMPORTED_MODULE_47__ = __webpack_require__(/*! ./SessionsState */ "../../dist/@frontegg/redux-store/auth/SessionsState/state.js");
|
|
16640
|
-
/* harmony import */ var
|
|
16520
|
+
/* harmony import */ var _SessionsState__WEBPACK_IMPORTED_MODULE_82__ = __webpack_require__(/*! ./SessionsState */ "../../dist/@frontegg/redux-store/auth/SessionsState/actions.js");
|
|
16641
16521
|
/* harmony import */ var _SignUpState__WEBPACK_IMPORTED_MODULE_48__ = __webpack_require__(/*! ./SignUpState */ "../../dist/@frontegg/redux-store/auth/SignUpState/state.js");
|
|
16642
|
-
/* harmony import */ var
|
|
16522
|
+
/* harmony import */ var _SignUpState__WEBPACK_IMPORTED_MODULE_83__ = __webpack_require__(/*! ./SignUpState */ "../../dist/@frontegg/redux-store/auth/SignUpState/actions.js");
|
|
16643
16523
|
/* harmony import */ var _SmsState__WEBPACK_IMPORTED_MODULE_49__ = __webpack_require__(/*! ./SmsState */ "../../dist/@frontegg/redux-store/auth/SmsState/state.js");
|
|
16644
|
-
/* harmony import */ var
|
|
16524
|
+
/* harmony import */ var _SmsState__WEBPACK_IMPORTED_MODULE_84__ = __webpack_require__(/*! ./SmsState */ "../../dist/@frontegg/redux-store/auth/SmsState/actions.js");
|
|
16645
16525
|
/* harmony import */ var _SocialLoginState__WEBPACK_IMPORTED_MODULE_50__ = __webpack_require__(/*! ./SocialLoginState */ "../../dist/@frontegg/redux-store/auth/SocialLoginState/state.js");
|
|
16646
|
-
/* harmony import */ var
|
|
16526
|
+
/* harmony import */ var _SocialLoginState__WEBPACK_IMPORTED_MODULE_85__ = __webpack_require__(/*! ./SocialLoginState */ "../../dist/@frontegg/redux-store/auth/SocialLoginState/actions.js");
|
|
16647
16527
|
/* harmony import */ var _SSOState__WEBPACK_IMPORTED_MODULE_51__ = __webpack_require__(/*! ./SSOState */ "../../dist/@frontegg/redux-store/auth/SSOState/state.js");
|
|
16648
|
-
/* harmony import */ var
|
|
16528
|
+
/* harmony import */ var _SSOState__WEBPACK_IMPORTED_MODULE_86__ = __webpack_require__(/*! ./SSOState */ "../../dist/@frontegg/redux-store/auth/SSOState/actions/index.js");
|
|
16649
16529
|
/* harmony import */ var _StepUpState__WEBPACK_IMPORTED_MODULE_52__ = __webpack_require__(/*! ./StepUpState */ "../../dist/@frontegg/redux-store/auth/StepUpState/state.js");
|
|
16650
|
-
/* harmony import */ var
|
|
16530
|
+
/* harmony import */ var _StepUpState__WEBPACK_IMPORTED_MODULE_87__ = __webpack_require__(/*! ./StepUpState */ "../../dist/@frontegg/redux-store/auth/StepUpState/actions/index.js");
|
|
16651
16531
|
/* harmony import */ var _TeamState__WEBPACK_IMPORTED_MODULE_53__ = __webpack_require__(/*! ./TeamState */ "../../dist/@frontegg/redux-store/auth/TeamState/state.js");
|
|
16652
|
-
/* harmony import */ var
|
|
16532
|
+
/* harmony import */ var _TeamState__WEBPACK_IMPORTED_MODULE_88__ = __webpack_require__(/*! ./TeamState */ "../../dist/@frontegg/redux-store/auth/TeamState/actions/index.js");
|
|
16653
16533
|
/* harmony import */ var _TenantsState__WEBPACK_IMPORTED_MODULE_54__ = __webpack_require__(/*! ./TenantsState */ "../../dist/@frontegg/redux-store/auth/TenantsState/state.js");
|
|
16654
|
-
/* harmony import */ var
|
|
16655
|
-
/* harmony import */ var _UsersEmailsPolicyState__WEBPACK_IMPORTED_MODULE_55__ = __webpack_require__(/*! ./UsersEmailsPolicyState */ "../../dist/@frontegg/redux-store/auth/UsersEmailsPolicyState/state.js");
|
|
16656
|
-
/* harmony import */ var _UsersEmailsPolicyState__WEBPACK_IMPORTED_MODULE_91__ = __webpack_require__(/*! ./UsersEmailsPolicyState */ "../../dist/@frontegg/redux-store/auth/UsersEmailsPolicyState/actions.js");
|
|
16534
|
+
/* harmony import */ var _TenantsState__WEBPACK_IMPORTED_MODULE_89__ = __webpack_require__(/*! ./TenantsState */ "../../dist/@frontegg/redux-store/auth/TenantsState/actions.js");
|
|
16657
16535
|
/* harmony import */ var _LoginState_consts__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ./LoginState/consts */ "../../dist/@frontegg/redux-store/auth/LoginState/consts.js");
|
|
16658
|
-
/* harmony import */ var
|
|
16659
|
-
/* harmony import */ var
|
|
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");
|
|
16660
16538
|
/* harmony import */ var _toolkit_proxy__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ../toolkit/proxy */ "../../dist/@frontegg/redux-store/toolkit/proxy.js");
|
|
16661
16539
|
/* harmony import */ var _AcceptInvitationState_interfaces__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./AcceptInvitationState/interfaces */ "../../dist/@frontegg/redux-store/auth/AcceptInvitationState/interfaces.js");
|
|
16662
16540
|
/* harmony import */ var _ActivateAccountState_interfaces__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./ActivateAccountState/interfaces */ "../../dist/@frontegg/redux-store/auth/ActivateAccountState/interfaces.js");
|
|
@@ -16748,8 +16626,6 @@ const _excluded = ["routes"],
|
|
|
16748
16626
|
|
|
16749
16627
|
|
|
16750
16628
|
|
|
16751
|
-
|
|
16752
|
-
|
|
16753
16629
|
|
|
16754
16630
|
|
|
16755
16631
|
|
|
@@ -16806,15 +16682,14 @@ const createAuthState = _overrideState => {
|
|
|
16806
16682
|
ssoState: (0,_SSOState__WEBPACK_IMPORTED_MODULE_51__["default"])(overrideState == null ? void 0 : overrideState.ssoState),
|
|
16807
16683
|
stepUpState: (0,_StepUpState__WEBPACK_IMPORTED_MODULE_52__["default"])(overrideState == null ? void 0 : overrideState.stepUpState),
|
|
16808
16684
|
teamState: (0,_TeamState__WEBPACK_IMPORTED_MODULE_53__["default"])(overrideState == null ? void 0 : overrideState.teamState),
|
|
16809
|
-
tenantsState: (0,_TenantsState__WEBPACK_IMPORTED_MODULE_54__["default"])(overrideState == null ? void 0 : overrideState.tenantsState)
|
|
16810
|
-
userEmailPolicyState: (0,_UsersEmailsPolicyState__WEBPACK_IMPORTED_MODULE_55__["default"])(overrideState == null ? void 0 : overrideState.userEmailPolicyState)
|
|
16685
|
+
tenantsState: (0,_TenantsState__WEBPACK_IMPORTED_MODULE_54__["default"])(overrideState == null ? void 0 : overrideState.tenantsState)
|
|
16811
16686
|
}));
|
|
16812
16687
|
};
|
|
16813
16688
|
const buildAuthActions = (store, api, actions, snapshotAuthState) => {
|
|
16814
16689
|
const setAuthState = state => {
|
|
16815
16690
|
Object.keys(state).forEach(key => {
|
|
16816
16691
|
const authKey = key;
|
|
16817
|
-
if ((0,
|
|
16692
|
+
if ((0,_helpers__WEBPACK_IMPORTED_MODULE_55__.isProxy)(store.auth[authKey])) {
|
|
16818
16693
|
Object.assign(store.auth[authKey], state[authKey]);
|
|
16819
16694
|
} else {
|
|
16820
16695
|
store.auth[authKey] = state[authKey];
|
|
@@ -16822,7 +16697,7 @@ const buildAuthActions = (store, api, actions, snapshotAuthState) => {
|
|
|
16822
16697
|
});
|
|
16823
16698
|
};
|
|
16824
16699
|
const resetAuthState = (state = {}) => {
|
|
16825
|
-
(0,
|
|
16700
|
+
(0,_helpers__WEBPACK_IMPORTED_MODULE_55__.deepResetState)(store, ['auth'], (0,_babel_runtime_helpers_esm_extends__WEBPACK_IMPORTED_MODULE_0__["default"])({}, snapshotAuthState, state));
|
|
16826
16701
|
};
|
|
16827
16702
|
const setUser = user => {
|
|
16828
16703
|
setAuthState({
|
|
@@ -16840,41 +16715,40 @@ const buildAuthActions = (store, api, actions, snapshotAuthState) => {
|
|
|
16840
16715
|
})
|
|
16841
16716
|
});
|
|
16842
16717
|
};
|
|
16843
|
-
const acceptInvitationActions = (0,
|
|
16844
|
-
const accountSettingsActions = (0,
|
|
16845
|
-
const activateAccountActions = (0,
|
|
16846
|
-
const unlockAccountActions = (0,
|
|
16847
|
-
const apiTokensActions = (0,
|
|
16848
|
-
const applicationsActions = (0,
|
|
16849
|
-
const customLoginActions = (0,
|
|
16850
|
-
const entitlementsActions = (0,
|
|
16851
|
-
const forgotPasswordActions = (0,
|
|
16852
|
-
const passwordRotationActions = (0,
|
|
16853
|
-
const groupsActions = (0,
|
|
16854
|
-
const groupsDialogsActions = (0,
|
|
16855
|
-
const impersonateActions = (0,
|
|
16856
|
-
const loginActions = (0,
|
|
16857
|
-
const mfaActions = (0,
|
|
16858
|
-
const allAccountsActions = (0,
|
|
16859
|
-
const allAccountsDialogActions = (0,
|
|
16860
|
-
const passkeysActions = (0,
|
|
16861
|
-
const profileActions = (0,
|
|
16862
|
-
const provisioningActions = (0,
|
|
16863
|
-
const resetPhoneNumberActions = (0,
|
|
16864
|
-
const rolesActions = (0,
|
|
16865
|
-
const restrictionsActions = (0,
|
|
16866
|
-
const securityCenterActions = (0,
|
|
16867
|
-
const securityPolicyActions = (0,
|
|
16868
|
-
const sessionsPolicyActions = (0,
|
|
16869
|
-
const sessionsActions = (0,
|
|
16870
|
-
const signUpActions = (0,
|
|
16871
|
-
const smsActions = (0,
|
|
16872
|
-
const socialLoginActions = (0,
|
|
16873
|
-
const ssoActions = (0,
|
|
16874
|
-
const stepUpActions = (0,
|
|
16875
|
-
const teamActions = (0,
|
|
16876
|
-
const tenantsActions = (0,
|
|
16877
|
-
const usersEmailsPolicyActions = (0,_UsersEmailsPolicyState__WEBPACK_IMPORTED_MODULE_91__["default"])(store, api, actions);
|
|
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);
|
|
16878
16752
|
const stateActions = {
|
|
16879
16753
|
acceptInvitationActions,
|
|
16880
16754
|
accountSettingsActions,
|
|
@@ -16909,8 +16783,7 @@ const buildAuthActions = (store, api, actions, snapshotAuthState) => {
|
|
|
16909
16783
|
ssoActions,
|
|
16910
16784
|
stepUpActions,
|
|
16911
16785
|
teamActions,
|
|
16912
|
-
tenantsActions
|
|
16913
|
-
usersEmailsPolicyActions
|
|
16786
|
+
tenantsActions
|
|
16914
16787
|
};
|
|
16915
16788
|
return [(0,_babel_runtime_helpers_esm_extends__WEBPACK_IMPORTED_MODULE_0__["default"])({
|
|
16916
16789
|
setAuthState,
|
|
@@ -18702,7 +18575,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
18702
18575
|
/* harmony import */ var _subscriptions_interfaces__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./subscriptions/interfaces */ "../../dist/@frontegg/redux-store/subscriptions/interfaces.js");
|
|
18703
18576
|
/* harmony import */ var _vendor__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./vendor */ "../../dist/@frontegg/redux-store/vendor/index.js");
|
|
18704
18577
|
/* harmony import */ var _audits__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./audits */ "../../dist/@frontegg/redux-store/audits/index.js");
|
|
18705
|
-
/** @license Frontegg v7.75.0-alpha.
|
|
18578
|
+
/** @license Frontegg v7.75.0-alpha.1
|
|
18706
18579
|
*
|
|
18707
18580
|
* This source code is licensed under the MIT license found in the
|
|
18708
18581
|
* LICENSE file in the root directory of this source tree.
|
|
@@ -19810,8 +19683,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
19810
19683
|
/* harmony import */ var _teamActions_mocks__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ./teamActions.mocks */ "../../dist/@frontegg/redux-store/mocks/auth-mocks/teamActions.mocks.js");
|
|
19811
19684
|
/* harmony import */ var _tenantsActions_mocks__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ./tenantsActions.mocks */ "../../dist/@frontegg/redux-store/mocks/auth-mocks/tenantsActions.mocks.js");
|
|
19812
19685
|
/* harmony import */ var _unlockAccountActions_mocks__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./unlockAccountActions.mocks */ "../../dist/@frontegg/redux-store/mocks/auth-mocks/unlockAccountActions.mocks.js");
|
|
19813
|
-
/* harmony import */ var
|
|
19814
|
-
/* harmony import */ var _helpers__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ../../helpers */ "../../dist/@frontegg/redux-store/helpers/common.js");
|
|
19686
|
+
/* harmony import */ var _helpers__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ../../helpers */ "../../dist/@frontegg/redux-store/helpers/common.js");
|
|
19815
19687
|
|
|
19816
19688
|
|
|
19817
19689
|
const _excluded = ["requestName"];
|
|
@@ -19850,7 +19722,6 @@ const _excluded = ["requestName"];
|
|
|
19850
19722
|
|
|
19851
19723
|
|
|
19852
19724
|
|
|
19853
|
-
|
|
19854
19725
|
|
|
19855
19726
|
|
|
19856
19727
|
const buildAuthActions = (store, api, actions, snapshotAuthState) => {
|
|
@@ -19888,7 +19759,6 @@ const buildAuthActions = (store, api, actions, snapshotAuthState) => {
|
|
|
19888
19759
|
const stepUpActions = (0,_stepUpActions_mocks__WEBPACK_IMPORTED_MODULE_33__["default"])(store, api, actions);
|
|
19889
19760
|
const teamActions = (0,_teamActions_mocks__WEBPACK_IMPORTED_MODULE_34__["default"])(store, api, actions);
|
|
19890
19761
|
const tenantsActions = (0,_tenantsActions_mocks__WEBPACK_IMPORTED_MODULE_35__["default"])(store, api, actions);
|
|
19891
|
-
const usersEmailsPolicyActions = (0,_usersEmailsPolicyActions_mocks__WEBPACK_IMPORTED_MODULE_36__["default"])(store, api, actions);
|
|
19892
19762
|
const authStateActions = {
|
|
19893
19763
|
acceptInvitationActions,
|
|
19894
19764
|
accountSettingsActions,
|
|
@@ -19923,13 +19793,12 @@ const buildAuthActions = (store, api, actions, snapshotAuthState) => {
|
|
|
19923
19793
|
ssoActions,
|
|
19924
19794
|
stepUpActions,
|
|
19925
19795
|
teamActions,
|
|
19926
|
-
tenantsActions
|
|
19927
|
-
usersEmailsPolicyActions
|
|
19796
|
+
tenantsActions
|
|
19928
19797
|
};
|
|
19929
19798
|
const setAuthState = state => {
|
|
19930
19799
|
Object.keys(state).forEach(key => {
|
|
19931
19800
|
const authKey = key;
|
|
19932
|
-
if ((0,
|
|
19801
|
+
if ((0,_helpers__WEBPACK_IMPORTED_MODULE_36__.isProxy)(store.auth[authKey])) {
|
|
19933
19802
|
Object.assign(store.auth[authKey], state[authKey]);
|
|
19934
19803
|
} else {
|
|
19935
19804
|
store.auth[authKey] = state[authKey];
|
|
@@ -19938,7 +19807,7 @@ const buildAuthActions = (store, api, actions, snapshotAuthState) => {
|
|
|
19938
19807
|
};
|
|
19939
19808
|
// eslint-disable-next-line @typescript-eslint/no-empty-function
|
|
19940
19809
|
const resetAuthState = () => {
|
|
19941
|
-
(0,
|
|
19810
|
+
(0,_helpers__WEBPACK_IMPORTED_MODULE_36__.deepResetState)(store, ['auth'], snapshotAuthState);
|
|
19942
19811
|
};
|
|
19943
19812
|
const setUser = user => {
|
|
19944
19813
|
setAuthState({
|
|
@@ -19962,7 +19831,7 @@ const buildAuthActions = (store, api, actions, snapshotAuthState) => {
|
|
|
19962
19831
|
setErrorByRequestName,
|
|
19963
19832
|
resetAuthState,
|
|
19964
19833
|
setUser
|
|
19965
|
-
}, 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
|
|
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);
|
|
19966
19835
|
return {
|
|
19967
19836
|
authActions,
|
|
19968
19837
|
authStateActions
|
|
@@ -20402,36 +20271,6 @@ const _excluded = ["callback", "profilePictureUrl"];
|
|
|
20402
20271
|
});
|
|
20403
20272
|
(_payload$callback = payload.callback) == null ? void 0 : _payload$callback.call(payload, true);
|
|
20404
20273
|
};
|
|
20405
|
-
mockedActions.updateEmail = async payload => {
|
|
20406
|
-
var _payload$callback2;
|
|
20407
|
-
mockedActions.setProfileState({
|
|
20408
|
-
saving: true,
|
|
20409
|
-
error: null,
|
|
20410
|
-
loading: true
|
|
20411
|
-
});
|
|
20412
|
-
await (0,_helpers__WEBPACK_IMPORTED_MODULE_4__.delay)();
|
|
20413
|
-
mockedActions.setProfileState({
|
|
20414
|
-
saving: false,
|
|
20415
|
-
error: null,
|
|
20416
|
-
loading: false
|
|
20417
|
-
});
|
|
20418
|
-
(_payload$callback2 = payload.callback) == null ? void 0 : _payload$callback2.call(payload, true);
|
|
20419
|
-
};
|
|
20420
|
-
mockedActions.verifyEmail = async payload => {
|
|
20421
|
-
var _payload$callback3;
|
|
20422
|
-
mockedActions.setProfileState({
|
|
20423
|
-
saving: true,
|
|
20424
|
-
error: null,
|
|
20425
|
-
loading: true
|
|
20426
|
-
});
|
|
20427
|
-
await (0,_helpers__WEBPACK_IMPORTED_MODULE_4__.delay)();
|
|
20428
|
-
mockedActions.setProfileState({
|
|
20429
|
-
saving: false,
|
|
20430
|
-
error: null,
|
|
20431
|
-
loading: false
|
|
20432
|
-
});
|
|
20433
|
-
(_payload$callback3 = payload.callback) == null ? void 0 : _payload$callback3.call(payload, true);
|
|
20434
|
-
};
|
|
20435
20274
|
return mockedActions;
|
|
20436
20275
|
});
|
|
20437
20276
|
|
|
@@ -21932,28 +21771,6 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
21932
21771
|
|
|
21933
21772
|
/***/ }),
|
|
21934
21773
|
|
|
21935
|
-
/***/ "../../dist/@frontegg/redux-store/mocks/auth-mocks/usersEmailsPolicyActions.mocks.js":
|
|
21936
|
-
/*!*******************************************************************************************!*\
|
|
21937
|
-
!*** ../../dist/@frontegg/redux-store/mocks/auth-mocks/usersEmailsPolicyActions.mocks.js ***!
|
|
21938
|
-
\*******************************************************************************************/
|
|
21939
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
21940
|
-
|
|
21941
|
-
"use strict";
|
|
21942
|
-
__webpack_require__.r(__webpack_exports__);
|
|
21943
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
21944
|
-
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
21945
|
-
/* harmony export */ });
|
|
21946
|
-
/* harmony import */ var _auth_UsersEmailsPolicyState__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../auth/UsersEmailsPolicyState */ "../../dist/@frontegg/redux-store/auth/UsersEmailsPolicyState/actions.js");
|
|
21947
|
-
/* harmony import */ var _helpers__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../helpers */ "../../dist/@frontegg/redux-store/mocks/helpers.js");
|
|
21948
|
-
|
|
21949
|
-
|
|
21950
|
-
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ((store, api, sharedActions) => {
|
|
21951
|
-
const originalActions = (0,_auth_UsersEmailsPolicyState__WEBPACK_IMPORTED_MODULE_0__["default"])(store, api, sharedActions);
|
|
21952
|
-
return (0,_helpers__WEBPACK_IMPORTED_MODULE_1__.mockActionsExpect)(originalActions, ['loadUserEmailPolicyState']);
|
|
21953
|
-
});
|
|
21954
|
-
|
|
21955
|
-
/***/ }),
|
|
21956
|
-
|
|
21957
21774
|
/***/ "../../dist/@frontegg/redux-store/mocks/connectivity-mocks/index.js":
|
|
21958
21775
|
/*!**************************************************************************!*\
|
|
21959
21776
|
!*** ../../dist/@frontegg/redux-store/mocks/connectivity-mocks/index.js ***!
|
|
@@ -28818,31 +28635,31 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
28818
28635
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
28819
28636
|
/* harmony export */ ApplicationAccessType: () => (/* reexport safe */ _applications_interfaces__WEBPACK_IMPORTED_MODULE_17__.ApplicationAccessType),
|
|
28820
28637
|
/* harmony export */ AuthStrategyEnum: () => (/* reexport safe */ _auth_enums__WEBPACK_IMPORTED_MODULE_2__.AuthStrategyEnum),
|
|
28821
|
-
/* harmony export */ ContextHolder: () => (/* reexport safe */
|
|
28638
|
+
/* harmony export */ ContextHolder: () => (/* reexport safe */ _ContextHolder__WEBPACK_IMPORTED_MODULE_42__.ContextHolder),
|
|
28822
28639
|
/* harmony export */ DirectoryApi: () => (/* reexport safe */ _directory_index__WEBPACK_IMPORTED_MODULE_11__.DirectoryApi),
|
|
28823
28640
|
/* harmony export */ FRONTEGG_SEPARATE_TABS_BY_TENANT: () => (/* reexport safe */ _auth__WEBPACK_IMPORTED_MODULE_4__.FRONTEGG_SEPARATE_TABS_BY_TENANT),
|
|
28824
28641
|
/* harmony export */ FeatureFlags: () => (/* reexport safe */ _feature_flags_index__WEBPACK_IMPORTED_MODULE_10__.FeatureFlags),
|
|
28825
28642
|
/* harmony export */ FeatureFlagsApi: () => (/* reexport safe */ _feature_flags_index__WEBPACK_IMPORTED_MODULE_10__.FeatureFlagsApi),
|
|
28826
|
-
/* harmony export */ FetchClient: () => (/* reexport safe */
|
|
28827
|
-
/* harmony export */ FronteggApiError: () => (/* reexport safe */
|
|
28828
|
-
/* harmony export */ FronteggContext: () => (/* reexport safe */
|
|
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),
|
|
28829
28646
|
/* harmony export */ FronteggFrameworks: () => (/* reexport safe */ _interfaces__WEBPACK_IMPORTED_MODULE_0__.FronteggFrameworks),
|
|
28830
28647
|
/* harmony export */ GENERIC_ERROR_CODE: () => (/* reexport safe */ _constants__WEBPACK_IMPORTED_MODULE_18__.GENERIC_ERROR_CODE),
|
|
28831
28648
|
/* harmony export */ GENERIC_ERROR_MESSAGE: () => (/* reexport safe */ _constants__WEBPACK_IMPORTED_MODULE_18__.GENERIC_ERROR_MESSAGE),
|
|
28832
28649
|
/* harmony export */ GetUsersFilterPreset: () => (/* reexport safe */ _users_interfaces__WEBPACK_IMPORTED_MODULE_14__.GetUsersFilterPreset),
|
|
28833
28650
|
/* harmony export */ GroupManagedByEnum: () => (/* reexport safe */ _groups_enums__WEBPACK_IMPORTED_MODULE_13__.GroupManagedByEnum),
|
|
28834
28651
|
/* harmony export */ GroupRelations: () => (/* reexport safe */ _groups_enums__WEBPACK_IMPORTED_MODULE_13__.GroupRelations),
|
|
28835
|
-
/* harmony export */ ISubscriptionCancellationPolicy: () => (/* reexport safe */
|
|
28836
|
-
/* harmony export */ ISubscriptionStatus: () => (/* reexport safe */
|
|
28652
|
+
/* harmony export */ ISubscriptionCancellationPolicy: () => (/* reexport safe */ _subscriptions__WEBPACK_IMPORTED_MODULE_44__.ISubscriptionCancellationPolicy),
|
|
28653
|
+
/* harmony export */ ISubscriptionStatus: () => (/* reexport safe */ _subscriptions__WEBPACK_IMPORTED_MODULE_44__.ISubscriptionStatus),
|
|
28837
28654
|
/* harmony export */ InsightCode: () => (/* reexport safe */ _security_center_interfaces__WEBPACK_IMPORTED_MODULE_16__.InsightCode),
|
|
28838
28655
|
/* harmony export */ LOAD_AUTHORIZATION_FF: () => (/* reexport safe */ _auth_interfaces__WEBPACK_IMPORTED_MODULE_1__.LOAD_AUTHORIZATION_FF),
|
|
28839
28656
|
/* harmony export */ MFAStrategyEnum: () => (/* reexport safe */ _auth_interfaces__WEBPACK_IMPORTED_MODULE_1__.MFAStrategyEnum),
|
|
28840
28657
|
/* harmony export */ MachineToMachineAuthStrategy: () => (/* reexport safe */ _auth_enums__WEBPACK_IMPORTED_MODULE_2__.MachineToMachineAuthStrategy),
|
|
28841
28658
|
/* harmony export */ NotEntitledJustification: () => (/* reexport safe */ _entitlements_interfaces__WEBPACK_IMPORTED_MODULE_15__.NotEntitledJustification),
|
|
28842
28659
|
/* harmony export */ PaginationOrderEnum: () => (/* reexport safe */ _interfaces__WEBPACK_IMPORTED_MODULE_0__.PaginationOrderEnum),
|
|
28843
|
-
/* harmony export */ PaymentMethodType: () => (/* reexport safe */
|
|
28660
|
+
/* harmony export */ PaymentMethodType: () => (/* reexport safe */ _subscriptions__WEBPACK_IMPORTED_MODULE_44__.PaymentMethodType),
|
|
28844
28661
|
/* harmony export */ PermissionAssignmentTypeEnum: () => (/* reexport safe */ _roles_interfaces__WEBPACK_IMPORTED_MODULE_7__.PermissionAssignmentTypeEnum),
|
|
28845
|
-
/* harmony export */ ProviderType: () => (/* reexport safe */
|
|
28662
|
+
/* harmony export */ ProviderType: () => (/* reexport safe */ _subscriptions__WEBPACK_IMPORTED_MODULE_44__.ProviderType),
|
|
28846
28663
|
/* harmony export */ RecommendationActionKey: () => (/* reexport safe */ _security_center_interfaces__WEBPACK_IMPORTED_MODULE_16__.RecommendationActionKey),
|
|
28847
28664
|
/* harmony export */ RecommendationCode: () => (/* reexport safe */ _security_center_interfaces__WEBPACK_IMPORTED_MODULE_16__.RecommendationCode),
|
|
28848
28665
|
/* harmony export */ RecommendationSeverity: () => (/* reexport safe */ _security_center_interfaces__WEBPACK_IMPORTED_MODULE_16__.RecommendationSeverity),
|
|
@@ -28862,7 +28679,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
28862
28679
|
/* harmony export */ api: () => (/* binding */ api),
|
|
28863
28680
|
/* harmony export */ createApiClient: () => (/* binding */ createApiClient),
|
|
28864
28681
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__),
|
|
28865
|
-
/* harmony export */ fetch: () => (/* reexport safe */
|
|
28682
|
+
/* harmony export */ fetch: () => (/* reexport safe */ _FetchClient__WEBPACK_IMPORTED_MODULE_41__["default"]),
|
|
28866
28683
|
/* harmony export */ fronteggAuthApiRoutesRegex: () => (/* reexport safe */ _routers__WEBPACK_IMPORTED_MODULE_9__.fronteggAuthApiRoutesRegex),
|
|
28867
28684
|
/* harmony export */ fronteggEntitlementsV2Url: () => (/* reexport safe */ _routers__WEBPACK_IMPORTED_MODULE_9__.fronteggEntitlementsV2Url),
|
|
28868
28685
|
/* harmony export */ fronteggHeaders: () => (/* reexport safe */ _interfaces__WEBPACK_IMPORTED_MODULE_0__.fronteggHeaders),
|
|
@@ -28878,10 +28695,10 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
28878
28695
|
/* harmony export */ setTabTenantInSessionStorage: () => (/* reexport safe */ _auth__WEBPACK_IMPORTED_MODULE_3__.setTabTenantInSessionStorage)
|
|
28879
28696
|
/* harmony export */ });
|
|
28880
28697
|
/* harmony import */ var _auth_enums__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./auth/enums */ "../../dist/@frontegg/rest-api/auth/enums.js");
|
|
28881
|
-
/* harmony import */ var
|
|
28882
|
-
/* harmony import */ var
|
|
28883
|
-
/* harmony import */ var
|
|
28884
|
-
/* harmony import */ var
|
|
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");
|
|
28885
28702
|
/* harmony import */ var _auth__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ./auth */ "../../dist/@frontegg/rest-api/auth/index.js");
|
|
28886
28703
|
/* harmony import */ var _auth_secutiry_poilicy__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ./auth/secutiry-poilicy */ "../../dist/@frontegg/rest-api/auth/secutiry-poilicy/index.js");
|
|
28887
28704
|
/* harmony import */ var _users__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ./users */ "../../dist/@frontegg/rest-api/users/index.js");
|
|
@@ -28906,7 +28723,6 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
28906
28723
|
/* harmony import */ var _user_phone_numbers__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! ./user-phone-numbers */ "../../dist/@frontegg/rest-api/user-phone-numbers/index.js");
|
|
28907
28724
|
/* harmony import */ var _applications__WEBPACK_IMPORTED_MODULE_39__ = __webpack_require__(/*! ./applications */ "../../dist/@frontegg/rest-api/applications/index.js");
|
|
28908
28725
|
/* harmony import */ var _velo__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__(/*! ./velo */ "../../dist/@frontegg/rest-api/velo/index.js");
|
|
28909
|
-
/* harmony import */ var _users_emails_policy__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(/*! ./users-emails-policy */ "../../dist/@frontegg/rest-api/users-emails-policy/index.js");
|
|
28910
28726
|
/* harmony import */ var _interfaces__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./interfaces */ "../../dist/@frontegg/rest-api/interfaces.js");
|
|
28911
28727
|
/* harmony import */ var _auth_interfaces__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./auth/interfaces */ "../../dist/@frontegg/rest-api/auth/interfaces.js");
|
|
28912
28728
|
/* harmony import */ var _auth__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./auth */ "../../dist/@frontegg/rest-api/auth/utils.js");
|
|
@@ -28923,7 +28739,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
28923
28739
|
/* harmony import */ var _security_center_interfaces__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./security-center/interfaces */ "../../dist/@frontegg/rest-api/security-center/interfaces.js");
|
|
28924
28740
|
/* harmony import */ var _applications_interfaces__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./applications/interfaces */ "../../dist/@frontegg/rest-api/applications/interfaces.js");
|
|
28925
28741
|
/* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./constants */ "../../dist/@frontegg/rest-api/constants.js");
|
|
28926
|
-
/** @license Frontegg v7.75.0-alpha.
|
|
28742
|
+
/** @license Frontegg v7.75.0-alpha.1
|
|
28927
28743
|
*
|
|
28928
28744
|
* This source code is licensed under the MIT license found in the
|
|
28929
28745
|
* LICENSE file in the root directory of this source tree.
|
|
@@ -28985,8 +28801,6 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
28985
28801
|
|
|
28986
28802
|
|
|
28987
28803
|
|
|
28988
|
-
|
|
28989
|
-
|
|
28990
28804
|
|
|
28991
28805
|
|
|
28992
28806
|
|
|
@@ -29019,8 +28833,7 @@ const api = {
|
|
|
29019
28833
|
securityCenter: _security_center__WEBPACK_IMPORTED_MODULE_37__["default"],
|
|
29020
28834
|
userPhoneNumbers: _user_phone_numbers__WEBPACK_IMPORTED_MODULE_38__["default"],
|
|
29021
28835
|
applications: _applications__WEBPACK_IMPORTED_MODULE_39__["default"],
|
|
29022
|
-
velo: _velo__WEBPACK_IMPORTED_MODULE_40__["default"]
|
|
29023
|
-
userEmailPolicy: _users_emails_policy__WEBPACK_IMPORTED_MODULE_41__["default"]
|
|
28836
|
+
velo: _velo__WEBPACK_IMPORTED_MODULE_40__["default"]
|
|
29024
28837
|
};
|
|
29025
28838
|
const createApiClient = appName => ({
|
|
29026
28839
|
auth: new _auth__WEBPACK_IMPORTED_MODULE_19__.AuthenticationApi(appName),
|
|
@@ -29046,25 +28859,24 @@ const createApiClient = appName => ({
|
|
|
29046
28859
|
securityCenter: new _security_center__WEBPACK_IMPORTED_MODULE_37__.SecurityCenterApi(appName),
|
|
29047
28860
|
userPhoneNumbers: new _user_phone_numbers__WEBPACK_IMPORTED_MODULE_38__.PhoneNumbersApi(appName),
|
|
29048
28861
|
applications: new _applications__WEBPACK_IMPORTED_MODULE_39__.ApplicationsApi(appName),
|
|
29049
|
-
velo: new _velo__WEBPACK_IMPORTED_MODULE_40__.VeloApi(appName)
|
|
29050
|
-
userEmailPolicy: new _users_emails_policy__WEBPACK_IMPORTED_MODULE_41__.UserEmailPolicyApi(appName)
|
|
28862
|
+
velo: new _velo__WEBPACK_IMPORTED_MODULE_40__.VeloApi(appName)
|
|
29051
28863
|
});
|
|
29052
28864
|
|
|
29053
28865
|
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ({
|
|
29054
|
-
fetch:
|
|
29055
|
-
FetchClient:
|
|
29056
|
-
ContextHolder:
|
|
29057
|
-
FronteggContext:
|
|
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,
|
|
29058
28870
|
api,
|
|
29059
28871
|
createApiClient,
|
|
29060
|
-
FronteggApiError:
|
|
28872
|
+
FronteggApiError: _error__WEBPACK_IMPORTED_MODULE_43__.FronteggApiError,
|
|
29061
28873
|
AuthStrategyEnum: _auth_enums__WEBPACK_IMPORTED_MODULE_2__.AuthStrategyEnum,
|
|
29062
28874
|
MachineToMachineAuthStrategy: _auth_enums__WEBPACK_IMPORTED_MODULE_2__.MachineToMachineAuthStrategy,
|
|
29063
28875
|
SocialLoginProviders: _auth_enums__WEBPACK_IMPORTED_MODULE_2__.SocialLoginProviders,
|
|
29064
|
-
ISubscriptionCancellationPolicy:
|
|
29065
|
-
ISubscriptionStatus:
|
|
29066
|
-
PaymentMethodType:
|
|
29067
|
-
ProviderType:
|
|
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
|
|
29068
28880
|
});
|
|
29069
28881
|
|
|
29070
28882
|
/***/ }),
|
|
@@ -30343,17 +30155,6 @@ class TeamsApi extends _BaseApiClient__WEBPACK_IMPORTED_MODULE_1__.BaseApiClient
|
|
|
30343
30155
|
addRoles: true
|
|
30344
30156
|
});
|
|
30345
30157
|
};
|
|
30346
|
-
this.updateEmail = async email => {
|
|
30347
|
-
return this.post(`${_constants__WEBPACK_IMPORTED_MODULE_2__.urls.identity.users.v1}/email/me`, {
|
|
30348
|
-
email
|
|
30349
|
-
});
|
|
30350
|
-
};
|
|
30351
|
-
this.verifyEmail = async (email, code) => {
|
|
30352
|
-
return this.post(`${_constants__WEBPACK_IMPORTED_MODULE_2__.urls.identity.users.v1}/email/me/verify`, {
|
|
30353
|
-
email,
|
|
30354
|
-
code
|
|
30355
|
-
});
|
|
30356
|
-
};
|
|
30357
30158
|
this.updateProfile = async body => {
|
|
30358
30159
|
return this.put(`${_constants__WEBPACK_IMPORTED_MODULE_2__.urls.identity.users.v2}/me`, body);
|
|
30359
30160
|
};
|
|
@@ -30635,37 +30436,6 @@ class PhoneNumbersApi extends _BaseApiClient__WEBPACK_IMPORTED_MODULE_0__.BaseAp
|
|
|
30635
30436
|
|
|
30636
30437
|
/***/ }),
|
|
30637
30438
|
|
|
30638
|
-
/***/ "../../dist/@frontegg/rest-api/users-emails-policy/index.js":
|
|
30639
|
-
/*!******************************************************************!*\
|
|
30640
|
-
!*** ../../dist/@frontegg/rest-api/users-emails-policy/index.js ***!
|
|
30641
|
-
\******************************************************************/
|
|
30642
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
30643
|
-
|
|
30644
|
-
"use strict";
|
|
30645
|
-
__webpack_require__.r(__webpack_exports__);
|
|
30646
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
30647
|
-
/* harmony export */ UserEmailPolicyApi: () => (/* binding */ UserEmailPolicyApi),
|
|
30648
|
-
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
30649
|
-
/* harmony export */ });
|
|
30650
|
-
/* harmony import */ var _BaseApiClient__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../BaseApiClient */ "../../dist/@frontegg/rest-api/BaseApiClient.js");
|
|
30651
|
-
/* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../constants */ "../../dist/@frontegg/rest-api/constants.js");
|
|
30652
|
-
|
|
30653
|
-
|
|
30654
|
-
class UserEmailPolicyApi extends _BaseApiClient__WEBPACK_IMPORTED_MODULE_0__.BaseApiClient {
|
|
30655
|
-
constructor(appName) {
|
|
30656
|
-
super(appName);
|
|
30657
|
-
this.getUserEmailPolicyConfig = async () => {
|
|
30658
|
-
return this.get(`${_constants__WEBPACK_IMPORTED_MODULE_1__.urls.identity.configurations.v1}/user-emails-policy`);
|
|
30659
|
-
};
|
|
30660
|
-
}
|
|
30661
|
-
|
|
30662
|
-
/** Retrieve users email policy config. */
|
|
30663
|
-
}
|
|
30664
|
-
|
|
30665
|
-
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (new UserEmailPolicyApi('default'));
|
|
30666
|
-
|
|
30667
|
-
/***/ }),
|
|
30668
|
-
|
|
30669
30439
|
/***/ "../../dist/@frontegg/rest-api/users/index.js":
|
|
30670
30440
|
/*!****************************************************!*\
|
|
30671
30441
|
!*** ../../dist/@frontegg/rest-api/users/index.js ***!
|
|
@@ -31603,7 +31373,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
31603
31373
|
/* harmony export */ });
|
|
31604
31374
|
/* harmony import */ var _ThemeOptions__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./ThemeOptions */ "../../dist/@frontegg/types/ThemeOptions/index.js");
|
|
31605
31375
|
/* harmony import */ var _Metadata__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Metadata */ "../../dist/@frontegg/types/Metadata/index.js");
|
|
31606
|
-
/** @license Frontegg v7.75.0-alpha.
|
|
31376
|
+
/** @license Frontegg v7.75.0-alpha.1
|
|
31607
31377
|
*
|
|
31608
31378
|
* This source code is licensed under the MIT license found in the
|
|
31609
31379
|
* LICENSE file in the root directory of this source tree.
|