38 lines
783 B
TypeScript
38 lines
783 B
TypeScript
import { Car, Customer, Washing } from ".";
|
|
|
|
export type Id = string;
|
|
|
|
export type Status = 'pending' |
|
|
'progress' |
|
|
'working' |
|
|
'canceled' |
|
|
'complete';
|
|
|
|
export type Create = {
|
|
customer: {
|
|
phone: Customer.PhoneNumber,
|
|
};
|
|
car: {
|
|
number: Car.RegistrationNumber,
|
|
body: Car.BodyStyle,
|
|
color: Car.Color,
|
|
},
|
|
washing: {
|
|
location: Washing.Location
|
|
begin: Washing.AvailableBeginDateTime,
|
|
end: Washing.AvailableEndDateTime,
|
|
}
|
|
};
|
|
|
|
export type View = {
|
|
id: Id;
|
|
orderDate: string,
|
|
status: Status,
|
|
phone: Customer.PhoneNumber;
|
|
carNumber: Car.RegistrationNumber;
|
|
carBody: Car.BodyStyle;
|
|
carColor?: Car.Color;
|
|
location: Washing.Location;
|
|
datetimeBegin: Washing.AvailableBeginDateTime;
|
|
datetimeEnd: Washing.AvailableEndDateTime;
|
|
}; |