@open-tender/types 0.4.108 → 0.4.109

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.
@@ -45,8 +45,6 @@ export interface CartItemOption {
45
45
  totalPrice: number | null;
46
46
  itemShape: PizzaShape | null;
47
47
  excludeFromBuilder: boolean;
48
- list_name: string | null;
49
- list_id: string | null;
50
48
  }
51
49
  export declare type CartItemOptions = CartItemOption[];
52
50
  export interface CartItemOptionWithGroup extends CartItemOption {
@@ -65,6 +63,8 @@ export interface CartItem extends Omit<CartItemOption, 'isDefault'> {
65
63
  signature?: string;
66
64
  similarItems: number[];
67
65
  upsellItems: number[];
66
+ list_name: string | null;
67
+ list_id: string | null;
68
68
  }
69
69
  export interface CartItemWithPoints extends Omit<CartItem, 'points'> {
70
70
  points: OrderItemPoints | null;
@@ -45,8 +45,6 @@ export interface CartItemOption {
45
45
  totalPrice: number | null;
46
46
  itemShape: PizzaShape | null;
47
47
  excludeFromBuilder: boolean;
48
- list_name: string | null;
49
- list_id: string | null;
50
48
  }
51
49
  export declare type CartItemOptions = CartItemOption[];
52
50
  export interface CartItemOptionWithGroup extends CartItemOption {
@@ -65,6 +63,8 @@ export interface CartItem extends Omit<CartItemOption, 'isDefault'> {
65
63
  signature?: string;
66
64
  similarItems: number[];
67
65
  upsellItems: number[];
66
+ list_name: string | null;
67
+ list_id: string | null;
68
68
  }
69
69
  export interface CartItemWithPoints extends Omit<CartItem, 'points'> {
70
70
  points: OrderItemPoints | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@open-tender/types",
3
- "version": "0.4.108",
3
+ "version": "0.4.109",
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",