@open-tender/types 0.4.138 → 0.4.140

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.
@@ -22,6 +22,7 @@ export interface CartItemOption {
22
22
  groups: CartItemGroups;
23
23
  id: number;
24
24
  imageUrl: string | null;
25
+ appImageUrl?: string | null;
25
26
  increment: number;
26
27
  ingredients: string | null;
27
28
  isDefault: boolean;
@@ -38,6 +39,7 @@ export interface CartItemOption {
38
39
  shortDescription: string | null;
39
40
  shortName: string;
40
41
  slug: string;
42
+ suspend_until: number | null;
41
43
  tags: string[];
42
44
  tags_list?: MenuItemTags;
43
45
  totalAllergens: string[];
@@ -76,6 +78,7 @@ export interface CartItemGroup {
76
78
  description: string | null;
77
79
  id: number;
78
80
  imageUrl: string | null;
81
+ appImageUrl?: string | null;
79
82
  included: number;
80
83
  isPizza: boolean;
81
84
  isSize: boolean;
@@ -22,6 +22,7 @@ export interface CartItemOption {
22
22
  groups: CartItemGroups;
23
23
  id: number;
24
24
  imageUrl: string | null;
25
+ appImageUrl?: string | null;
25
26
  increment: number;
26
27
  ingredients: string | null;
27
28
  isDefault: boolean;
@@ -38,6 +39,7 @@ export interface CartItemOption {
38
39
  shortDescription: string | null;
39
40
  shortName: string;
40
41
  slug: string;
42
+ suspend_until: number | null;
41
43
  tags: string[];
42
44
  tags_list?: MenuItemTags;
43
45
  totalAllergens: string[];
@@ -76,6 +78,7 @@ export interface CartItemGroup {
76
78
  description: string | null;
77
79
  id: number;
78
80
  imageUrl: string | null;
81
+ appImageUrl?: string | null;
79
82
  included: number;
80
83
  isPizza: boolean;
81
84
  isSize: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@open-tender/types",
3
- "version": "0.4.138",
3
+ "version": "0.4.140",
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",