@open-tender/types 0.4.106 → 0.4.108
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,6 +45,8 @@ 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;
|
|
48
50
|
}
|
|
49
51
|
export declare type CartItemOptions = CartItemOption[];
|
|
50
52
|
export interface CartItemOptionWithGroup extends CartItemOption {
|
|
@@ -124,6 +124,8 @@ export interface MenuItem {
|
|
|
124
124
|
upsell_items: number[];
|
|
125
125
|
item_shape: PizzaShape | null;
|
|
126
126
|
exclude_from_builder: boolean;
|
|
127
|
+
list_name: string | null;
|
|
128
|
+
list_id: string | null;
|
|
127
129
|
}
|
|
128
130
|
export interface OptionItem extends MenuItem {
|
|
129
131
|
opt_is_default: boolean;
|
|
@@ -45,6 +45,8 @@ 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;
|
|
48
50
|
}
|
|
49
51
|
export declare type CartItemOptions = CartItemOption[];
|
|
50
52
|
export interface CartItemOptionWithGroup extends CartItemOption {
|
|
@@ -124,6 +124,8 @@ export interface MenuItem {
|
|
|
124
124
|
upsell_items: number[];
|
|
125
125
|
item_shape: PizzaShape | null;
|
|
126
126
|
exclude_from_builder: boolean;
|
|
127
|
+
list_name: string | null;
|
|
128
|
+
list_id: string | null;
|
|
127
129
|
}
|
|
128
130
|
export interface OptionItem extends MenuItem {
|
|
129
131
|
opt_is_default: boolean;
|
package/package.json
CHANGED