@open-tender/types 0.4.18 → 0.4.19
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.
|
@@ -18,6 +18,8 @@ export interface OrderItem {
|
|
|
18
18
|
id: number;
|
|
19
19
|
images: Images;
|
|
20
20
|
ingredients: string | null;
|
|
21
|
+
item_no?: number;
|
|
22
|
+
line_no?: number;
|
|
21
23
|
made_for?: string | null;
|
|
22
24
|
name: string;
|
|
23
25
|
notes?: string | null;
|
|
@@ -250,7 +252,7 @@ export interface Order {
|
|
|
250
252
|
address: Address | null;
|
|
251
253
|
cart: OrderCart;
|
|
252
254
|
channel: OrderChannel;
|
|
253
|
-
created_at:
|
|
255
|
+
created_at: ISOString;
|
|
254
256
|
customer: OrderCustomer | null;
|
|
255
257
|
delivery: OrderDelivery | null;
|
|
256
258
|
deposit: Money | null;
|
|
@@ -18,6 +18,8 @@ export interface OrderItem {
|
|
|
18
18
|
id: number;
|
|
19
19
|
images: Images;
|
|
20
20
|
ingredients: string | null;
|
|
21
|
+
item_no?: number;
|
|
22
|
+
line_no?: number;
|
|
21
23
|
made_for?: string | null;
|
|
22
24
|
name: string;
|
|
23
25
|
notes?: string | null;
|
|
@@ -250,7 +252,7 @@ export interface Order {
|
|
|
250
252
|
address: Address | null;
|
|
251
253
|
cart: OrderCart;
|
|
252
254
|
channel: OrderChannel;
|
|
253
|
-
created_at:
|
|
255
|
+
created_at: ISOString;
|
|
254
256
|
customer: OrderCustomer | null;
|
|
255
257
|
delivery: OrderDelivery | null;
|
|
256
258
|
deposit: Money | null;
|
package/package.json
CHANGED