/** * Generic error response serializer */ export type ErrorResponse = { status: string; message: string; details?: any; };