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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license Frontegg v7.78.0-alpha.1
1
+ /** @license Frontegg v7.78.0-alpha.2
2
2
  *
3
3
  * This source code is licensed under the MIT license found in the
4
4
  * LICENSE file in the root directory of this source tree.
package/node/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license Frontegg v7.78.0-alpha.1
1
+ /** @license Frontegg v7.78.0-alpha.2
2
2
  *
3
3
  * This source code is licensed under the MIT license found in the
4
4
  * LICENSE file in the root directory of this source tree.
package/node/version.js CHANGED
@@ -5,6 +5,6 @@ Object.defineProperty(exports, "__esModule", {
5
5
  });
6
6
  exports["default"] = void 0;
7
7
  var _default = {
8
- cdnVersion: '7.78.0-alpha.1'
8
+ cdnVersion: '7.78.0-alpha.2'
9
9
  };
10
10
  exports["default"] = _default;
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@frontegg/js",
3
- "version": "7.78.0-alpha.1",
3
+ "version": "7.78.0-alpha.2",
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.78.0-alpha.1"
9
+ "@frontegg/types": "7.78.0-alpha.2"
10
10
  },
11
11
  "browserslist": {
12
12
  "production": [
@@ -1807,7 +1807,7 @@ __webpack_require__.r(__webpack_exports__);
1807
1807
  /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
1808
1808
  /* harmony export */ });
1809
1809
  /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ({
1810
- cdnVersion: '7.78.0-alpha.1'
1810
+ cdnVersion: '7.78.0-alpha.2'
1811
1811
  });
1812
1812
 
1813
1813
  /***/ }),
@@ -19070,7 +19070,7 @@ __webpack_require__.r(__webpack_exports__);
19070
19070
  /* harmony import */ var _subscriptions_interfaces__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./subscriptions/interfaces */ "../../dist/@frontegg/redux-store/subscriptions/interfaces.js");
19071
19071
  /* harmony import */ var _vendor__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./vendor */ "../../dist/@frontegg/redux-store/vendor/index.js");
19072
19072
  /* harmony import */ var _audits__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./audits */ "../../dist/@frontegg/redux-store/audits/index.js");
19073
- /** @license Frontegg v7.78.0-alpha.1
19073
+ /** @license Frontegg v7.78.0-alpha.2
19074
19074
  *
19075
19075
  * This source code is licensed under the MIT license found in the
19076
19076
  * LICENSE file in the root directory of this source tree.
@@ -23996,7 +23996,7 @@ __webpack_require__.r(__webpack_exports__);
23996
23996
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
23997
23997
  /* harmony export */ buildVendorActions: () => (/* binding */ buildVendorActions)
23998
23998
  /* harmony export */ });
23999
- /* harmony import */ var _vendor__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../vendor */ "../../dist/@frontegg/redux-store/vendor/actions/index.js");
23999
+ /* harmony import */ var _vendor__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../vendor */ "../../dist/@frontegg/redux-store/vendor/actions.js");
24000
24000
  /* harmony import */ var _helpers__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../helpers */ "../../dist/@frontegg/redux-store/mocks/helpers.js");
24001
24001
  /* harmony import */ var _helpers__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../helpers */ "../../dist/@frontegg/redux-store/helpers/common.js");
24002
24002
 
@@ -25540,57 +25540,6 @@ __webpack_require__.r(__webpack_exports__);
25540
25540
 
25541
25541
 
25542
25542
 
25543
- /***/ }),
25544
-
25545
- /***/ "../../dist/@frontegg/redux-store/toolkit/loadDynamicAction.js":
25546
- /*!*********************************************************************!*\
25547
- !*** ../../dist/@frontegg/redux-store/toolkit/loadDynamicAction.js ***!
25548
- \*********************************************************************/
25549
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
25550
-
25551
- "use strict";
25552
- __webpack_require__.r(__webpack_exports__);
25553
- /* harmony export */ __webpack_require__.d(__webpack_exports__, {
25554
- /* harmony export */ loadDynamicAction: () => (/* binding */ loadDynamicAction)
25555
- /* harmony export */ });
25556
- /** Global caches so *all* lazy actions that share the same loader
25557
- * reuse the same import() and the same built-actions object */
25558
- const moduleCache = new WeakMap();
25559
- const actionsCache = new WeakMap();
25560
- function loadDynamicAction(store, api, shared, loader, key) {
25561
- /** step ① import() once per loader function */
25562
- function getModule() {
25563
- let p = moduleCache.get(loader);
25564
- if (!p) {
25565
- p = loader(); // dynamic import
25566
- moduleCache.set(loader, p);
25567
- }
25568
- return p;
25569
- }
25570
-
25571
- /** step ② build actions once per (store, loader) combo */
25572
- async function getActions() {
25573
- let perStore = actionsCache.get(store);
25574
- if (!perStore) {
25575
- perStore = new WeakMap();
25576
- actionsCache.set(store, perStore);
25577
- }
25578
- let acts = perStore.get(loader);
25579
- if (!acts) {
25580
- const mod = await getModule();
25581
- acts = mod.default(store, api, shared); // 👈 pass sharedActions here
25582
- perStore.set(loader, acts);
25583
- }
25584
- return acts;
25585
- }
25586
-
25587
- /* ----- the proxy function returned to the slice ----- */
25588
- return async (...args) => {
25589
- const fn = (await getActions())[key];
25590
- return fn(...args);
25591
- };
25592
- }
25593
-
25594
25543
  /***/ }),
25595
25544
 
25596
25545
  /***/ "../../dist/@frontegg/redux-store/toolkit/proxy.js":
@@ -25678,7 +25627,7 @@ __webpack_require__.r(__webpack_exports__);
25678
25627
  /* harmony import */ var _connectivity__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ../connectivity */ "../../dist/@frontegg/redux-store/connectivity/actions.js");
25679
25628
  /* harmony import */ var _subscriptions__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../subscriptions */ "../../dist/@frontegg/redux-store/subscriptions/index.js");
25680
25629
  /* harmony import */ var _vendor__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../vendor */ "../../dist/@frontegg/redux-store/vendor/state.js");
25681
- /* harmony import */ var _vendor__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ../vendor */ "../../dist/@frontegg/redux-store/vendor/actions/index.js");
25630
+ /* harmony import */ var _vendor__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ../vendor */ "../../dist/@frontegg/redux-store/vendor/actions.js");
25682
25631
  /* harmony import */ var _audits__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../audits */ "../../dist/@frontegg/redux-store/audits/index.js");
25683
25632
  /* harmony import */ var set_value__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! set-value */ "../../node_modules/set-value/index.js");
25684
25633
  /* harmony import */ var set_value__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(set_value__WEBPACK_IMPORTED_MODULE_1__);
@@ -26296,10 +26245,10 @@ const unstable_buildProxyFunction = buildProxyFunction;
26296
26245
 
26297
26246
  /***/ }),
26298
26247
 
26299
- /***/ "../../dist/@frontegg/redux-store/vendor/actions/index.js":
26300
- /*!****************************************************************!*\
26301
- !*** ../../dist/@frontegg/redux-store/vendor/actions/index.js ***!
26302
- \****************************************************************/
26248
+ /***/ "../../dist/@frontegg/redux-store/vendor/actions.js":
26249
+ /*!**********************************************************!*\
26250
+ !*** ../../dist/@frontegg/redux-store/vendor/actions.js ***!
26251
+ \**********************************************************/
26303
26252
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
26304
26253
 
26305
26254
  "use strict";
@@ -26307,21 +26256,37 @@ __webpack_require__.r(__webpack_exports__);
26307
26256
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
26308
26257
  /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
26309
26258
  /* harmony export */ });
26310
- /* harmony import */ var _helpers__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../helpers */ "../../dist/@frontegg/redux-store/helpers/common.js");
26311
- /* harmony import */ var _state__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../state */ "../../dist/@frontegg/redux-store/vendor/state.js");
26312
- /* harmony import */ var _toolkit_loadDynamicAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../toolkit/loadDynamicAction */ "../../dist/@frontegg/redux-store/toolkit/loadDynamicAction.js");
26259
+ /* 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");
26260
+ /* harmony import */ var _state__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./state */ "../../dist/@frontegg/redux-store/vendor/state.js");
26261
+ /* harmony import */ var _helpers__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../helpers */ "../../dist/@frontegg/redux-store/helpers/common.js");
26313
26262
 
26314
26263
 
26315
26264
 
26316
- /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ((store, api, actions) => {
26265
+ /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ((store, api, sharedActions) => {
26317
26266
  const setVendorState = state => {
26318
26267
  Object.assign(store.vendor, state);
26319
26268
  };
26320
26269
  const resetVendorState = () => {
26321
- (0,_helpers__WEBPACK_IMPORTED_MODULE_0__.deepResetState)(store, ['vendor'], _state__WEBPACK_IMPORTED_MODULE_1__.initialState);
26270
+ (0,_helpers__WEBPACK_IMPORTED_MODULE_1__.deepResetState)(store, ['vendor'], _state__WEBPACK_IMPORTED_MODULE_2__.initialState);
26271
+ };
26272
+ const loadVendorPublicInfo = async payload => {
26273
+ setVendorState({
26274
+ loading: true
26275
+ });
26276
+ try {
26277
+ var _vendorInfo$whiteLabe;
26278
+ const vendorInfo = await (0,_helpers__WEBPACK_IMPORTED_MODULE_1__.retryIfNeeded)(() => api.vendor.getVendorPublicInfo(), payload == null ? void 0 : payload.retryConfig);
26279
+ vendorInfo.whiteLabelMode = (_vendorInfo$whiteLabe = vendorInfo.whiteLabelMode) != null ? _vendorInfo$whiteLabe : false;
26280
+ setVendorState((0,_babel_runtime_helpers_esm_extends__WEBPACK_IMPORTED_MODULE_0__["default"])({}, vendorInfo, {
26281
+ loading: false
26282
+ }));
26283
+ } catch (e) {
26284
+ setVendorState({
26285
+ loading: false
26286
+ });
26287
+ console.error('failed to getVendorPublicInfo - ', e);
26288
+ }
26322
26289
  };
26323
- const actionsLoader = () => __webpack_require__.e(/*! import() */ "dist_frontegg_redux-store_vendor_actions_actions_js").then(__webpack_require__.bind(__webpack_require__, /*! ./actions */ "../../dist/@frontegg/redux-store/vendor/actions/actions.js"));
26324
- const loadVendorPublicInfo = (0,_toolkit_loadDynamicAction__WEBPACK_IMPORTED_MODULE_2__.loadDynamicAction)(store, api, actions, actionsLoader, 'loadVendorPublicInfo');
26325
26290
  return {
26326
26291
  setVendorState,
26327
26292
  resetVendorState,
@@ -26348,8 +26313,7 @@ __webpack_require__.r(__webpack_exports__);
26348
26313
  /* harmony export */ createVendorState: () => (/* reexport safe */ _state__WEBPACK_IMPORTED_MODULE_0__["default"])
26349
26314
  /* harmony export */ });
26350
26315
  /* harmony import */ var _state__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./state */ "../../dist/@frontegg/redux-store/vendor/state.js");
26351
- /* harmony import */ var _actions__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./actions */ "../../dist/@frontegg/redux-store/vendor/actions/index.js");
26352
-
26316
+ /* harmony import */ var _actions__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./actions */ "../../dist/@frontegg/redux-store/vendor/actions.js");
26353
26317
 
26354
26318
 
26355
26319
 
@@ -29398,7 +29362,7 @@ __webpack_require__.r(__webpack_exports__);
29398
29362
  /* harmony import */ var _security_center_interfaces__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./security-center/interfaces */ "../../dist/@frontegg/rest-api/security-center/interfaces.js");
29399
29363
  /* harmony import */ var _applications_interfaces__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./applications/interfaces */ "../../dist/@frontegg/rest-api/applications/interfaces.js");
29400
29364
  /* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./constants */ "../../dist/@frontegg/rest-api/constants.js");
29401
- /** @license Frontegg v7.78.0-alpha.1
29365
+ /** @license Frontegg v7.78.0-alpha.2
29402
29366
  *
29403
29367
  * This source code is licensed under the MIT license found in the
29404
29368
  * LICENSE file in the root directory of this source tree.
@@ -32136,7 +32100,7 @@ __webpack_require__.r(__webpack_exports__);
32136
32100
  /* harmony export */ });
32137
32101
  /* harmony import */ var _ThemeOptions__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./ThemeOptions */ "../../dist/@frontegg/types/ThemeOptions/index.js");
32138
32102
  /* harmony import */ var _Metadata__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Metadata */ "../../dist/@frontegg/types/Metadata/index.js");
32139
- /** @license Frontegg v7.78.0-alpha.1
32103
+ /** @license Frontegg v7.78.0-alpha.2
32140
32104
  *
32141
32105
  * This source code is licensed under the MIT license found in the
32142
32106
  * LICENSE file in the root directory of this source tree.
@@ -35732,9 +35696,6 @@ const replaceNewProxy = (fn) => {
35732
35696
  /******/ return module.exports;
35733
35697
  /******/ }
35734
35698
  /******/
35735
- /******/ // expose the modules object (__webpack_modules__)
35736
- /******/ __webpack_require__.m = __webpack_modules__;
35737
- /******/
35738
35699
  /************************************************************************/
35739
35700
  /******/ /* webpack/runtime/compat get default export */
35740
35701
  /******/ (() => {
@@ -35760,79 +35721,11 @@ const replaceNewProxy = (fn) => {
35760
35721
  /******/ };
35761
35722
  /******/ })();
35762
35723
  /******/
35763
- /******/ /* webpack/runtime/ensure chunk */
35764
- /******/ (() => {
35765
- /******/ __webpack_require__.f = {};
35766
- /******/ // This file contains only the entry chunk.
35767
- /******/ // The chunk loading function for additional chunks
35768
- /******/ __webpack_require__.e = (chunkId) => {
35769
- /******/ return Promise.all(Object.keys(__webpack_require__.f).reduce((promises, key) => {
35770
- /******/ __webpack_require__.f[key](chunkId, promises);
35771
- /******/ return promises;
35772
- /******/ }, []));
35773
- /******/ };
35774
- /******/ })();
35775
- /******/
35776
- /******/ /* webpack/runtime/get javascript chunk filename */
35777
- /******/ (() => {
35778
- /******/ // This function allow to reference async chunks
35779
- /******/ __webpack_require__.u = (chunkId) => {
35780
- /******/ // return url for filenames based on template
35781
- /******/ return "" + chunkId + ".frontegg.development.js";
35782
- /******/ };
35783
- /******/ })();
35784
- /******/
35785
35724
  /******/ /* webpack/runtime/hasOwnProperty shorthand */
35786
35725
  /******/ (() => {
35787
35726
  /******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
35788
35727
  /******/ })();
35789
35728
  /******/
35790
- /******/ /* webpack/runtime/load script */
35791
- /******/ (() => {
35792
- /******/ var inProgress = {};
35793
- /******/ var dataWebpackPrefix = "Frontegg:";
35794
- /******/ // loadScript function to load a script via script tag
35795
- /******/ __webpack_require__.l = (url, done, key, chunkId) => {
35796
- /******/ if(inProgress[url]) { inProgress[url].push(done); return; }
35797
- /******/ var script, needAttach;
35798
- /******/ if(key !== undefined) {
35799
- /******/ var scripts = document.getElementsByTagName("script");
35800
- /******/ for(var i = 0; i < scripts.length; i++) {
35801
- /******/ var s = scripts[i];
35802
- /******/ if(s.getAttribute("src") == url || s.getAttribute("data-webpack") == dataWebpackPrefix + key) { script = s; break; }
35803
- /******/ }
35804
- /******/ }
35805
- /******/ if(!script) {
35806
- /******/ needAttach = true;
35807
- /******/ script = document.createElement('script');
35808
- /******/
35809
- /******/ script.charset = 'utf-8';
35810
- /******/ script.timeout = 120;
35811
- /******/ if (__webpack_require__.nc) {
35812
- /******/ script.setAttribute("nonce", __webpack_require__.nc);
35813
- /******/ }
35814
- /******/ script.setAttribute("data-webpack", dataWebpackPrefix + key);
35815
- /******/
35816
- /******/ script.src = url;
35817
- /******/ }
35818
- /******/ inProgress[url] = [done];
35819
- /******/ var onScriptComplete = (prev, event) => {
35820
- /******/ // avoid mem leaks in IE.
35821
- /******/ script.onerror = script.onload = null;
35822
- /******/ clearTimeout(timeout);
35823
- /******/ var doneFns = inProgress[url];
35824
- /******/ delete inProgress[url];
35825
- /******/ script.parentNode && script.parentNode.removeChild(script);
35826
- /******/ doneFns && doneFns.forEach((fn) => (fn(event)));
35827
- /******/ if(prev) return prev(event);
35828
- /******/ }
35829
- /******/ var timeout = setTimeout(onScriptComplete.bind(null, undefined, { type: 'timeout', target: script }), 120000);
35830
- /******/ script.onerror = onScriptComplete.bind(null, script.onerror);
35831
- /******/ script.onload = onScriptComplete.bind(null, script.onload);
35832
- /******/ needAttach && document.head.appendChild(script);
35833
- /******/ };
35834
- /******/ })();
35835
- /******/
35836
35729
  /******/ /* webpack/runtime/make namespace object */
35837
35730
  /******/ (() => {
35838
35731
  /******/ // define __esModule on exports
@@ -35844,101 +35737,6 @@ const replaceNewProxy = (fn) => {
35844
35737
  /******/ };
35845
35738
  /******/ })();
35846
35739
  /******/
35847
- /******/ /* webpack/runtime/publicPath */
35848
- /******/ (() => {
35849
- /******/ __webpack_require__.p = "publicPathPlaceholder";
35850
- /******/ })();
35851
- /******/
35852
- /******/ /* webpack/runtime/jsonp chunk loading */
35853
- /******/ (() => {
35854
- /******/ // no baseURI
35855
- /******/
35856
- /******/ // object to store loaded and loading chunks
35857
- /******/ // undefined = chunk not loaded, null = chunk preloaded/prefetched
35858
- /******/ // [resolve, reject, Promise] = chunk loading, 0 = chunk loaded
35859
- /******/ var installedChunks = {
35860
- /******/ "main": 0
35861
- /******/ };
35862
- /******/
35863
- /******/ __webpack_require__.f.j = (chunkId, promises) => {
35864
- /******/ // JSONP chunk loading for javascript
35865
- /******/ var installedChunkData = __webpack_require__.o(installedChunks, chunkId) ? installedChunks[chunkId] : undefined;
35866
- /******/ if(installedChunkData !== 0) { // 0 means "already installed".
35867
- /******/
35868
- /******/ // a Promise means "currently loading".
35869
- /******/ if(installedChunkData) {
35870
- /******/ promises.push(installedChunkData[2]);
35871
- /******/ } else {
35872
- /******/ if(true) { // all chunks have JS
35873
- /******/ // setup Promise in chunk cache
35874
- /******/ var promise = new Promise((resolve, reject) => (installedChunkData = installedChunks[chunkId] = [resolve, reject]));
35875
- /******/ promises.push(installedChunkData[2] = promise);
35876
- /******/
35877
- /******/ // start chunk loading
35878
- /******/ var url = __webpack_require__.p + __webpack_require__.u(chunkId);
35879
- /******/ // create error before stack unwound to get useful stacktrace later
35880
- /******/ var error = new Error();
35881
- /******/ var loadingEnded = (event) => {
35882
- /******/ if(__webpack_require__.o(installedChunks, chunkId)) {
35883
- /******/ installedChunkData = installedChunks[chunkId];
35884
- /******/ if(installedChunkData !== 0) installedChunks[chunkId] = undefined;
35885
- /******/ if(installedChunkData) {
35886
- /******/ var errorType = event && (event.type === 'load' ? 'missing' : event.type);
35887
- /******/ var realSrc = event && event.target && event.target.src;
35888
- /******/ error.message = 'Loading chunk ' + chunkId + ' failed.\n(' + errorType + ': ' + realSrc + ')';
35889
- /******/ error.name = 'ChunkLoadError';
35890
- /******/ error.type = errorType;
35891
- /******/ error.request = realSrc;
35892
- /******/ installedChunkData[1](error);
35893
- /******/ }
35894
- /******/ }
35895
- /******/ };
35896
- /******/ __webpack_require__.l(url, loadingEnded, "chunk-" + chunkId, chunkId);
35897
- /******/ }
35898
- /******/ }
35899
- /******/ }
35900
- /******/ };
35901
- /******/
35902
- /******/ // no prefetching
35903
- /******/
35904
- /******/ // no preloaded
35905
- /******/
35906
- /******/ // no HMR
35907
- /******/
35908
- /******/ // no HMR manifest
35909
- /******/
35910
- /******/ // no on chunks loaded
35911
- /******/
35912
- /******/ // install a JSONP callback for chunk loading
35913
- /******/ var webpackJsonpCallback = (parentChunkLoadingFunction, data) => {
35914
- /******/ var [chunkIds, moreModules, runtime] = data;
35915
- /******/ // add "moreModules" to the modules object,
35916
- /******/ // then flag all "chunkIds" as loaded and fire callback
35917
- /******/ var moduleId, chunkId, i = 0;
35918
- /******/ if(chunkIds.some((id) => (installedChunks[id] !== 0))) {
35919
- /******/ for(moduleId in moreModules) {
35920
- /******/ if(__webpack_require__.o(moreModules, moduleId)) {
35921
- /******/ __webpack_require__.m[moduleId] = moreModules[moduleId];
35922
- /******/ }
35923
- /******/ }
35924
- /******/ if(runtime) var result = runtime(__webpack_require__);
35925
- /******/ }
35926
- /******/ if(parentChunkLoadingFunction) parentChunkLoadingFunction(data);
35927
- /******/ for(;i < chunkIds.length; i++) {
35928
- /******/ chunkId = chunkIds[i];
35929
- /******/ if(__webpack_require__.o(installedChunks, chunkId) && installedChunks[chunkId]) {
35930
- /******/ installedChunks[chunkId][0]();
35931
- /******/ }
35932
- /******/ installedChunks[chunkId] = 0;
35933
- /******/ }
35934
- /******/
35935
- /******/ }
35936
- /******/
35937
- /******/ var chunkLoadingGlobal = window["webpackChunkFrontegg"] = window["webpackChunkFrontegg"] || [];
35938
- /******/ chunkLoadingGlobal.forEach(webpackJsonpCallback.bind(null, 0));
35939
- /******/ chunkLoadingGlobal.push = webpackJsonpCallback.bind(null, chunkLoadingGlobal.push.bind(chunkLoadingGlobal));
35940
- /******/ })();
35941
- /******/
35942
35740
  /************************************************************************/
35943
35741
  var __webpack_exports__ = {};
35944
35742
  // This entry need to be wrapped in an IIFE because it need to be in strict mode.