jamespot-front-business 1.2.37 → 1.2.39

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