2025-12-05 22:17:50 +01:00
|
|
|
import { Bike, WearPart, MaintenanceHistory } from '@prisma/client'
|
|
|
|
|
|
|
|
|
|
export type WearPartWithHistory = WearPart & {
|
|
|
|
|
maintenanceHistory: MaintenanceHistory[]
|
|
|
|
|
bike: Bike
|
|
|
|
|
}
|
|
|
|
|
|
2025-12-07 15:01:28 +01:00
|
|
|
export type BikeWithParts = Bike & {
|
|
|
|
|
wearParts: WearPartWithHistory[]
|
|
|
|
|
}
|
|
|
|
|
|
2025-12-05 22:17:50 +01:00
|
|
|
export type MaintenanceHistoryWithPart = MaintenanceHistory & {
|
|
|
|
|
wearPart: WearPart
|
|
|
|
|
}
|
|
|
|
|
|