@open-tender/store 0.7.4 → 0.7.5

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 ADDED
Binary file
@@ -10,7 +10,7 @@ export type FullOrderType = OrderType | 'MAIN_MENU' | 'ECOMMERCE';
10
10
  export type OrderTypeMap = {
11
11
  [Property in OrderType]: string;
12
12
  };
13
- export type ServiceType = 'WALKIN' | 'PICKUP' | 'DELIVERY' | 'PORTAL';
13
+ export type ServiceType = 'WALKIN' | 'PICKUP' | 'DELIVERY';
14
14
  export type ServiceTypes = ServiceType[];
15
15
  export type ServiceTypeMap = {
16
16
  [Property in ServiceType]: string;
@@ -23,7 +23,6 @@ exports.serviceTypeNamesMap = {
23
23
  WALKIN: 'Dine-In',
24
24
  PICKUP: 'Pickup',
25
25
  DELIVERY: 'Delivery',
26
- PORTAL: '3rd Party'
27
26
  };
28
27
  exports.tenderTypeNamesMap = {
29
28
  CASH: 'Cash',
@@ -10,7 +10,7 @@ export type FullOrderType = OrderType | 'MAIN_MENU' | 'ECOMMERCE';
10
10
  export type OrderTypeMap = {
11
11
  [Property in OrderType]: string;
12
12
  };
13
- export type ServiceType = 'WALKIN' | 'PICKUP' | 'DELIVERY' | 'PORTAL';
13
+ export type ServiceType = 'WALKIN' | 'PICKUP' | 'DELIVERY';
14
14
  export type ServiceTypes = ServiceType[];
15
15
  export type ServiceTypeMap = {
16
16
  [Property in ServiceType]: string;
@@ -19,7 +19,6 @@ export var serviceTypeNamesMap = {
19
19
  WALKIN: 'Dine-In',
20
20
  PICKUP: 'Pickup',
21
21
  DELIVERY: 'Delivery',
22
- PORTAL: '3rd Party'
23
22
  };
24
23
  export var tenderTypeNamesMap = {
25
24
  CASH: 'Cash',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@open-tender/store",
3
- "version": "0.7.4",
3
+ "version": "0.7.5",
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",