@open-tender/store 0.5.24 → 0.5.25
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/.DS_Store +0 -0
- package/dist/cjs/slices/kiosk.js +3 -1
- package/dist/esm/slices/kiosk.js +3 -1
- package/package.json +1 -1
package/dist/.DS_Store
CHANGED
|
Binary file
|
package/dist/cjs/slices/kiosk.js
CHANGED
|
@@ -104,13 +104,15 @@ var kioskSlice = (0, toolkit_1.createSlice)({
|
|
|
104
104
|
extraReducers: function (builder) {
|
|
105
105
|
builder
|
|
106
106
|
.addCase(exports.fetchKioskConfig.fulfilled, function (state, action) {
|
|
107
|
-
var _a = action.payload, app = _a.app, store = _a.store, revenueCenterId = _a.revenueCenterId, brand = _a.brand, content = _a.content, theme = _a.theme;
|
|
107
|
+
var _a = action.payload, app = _a.app, store = _a.store, revenueCenterId = _a.revenueCenterId, brand = _a.brand, content = _a.content, theme = _a.theme, ratio = _a.ratio, displaySettings = _a.displaySettings;
|
|
108
108
|
state.app = app;
|
|
109
109
|
state.store = store;
|
|
110
110
|
state.revenueCenterId = revenueCenterId;
|
|
111
111
|
state.brand = brand;
|
|
112
112
|
state.content = content;
|
|
113
113
|
state.theme = theme;
|
|
114
|
+
state.ratio = ratio;
|
|
115
|
+
state.displaySettings = displaySettings;
|
|
114
116
|
state.loading = 'idle';
|
|
115
117
|
state.retries = 0;
|
|
116
118
|
state.error = null;
|
package/dist/esm/slices/kiosk.js
CHANGED
|
@@ -101,13 +101,15 @@ var kioskSlice = createSlice({
|
|
|
101
101
|
extraReducers: function (builder) {
|
|
102
102
|
builder
|
|
103
103
|
.addCase(fetchKioskConfig.fulfilled, function (state, action) {
|
|
104
|
-
var _a = action.payload, app = _a.app, store = _a.store, revenueCenterId = _a.revenueCenterId, brand = _a.brand, content = _a.content, theme = _a.theme;
|
|
104
|
+
var _a = action.payload, app = _a.app, store = _a.store, revenueCenterId = _a.revenueCenterId, brand = _a.brand, content = _a.content, theme = _a.theme, ratio = _a.ratio, displaySettings = _a.displaySettings;
|
|
105
105
|
state.app = app;
|
|
106
106
|
state.store = store;
|
|
107
107
|
state.revenueCenterId = revenueCenterId;
|
|
108
108
|
state.brand = brand;
|
|
109
109
|
state.content = content;
|
|
110
110
|
state.theme = theme;
|
|
111
|
+
state.ratio = ratio;
|
|
112
|
+
state.displaySettings = displaySettings;
|
|
111
113
|
state.loading = 'idle';
|
|
112
114
|
state.retries = 0;
|
|
113
115
|
state.error = null;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@open-tender/store",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.25",
|
|
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",
|