@frontegg/js 7.38.0 → 7.39.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 +50 -23
- 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.39.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.39.0-alpha.0"
|
|
10
10
|
},
|
|
11
11
|
"browserslist": {
|
|
12
12
|
"production": [
|
|
@@ -1619,7 +1619,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
1619
1619
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
1620
1620
|
/* harmony export */ });
|
|
1621
1621
|
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ({
|
|
1622
|
-
cdnVersion: '7.
|
|
1622
|
+
cdnVersion: '7.39.0-alpha.0'
|
|
1623
1623
|
});
|
|
1624
1624
|
|
|
1625
1625
|
/***/ }),
|
|
@@ -17218,8 +17218,11 @@ function reportGTMEvent(action, payload) {
|
|
|
17218
17218
|
__webpack_require__.r(__webpack_exports__);
|
|
17219
17219
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
17220
17220
|
/* harmony export */ errorHandler: () => (/* binding */ errorHandler),
|
|
17221
|
-
/* harmony export */ isError: () => (/* binding */ isError)
|
|
17221
|
+
/* harmony export */ isError: () => (/* binding */ isError),
|
|
17222
|
+
/* harmony export */ isFronteggApiError: () => (/* binding */ isFronteggApiError)
|
|
17222
17223
|
/* harmony export */ });
|
|
17224
|
+
/* harmony import */ var _frontegg_rest_api__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @frontegg/rest-api */ "../../dist/@frontegg/rest-api/error.js");
|
|
17225
|
+
|
|
17223
17226
|
const isFronteggApiError = error => Boolean(error == null ? void 0 : error.statusCode);
|
|
17224
17227
|
const isError = error => {
|
|
17225
17228
|
if (error instanceof Error) {
|
|
@@ -17235,14 +17238,14 @@ const errorHandler = (error, fallback) => {
|
|
|
17235
17238
|
return fallback;
|
|
17236
17239
|
}
|
|
17237
17240
|
if (isFronteggApiError(error)) {
|
|
17238
|
-
return error
|
|
17241
|
+
return error;
|
|
17239
17242
|
}
|
|
17240
17243
|
if (isError(error)) {
|
|
17241
17244
|
console.error(error.message);
|
|
17242
17245
|
} else if (typeof error === 'string') {
|
|
17243
17246
|
console.error(error);
|
|
17244
17247
|
}
|
|
17245
|
-
return fallback != null ? fallback : GENERIC_ERROR_MESSAGE;
|
|
17248
|
+
return fallback != null ? fallback : new _frontegg_rest_api__WEBPACK_IMPORTED_MODULE_0__.FronteggApiError(GENERIC_ERROR_MESSAGE, 500, null);
|
|
17246
17249
|
};
|
|
17247
17250
|
|
|
17248
17251
|
/***/ }),
|
|
@@ -17271,6 +17274,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
17271
17274
|
/* harmony export */ generateCodeChallengePureJs: () => (/* reexport safe */ _random__WEBPACK_IMPORTED_MODULE_4__.generateCodeChallengePureJs),
|
|
17272
17275
|
/* harmony export */ hmac: () => (/* reexport safe */ _sha256__WEBPACK_IMPORTED_MODULE_6__.hmac),
|
|
17273
17276
|
/* harmony export */ isError: () => (/* reexport safe */ _handlers__WEBPACK_IMPORTED_MODULE_1__.isError),
|
|
17277
|
+
/* harmony export */ isFronteggApiError: () => (/* reexport safe */ _handlers__WEBPACK_IMPORTED_MODULE_1__.isFronteggApiError),
|
|
17274
17278
|
/* harmony export */ isProxy: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_0__.isProxy),
|
|
17275
17279
|
/* harmony export */ omitProps: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_0__.omitProps),
|
|
17276
17280
|
/* harmony export */ publicKeyCredentialToJSON: () => (/* reexport safe */ _converters__WEBPACK_IMPORTED_MODULE_2__.publicKeyCredentialToJSON),
|
|
@@ -17880,6 +17884,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
17880
17884
|
/* harmony export */ isEmailPayload: () => (/* reexport safe */ _auth_helpers__WEBPACK_IMPORTED_MODULE_3__.isEmailPayload),
|
|
17881
17885
|
/* harmony export */ isEntitlementsDeeplyEqual: () => (/* reexport safe */ _toolkit__WEBPACK_IMPORTED_MODULE_0__.isEntitlementsDeeplyEqual),
|
|
17882
17886
|
/* harmony export */ isError: () => (/* reexport safe */ _helpers__WEBPACK_IMPORTED_MODULE_2__.isError),
|
|
17887
|
+
/* harmony export */ isFronteggApiError: () => (/* reexport safe */ _helpers__WEBPACK_IMPORTED_MODULE_2__.isFronteggApiError),
|
|
17883
17888
|
/* harmony export */ isMfaRequired: () => (/* reexport safe */ _auth_helpers__WEBPACK_IMPORTED_MODULE_3__.isMfaRequired),
|
|
17884
17889
|
/* harmony export */ isOauthCallbackRoute: () => (/* reexport safe */ _auth_helpers__WEBPACK_IMPORTED_MODULE_3__.isOauthCallbackRoute),
|
|
17885
17890
|
/* harmony export */ isProxy: () => (/* reexport safe */ _helpers__WEBPACK_IMPORTED_MODULE_2__.isProxy),
|
|
@@ -17907,7 +17912,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
17907
17912
|
/* harmony import */ var _subscriptions_interfaces__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./subscriptions/interfaces */ "../../dist/@frontegg/redux-store/subscriptions/interfaces.js");
|
|
17908
17913
|
/* harmony import */ var _vendor__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./vendor */ "../../dist/@frontegg/redux-store/vendor/index.js");
|
|
17909
17914
|
/* harmony import */ var _audits__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./audits */ "../../dist/@frontegg/redux-store/audits/index.js");
|
|
17910
|
-
/** @license Frontegg v7.
|
|
17915
|
+
/** @license Frontegg v7.39.0-alpha.0
|
|
17911
17916
|
*
|
|
17912
17917
|
* This source code is licensed under the MIT license found in the
|
|
17913
17918
|
* LICENSE file in the root directory of this source tree.
|
|
@@ -22780,6 +22785,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
22780
22785
|
/* harmony import */ var _state__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./state */ "../../dist/@frontegg/redux-store/subscriptions/Billing/Information/state.js");
|
|
22781
22786
|
/* harmony import */ var _helpers__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../../helpers */ "../../dist/@frontegg/redux-store/helpers/common.js");
|
|
22782
22787
|
/* harmony import */ var _helpers__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../../../helpers */ "../../dist/@frontegg/redux-store/helpers/handlers.js");
|
|
22788
|
+
/* harmony import */ var _frontegg_rest_api__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @frontegg/rest-api */ "../../dist/@frontegg/rest-api/error.js");
|
|
22783
22789
|
/* harmony import */ var _interfaces__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../interfaces */ "../../dist/@frontegg/redux-store/subscriptions/interfaces.js");
|
|
22784
22790
|
/* harmony import */ var _helpers__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../../helpers */ "../../dist/@frontegg/redux-store/subscriptions/helpers.js");
|
|
22785
22791
|
|
|
@@ -22787,6 +22793,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
22787
22793
|
|
|
22788
22794
|
|
|
22789
22795
|
|
|
22796
|
+
|
|
22790
22797
|
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ((store, api, sharedActions) => {
|
|
22791
22798
|
const actions = sharedActions;
|
|
22792
22799
|
const setBillingInformationState = state => {
|
|
@@ -22858,7 +22865,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
22858
22865
|
const paymentProvider = (_store$subscriptions$ = store.subscriptions.config.config) == null ? void 0 : _store$subscriptions$.paymentProvider;
|
|
22859
22866
|
const tenantId = (_store$auth$user = store.auth.user) == null ? void 0 : _store$auth$user.tenantId;
|
|
22860
22867
|
if (!paymentProvider || !tenantId) {
|
|
22861
|
-
setInformationError(!paymentProvider ? 'Internal feature failure' : 'Not authorized');
|
|
22868
|
+
setInformationError(new _frontegg_rest_api__WEBPACK_IMPORTED_MODULE_6__.FronteggApiError(!paymentProvider ? 'Internal feature failure' : 'Not authorized', 500, null));
|
|
22862
22869
|
return;
|
|
22863
22870
|
}
|
|
22864
22871
|
await loadSummaries(tenantId, forceActive);
|
|
@@ -23172,7 +23179,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
23172
23179
|
/* harmony import */ var _state__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./state */ "../../dist/@frontegg/redux-store/subscriptions/Billing/Subscription/state.js");
|
|
23173
23180
|
/* harmony import */ var _helpers__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../../helpers */ "../../dist/@frontegg/redux-store/helpers/common.js");
|
|
23174
23181
|
/* harmony import */ var _helpers__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../../helpers */ "../../dist/@frontegg/redux-store/helpers/handlers.js");
|
|
23175
|
-
/* harmony import */ var _frontegg_rest_api__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @frontegg/rest-api */ "../../dist/@frontegg/rest-api/
|
|
23182
|
+
/* harmony import */ var _frontegg_rest_api__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @frontegg/rest-api */ "../../dist/@frontegg/rest-api/error.js");
|
|
23183
|
+
/* harmony import */ var _frontegg_rest_api__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @frontegg/rest-api */ "../../dist/@frontegg/rest-api/subscriptions/enums.js");
|
|
23176
23184
|
|
|
23177
23185
|
|
|
23178
23186
|
|
|
@@ -23234,7 +23242,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
23234
23242
|
var _store$auth$user;
|
|
23235
23243
|
const tenantId = (_store$auth$user = store.auth.user) == null ? void 0 : _store$auth$user.tenantId;
|
|
23236
23244
|
if (!tenantId) {
|
|
23237
|
-
__setError('TenantId is not defined');
|
|
23245
|
+
__setError(new _frontegg_rest_api__WEBPACK_IMPORTED_MODULE_3__.FronteggApiError('TenantId is not defined', 500, null));
|
|
23238
23246
|
return;
|
|
23239
23247
|
}
|
|
23240
23248
|
await actions.loadSummaries(tenantId);
|
|
@@ -23244,11 +23252,11 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
23244
23252
|
subscription
|
|
23245
23253
|
} = store.subscriptions.billing.subscription;
|
|
23246
23254
|
if (!subscription) {
|
|
23247
|
-
setCancellationError('Subscription not found
|
|
23255
|
+
setCancellationError(new _frontegg_rest_api__WEBPACK_IMPORTED_MODULE_3__.FronteggApiError('Subscription not found', 500, null));
|
|
23248
23256
|
return;
|
|
23249
23257
|
}
|
|
23250
23258
|
if (subscription != null && subscription.externallyManaged) {
|
|
23251
|
-
setCancellationError('Billing is externally managed
|
|
23259
|
+
setCancellationError(new _frontegg_rest_api__WEBPACK_IMPORTED_MODULE_3__.FronteggApiError('Billing is externally managed', 500, null));
|
|
23252
23260
|
return;
|
|
23253
23261
|
}
|
|
23254
23262
|
const {
|
|
@@ -23256,7 +23264,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
23256
23264
|
cancellation,
|
|
23257
23265
|
status
|
|
23258
23266
|
} = subscription || {};
|
|
23259
|
-
const isCancellable = !cancellation && status ===
|
|
23267
|
+
const isCancellable = !cancellation && status === _frontegg_rest_api__WEBPACK_IMPORTED_MODULE_4__.ISubscriptionStatus.ACTIVE;
|
|
23260
23268
|
if (isCancellable) {
|
|
23261
23269
|
try {
|
|
23262
23270
|
setCancellationLoading(true);
|
|
@@ -23273,18 +23281,18 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
23273
23281
|
subscription
|
|
23274
23282
|
} = store.subscriptions.billing.subscription;
|
|
23275
23283
|
if (!subscription) {
|
|
23276
|
-
setRenewalError('Subscription not found
|
|
23284
|
+
setRenewalError(new _frontegg_rest_api__WEBPACK_IMPORTED_MODULE_3__.FronteggApiError('Subscription not found', 500, null));
|
|
23277
23285
|
return;
|
|
23278
23286
|
}
|
|
23279
23287
|
if (subscription != null && subscription.externallyManaged) {
|
|
23280
|
-
setRenewalError('Billing is externally managed');
|
|
23288
|
+
setRenewalError(new _frontegg_rest_api__WEBPACK_IMPORTED_MODULE_3__.FronteggApiError('Billing is externally managed', 500, null));
|
|
23281
23289
|
return;
|
|
23282
23290
|
}
|
|
23283
23291
|
const {
|
|
23284
23292
|
id: subscriptionId,
|
|
23285
23293
|
cancellation
|
|
23286
23294
|
} = subscription || {};
|
|
23287
|
-
const renewable = (cancellation == null ? void 0 : cancellation.policy) ===
|
|
23295
|
+
const renewable = (cancellation == null ? void 0 : cancellation.policy) === _frontegg_rest_api__WEBPACK_IMPORTED_MODULE_4__.ISubscriptionCancellationPolicy.AT_PERIOD_END;
|
|
23288
23296
|
if (renewable) {
|
|
23289
23297
|
try {
|
|
23290
23298
|
setRenewalLoading(true);
|
|
@@ -23429,9 +23437,10 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
23429
23437
|
/* harmony export */ });
|
|
23430
23438
|
/* 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");
|
|
23431
23439
|
/* harmony import */ var _helpers__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../helpers */ "../../dist/@frontegg/redux-store/helpers/common.js");
|
|
23432
|
-
/* harmony import */ var
|
|
23440
|
+
/* harmony import */ var _helpers__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../../helpers */ "../../dist/@frontegg/redux-store/helpers/handlers.js");
|
|
23433
23441
|
/* harmony import */ var _state__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./state */ "../../dist/@frontegg/redux-store/subscriptions/Checkout/state.js");
|
|
23434
23442
|
/* harmony import */ var _frontegg_rest_api__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @frontegg/rest-api */ "../../dist/@frontegg/rest-api/subscriptions/enums.js");
|
|
23443
|
+
/* harmony import */ var _frontegg_rest_api__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @frontegg/rest-api */ "../../dist/@frontegg/rest-api/error.js");
|
|
23435
23444
|
|
|
23436
23445
|
|
|
23437
23446
|
|
|
@@ -23477,7 +23486,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
23477
23486
|
if (!subscription) {
|
|
23478
23487
|
setCheckoutState({
|
|
23479
23488
|
loading: false,
|
|
23480
|
-
error: 'Subscription not found'
|
|
23489
|
+
error: new _frontegg_rest_api__WEBPACK_IMPORTED_MODULE_4__.FronteggApiError('Subscription not found', 500, null)
|
|
23481
23490
|
});
|
|
23482
23491
|
return;
|
|
23483
23492
|
}
|
|
@@ -23512,7 +23521,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
23512
23521
|
} catch (e) {
|
|
23513
23522
|
setCheckoutState({
|
|
23514
23523
|
loading: false,
|
|
23515
|
-
error: (0,
|
|
23524
|
+
error: (0,_helpers__WEBPACK_IMPORTED_MODULE_5__.errorHandler)(e)
|
|
23516
23525
|
});
|
|
23517
23526
|
}
|
|
23518
23527
|
};
|
|
@@ -25474,11 +25483,13 @@ class FetchClient {
|
|
|
25474
25483
|
return new Promise(() => {});
|
|
25475
25484
|
}
|
|
25476
25485
|
if (!response.ok) {
|
|
25477
|
-
var _context$logLevel, _context$logLevel2;
|
|
25486
|
+
var _errorMessage, _errorMessage2, _context$logLevel, _context$logLevel2;
|
|
25478
25487
|
if (response.status === 413) {
|
|
25479
|
-
throw new _error__WEBPACK_IMPORTED_MODULE_4__.FronteggApiError('Error request is too large', response.status, this.getResponseTraceId(response));
|
|
25488
|
+
throw new _error__WEBPACK_IMPORTED_MODULE_4__.FronteggApiError('Error request is too large', response.status, this.getResponseTraceId(response), undefined);
|
|
25480
25489
|
}
|
|
25481
25490
|
let errorMessage;
|
|
25491
|
+
let errorCode;
|
|
25492
|
+
let errorContext;
|
|
25482
25493
|
let isJsonResponse = true;
|
|
25483
25494
|
try {
|
|
25484
25495
|
errorMessage = await response.text();
|
|
@@ -25486,13 +25497,19 @@ class FetchClient {
|
|
|
25486
25497
|
} catch (e) {
|
|
25487
25498
|
isJsonResponse = false;
|
|
25488
25499
|
}
|
|
25500
|
+
if ((_errorMessage = errorMessage) != null && _errorMessage.errorCode) {
|
|
25501
|
+
errorCode = errorMessage.errorCode;
|
|
25502
|
+
}
|
|
25503
|
+
if ((_errorMessage2 = errorMessage) != null && _errorMessage2.errorContext && typeof errorMessage.errorContext === 'object') {
|
|
25504
|
+
errorContext = errorMessage.errorContext;
|
|
25505
|
+
}
|
|
25489
25506
|
if (errorMessage.errors) {
|
|
25490
25507
|
errorMessage = errorMessage.errors.join(', ');
|
|
25491
25508
|
} else if (typeof errorMessage !== 'string') {
|
|
25492
25509
|
errorMessage = `Error ${response.status} - ${response.statusText}`;
|
|
25493
25510
|
}
|
|
25494
25511
|
if (response.status >= 400 && response.status < 500 && ['warn'].includes((_context$logLevel = context.logLevel) != null ? _context$logLevel : '')) console.warn(errorMessage);else if (response.status === 500 && ['warn', 'error'].includes((_context$logLevel2 = context.logLevel) != null ? _context$logLevel2 : '')) console.error(errorMessage);
|
|
25495
|
-
throw new _error__WEBPACK_IMPORTED_MODULE_4__.FronteggApiError(isJsonResponse ? errorMessage : _constants__WEBPACK_IMPORTED_MODULE_3__.GENERIC_ERROR_MESSAGE, response.status, this.getResponseTraceId(response));
|
|
25512
|
+
throw new _error__WEBPACK_IMPORTED_MODULE_4__.FronteggApiError(isJsonResponse ? errorMessage : _constants__WEBPACK_IMPORTED_MODULE_3__.GENERIC_ERROR_MESSAGE, response.status, this.getResponseTraceId(response), errorCode, errorContext);
|
|
25496
25513
|
}
|
|
25497
25514
|
if (opts.responseType === 'stream') {
|
|
25498
25515
|
return response.body;
|
|
@@ -27502,12 +27519,16 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
27502
27519
|
/* harmony export */ FronteggApiError: () => (/* binding */ FronteggApiError)
|
|
27503
27520
|
/* harmony export */ });
|
|
27504
27521
|
class FronteggApiError extends Error {
|
|
27505
|
-
constructor(message, statusCode, traceId) {
|
|
27522
|
+
constructor(message, statusCode, traceId, errorCode, errorContext) {
|
|
27506
27523
|
super(message);
|
|
27507
27524
|
this._statusCode = void 0;
|
|
27508
27525
|
this._traceId = void 0;
|
|
27526
|
+
this._errorCode = void 0;
|
|
27527
|
+
this._errorContext = void 0;
|
|
27509
27528
|
this._statusCode = statusCode;
|
|
27510
27529
|
this._traceId = traceId;
|
|
27530
|
+
this._errorCode = errorCode;
|
|
27531
|
+
this._errorContext = errorContext;
|
|
27511
27532
|
}
|
|
27512
27533
|
get statusCode() {
|
|
27513
27534
|
return this._statusCode;
|
|
@@ -27515,6 +27536,12 @@ class FronteggApiError extends Error {
|
|
|
27515
27536
|
get traceId() {
|
|
27516
27537
|
return this._traceId;
|
|
27517
27538
|
}
|
|
27539
|
+
get errorCode() {
|
|
27540
|
+
return this._errorCode;
|
|
27541
|
+
}
|
|
27542
|
+
get errorContext() {
|
|
27543
|
+
return this._errorContext;
|
|
27544
|
+
}
|
|
27518
27545
|
}
|
|
27519
27546
|
|
|
27520
27547
|
/***/ }),
|
|
@@ -27840,7 +27867,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
27840
27867
|
/* harmony import */ var _entitlements_interfaces__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./entitlements/interfaces */ "../../dist/@frontegg/rest-api/entitlements/interfaces.js");
|
|
27841
27868
|
/* harmony import */ var _security_center_interfaces__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./security-center/interfaces */ "../../dist/@frontegg/rest-api/security-center/interfaces.js");
|
|
27842
27869
|
/* harmony import */ var _applications_interfaces__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./applications/interfaces */ "../../dist/@frontegg/rest-api/applications/interfaces.js");
|
|
27843
|
-
/** @license Frontegg v7.
|
|
27870
|
+
/** @license Frontegg v7.39.0-alpha.0
|
|
27844
27871
|
*
|
|
27845
27872
|
* This source code is licensed under the MIT license found in the
|
|
27846
27873
|
* LICENSE file in the root directory of this source tree.
|
|
@@ -30470,7 +30497,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
30470
30497
|
/* harmony export */ });
|
|
30471
30498
|
/* harmony import */ var _ThemeOptions__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./ThemeOptions */ "../../dist/@frontegg/types/ThemeOptions/index.js");
|
|
30472
30499
|
/* harmony import */ var _Metadata__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Metadata */ "../../dist/@frontegg/types/Metadata/index.js");
|
|
30473
|
-
/** @license Frontegg v7.
|
|
30500
|
+
/** @license Frontegg v7.39.0-alpha.0
|
|
30474
30501
|
*
|
|
30475
30502
|
* This source code is licensed under the MIT license found in the
|
|
30476
30503
|
* LICENSE file in the root directory of this source tree.
|