@open-tender/types 0.0.37 → 0.0.38
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.
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { DateString, ISOString, ISOStringOffset, TimezonePython } from '../datetimes';
|
|
1
|
+
import { DateString, ISOString, ISOStringOffset, RequestedAt, TimezonePython } from '../datetimes';
|
|
2
2
|
import { CardType, ChannelType, Decimal, Money, NegativeMoney, OrderStatus, OrderType, ReceiptType, ServiceType, SurchargeType, Temperature, TenderStatus, TenderType } from '../global';
|
|
3
3
|
import { Address, Customer, CustomerAllergens, CustomerGiftCards, LoyaltyPoints } from './customer';
|
|
4
4
|
import { PrepStatus, TicketStatus } from './kds';
|
|
@@ -332,7 +332,7 @@ export interface Order {
|
|
|
332
332
|
ready_at: ISOStringOffset | ISOString | null;
|
|
333
333
|
receipt_type: ReceiptType;
|
|
334
334
|
refunds?: Array<OrderTender>;
|
|
335
|
-
requested_at:
|
|
335
|
+
requested_at: RequestedAt;
|
|
336
336
|
requested_time?: string;
|
|
337
337
|
revenue_center: OrderRevenueCenter;
|
|
338
338
|
service_type: ServiceType;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { DateString, ISOString, ISOStringOffset, TimezonePython } from '../datetimes';
|
|
1
|
+
import { DateString, ISOString, ISOStringOffset, RequestedAt, TimezonePython } from '../datetimes';
|
|
2
2
|
import { CardType, ChannelType, Decimal, Money, NegativeMoney, OrderStatus, OrderType, ReceiptType, ServiceType, SurchargeType, Temperature, TenderStatus, TenderType } from '../global';
|
|
3
3
|
import { Address, Customer, CustomerAllergens, CustomerGiftCards, LoyaltyPoints } from './customer';
|
|
4
4
|
import { PrepStatus, TicketStatus } from './kds';
|
|
@@ -332,7 +332,7 @@ export interface Order {
|
|
|
332
332
|
ready_at: ISOStringOffset | ISOString | null;
|
|
333
333
|
receipt_type: ReceiptType;
|
|
334
334
|
refunds?: Array<OrderTender>;
|
|
335
|
-
requested_at:
|
|
335
|
+
requested_at: RequestedAt;
|
|
336
336
|
requested_time?: string;
|
|
337
337
|
revenue_center: OrderRevenueCenter;
|
|
338
338
|
service_type: ServiceType;
|
package/package.json
CHANGED