@open-tender/types 0.0.107 → 0.0.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.
|
@@ -400,6 +400,9 @@ export interface Order {
|
|
|
400
400
|
timezone: TimezonePython;
|
|
401
401
|
totals: OrderTotals;
|
|
402
402
|
notes?: string;
|
|
403
|
+
prepType?: string | null;
|
|
404
|
+
revenueCenter?: OrderRevenueCenter;
|
|
405
|
+
serviceType?: ServiceType;
|
|
403
406
|
}
|
|
404
407
|
export declare type Orders = Array<Order>;
|
|
405
408
|
export interface OrderKds extends Omit<Order, 'fire_at' | 'tickets' | 'expected_at'> {
|
|
@@ -400,6 +400,9 @@ export interface Order {
|
|
|
400
400
|
timezone: TimezonePython;
|
|
401
401
|
totals: OrderTotals;
|
|
402
402
|
notes?: string;
|
|
403
|
+
prepType?: string | null;
|
|
404
|
+
revenueCenter?: OrderRevenueCenter;
|
|
405
|
+
serviceType?: ServiceType;
|
|
403
406
|
}
|
|
404
407
|
export declare type Orders = Array<Order>;
|
|
405
408
|
export interface OrderKds extends Omit<Order, 'fire_at' | 'tickets' | 'expected_at'> {
|
package/package.json
CHANGED