@open-tender/types 0.2.25 → 0.2.26
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,6 +89,7 @@ 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;
|
|
@@ -97,6 +98,10 @@ export interface OrderCreateDetails {
|
|
|
97
98
|
person_count?: number | null;
|
|
98
99
|
serving_utensils?: boolean;
|
|
99
100
|
tax_exempt_id?: string | null;
|
|
101
|
+
order_fulfillment?: boolean;
|
|
102
|
+
vehicle_color?: string | null;
|
|
103
|
+
vehicle_id?: string | null;
|
|
104
|
+
vehicle_type?: string | null;
|
|
100
105
|
}
|
|
101
106
|
export interface OrderCreateGiftCard {
|
|
102
107
|
id: number;
|
|
@@ -89,6 +89,7 @@ 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;
|
|
@@ -97,6 +98,10 @@ export interface OrderCreateDetails {
|
|
|
97
98
|
person_count?: number | null;
|
|
98
99
|
serving_utensils?: boolean;
|
|
99
100
|
tax_exempt_id?: string | null;
|
|
101
|
+
order_fulfillment?: boolean;
|
|
102
|
+
vehicle_color?: string | null;
|
|
103
|
+
vehicle_id?: string | null;
|
|
104
|
+
vehicle_type?: string | null;
|
|
100
105
|
}
|
|
101
106
|
export interface OrderCreateGiftCard {
|
|
102
107
|
id: number;
|
package/package.json
CHANGED