@open-tender/store 0.3.48 → 0.3.49

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.
@@ -116,7 +116,7 @@ var configSlice = (0, toolkit_1.createSlice)({
116
116
  extraReducers: function (builder) {
117
117
  builder
118
118
  .addCase(exports.fetchConfig.fulfilled, function (state, action) {
119
- var _a = action.payload, api = _a.api, app = _a.app, version = _a.version, store = _a.store, revenueCenterId = _a.revenueCenterId, name = _a.name, ipAddress = _a.ipAddress, hasPinpad = _a.hasPinpad, hasCashDrawer = _a.hasCashDrawer, selectOptions = _a.selectOptions, levelup = _a.levelup;
119
+ var _a = action.payload, api = _a.api, app = _a.app, version = _a.version, store = _a.store, revenueCenterId = _a.revenueCenterId, name = _a.name, ipAddress = _a.ipAddress, hasPinpad = _a.hasPinpad, hasCashDrawer = _a.hasCashDrawer, selectOptions = _a.selectOptions, menuColors = _a.menuColors, levelup = _a.levelup;
120
120
  state.api = api;
121
121
  state.app = app;
122
122
  state.version = version;
@@ -127,6 +127,7 @@ var configSlice = (0, toolkit_1.createSlice)({
127
127
  state.store = store;
128
128
  state.revenueCenterId = revenueCenterId;
129
129
  state.selectOptions = selectOptions;
130
+ state.menuColors = menuColors;
130
131
  state.levelup = levelup;
131
132
  state.loading = 'idle';
132
133
  state.retries = 0;
@@ -113,7 +113,7 @@ var configSlice = createSlice({
113
113
  extraReducers: function (builder) {
114
114
  builder
115
115
  .addCase(fetchConfig.fulfilled, function (state, action) {
116
- var _a = action.payload, api = _a.api, app = _a.app, version = _a.version, store = _a.store, revenueCenterId = _a.revenueCenterId, name = _a.name, ipAddress = _a.ipAddress, hasPinpad = _a.hasPinpad, hasCashDrawer = _a.hasCashDrawer, selectOptions = _a.selectOptions, levelup = _a.levelup;
116
+ var _a = action.payload, api = _a.api, app = _a.app, version = _a.version, store = _a.store, revenueCenterId = _a.revenueCenterId, name = _a.name, ipAddress = _a.ipAddress, hasPinpad = _a.hasPinpad, hasCashDrawer = _a.hasCashDrawer, selectOptions = _a.selectOptions, menuColors = _a.menuColors, levelup = _a.levelup;
117
117
  state.api = api;
118
118
  state.app = app;
119
119
  state.version = version;
@@ -124,6 +124,7 @@ var configSlice = createSlice({
124
124
  state.store = store;
125
125
  state.revenueCenterId = revenueCenterId;
126
126
  state.selectOptions = selectOptions;
127
+ state.menuColors = menuColors;
127
128
  state.levelup = levelup;
128
129
  state.loading = 'idle';
129
130
  state.retries = 0;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@open-tender/store",
3
- "version": "0.3.48",
3
+ "version": "0.3.49",
4
4
  "description": "A library of hooks, reducers, utility functions, and types for use with Open Tender applications that utilize our in-store POS API",
5
5
  "main": "./dist/cjs/index.js",
6
6
  "module": "./dist/esm/index.js",