M11: implement operational booking lifecycle
This commit is contained in:
@@ -51,6 +51,21 @@ export interface Booking extends BookingSummary {
|
||||
customer_name: string;
|
||||
}
|
||||
|
||||
export interface CustomerOption {
|
||||
public_ref: string;
|
||||
display_name: string;
|
||||
email: string | null;
|
||||
}
|
||||
|
||||
export interface AvailableVehicle {
|
||||
public_ref: string;
|
||||
make: string;
|
||||
model: string;
|
||||
registration_number: string;
|
||||
location: string;
|
||||
operational_status: string;
|
||||
}
|
||||
|
||||
export interface Inspection {
|
||||
public_ref: string;
|
||||
booking_ref: string;
|
||||
|
||||
Reference in New Issue
Block a user