export function withUpdatedAt(data: T): T & { updatedAt: Date } { return {...data, updatedAt: new Date()}; }