@frontegg/js 6.165.0-alpha.1 → 6.165.0-alpha.10
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/FronteggApp/FronteggApp.d.ts +1 -9
- package/FronteggApp/FronteggApp.js +1 -25
- package/index.js +1 -1
- package/node/FronteggApp/FronteggApp.js +0 -24
- package/node/index.js +1 -1
- package/node/version.js +1 -1
- package/package.json +2 -2
- package/umd/frontegg.development.js +34 -152
- package/umd/frontegg.production.min.js +1 -1
- package/version.js +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { EnhancedStore, EntitledToOptions, Entitlement
|
|
1
|
+
import { EnhancedStore, EntitledToOptions, Entitlement } from '@frontegg/redux-store';
|
|
2
2
|
import { FronteggAppOptions, FronteggCheckoutDialogOptions, LocalizationsOverrides, LoadEntitlementsCallback } from '@frontegg/types';
|
|
3
3
|
import { IFeatureFlagsAttributes } from '@frontegg/rest-api';
|
|
4
4
|
import { CustomAttributes } from '@frontegg/entitlements-javascript-commons';
|
|
@@ -10,12 +10,6 @@ declare type FronteggAppContainers = {
|
|
|
10
10
|
loginBoxContainer: HTMLElement;
|
|
11
11
|
checkoutDialogContainer: HTMLElement;
|
|
12
12
|
};
|
|
13
|
-
/**
|
|
14
|
-
* isSteppedUp options
|
|
15
|
-
*/
|
|
16
|
-
export interface IsSteppedUpOptions {
|
|
17
|
-
maxAge?: number;
|
|
18
|
-
}
|
|
19
13
|
export declare class FronteggApp {
|
|
20
14
|
readonly name: string;
|
|
21
15
|
readonly iframeRendering: boolean;
|
|
@@ -113,8 +107,6 @@ export declare class FronteggApp {
|
|
|
113
107
|
* @param callback called on request completed with true if succeeded, false if failed
|
|
114
108
|
*/
|
|
115
109
|
loadEntitlements(callback?: LoadEntitlementsCallback): void;
|
|
116
|
-
stepUp(options?: StepUpOptions): void;
|
|
117
|
-
isSteppedUp(options?: IsSteppedUpOptions): boolean;
|
|
118
110
|
close(): void;
|
|
119
111
|
}
|
|
120
112
|
export {};
|
|
@@ -4,7 +4,7 @@ import _asyncToGenerator from "@babel/runtime/helpers/esm/asyncToGenerator";
|
|
|
4
4
|
import _classCallCheck from "@babel/runtime/helpers/esm/classCallCheck";
|
|
5
5
|
import _createClass from "@babel/runtime/helpers/esm/createClass";
|
|
6
6
|
import _regeneratorRuntime from "@babel/runtime/regenerator";
|
|
7
|
-
import { createFronteggStore, getPermissionEntitlements as _getPermissionEntitlements, getFeatureEntitlements as _getFeatureEntitlements
|
|
7
|
+
import { createFronteggStore, getPermissionEntitlements as _getPermissionEntitlements, getFeatureEntitlements as _getFeatureEntitlements } from '@frontegg/redux-store';
|
|
8
8
|
import { Metadata } from '@frontegg/types';
|
|
9
9
|
import { formatName, restoreSearchParams } from '../utils';
|
|
10
10
|
import { AppHolder } from '../AppHolder';
|
|
@@ -549,30 +549,6 @@ export var FronteggApp = /*#__PURE__*/function () {
|
|
|
549
549
|
}
|
|
550
550
|
});
|
|
551
551
|
}
|
|
552
|
-
}, {
|
|
553
|
-
key: "stepUp",
|
|
554
|
-
value: function stepUp(options) {
|
|
555
|
-
var state = this.store.getState();
|
|
556
|
-
var _ref4 = (state == null ? void 0 : state.auth) || {},
|
|
557
|
-
hostedLoginBox = _ref4.hostedLoginBox,
|
|
558
|
-
stepUpUrl = _ref4.routes.stepUpUrl;
|
|
559
|
-
if (hostedLoginBox) {
|
|
560
|
-
this.store.dispatch({
|
|
561
|
-
type: 'auth/stepUpHostedLogin'
|
|
562
|
-
});
|
|
563
|
-
return;
|
|
564
|
-
}
|
|
565
|
-
redirectByStepUpUrl(stepUpUrl, state.auth.onRedirectTo, options == null ? void 0 : options.maxAge);
|
|
566
|
-
}
|
|
567
|
-
}, {
|
|
568
|
-
key: "isSteppedUp",
|
|
569
|
-
value: function isSteppedUp() {
|
|
570
|
-
var _this$store$getState;
|
|
571
|
-
var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
|
|
572
|
-
var _ref5 = ((_this$store$getState = this.store.getState()) == null ? void 0 : _this$store$getState.auth) || {},
|
|
573
|
-
user = _ref5.user;
|
|
574
|
-
return _isSteppedUp(user, options);
|
|
575
|
-
}
|
|
576
552
|
}, {
|
|
577
553
|
key: "close",
|
|
578
554
|
value: function close() {
|
package/index.js
CHANGED
|
@@ -556,30 +556,6 @@ var FronteggApp = /*#__PURE__*/function () {
|
|
|
556
556
|
}
|
|
557
557
|
});
|
|
558
558
|
}
|
|
559
|
-
}, {
|
|
560
|
-
key: "stepUp",
|
|
561
|
-
value: function stepUp(options) {
|
|
562
|
-
var state = this.store.getState();
|
|
563
|
-
var _ref4 = (state == null ? void 0 : state.auth) || {},
|
|
564
|
-
hostedLoginBox = _ref4.hostedLoginBox,
|
|
565
|
-
stepUpUrl = _ref4.routes.stepUpUrl;
|
|
566
|
-
if (hostedLoginBox) {
|
|
567
|
-
this.store.dispatch({
|
|
568
|
-
type: 'auth/stepUpHostedLogin'
|
|
569
|
-
});
|
|
570
|
-
return;
|
|
571
|
-
}
|
|
572
|
-
(0, _reduxStore.redirectByStepUpUrl)(stepUpUrl, state.auth.onRedirectTo, options == null ? void 0 : options.maxAge);
|
|
573
|
-
}
|
|
574
|
-
}, {
|
|
575
|
-
key: "isSteppedUp",
|
|
576
|
-
value: function isSteppedUp() {
|
|
577
|
-
var _this$store$getState;
|
|
578
|
-
var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
|
|
579
|
-
var _ref5 = ((_this$store$getState = this.store.getState()) == null ? void 0 : _this$store$getState.auth) || {},
|
|
580
|
-
user = _ref5.user;
|
|
581
|
-
return (0, _reduxStore.isSteppedUp)(user, options);
|
|
582
|
-
}
|
|
583
559
|
}, {
|
|
584
560
|
key: "close",
|
|
585
561
|
value: function close() {
|
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": "6.165.0-alpha.
|
|
3
|
+
"version": "6.165.0-alpha.10",
|
|
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": "6.165.0-alpha.
|
|
9
|
+
"@frontegg/types": "6.165.0-alpha.10"
|
|
10
10
|
},
|
|
11
11
|
"browserslist": {
|
|
12
12
|
"production": [
|
|
@@ -303,7 +303,6 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
303
303
|
/* harmony import */ var _babel_runtime_regenerator__WEBPACK_IMPORTED_MODULE_5___default = /*#__PURE__*/__webpack_require__.n(_babel_runtime_regenerator__WEBPACK_IMPORTED_MODULE_5__);
|
|
304
304
|
/* harmony import */ var _frontegg_redux_store__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! @frontegg/redux-store */ "../../dist/@frontegg/redux-store/toolkit/index.js");
|
|
305
305
|
/* harmony import */ var _frontegg_redux_store__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! @frontegg/redux-store */ "../../dist/@frontegg/redux-store/auth/Entitlements/utils.js");
|
|
306
|
-
/* harmony import */ var _frontegg_redux_store__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! @frontegg/redux-store */ "../../dist/@frontegg/redux-store/auth/StepUpState/utils.js");
|
|
307
306
|
/* harmony import */ var _frontegg_types__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! @frontegg/types */ "../../dist/@frontegg/types/Metadata/index.js");
|
|
308
307
|
/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../utils */ "../../dist/@frontegg/js/utils/index.js");
|
|
309
308
|
/* harmony import */ var _AppHolder__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../AppHolder */ "../../dist/@frontegg/js/AppHolder/index.js");
|
|
@@ -870,30 +869,6 @@ var FronteggApp = /*#__PURE__*/function () {
|
|
|
870
869
|
}
|
|
871
870
|
});
|
|
872
871
|
}
|
|
873
|
-
}, {
|
|
874
|
-
key: "stepUp",
|
|
875
|
-
value: function stepUp(options) {
|
|
876
|
-
var state = this.store.getState();
|
|
877
|
-
var _ref4 = (state == null ? void 0 : state.auth) || {},
|
|
878
|
-
hostedLoginBox = _ref4.hostedLoginBox,
|
|
879
|
-
stepUpUrl = _ref4.routes.stepUpUrl;
|
|
880
|
-
if (hostedLoginBox) {
|
|
881
|
-
this.store.dispatch({
|
|
882
|
-
type: 'auth/stepUpHostedLogin'
|
|
883
|
-
});
|
|
884
|
-
return;
|
|
885
|
-
}
|
|
886
|
-
(0,_frontegg_redux_store__WEBPACK_IMPORTED_MODULE_21__.redirectByStepUpUrl)(stepUpUrl, state.auth.onRedirectTo, options == null ? void 0 : options.maxAge);
|
|
887
|
-
}
|
|
888
|
-
}, {
|
|
889
|
-
key: "isSteppedUp",
|
|
890
|
-
value: function isSteppedUp() {
|
|
891
|
-
var _this$store$getState;
|
|
892
|
-
var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
|
|
893
|
-
var _ref5 = ((_this$store$getState = this.store.getState()) == null ? void 0 : _this$store$getState.auth) || {},
|
|
894
|
-
user = _ref5.user;
|
|
895
|
-
return (0,_frontegg_redux_store__WEBPACK_IMPORTED_MODULE_21__.isSteppedUp)(user, options);
|
|
896
|
-
}
|
|
897
872
|
}, {
|
|
898
873
|
key: "close",
|
|
899
874
|
value: function close() {
|
|
@@ -1442,7 +1417,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
1442
1417
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
1443
1418
|
/* harmony export */ });
|
|
1444
1419
|
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ({
|
|
1445
|
-
cdnVersion: '6.165.0-alpha.
|
|
1420
|
+
cdnVersion: '6.165.0-alpha.10'
|
|
1446
1421
|
});
|
|
1447
1422
|
|
|
1448
1423
|
/***/ }),
|
|
@@ -5868,8 +5843,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
5868
5843
|
/* harmony export */ "mfaWithAuthenticator": () => (/* reexport safe */ _sagas__WEBPACK_IMPORTED_MODULE_29__.mfaWithAuthenticator),
|
|
5869
5844
|
/* harmony export */ "refreshMetadata": () => (/* binding */ refreshMetadata),
|
|
5870
5845
|
/* harmony export */ "refreshToken": () => (/* binding */ refreshToken),
|
|
5871
|
-
/* harmony export */ "refreshTokenForSocialLogins": () => (/* binding */ refreshTokenForSocialLogins)
|
|
5872
|
-
/* harmony export */ "requestHostedLoginAuthorize": () => (/* binding */ requestHostedLoginAuthorize)
|
|
5846
|
+
/* harmony export */ "refreshTokenForSocialLogins": () => (/* binding */ refreshTokenForSocialLogins)
|
|
5873
5847
|
/* harmony export */ });
|
|
5874
5848
|
/* 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");
|
|
5875
5849
|
/* 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");
|
|
@@ -5884,20 +5858,20 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
5884
5858
|
/* harmony import */ var _interfaces__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ../interfaces */ "../../dist/@frontegg/redux-store/auth/interfaces.js");
|
|
5885
5859
|
/* harmony import */ var _interfaces__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./interfaces */ "../../dist/@frontegg/redux-store/auth/LoginState/interfaces.js");
|
|
5886
5860
|
/* harmony import */ var _sagas_mfaRequiredState_saga__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./sagas/mfaRequiredState.saga */ "../../dist/@frontegg/redux-store/auth/LoginState/sagas/mfaRequiredState.saga.js");
|
|
5887
|
-
/* harmony import */ var
|
|
5861
|
+
/* harmony import */ var _SignUp_saga__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ../SignUp/saga */ "../../dist/@frontegg/redux-store/auth/SignUp/saga.js");
|
|
5888
5862
|
/* harmony import */ var _MfaState_interfaces__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ../MfaState/interfaces */ "../../dist/@frontegg/redux-store/auth/MfaState/interfaces.js");
|
|
5889
5863
|
/* harmony import */ var _dummy__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ../dummy */ "../../dist/@frontegg/redux-store/auth/dummy.js");
|
|
5890
5864
|
/* harmony import */ var _SSOState_interfaces__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ../SSOState/interfaces */ "../../dist/@frontegg/redux-store/auth/SSOState/interfaces.js");
|
|
5891
|
-
/* harmony import */ var
|
|
5865
|
+
/* harmony import */ var _vendor_saga__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ../../vendor/saga */ "../../dist/@frontegg/redux-store/vendor/saga.js");
|
|
5892
5866
|
/* harmony import */ var _helpers__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ../../helpers */ "../../dist/@frontegg/redux-store/helpers.js");
|
|
5893
5867
|
/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ../utils */ "../../dist/@frontegg/redux-store/auth/utils.js");
|
|
5894
|
-
/* harmony import */ var
|
|
5868
|
+
/* harmony import */ var _Security_SecurityPolicyState_saga__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ../Security/SecurityPolicyState/saga */ "../../dist/@frontegg/redux-store/auth/Security/SecurityPolicyState/saga.js");
|
|
5895
5869
|
/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./utils */ "../../dist/@frontegg/redux-store/auth/LoginState/utils.js");
|
|
5896
5870
|
/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ../../utils */ "../../dist/@frontegg/redux-store/utils/errorHandler.js");
|
|
5897
5871
|
/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ../../utils */ "../../dist/@frontegg/redux-store/utils/gtm.js");
|
|
5898
5872
|
/* harmony import */ var _consts__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ./consts */ "../../dist/@frontegg/redux-store/auth/LoginState/consts.js");
|
|
5899
5873
|
/* harmony import */ var _Entitlements__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../Entitlements */ "../../dist/@frontegg/redux-store/auth/Entitlements/saga.js");
|
|
5900
|
-
/* harmony import */ var
|
|
5874
|
+
/* harmony import */ var _CustomLoginState_saga__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ../CustomLoginState/saga */ "../../dist/@frontegg/redux-store/auth/CustomLoginState/saga.js");
|
|
5901
5875
|
/* harmony import */ var _toolkit__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ../../toolkit */ "../../dist/@frontegg/redux-store/toolkit/FronteggNativeModule.js");
|
|
5902
5876
|
/* harmony import */ var _saga_utils__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./saga.utils */ "../../dist/@frontegg/redux-store/auth/LoginState/saga.utils.js");
|
|
5903
5877
|
/* harmony import */ var _sagas__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./sagas/afterAuthNavigation.saga */ "../../dist/@frontegg/redux-store/auth/LoginState/sagas/afterAuthNavigation.saga.js");
|
|
@@ -6256,30 +6230,29 @@ function* requestAuthorize({
|
|
|
6256
6230
|
payload: firstTime
|
|
6257
6231
|
}) {
|
|
6258
6232
|
const calls = [];
|
|
6259
|
-
const
|
|
6260
|
-
|
|
6261
|
-
/*
|
|
6262
|
-
// waiting for refreshToken to be loaded is only necessary for custom login
|
|
6263
|
-
// but doing this will degrade the loading performance in around 500 ms
|
|
6264
|
-
// so we will wait for the refreshToken only if there is tenantResolver
|
|
6265
|
-
*/
|
|
6266
|
-
yield (0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_2__.call)(refreshToken);
|
|
6267
|
-
} else {
|
|
6268
|
-
calls.push((0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_2__.call)(refreshToken));
|
|
6269
|
-
}
|
|
6233
|
+
const callsAfterRefresh = [];
|
|
6234
|
+
calls.push((0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_2__.call)(refreshToken));
|
|
6270
6235
|
if (firstTime) {
|
|
6271
6236
|
yield (0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_2__.put)(_reducer__WEBPACK_IMPORTED_MODULE_5__.actions.setState({
|
|
6272
6237
|
isLoading: true
|
|
6273
6238
|
}));
|
|
6274
6239
|
yield (0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_2__.put)(_reducer__WEBPACK_IMPORTED_MODULE_5__.actions.loadSocialLoginsConfigurationV2());
|
|
6275
|
-
calls.push((0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_2__.call)(
|
|
6276
|
-
calls.push((0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_2__.call)(
|
|
6240
|
+
calls.push((0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_2__.call)(_SignUp_saga__WEBPACK_IMPORTED_MODULE_12__.loadAllowSignUps));
|
|
6241
|
+
calls.push((0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_2__.call)(_Security_SecurityPolicyState_saga__WEBPACK_IMPORTED_MODULE_13__.loadPublicAuthStrategiesPolicy));
|
|
6277
6242
|
calls.push((0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_2__.call)(loadSSOPublicConfigurationFunction));
|
|
6278
|
-
calls.push((0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_2__.call)(
|
|
6243
|
+
calls.push((0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_2__.call)(_vendor_saga__WEBPACK_IMPORTED_MODULE_14__.loadVendorPublicInfo));
|
|
6279
6244
|
calls.push((0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_2__.call)(refreshMetadata));
|
|
6280
|
-
|
|
6245
|
+
/*
|
|
6246
|
+
We will load custom login routes only if custom login is enabled
|
|
6247
|
+
In order to check if custom login is enabled without the tenant alias (search-param/sub-domain)
|
|
6248
|
+
we have to wait for the user state (refreshToken request)
|
|
6249
|
+
*/
|
|
6250
|
+
callsAfterRefresh.push((0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_2__.call)(_CustomLoginState_saga__WEBPACK_IMPORTED_MODULE_15__.loadCustomLoginRoutes));
|
|
6281
6251
|
}
|
|
6282
6252
|
yield (0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_2__.all)(calls);
|
|
6253
|
+
if (callsAfterRefresh.length > 0) {
|
|
6254
|
+
yield (0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_2__.all)(callsAfterRefresh);
|
|
6255
|
+
}
|
|
6283
6256
|
yield (0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_2__.put)(_reducer__WEBPACK_IMPORTED_MODULE_5__.actions.setState({
|
|
6284
6257
|
isLoading: false
|
|
6285
6258
|
}));
|
|
@@ -6312,12 +6285,12 @@ function* requestAuthorizeSSR({
|
|
|
6312
6285
|
}) {
|
|
6313
6286
|
const calls = [];
|
|
6314
6287
|
yield (0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_2__.put)(_reducer__WEBPACK_IMPORTED_MODULE_5__.actions.loadSocialLoginsConfigurationV2());
|
|
6315
|
-
calls.push((0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_2__.call)(
|
|
6288
|
+
calls.push((0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_2__.call)(_SignUp_saga__WEBPACK_IMPORTED_MODULE_12__.loadAllowSignUps));
|
|
6316
6289
|
calls.push((0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_2__.call)(loadSSOPublicConfigurationFunction));
|
|
6317
|
-
calls.push((0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_2__.call)(
|
|
6290
|
+
calls.push((0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_2__.call)(_vendor_saga__WEBPACK_IMPORTED_MODULE_14__.loadVendorPublicInfo));
|
|
6318
6291
|
calls.push((0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_2__.call)(refreshMetadata));
|
|
6319
6292
|
calls.push((0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_2__.call)(isMFARequiredSSR, payload));
|
|
6320
|
-
calls.push((0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_2__.call)(
|
|
6293
|
+
calls.push((0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_2__.call)(_CustomLoginState_saga__WEBPACK_IMPORTED_MODULE_15__.loadCustomLoginRoutes));
|
|
6321
6294
|
yield (0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_2__.all)(calls);
|
|
6322
6295
|
}
|
|
6323
6296
|
const getUri = urlStrategy => {
|
|
@@ -6445,7 +6418,7 @@ function* requestHostedLoginAuthorize(additionalParams) {
|
|
|
6445
6418
|
// We are saving the verifier in session storage to be able to validate the response
|
|
6446
6419
|
localStorage.setItem(_constants__WEBPACK_IMPORTED_MODULE_17__.HOSTED_LOGIN_VERIFIER_KEY, code_verifier);
|
|
6447
6420
|
let redirectUrl = `${window.location.origin}${urlStrategy === 'path' ? '' : '#'}${routes.hostedLoginRedirectUrl}`;
|
|
6448
|
-
yield (0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_2__.call)(
|
|
6421
|
+
yield (0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_2__.call)(_CustomLoginState_saga__WEBPACK_IMPORTED_MODULE_15__.loadCustomLoginRoutes);
|
|
6449
6422
|
const customLoginSearchParam = yield (0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_2__.select)(state => {
|
|
6450
6423
|
var _state$auth$customLog;
|
|
6451
6424
|
return (_state$auth$customLog = state.auth.customLoginState) == null ? void 0 : _state$auth$customLog.customLoginSearchParams;
|
|
@@ -6498,7 +6471,7 @@ function* handleHostedLoginCallback({
|
|
|
6498
6471
|
urlStrategy: state.root.urlStrategy
|
|
6499
6472
|
}));
|
|
6500
6473
|
let redirectUrl = `${window.location.origin}${urlStrategy === 'path' ? '' : '#'}${routes.hostedLoginRedirectUrl}`;
|
|
6501
|
-
yield (0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_2__.call)(
|
|
6474
|
+
yield (0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_2__.call)(_CustomLoginState_saga__WEBPACK_IMPORTED_MODULE_15__.loadCustomLoginRoutes);
|
|
6502
6475
|
const customLoginSearchParam = yield (0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_2__.select)(state => {
|
|
6503
6476
|
var _state$auth$customLog2;
|
|
6504
6477
|
return (_state$auth$customLog2 = state.auth.customLoginState) == null ? void 0 : _state$auth$customLog2.customLoginSearchParams;
|
|
@@ -16322,8 +16295,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
16322
16295
|
/* harmony export */ "ACR_VALUE": () => (/* binding */ ACR_VALUE),
|
|
16323
16296
|
/* harmony export */ "AMR_ADDITIONAL_VALUE": () => (/* binding */ AMR_ADDITIONAL_VALUE),
|
|
16324
16297
|
/* harmony export */ "AMR_MFA_VALUE": () => (/* binding */ AMR_MFA_VALUE),
|
|
16325
|
-
/* harmony export */ "SHOULD_STEP_UP_KEY": () => (/* binding */ SHOULD_STEP_UP_KEY)
|
|
16326
|
-
/* harmony export */ "STEP_UP_MAX_AGE_PARAM_NAME": () => (/* binding */ STEP_UP_MAX_AGE_PARAM_NAME)
|
|
16298
|
+
/* harmony export */ "SHOULD_STEP_UP_KEY": () => (/* binding */ SHOULD_STEP_UP_KEY)
|
|
16327
16299
|
/* harmony export */ });
|
|
16328
16300
|
/**
|
|
16329
16301
|
* The required ACR (Authorization Context Reference) value for the step up flow
|
|
@@ -16346,11 +16318,6 @@ const AMR_ADDITIONAL_VALUE = ['otp', 'sms', 'hwk'];
|
|
|
16346
16318
|
*/
|
|
16347
16319
|
const SHOULD_STEP_UP_KEY = 'SHOULD_STEP_UP';
|
|
16348
16320
|
|
|
16349
|
-
/**
|
|
16350
|
-
* The name of the query param that contains the max age of the step up
|
|
16351
|
-
*/
|
|
16352
|
-
const STEP_UP_MAX_AGE_PARAM_NAME = 'maxAge';
|
|
16353
|
-
|
|
16354
16321
|
/***/ }),
|
|
16355
16322
|
|
|
16356
16323
|
/***/ "../../dist/@frontegg/redux-store/auth/StepUpState/generateStepUpSession.saga.js":
|
|
@@ -16488,10 +16455,7 @@ function* generateStepUpSession({
|
|
|
16488
16455
|
"use strict";
|
|
16489
16456
|
__webpack_require__.r(__webpack_exports__);
|
|
16490
16457
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
16491
|
-
/* harmony export */ "STEP_UP_MAX_AGE_PARAM_NAME": () => (/* reexport safe */ _consts__WEBPACK_IMPORTED_MODULE_4__.STEP_UP_MAX_AGE_PARAM_NAME),
|
|
16492
16458
|
/* harmony export */ "isSteppedUp": () => (/* reexport safe */ _utils__WEBPACK_IMPORTED_MODULE_3__.isSteppedUp),
|
|
16493
|
-
/* harmony export */ "redirectByStepUpUrl": () => (/* reexport safe */ _utils__WEBPACK_IMPORTED_MODULE_3__.redirectByStepUpUrl),
|
|
16494
|
-
/* harmony export */ "setAfterAuthRedirectUrlForStepUp": () => (/* reexport safe */ _utils__WEBPACK_IMPORTED_MODULE_3__.setAfterAuthRedirectUrlForStepUp),
|
|
16495
16459
|
/* harmony export */ "stepUpActions": () => (/* binding */ actions),
|
|
16496
16460
|
/* harmony export */ "stepUpReducers": () => (/* binding */ reducers),
|
|
16497
16461
|
/* harmony export */ "stepUpState": () => (/* binding */ stepUpState)
|
|
@@ -16500,7 +16464,6 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
16500
16464
|
/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils */ "../../dist/@frontegg/redux-store/auth/utils.js");
|
|
16501
16465
|
/* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../constants */ "../../dist/@frontegg/redux-store/constants.js");
|
|
16502
16466
|
/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./utils */ "../../dist/@frontegg/redux-store/auth/StepUpState/utils.js");
|
|
16503
|
-
/* harmony import */ var _consts__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./consts */ "../../dist/@frontegg/redux-store/auth/StepUpState/consts.js");
|
|
16504
16467
|
|
|
16505
16468
|
|
|
16506
16469
|
|
|
@@ -16516,9 +16479,6 @@ const reducers = {
|
|
|
16516
16479
|
})
|
|
16517
16480
|
};
|
|
16518
16481
|
const actions = {
|
|
16519
|
-
stepUpHostedLogin: (0,_reduxjs_toolkit__WEBPACK_IMPORTED_MODULE_1__.createAction)(`${_constants__WEBPACK_IMPORTED_MODULE_2__.authStoreName}/stepUpHostedLogin`, payload => ({
|
|
16520
|
-
payload
|
|
16521
|
-
})),
|
|
16522
16482
|
generateStepUpSession: (0,_reduxjs_toolkit__WEBPACK_IMPORTED_MODULE_1__.createAction)(`${_constants__WEBPACK_IMPORTED_MODULE_2__.authStoreName}/generateStepUpSession`, payload => ({
|
|
16523
16483
|
payload
|
|
16524
16484
|
})),
|
|
@@ -16559,7 +16519,6 @@ const Matcher = {};
|
|
|
16559
16519
|
|
|
16560
16520
|
|
|
16561
16521
|
|
|
16562
|
-
|
|
16563
16522
|
/***/ }),
|
|
16564
16523
|
|
|
16565
16524
|
/***/ "../../dist/@frontegg/redux-store/auth/StepUpState/saga.js":
|
|
@@ -16586,9 +16545,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
16586
16545
|
/* harmony import */ var _LoginState_sagas_mfaWithSMS_saga__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../LoginState/sagas/mfaWithSMS.saga */ "../../dist/@frontegg/redux-store/auth/LoginState/sagas/mfaWithSMS.saga.js");
|
|
16587
16546
|
/* harmony import */ var _LoginState_sagas_mfaWithWebAuthn_saga__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../LoginState/sagas/mfaWithWebAuthn.saga */ "../../dist/@frontegg/redux-store/auth/LoginState/sagas/mfaWithWebAuthn.saga.js");
|
|
16588
16547
|
/* harmony import */ var _LoginState_sagas_mfaWithEmailCode_saga__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../LoginState/sagas/mfaWithEmailCode.saga */ "../../dist/@frontegg/redux-store/auth/LoginState/sagas/mfaWithEmailCode.saga.js");
|
|
16589
|
-
/* harmony import */ var
|
|
16590
|
-
/* harmony import */ var _stepUpHostedLogin_saga__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./stepUpHostedLogin.saga */ "../../dist/@frontegg/redux-store/auth/StepUpState/stepUpHostedLogin.saga.js");
|
|
16591
|
-
|
|
16548
|
+
/* harmony import */ var _generateStepUpSession_saga__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./generateStepUpSession.saga */ "../../dist/@frontegg/redux-store/auth/StepUpState/generateStepUpSession.saga.js");
|
|
16592
16549
|
|
|
16593
16550
|
|
|
16594
16551
|
|
|
@@ -16684,8 +16641,7 @@ function* preVerifyMFAEmailCodeForStepUp({
|
|
|
16684
16641
|
yield (0,_LoginState_sagas_mfaWithEmailCode_saga__WEBPACK_IMPORTED_MODULE_5__.preVerifyMFAEmailCode)(payload, _reducer__WEBPACK_IMPORTED_MODULE_2__.actions.setStepUpState);
|
|
16685
16642
|
}
|
|
16686
16643
|
function* stepUpSagas() {
|
|
16687
|
-
yield (0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_0__.takeLeading)(_reducer__WEBPACK_IMPORTED_MODULE_2__.actions.
|
|
16688
|
-
yield (0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_0__.takeLeading)(_reducer__WEBPACK_IMPORTED_MODULE_2__.actions.generateStepUpSession, _generateStepUpSession_saga__WEBPACK_IMPORTED_MODULE_7__.generateStepUpSession);
|
|
16644
|
+
yield (0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_0__.takeLeading)(_reducer__WEBPACK_IMPORTED_MODULE_2__.actions.generateStepUpSession, _generateStepUpSession_saga__WEBPACK_IMPORTED_MODULE_6__.generateStepUpSession);
|
|
16689
16645
|
yield (0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_0__.takeLeading)(_reducer__WEBPACK_IMPORTED_MODULE_2__.actions.stepUpWithAuthenticator, stepUpWithAuthenticator);
|
|
16690
16646
|
yield (0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_0__.takeLeading)(_reducer__WEBPACK_IMPORTED_MODULE_2__.actions.preVerifyMFASMSForStepUp, preVerifyMFASMSForStepUp);
|
|
16691
16647
|
yield (0,redux_saga_effects__WEBPACK_IMPORTED_MODULE_0__.takeLeading)(_reducer__WEBPACK_IMPORTED_MODULE_2__.actions.verifyMFASMSForStepUp, verifyMFASMSForStepUp);
|
|
@@ -16697,47 +16653,6 @@ function* stepUpSagas() {
|
|
|
16697
16653
|
|
|
16698
16654
|
/***/ }),
|
|
16699
16655
|
|
|
16700
|
-
/***/ "../../dist/@frontegg/redux-store/auth/StepUpState/stepUpHostedLogin.saga.js":
|
|
16701
|
-
/*!***********************************************************************************!*\
|
|
16702
|
-
!*** ../../dist/@frontegg/redux-store/auth/StepUpState/stepUpHostedLogin.saga.js ***!
|
|
16703
|
-
\***********************************************************************************/
|
|
16704
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
16705
|
-
|
|
16706
|
-
"use strict";
|
|
16707
|
-
__webpack_require__.r(__webpack_exports__);
|
|
16708
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
16709
|
-
/* harmony export */ "stepUpHostedLogin": () => (/* binding */ stepUpHostedLogin)
|
|
16710
|
-
/* harmony export */ });
|
|
16711
|
-
/* harmony import */ var _LoginState_saga__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../LoginState/saga */ "../../dist/@frontegg/redux-store/auth/LoginState/saga.js");
|
|
16712
|
-
/* harmony import */ var _consts__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./consts */ "../../dist/@frontegg/redux-store/auth/StepUpState/consts.js");
|
|
16713
|
-
/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./utils */ "../../dist/@frontegg/redux-store/auth/StepUpState/utils.js");
|
|
16714
|
-
|
|
16715
|
-
|
|
16716
|
-
|
|
16717
|
-
|
|
16718
|
-
/**
|
|
16719
|
-
* Step up for hosted login apps
|
|
16720
|
-
* @param payload.maxAge
|
|
16721
|
-
* @param payload.callback
|
|
16722
|
-
*/
|
|
16723
|
-
function* stepUpHostedLogin({
|
|
16724
|
-
payload
|
|
16725
|
-
}) {
|
|
16726
|
-
const params = {
|
|
16727
|
-
acr_values: _consts__WEBPACK_IMPORTED_MODULE_0__.ACR_VALUE
|
|
16728
|
-
};
|
|
16729
|
-
const {
|
|
16730
|
-
maxAge
|
|
16731
|
-
} = payload || {};
|
|
16732
|
-
if (maxAge !== undefined) {
|
|
16733
|
-
params.max_age = maxAge.toString();
|
|
16734
|
-
}
|
|
16735
|
-
(0,_utils__WEBPACK_IMPORTED_MODULE_1__.setAfterAuthRedirectUrlForStepUp)();
|
|
16736
|
-
yield (0,_LoginState_saga__WEBPACK_IMPORTED_MODULE_2__.requestHostedLoginAuthorize)(params);
|
|
16737
|
-
}
|
|
16738
|
-
|
|
16739
|
-
/***/ }),
|
|
16740
|
-
|
|
16741
16656
|
/***/ "../../dist/@frontegg/redux-store/auth/StepUpState/utils.js":
|
|
16742
16657
|
/*!******************************************************************!*\
|
|
16743
16658
|
!*** ../../dist/@frontegg/redux-store/auth/StepUpState/utils.js ***!
|
|
@@ -16747,14 +16662,10 @@ function* stepUpHostedLogin({
|
|
|
16747
16662
|
"use strict";
|
|
16748
16663
|
__webpack_require__.r(__webpack_exports__);
|
|
16749
16664
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
16750
|
-
/* harmony export */ "isSteppedUp": () => (/* binding */ isSteppedUp)
|
|
16751
|
-
/* harmony export */ "redirectByStepUpUrl": () => (/* binding */ redirectByStepUpUrl),
|
|
16752
|
-
/* harmony export */ "setAfterAuthRedirectUrlForStepUp": () => (/* binding */ setAfterAuthRedirectUrlForStepUp)
|
|
16665
|
+
/* harmony export */ "isSteppedUp": () => (/* binding */ isSteppedUp)
|
|
16753
16666
|
/* harmony export */ });
|
|
16754
|
-
/* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../constants */ "../../dist/@frontegg/redux-store/constants.js");
|
|
16755
16667
|
/* harmony import */ var _consts__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./consts */ "../../dist/@frontegg/redux-store/auth/StepUpState/consts.js");
|
|
16756
16668
|
|
|
16757
|
-
|
|
16758
16669
|
/**
|
|
16759
16670
|
* @param options.amr
|
|
16760
16671
|
* @param options.acr
|
|
@@ -16762,15 +16673,12 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
16762
16673
|
* @param options.maxAge - max age of step up
|
|
16763
16674
|
* @returns true when the user is stepped up, false otherwise
|
|
16764
16675
|
*/
|
|
16765
|
-
const isSteppedUp = (
|
|
16676
|
+
const isSteppedUp = ({
|
|
16677
|
+
amr = [],
|
|
16678
|
+
acr = '',
|
|
16679
|
+
auth_time,
|
|
16766
16680
|
maxAge
|
|
16767
16681
|
} = {}) => {
|
|
16768
|
-
if (!user) return false;
|
|
16769
|
-
const {
|
|
16770
|
-
amr = [],
|
|
16771
|
-
acr = '',
|
|
16772
|
-
auth_time
|
|
16773
|
-
} = user;
|
|
16774
16682
|
if (maxAge && auth_time) {
|
|
16775
16683
|
// when user is logged in for a long time (more than maxAge, but jwt is still valid because it's not refreshed yet)
|
|
16776
16684
|
const isMaxAgeValid = Date.now() / 1000 - auth_time <= maxAge;
|
|
@@ -16782,29 +16690,6 @@ const isSteppedUp = (user, {
|
|
|
16782
16690
|
return isACRValid && isAMRIncludesMFA && isAMRIncludesMethod;
|
|
16783
16691
|
};
|
|
16784
16692
|
|
|
16785
|
-
/**
|
|
16786
|
-
* Set the url and query params in the local storage FRONTEGG_AFTER_AUTH_REDIRECT_URL value
|
|
16787
|
-
*/
|
|
16788
|
-
function setAfterAuthRedirectUrlForStepUp() {
|
|
16789
|
-
const encodedRedirectUrl = window.location.pathname + window.location.search;
|
|
16790
|
-
window.localStorage.setItem(_constants__WEBPACK_IMPORTED_MODULE_1__.FRONTEGG_AFTER_AUTH_REDIRECT_URL, encodedRedirectUrl);
|
|
16791
|
-
}
|
|
16792
|
-
|
|
16793
|
-
/**
|
|
16794
|
-
* Redirects to the step up url with the max age param and set the redirect url in the local storage
|
|
16795
|
-
* The redirect url will be used after the step up flow is done
|
|
16796
|
-
* @param stepUpUrl - step up url to redirect to
|
|
16797
|
-
* @param onRedirectTo - redirect to function
|
|
16798
|
-
* @param maxAge - max age of step up
|
|
16799
|
-
*/
|
|
16800
|
-
const redirectByStepUpUrl = (stepUpUrl, onRedirectTo, maxAge) => {
|
|
16801
|
-
setAfterAuthRedirectUrlForStepUp();
|
|
16802
|
-
const maxAgePart = maxAge !== undefined ? `?${_consts__WEBPACK_IMPORTED_MODULE_0__.STEP_UP_MAX_AGE_PARAM_NAME}=${maxAge}` : '';
|
|
16803
|
-
onRedirectTo(`${stepUpUrl}${maxAgePart}`, {
|
|
16804
|
-
refresh: false
|
|
16805
|
-
});
|
|
16806
|
-
};
|
|
16807
|
-
|
|
16808
16693
|
/***/ }),
|
|
16809
16694
|
|
|
16810
16695
|
/***/ "../../dist/@frontegg/redux-store/auth/TeamState/index.js":
|
|
@@ -19337,7 +19222,6 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
19337
19222
|
/* harmony export */ "QuickLoginStrategy": () => (/* reexport safe */ _LoginState_interfaces__WEBPACK_IMPORTED_MODULE_1__.QuickLoginStrategy),
|
|
19338
19223
|
/* harmony export */ "ResetPhoneNumberStep": () => (/* reexport safe */ _ResetPhoneNumberState_interfaces__WEBPACK_IMPORTED_MODULE_12__.ResetPhoneNumberStep),
|
|
19339
19224
|
/* harmony export */ "SSOStateKeys": () => (/* reexport safe */ _SSOState_interfaces__WEBPACK_IMPORTED_MODULE_14__.SSOStateKeys),
|
|
19340
|
-
/* harmony export */ "STEP_UP_MAX_AGE_PARAM_NAME": () => (/* reexport safe */ _StepUpState__WEBPACK_IMPORTED_MODULE_3__.STEP_UP_MAX_AGE_PARAM_NAME),
|
|
19341
19225
|
/* harmony export */ "SamlVendors": () => (/* reexport safe */ _SSOState_interfaces__WEBPACK_IMPORTED_MODULE_14__.SamlVendors),
|
|
19342
19226
|
/* harmony export */ "SecurityCenterStateKeys": () => (/* reexport safe */ _Security_SecurityCenterState_types__WEBPACK_IMPORTED_MODULE_41__.SecurityCenterStateKeys),
|
|
19343
19227
|
/* harmony export */ "SignUpStage": () => (/* reexport safe */ _SignUp_interfaces__WEBPACK_IMPORTED_MODULE_25__.SignUpStage),
|
|
@@ -19410,7 +19294,6 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
19410
19294
|
/* harmony export */ "provisioningActions": () => (/* reexport safe */ _Provisioning__WEBPACK_IMPORTED_MODULE_36__.provisioningActions),
|
|
19411
19295
|
/* harmony export */ "provisioningReducers": () => (/* reexport safe */ _Provisioning__WEBPACK_IMPORTED_MODULE_36__.provisioningReducers),
|
|
19412
19296
|
/* harmony export */ "provisioningState": () => (/* reexport safe */ _Provisioning__WEBPACK_IMPORTED_MODULE_36__.provisioningState),
|
|
19413
|
-
/* harmony export */ "redirectByStepUpUrl": () => (/* reexport safe */ _StepUpState__WEBPACK_IMPORTED_MODULE_3__.redirectByStepUpUrl),
|
|
19414
19297
|
/* harmony export */ "resetPhoneNumberActions": () => (/* reexport safe */ _ResetPhoneNumberState__WEBPACK_IMPORTED_MODULE_13__.resetPhoneNumberActions),
|
|
19415
19298
|
/* harmony export */ "resetPhoneNumberReducers": () => (/* reexport safe */ _ResetPhoneNumberState__WEBPACK_IMPORTED_MODULE_13__.resetPhoneNumberReducers),
|
|
19416
19299
|
/* harmony export */ "resetPhoneNumberState": () => (/* reexport safe */ _ResetPhoneNumberState__WEBPACK_IMPORTED_MODULE_13__.resetPhoneNumberState),
|
|
@@ -19432,7 +19315,6 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
19432
19315
|
/* harmony export */ "sessionsPolicyState": () => (/* reexport safe */ _Security_SessionsPolicyState__WEBPACK_IMPORTED_MODULE_34__.sessionsPolicyState),
|
|
19433
19316
|
/* harmony export */ "sessionsReducers": () => (/* reexport safe */ _SessionsState__WEBPACK_IMPORTED_MODULE_33__.sessionsReducers),
|
|
19434
19317
|
/* harmony export */ "sessionsState": () => (/* reexport safe */ _SessionsState__WEBPACK_IMPORTED_MODULE_33__.sessionsState),
|
|
19435
|
-
/* harmony export */ "setAfterAuthRedirectUrlForStepUp": () => (/* reexport safe */ _StepUpState__WEBPACK_IMPORTED_MODULE_3__.setAfterAuthRedirectUrlForStepUp),
|
|
19436
19318
|
/* harmony export */ "signUpActions": () => (/* reexport safe */ _SignUp__WEBPACK_IMPORTED_MODULE_26__.signUpActions),
|
|
19437
19319
|
/* harmony export */ "signUpReducers": () => (/* reexport safe */ _SignUp__WEBPACK_IMPORTED_MODULE_26__.signUpReducers),
|
|
19438
19320
|
/* harmony export */ "signUpState": () => (/* reexport safe */ _SignUp__WEBPACK_IMPORTED_MODULE_26__.signUpState),
|
|
@@ -24686,7 +24568,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
24686
24568
|
/* harmony export */ });
|
|
24687
24569
|
/* harmony import */ var _ThemeOptions__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./ThemeOptions */ "../../dist/@frontegg/types/ThemeOptions/index.js");
|
|
24688
24570
|
/* harmony import */ var _Metadata__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Metadata */ "../../dist/@frontegg/types/Metadata/index.js");
|
|
24689
|
-
/** @license Frontegg v6.165.0-alpha.
|
|
24571
|
+
/** @license Frontegg v6.165.0-alpha.10
|
|
24690
24572
|
*
|
|
24691
24573
|
* This source code is licensed under the MIT license found in the
|
|
24692
24574
|
* LICENSE file in the root directory of this source tree.
|