feat(bookings): allow editing and soft-deleting bookings
Add edit modal to update guest details, ticket selection, and quantity Implement soft delete functionality to archive bookings
This commit is contained in:
@@ -158,6 +158,14 @@ export interface TransferBookingPicResponse {
|
||||
booking: PublicBooking
|
||||
}
|
||||
|
||||
export interface UpdateBookingDetailsResponse {
|
||||
booking: PublicBooking
|
||||
}
|
||||
|
||||
export interface DeleteBookingResponse {
|
||||
booking: PublicBooking
|
||||
}
|
||||
|
||||
export function isBookingStatus(value: string | null | undefined): value is BookingStatus {
|
||||
return value === 'pending' || value === 'confirmed'
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user