@open-tender/types 0.2.25 → 0.2.27
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.
|
@@ -89,14 +89,20 @@ export interface CheckoutCheck extends Omit<Order, 'customer'> {
|
|
|
89
89
|
}
|
|
90
90
|
export declare type CheckoutErrorMessages = Record<string, string | Record<string, string | Record<string, string>>>;
|
|
91
91
|
export interface OrderCreateDetails {
|
|
92
|
+
arrival_info?: string | null;
|
|
92
93
|
cart_id?: number | null;
|
|
93
94
|
device_type?: DeviceType | null;
|
|
94
95
|
eating_utensils?: boolean;
|
|
96
|
+
has_arrived?: boolean;
|
|
95
97
|
notes?: string | null;
|
|
96
98
|
notes_internal?: string | null;
|
|
97
99
|
person_count?: number | null;
|
|
98
100
|
serving_utensils?: boolean;
|
|
99
101
|
tax_exempt_id?: string | null;
|
|
102
|
+
order_fulfillment?: boolean;
|
|
103
|
+
vehicle_color?: string | null;
|
|
104
|
+
vehicle_id?: string | null;
|
|
105
|
+
vehicle_type?: string | null;
|
|
100
106
|
}
|
|
101
107
|
export interface OrderCreateGiftCard {
|
|
102
108
|
id: number;
|
|
@@ -89,14 +89,20 @@ export interface CheckoutCheck extends Omit<Order, 'customer'> {
|
|
|
89
89
|
}
|
|
90
90
|
export declare type CheckoutErrorMessages = Record<string, string | Record<string, string | Record<string, string>>>;
|
|
91
91
|
export interface OrderCreateDetails {
|
|
92
|
+
arrival_info?: string | null;
|
|
92
93
|
cart_id?: number | null;
|
|
93
94
|
device_type?: DeviceType | null;
|
|
94
95
|
eating_utensils?: boolean;
|
|
96
|
+
has_arrived?: boolean;
|
|
95
97
|
notes?: string | null;
|
|
96
98
|
notes_internal?: string | null;
|
|
97
99
|
person_count?: number | null;
|
|
98
100
|
serving_utensils?: boolean;
|
|
99
101
|
tax_exempt_id?: string | null;
|
|
102
|
+
order_fulfillment?: boolean;
|
|
103
|
+
vehicle_color?: string | null;
|
|
104
|
+
vehicle_id?: string | null;
|
|
105
|
+
vehicle_type?: string | null;
|
|
100
106
|
}
|
|
101
107
|
export interface OrderCreateGiftCard {
|
|
102
108
|
id: number;
|
package/package.json
CHANGED