@open-tender/types 0.4.18 → 0.4.20

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.
package/dist/.DS_Store ADDED
Binary file
@@ -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,8 +252,9 @@ export interface Order {
250
252
  address: Address | null;
251
253
  cart: OrderCart;
252
254
  channel: OrderChannel;
253
- created_at: ISOStringOffset;
255
+ created_at: ISOString;
254
256
  customer: OrderCustomer | null;
257
+ daily_id?: string;
255
258
  delivery: OrderDelivery | null;
256
259
  deposit: Money | null;
257
260
  details: OrderDetails | 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,8 +252,9 @@ export interface Order {
250
252
  address: Address | null;
251
253
  cart: OrderCart;
252
254
  channel: OrderChannel;
253
- created_at: ISOStringOffset;
255
+ created_at: ISOString;
254
256
  customer: OrderCustomer | null;
257
+ daily_id?: string;
255
258
  delivery: OrderDelivery | null;
256
259
  deposit: Money | null;
257
260
  details: OrderDetails | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@open-tender/types",
3
- "version": "0.4.18",
3
+ "version": "0.4.20",
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",