@open-tender/store 0.5.8 → 0.5.9
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
CHANGED
|
Binary file
|
|
@@ -29,6 +29,8 @@ export declare const resetKiosk: import("@reduxjs/toolkit").ActionCreatorWithout
|
|
|
29
29
|
export declare const selectKiosk: (state: AppState) => KioskState;
|
|
30
30
|
export declare const selectKioskApi: (state: AppState) => any;
|
|
31
31
|
export declare const selectKioskVersion: (state: AppState) => string | null | undefined;
|
|
32
|
+
export declare const selectKioskStore: (state: AppState) => Store | null;
|
|
33
|
+
export declare const selectKioskRcId: (state: AppState) => number | null;
|
|
32
34
|
export declare const selectKioskBrand: (state: AppState) => KioskBrand | null;
|
|
33
35
|
export declare const selectKioskContent: (state: AppState) => KioskContent | null;
|
|
34
36
|
export declare const selectKioskTheme: (state: AppState) => ThemeCloud | null;
|
package/dist/cjs/slices/kiosk.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
var _a;
|
|
3
3
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
-
exports.kioskReducer = exports.selectKioskContentSection = exports.selectKioskTheme = exports.selectKioskContent = exports.selectKioskBrand = exports.selectKioskVersion = exports.selectKioskApi = exports.selectKiosk = exports.setKioskVersion = exports.incrementKioskRetries = exports.resetKioskRetries = exports.resetKiosk = exports.fetchKioskConfig = exports.KioskActionType = void 0;
|
|
4
|
+
exports.kioskReducer = exports.selectKioskContentSection = exports.selectKioskTheme = exports.selectKioskContent = exports.selectKioskBrand = exports.selectKioskRcId = exports.selectKioskStore = exports.selectKioskVersion = exports.selectKioskApi = exports.selectKiosk = exports.setKioskVersion = exports.incrementKioskRetries = exports.resetKioskRetries = exports.resetKiosk = exports.fetchKioskConfig = exports.KioskActionType = void 0;
|
|
5
5
|
var tslib_1 = require("tslib");
|
|
6
6
|
var toolkit_1 = require("@reduxjs/toolkit");
|
|
7
7
|
var services_1 = require("../services");
|
|
@@ -113,6 +113,10 @@ var selectKioskApi = function (state) { return state.kiosk.api; };
|
|
|
113
113
|
exports.selectKioskApi = selectKioskApi;
|
|
114
114
|
var selectKioskVersion = function (state) { return state.kiosk.version; };
|
|
115
115
|
exports.selectKioskVersion = selectKioskVersion;
|
|
116
|
+
var selectKioskStore = function (state) { return state.kiosk.store; };
|
|
117
|
+
exports.selectKioskStore = selectKioskStore;
|
|
118
|
+
var selectKioskRcId = function (state) { return state.kiosk.revenueCenterId; };
|
|
119
|
+
exports.selectKioskRcId = selectKioskRcId;
|
|
116
120
|
var selectKioskBrand = function (state) { return state.kiosk.brand; };
|
|
117
121
|
exports.selectKioskBrand = selectKioskBrand;
|
|
118
122
|
var selectKioskContent = function (state) { return state.kiosk.content; };
|
|
@@ -29,6 +29,8 @@ export declare const resetKiosk: import("@reduxjs/toolkit").ActionCreatorWithout
|
|
|
29
29
|
export declare const selectKiosk: (state: AppState) => KioskState;
|
|
30
30
|
export declare const selectKioskApi: (state: AppState) => any;
|
|
31
31
|
export declare const selectKioskVersion: (state: AppState) => string | null | undefined;
|
|
32
|
+
export declare const selectKioskStore: (state: AppState) => Store | null;
|
|
33
|
+
export declare const selectKioskRcId: (state: AppState) => number | null;
|
|
32
34
|
export declare const selectKioskBrand: (state: AppState) => KioskBrand | null;
|
|
33
35
|
export declare const selectKioskContent: (state: AppState) => KioskContent | null;
|
|
34
36
|
export declare const selectKioskTheme: (state: AppState) => ThemeCloud | null;
|
package/dist/esm/slices/kiosk.js
CHANGED
|
@@ -107,6 +107,8 @@ export var resetKiosk = (_a = kioskSlice.actions, _a.resetKiosk), resetKioskRetr
|
|
|
107
107
|
export var selectKiosk = function (state) { return state.kiosk; };
|
|
108
108
|
export var selectKioskApi = function (state) { return state.kiosk.api; };
|
|
109
109
|
export var selectKioskVersion = function (state) { return state.kiosk.version; };
|
|
110
|
+
export var selectKioskStore = function (state) { return state.kiosk.store; };
|
|
111
|
+
export var selectKioskRcId = function (state) { return state.kiosk.revenueCenterId; };
|
|
110
112
|
export var selectKioskBrand = function (state) { return state.kiosk.brand; };
|
|
111
113
|
export var selectKioskContent = function (state) { return state.kiosk.content; };
|
|
112
114
|
export var selectKioskTheme = function (state) { return state.kiosk.theme; };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@open-tender/store",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.9",
|
|
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",
|