jamespot-front-business 1.2.38 → 1.2.40

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/dist/cjs.js CHANGED
@@ -2441,8 +2441,8 @@ const Network = {
2441
2441
  };
2442
2442
 
2443
2443
  const initialState$a = {
2444
- userHighlightFields: [],
2445
2444
  userAccountStatus: 0,
2445
+ sendAlert: 0,
2446
2446
  };
2447
2447
  const PlatformConfigSlice = toolkit.createSlice({
2448
2448
  name: 'config',
@@ -2470,6 +2470,9 @@ const selectUserHighlightFields = (state) => {
2470
2470
  const selectUserAccountStatus = (state) => {
2471
2471
  return state.platform.config.userAccountStatus;
2472
2472
  };
2473
+ const selectUrlBase = (state) => {
2474
+ return state.platform.config.urlBase;
2475
+ };
2473
2476
  const Platform = {
2474
2477
  slice: PlatformSlice,
2475
2478
  actions: {
@@ -2479,6 +2482,7 @@ const Platform = {
2479
2482
  selectPlatformConfig,
2480
2483
  selectUserHighlightFields,
2481
2484
  selectUserAccountStatus,
2485
+ selectUrlBase,
2482
2486
  },
2483
2487
  };
2484
2488