@open-tender/types 0.4.120 → 0.4.121

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.
@@ -31,6 +31,7 @@ export interface CartItemOption {
31
31
  name: string;
32
32
  nutritionalInfo: NutritionalInfo | null;
33
33
  points: number | null;
34
+ pos_ext_id: string | null;
34
35
  price: number;
35
36
  quantity: number;
36
37
  shorthand: string | null;
@@ -108,6 +108,7 @@ export interface MenuItem {
108
108
  plu: string | null;
109
109
  points: number | null;
110
110
  pos_display_color: string | null;
111
+ pos_ext_id: string | null;
111
112
  price: Money | string;
112
113
  sales_tax_override: Decimal | null;
113
114
  short_description: string | null;
@@ -31,6 +31,7 @@ export interface CartItemOption {
31
31
  name: string;
32
32
  nutritionalInfo: NutritionalInfo | null;
33
33
  points: number | null;
34
+ pos_ext_id: string | null;
34
35
  price: number;
35
36
  quantity: number;
36
37
  shorthand: string | null;
@@ -108,6 +108,7 @@ export interface MenuItem {
108
108
  plu: string | null;
109
109
  points: number | null;
110
110
  pos_display_color: string | null;
111
+ pos_ext_id: string | null;
111
112
  price: Money | string;
112
113
  sales_tax_override: Decimal | null;
113
114
  short_description: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@open-tender/types",
3
- "version": "0.4.120",
3
+ "version": "0.4.121",
4
4
  "description": "A library of types for use with Open Tender applications that utilize our cloud-based Order API.",
5
5
  "main": "./dist/cjs/index.js",
6
6
  "module": "./dist/esm/index.js",