@frontegg/js 7.59.0 → 7.60.0-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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 +96 -51
- package/umd/frontegg.production.min.js +1 -1
- package/umd/frontegg.production.min.js.LICENSE.txt +1 -1
- package/version.js +1 -1
package/index.js
CHANGED
package/node/index.js
CHANGED
package/node/version.js
CHANGED
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@frontegg/js",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.60.0-alpha.0",
|
|
4
4
|
"main": "./node/index.js",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Frontegg LTD",
|
|
7
7
|
"dependencies": {
|
|
8
8
|
"@babel/runtime": "^7.18.6",
|
|
9
|
-
"@frontegg/types": "7.
|
|
9
|
+
"@frontegg/types": "7.60.0-alpha.0"
|
|
10
10
|
},
|
|
11
11
|
"browserslist": {
|
|
12
12
|
"production": [
|
|
@@ -1630,7 +1630,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
1630
1630
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
1631
1631
|
/* harmony export */ });
|
|
1632
1632
|
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ({
|
|
1633
|
-
cdnVersion: '7.
|
|
1633
|
+
cdnVersion: '7.60.0-alpha.0'
|
|
1634
1634
|
});
|
|
1635
1635
|
|
|
1636
1636
|
/***/ }),
|
|
@@ -4954,8 +4954,11 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
4954
4954
|
/* harmony export */ "default": () => (/* export default binding */ __WEBPACK_DEFAULT_EXPORT__)
|
|
4955
4955
|
/* harmony export */ });
|
|
4956
4956
|
/* harmony import */ var _frontegg_rest_api__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @frontegg/rest-api */ "../../dist/@frontegg/rest-api/feature-flags/index.js");
|
|
4957
|
-
/* harmony import */ var
|
|
4957
|
+
/* harmony import */ var _MfaState_interfaces__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../../MfaState/interfaces */ "../../dist/@frontegg/redux-store/auth/MfaState/interfaces.js");
|
|
4958
4958
|
/* harmony import */ var _interfaces__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../interfaces */ "../../dist/@frontegg/redux-store/auth/LoginState/interfaces.js");
|
|
4959
|
+
/* harmony import */ var _helpers__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../helpers */ "../../dist/@frontegg/redux-store/auth/helpers.js");
|
|
4960
|
+
/* harmony import */ var _helpers__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../helpers */ "../../dist/@frontegg/redux-store/auth/LoginState/helpers.js");
|
|
4961
|
+
|
|
4959
4962
|
|
|
4960
4963
|
|
|
4961
4964
|
|
|
@@ -4983,26 +4986,42 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
4983
4986
|
* Additional steps for after MFA authentication with authenticator app handler for login flow
|
|
4984
4987
|
* @param isAuthenticated
|
|
4985
4988
|
*/
|
|
4986
|
-
const postHandleVerifyMFAResponseForLogin = async isAuthenticated => {
|
|
4989
|
+
const postHandleVerifyMFAResponseForLogin = async (isAuthenticated, user) => {
|
|
4987
4990
|
const loginState = store.auth.loginState;
|
|
4988
4991
|
const mfaStep = store.auth.mfaState.step;
|
|
4989
|
-
const [securityCenterLoginFlows] = await getFeatureFlags(['security-center-show-login-flows']);
|
|
4992
|
+
const [securityCenterLoginFlows, passwordRotationFlagEnabled] = await actions.getFeatureFlags(['security-center-show-login-flows', 'password-rotation']);
|
|
4990
4993
|
if (loginState.flow === _interfaces__WEBPACK_IMPORTED_MODULE_1__.LoginFlow.Login) {
|
|
4991
4994
|
if (securityCenterLoginFlows && loginState.isBreachedPassword && !isAuthenticated) {
|
|
4992
4995
|
actions.setLoginState({
|
|
4993
4996
|
step: _interfaces__WEBPACK_IMPORTED_MODULE_1__.LoginStep.breachedPassword,
|
|
4994
4997
|
loading: false
|
|
4995
4998
|
});
|
|
4999
|
+
return;
|
|
5000
|
+
}
|
|
5001
|
+
if (passwordRotationFlagEnabled && (0,_helpers__WEBPACK_IMPORTED_MODULE_2__.isResetPasswordRequired)(user, store.root.appName)) {
|
|
5002
|
+
actions.setLoginState({
|
|
5003
|
+
step: _interfaces__WEBPACK_IMPORTED_MODULE_1__.LoginStep.passwordRotationExpired,
|
|
5004
|
+
loading: false,
|
|
5005
|
+
resetPasswordToken: user.resetPasswordToken,
|
|
5006
|
+
userId: user.userId
|
|
5007
|
+
});
|
|
5008
|
+
return;
|
|
5009
|
+
}
|
|
5010
|
+
if (passwordRotationFlagEnabled && (0,_helpers__WEBPACK_IMPORTED_MODULE_3__.shouldShowPasswordRotationPromptFunc)(user)) {
|
|
5011
|
+
actions.setLoginState({
|
|
5012
|
+
step: _interfaces__WEBPACK_IMPORTED_MODULE_1__.LoginStep.passwordRotationNotification,
|
|
5013
|
+
loading: false
|
|
5014
|
+
});
|
|
5015
|
+
return;
|
|
5016
|
+
}
|
|
5017
|
+
const shouldShowPasskeysPrompt = await actions.__shouldShowPromptPasskeys();
|
|
5018
|
+
if (mfaStep === _MfaState_interfaces__WEBPACK_IMPORTED_MODULE_4__.MFAStep.smsVerifyCode && shouldShowPasskeysPrompt) {
|
|
5019
|
+
actions.setLoginState({
|
|
5020
|
+
step: _interfaces__WEBPACK_IMPORTED_MODULE_1__.LoginStep.promptPasskeys,
|
|
5021
|
+
loading: false
|
|
5022
|
+
});
|
|
4996
5023
|
} else {
|
|
4997
|
-
|
|
4998
|
-
if (mfaStep === _MfaState_interfaces__WEBPACK_IMPORTED_MODULE_2__.MFAStep.smsVerifyCode && shouldShowPrompt) {
|
|
4999
|
-
actions.setLoginState({
|
|
5000
|
-
step: _interfaces__WEBPACK_IMPORTED_MODULE_1__.LoginStep.promptPasskeys,
|
|
5001
|
-
loading: false
|
|
5002
|
-
});
|
|
5003
|
-
} else {
|
|
5004
|
-
await actions.afterAuthNavigation();
|
|
5005
|
-
}
|
|
5024
|
+
await actions.afterAuthNavigation();
|
|
5006
5025
|
}
|
|
5007
5026
|
}
|
|
5008
5027
|
};
|
|
@@ -5039,7 +5058,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
5039
5058
|
if (isStepUp) {
|
|
5040
5059
|
return await postHandleVerifyMFAResponseForStepUp();
|
|
5041
5060
|
}
|
|
5042
|
-
return await postHandleVerifyMFAResponseForLogin(isAuthenticated);
|
|
5061
|
+
return await postHandleVerifyMFAResponseForLogin(isAuthenticated, user);
|
|
5043
5062
|
};
|
|
5044
5063
|
return {
|
|
5045
5064
|
postHandleVerifyMFAResponseForStepUp,
|
|
@@ -5824,7 +5843,7 @@ const _excluded = ["callback", "error"],
|
|
|
5824
5843
|
});
|
|
5825
5844
|
} else {
|
|
5826
5845
|
if (isAuthenticated) {
|
|
5827
|
-
const shouldShowPasswordRotationPrompt =
|
|
5846
|
+
const shouldShowPasswordRotationPrompt = (0,_helpers__WEBPACK_IMPORTED_MODULE_12__.shouldShowPasswordRotationPromptFunc)(user);
|
|
5828
5847
|
if (passwordRotationFlagEnabled && shouldShowPasswordRotationPrompt) {
|
|
5829
5848
|
setLoginState({
|
|
5830
5849
|
step: _interfaces__WEBPACK_IMPORTED_MODULE_4__.LoginStep.passwordRotationNotification,
|
|
@@ -6793,12 +6812,15 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
6793
6812
|
/* harmony import */ var _babel_runtime_helpers_esm_objectWithoutPropertiesLoose__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/runtime/helpers/esm/objectWithoutPropertiesLoose */ "../../node_modules/@babel/runtime/helpers/esm/objectWithoutPropertiesLoose.js");
|
|
6794
6813
|
/* harmony import */ var _babel_runtime_helpers_esm_extends__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @babel/runtime/helpers/esm/extends */ "../../node_modules/@babel/runtime/helpers/esm/extends.js");
|
|
6795
6814
|
/* harmony import */ var _interfaces__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../interfaces */ "../../dist/@frontegg/redux-store/auth/LoginState/interfaces.js");
|
|
6796
|
-
/* harmony import */ var
|
|
6815
|
+
/* harmony import */ var _helpers__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../../../helpers */ "../../dist/@frontegg/redux-store/helpers/handlers.js");
|
|
6816
|
+
/* harmony import */ var _helpers__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../helpers */ "../../dist/@frontegg/redux-store/auth/helpers.js");
|
|
6817
|
+
/* harmony import */ var _helpers__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../../helpers */ "../../dist/@frontegg/redux-store/auth/LoginState/helpers.js");
|
|
6797
6818
|
|
|
6798
6819
|
|
|
6799
6820
|
const _excluded = ["callback"];
|
|
6800
6821
|
|
|
6801
6822
|
|
|
6823
|
+
|
|
6802
6824
|
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ((store, api, sharedActions) => {
|
|
6803
6825
|
const actions = sharedActions;
|
|
6804
6826
|
|
|
@@ -6834,24 +6856,41 @@ const _excluded = ["callback"];
|
|
|
6834
6856
|
* Handle after MFA authentication with authenticator app for login
|
|
6835
6857
|
* @private
|
|
6836
6858
|
*/
|
|
6837
|
-
async function __postLoginMfaAuthenticator(isAuthenticated, callback) {
|
|
6859
|
+
async function __postLoginMfaAuthenticator(isAuthenticated, user, callback) {
|
|
6838
6860
|
const loginState = store.auth.loginState;
|
|
6839
6861
|
if (loginState.flow !== _interfaces__WEBPACK_IMPORTED_MODULE_2__.LoginFlow.Login) return;
|
|
6840
|
-
const [securityCenterLoginFlows] = await actions.getFeatureFlags(['security-center-show-login-flows']);
|
|
6862
|
+
const [securityCenterLoginFlows, passwordRotationFlagEnabled] = await actions.getFeatureFlags(['security-center-show-login-flows', 'password-rotation']);
|
|
6841
6863
|
if (securityCenterLoginFlows && loginState.isBreachedPassword && !isAuthenticated) {
|
|
6842
6864
|
actions.setLoginState({
|
|
6843
6865
|
step: _interfaces__WEBPACK_IMPORTED_MODULE_2__.LoginStep.breachedPassword,
|
|
6844
6866
|
loading: false
|
|
6845
6867
|
});
|
|
6846
6868
|
} else {
|
|
6847
|
-
|
|
6848
|
-
if (shouldShowPrompt) {
|
|
6869
|
+
if (passwordRotationFlagEnabled && (0,_helpers__WEBPACK_IMPORTED_MODULE_3__.isResetPasswordRequired)(user, store.root.appName)) {
|
|
6849
6870
|
actions.setLoginState({
|
|
6850
|
-
step: _interfaces__WEBPACK_IMPORTED_MODULE_2__.LoginStep.
|
|
6851
|
-
loading: false
|
|
6871
|
+
step: _interfaces__WEBPACK_IMPORTED_MODULE_2__.LoginStep.passwordRotationExpired,
|
|
6872
|
+
loading: false,
|
|
6873
|
+
resetPasswordToken: user.resetPasswordToken,
|
|
6874
|
+
userId: user.userId
|
|
6852
6875
|
});
|
|
6853
6876
|
} else {
|
|
6854
|
-
|
|
6877
|
+
const shouldShowPasswordRotationPrompt = (0,_helpers__WEBPACK_IMPORTED_MODULE_4__.shouldShowPasswordRotationPromptFunc)(user);
|
|
6878
|
+
if (passwordRotationFlagEnabled && shouldShowPasswordRotationPrompt) {
|
|
6879
|
+
actions.setLoginState({
|
|
6880
|
+
step: _interfaces__WEBPACK_IMPORTED_MODULE_2__.LoginStep.passwordRotationNotification,
|
|
6881
|
+
loading: false
|
|
6882
|
+
});
|
|
6883
|
+
} else {
|
|
6884
|
+
const shouldShowPrompt = await actions.__shouldShowPromptPasskeys();
|
|
6885
|
+
if (shouldShowPrompt) {
|
|
6886
|
+
actions.setLoginState({
|
|
6887
|
+
step: _interfaces__WEBPACK_IMPORTED_MODULE_2__.LoginStep.promptPasskeys,
|
|
6888
|
+
loading: false
|
|
6889
|
+
});
|
|
6890
|
+
} else {
|
|
6891
|
+
await actions.afterAuthNavigation();
|
|
6892
|
+
}
|
|
6893
|
+
}
|
|
6855
6894
|
}
|
|
6856
6895
|
}
|
|
6857
6896
|
callback == null ? void 0 : callback(true);
|
|
@@ -6905,11 +6944,11 @@ const _excluded = ["callback"];
|
|
|
6905
6944
|
if (isStepUp) {
|
|
6906
6945
|
return await __postStepUpMfaAuthenticator(callback);
|
|
6907
6946
|
}
|
|
6908
|
-
return await __postLoginMfaAuthenticator(isAuthenticated, callback);
|
|
6947
|
+
return await __postLoginMfaAuthenticator(isAuthenticated, user, callback);
|
|
6909
6948
|
} catch (e) {
|
|
6910
6949
|
setLoadingAction({
|
|
6911
6950
|
loading: false,
|
|
6912
|
-
error: (0,
|
|
6951
|
+
error: (0,_helpers__WEBPACK_IMPORTED_MODULE_5__.errorHandler)(e)
|
|
6913
6952
|
});
|
|
6914
6953
|
callback == null ? void 0 : callback(false, e);
|
|
6915
6954
|
}
|
|
@@ -7390,7 +7429,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
7390
7429
|
/* harmony export */ getSearchParamsFromUrl: () => (/* binding */ getSearchParamsFromUrl),
|
|
7391
7430
|
/* harmony export */ isAbsoluteUrl: () => (/* binding */ isAbsoluteUrl),
|
|
7392
7431
|
/* harmony export */ isEmailPayload: () => (/* binding */ isEmailPayload),
|
|
7393
|
-
/* harmony export */ isOauthCallbackRoute: () => (/* binding */ isOauthCallbackRoute)
|
|
7432
|
+
/* harmony export */ isOauthCallbackRoute: () => (/* binding */ isOauthCallbackRoute),
|
|
7433
|
+
/* harmony export */ shouldShowPasswordRotationPromptFunc: () => (/* binding */ shouldShowPasswordRotationPromptFunc)
|
|
7394
7434
|
/* harmony export */ });
|
|
7395
7435
|
/* harmony import */ var _frontegg_rest_api__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @frontegg/rest-api */ "../../dist/@frontegg/rest-api/auth/interfaces.js");
|
|
7396
7436
|
/* harmony import */ var _frontegg_rest_api__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @frontegg/rest-api */ "../../dist/@frontegg/rest-api/ContextHolder/index.js");
|
|
@@ -7530,6 +7570,9 @@ const getBaseNameWithoutSlashSuffix = state => {
|
|
|
7530
7570
|
}
|
|
7531
7571
|
return basename;
|
|
7532
7572
|
};
|
|
7573
|
+
const shouldShowPasswordRotationPromptFunc = user => {
|
|
7574
|
+
return user.passwordExpiresIn !== undefined && user.notificationPeriod !== undefined && user.passwordExpiresIn <= user.notificationPeriod;
|
|
7575
|
+
};
|
|
7533
7576
|
|
|
7534
7577
|
/***/ }),
|
|
7535
7578
|
|
|
@@ -15943,39 +15986,40 @@ const initialState = {
|
|
|
15943
15986
|
"use strict";
|
|
15944
15987
|
__webpack_require__.r(__webpack_exports__);
|
|
15945
15988
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
15946
|
-
/* harmony export */ TENANT_ID_PARAM_KEY: () => (/* reexport safe */
|
|
15989
|
+
/* harmony export */ TENANT_ID_PARAM_KEY: () => (/* reexport safe */ _LoginState_helpers__WEBPACK_IMPORTED_MODULE_3__.TENANT_ID_PARAM_KEY),
|
|
15947
15990
|
/* harmony export */ extractPhoneNumber: () => (/* binding */ extractPhoneNumber),
|
|
15948
|
-
/* harmony export */ getBaseNameWithoutSlashSuffix: () => (/* reexport safe */
|
|
15949
|
-
/* harmony export */ getEntitlements: () => (/* reexport safe */
|
|
15950
|
-
/* harmony export */ getFeatureEntitlements: () => (/* reexport safe */
|
|
15951
|
-
/* harmony export */ getMfaStepForEnrolledUsers: () => (/* reexport safe */
|
|
15952
|
-
/* harmony export */ getMfaStepForNotEnrolledUsers: () => (/* reexport safe */
|
|
15953
|
-
/* harmony export */ getNumberOfMfaDevices: () => (/* reexport safe */
|
|
15954
|
-
/* harmony export */ getPathAndSearchParamsFromUrl: () => (/* reexport safe */
|
|
15955
|
-
/* harmony export */ getPermissionEntitlements: () => (/* reexport safe */
|
|
15956
|
-
/* harmony export */ getRedirectUrl: () => (/* reexport safe */
|
|
15957
|
-
/* harmony export */ getSearchParam: () => (/* reexport safe */
|
|
15958
|
-
/* harmony export */ getSearchParamsFromUrl: () => (/* reexport safe */
|
|
15991
|
+
/* harmony export */ getBaseNameWithoutSlashSuffix: () => (/* reexport safe */ _LoginState_helpers__WEBPACK_IMPORTED_MODULE_3__.getBaseNameWithoutSlashSuffix),
|
|
15992
|
+
/* harmony export */ getEntitlements: () => (/* reexport safe */ _Entitlements_helpers__WEBPACK_IMPORTED_MODULE_2__.getEntitlements),
|
|
15993
|
+
/* harmony export */ getFeatureEntitlements: () => (/* reexport safe */ _Entitlements_helpers__WEBPACK_IMPORTED_MODULE_2__.getFeatureEntitlements),
|
|
15994
|
+
/* harmony export */ getMfaStepForEnrolledUsers: () => (/* reexport safe */ _LoginState_helpers__WEBPACK_IMPORTED_MODULE_3__.getMfaStepForEnrolledUsers),
|
|
15995
|
+
/* harmony export */ getMfaStepForNotEnrolledUsers: () => (/* reexport safe */ _LoginState_helpers__WEBPACK_IMPORTED_MODULE_3__.getMfaStepForNotEnrolledUsers),
|
|
15996
|
+
/* harmony export */ getNumberOfMfaDevices: () => (/* reexport safe */ _LoginState_helpers__WEBPACK_IMPORTED_MODULE_3__.getNumberOfMfaDevices),
|
|
15997
|
+
/* harmony export */ getPathAndSearchParamsFromUrl: () => (/* reexport safe */ _LoginState_helpers__WEBPACK_IMPORTED_MODULE_3__.getPathAndSearchParamsFromUrl),
|
|
15998
|
+
/* harmony export */ getPermissionEntitlements: () => (/* reexport safe */ _Entitlements_helpers__WEBPACK_IMPORTED_MODULE_2__.getPermissionEntitlements),
|
|
15999
|
+
/* harmony export */ getRedirectUrl: () => (/* reexport safe */ _LoginState_helpers__WEBPACK_IMPORTED_MODULE_3__.getRedirectUrl),
|
|
16000
|
+
/* harmony export */ getSearchParam: () => (/* reexport safe */ _LoginState_helpers__WEBPACK_IMPORTED_MODULE_3__.getSearchParam),
|
|
16001
|
+
/* harmony export */ getSearchParamsFromUrl: () => (/* reexport safe */ _LoginState_helpers__WEBPACK_IMPORTED_MODULE_3__.getSearchParamsFromUrl),
|
|
15959
16002
|
/* harmony export */ getUri: () => (/* binding */ getUri),
|
|
15960
|
-
/* harmony export */ isAbsoluteUrl: () => (/* reexport safe */
|
|
16003
|
+
/* harmony export */ isAbsoluteUrl: () => (/* reexport safe */ _LoginState_helpers__WEBPACK_IMPORTED_MODULE_3__.isAbsoluteUrl),
|
|
15961
16004
|
/* harmony export */ isAuthRoute: () => (/* binding */ isAuthRoute),
|
|
15962
|
-
/* harmony export */ isEmailPayload: () => (/* reexport safe */
|
|
15963
|
-
/* harmony export */ isEntitlementsDeeplyEqual: () => (/* reexport safe */
|
|
16005
|
+
/* harmony export */ isEmailPayload: () => (/* reexport safe */ _LoginState_helpers__WEBPACK_IMPORTED_MODULE_3__.isEmailPayload),
|
|
16006
|
+
/* harmony export */ isEntitlementsDeeplyEqual: () => (/* reexport safe */ _Entitlements_helpers__WEBPACK_IMPORTED_MODULE_2__.isEntitlementsDeeplyEqual),
|
|
15964
16007
|
/* harmony export */ isMfaRequired: () => (/* binding */ isMfaRequired),
|
|
15965
|
-
/* harmony export */ isOauthCallbackRoute: () => (/* reexport safe */
|
|
16008
|
+
/* harmony export */ isOauthCallbackRoute: () => (/* reexport safe */ _LoginState_helpers__WEBPACK_IMPORTED_MODULE_3__.isOauthCallbackRoute),
|
|
15966
16009
|
/* harmony export */ isResetPasswordRequired: () => (/* binding */ isResetPasswordRequired),
|
|
15967
|
-
/* harmony export */ isSteppedUp: () => (/* reexport safe */
|
|
16010
|
+
/* harmony export */ isSteppedUp: () => (/* reexport safe */ _StepUpState_helpers__WEBPACK_IMPORTED_MODULE_4__.isSteppedUp),
|
|
15968
16011
|
/* harmony export */ mapMetaDataObjectToActions: () => (/* binding */ mapMetaDataObjectToActions),
|
|
15969
|
-
/* harmony export */ redirectByStepUpUrl: () => (/* reexport safe */
|
|
15970
|
-
/* harmony export */ setAfterAuthRedirectUrlForStepUp: () => (/* reexport safe */
|
|
16012
|
+
/* harmony export */ redirectByStepUpUrl: () => (/* reexport safe */ _StepUpState_helpers__WEBPACK_IMPORTED_MODULE_4__.redirectByStepUpUrl),
|
|
16013
|
+
/* harmony export */ setAfterAuthRedirectUrlForStepUp: () => (/* reexport safe */ _StepUpState_helpers__WEBPACK_IMPORTED_MODULE_4__.setAfterAuthRedirectUrlForStepUp),
|
|
16014
|
+
/* harmony export */ shouldShowPasswordRotationPromptFunc: () => (/* reexport safe */ _LoginState_helpers__WEBPACK_IMPORTED_MODULE_3__.shouldShowPasswordRotationPromptFunc)
|
|
15971
16015
|
/* harmony export */ });
|
|
15972
16016
|
/* 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");
|
|
15973
16017
|
/* 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");
|
|
15974
16018
|
/* harmony import */ var _frontegg_rest_api__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @frontegg/rest-api */ "../../dist/@frontegg/rest-api/ContextHolder/index.js");
|
|
15975
16019
|
/* harmony import */ var _LoginState_consts__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./LoginState/consts */ "../../dist/@frontegg/redux-store/auth/LoginState/consts.js");
|
|
15976
|
-
/* harmony import */ var
|
|
15977
|
-
/* harmony import */ var
|
|
15978
|
-
/* harmony import */ var
|
|
16020
|
+
/* harmony import */ var _Entitlements_helpers__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./Entitlements/helpers */ "../../dist/@frontegg/redux-store/auth/Entitlements/helpers.js");
|
|
16021
|
+
/* harmony import */ var _LoginState_helpers__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./LoginState/helpers */ "../../dist/@frontegg/redux-store/auth/LoginState/helpers.js");
|
|
16022
|
+
/* harmony import */ var _StepUpState_helpers__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./StepUpState/helpers */ "../../dist/@frontegg/redux-store/auth/StepUpState/helpers.js");
|
|
15979
16023
|
|
|
15980
16024
|
|
|
15981
16025
|
const _excluded = ["phoneNumber"],
|
|
@@ -18183,6 +18227,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
18183
18227
|
/* harmony export */ retryIfNeeded: () => (/* reexport safe */ _helpers__WEBPACK_IMPORTED_MODULE_2__.retryIfNeeded),
|
|
18184
18228
|
/* harmony export */ setAfterAuthRedirectUrlForStepUp: () => (/* reexport safe */ _auth_helpers__WEBPACK_IMPORTED_MODULE_3__.setAfterAuthRedirectUrlForStepUp),
|
|
18185
18229
|
/* harmony export */ sha256: () => (/* reexport safe */ _helpers__WEBPACK_IMPORTED_MODULE_2__.sha256),
|
|
18230
|
+
/* harmony export */ shouldShowPasswordRotationPromptFunc: () => (/* reexport safe */ _auth_helpers__WEBPACK_IMPORTED_MODULE_3__.shouldShowPasswordRotationPromptFunc),
|
|
18186
18231
|
/* harmony export */ snapshot: () => (/* reexport safe */ _toolkit__WEBPACK_IMPORTED_MODULE_0__.snapshot),
|
|
18187
18232
|
/* harmony export */ subscribe: () => (/* reexport safe */ _toolkit__WEBPACK_IMPORTED_MODULE_0__.subscribe),
|
|
18188
18233
|
/* harmony export */ withRetryConfig: () => (/* reexport safe */ _helpers__WEBPACK_IMPORTED_MODULE_2__.withRetryConfig)
|
|
@@ -18196,7 +18241,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
18196
18241
|
/* harmony import */ var _subscriptions_interfaces__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./subscriptions/interfaces */ "../../dist/@frontegg/redux-store/subscriptions/interfaces.js");
|
|
18197
18242
|
/* harmony import */ var _vendor__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./vendor */ "../../dist/@frontegg/redux-store/vendor/index.js");
|
|
18198
18243
|
/* harmony import */ var _audits__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./audits */ "../../dist/@frontegg/redux-store/audits/index.js");
|
|
18199
|
-
/** @license Frontegg v7.
|
|
18244
|
+
/** @license Frontegg v7.60.0-alpha.0
|
|
18200
18245
|
*
|
|
18201
18246
|
* This source code is licensed under the MIT license found in the
|
|
18202
18247
|
* LICENSE file in the root directory of this source tree.
|
|
@@ -28304,7 +28349,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
28304
28349
|
/* harmony import */ var _security_center_interfaces__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./security-center/interfaces */ "../../dist/@frontegg/rest-api/security-center/interfaces.js");
|
|
28305
28350
|
/* harmony import */ var _applications_interfaces__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./applications/interfaces */ "../../dist/@frontegg/rest-api/applications/interfaces.js");
|
|
28306
28351
|
/* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./constants */ "../../dist/@frontegg/rest-api/constants.js");
|
|
28307
|
-
/** @license Frontegg v7.
|
|
28352
|
+
/** @license Frontegg v7.60.0-alpha.0
|
|
28308
28353
|
*
|
|
28309
28354
|
* This source code is licensed under the MIT license found in the
|
|
28310
28355
|
* LICENSE file in the root directory of this source tree.
|
|
@@ -30934,7 +30979,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
30934
30979
|
/* harmony export */ });
|
|
30935
30980
|
/* harmony import */ var _ThemeOptions__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./ThemeOptions */ "../../dist/@frontegg/types/ThemeOptions/index.js");
|
|
30936
30981
|
/* harmony import */ var _Metadata__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Metadata */ "../../dist/@frontegg/types/Metadata/index.js");
|
|
30937
|
-
/** @license Frontegg v7.
|
|
30982
|
+
/** @license Frontegg v7.60.0-alpha.0
|
|
30938
30983
|
*
|
|
30939
30984
|
* This source code is licensed under the MIT license found in the
|
|
30940
30985
|
* LICENSE file in the root directory of this source tree.
|