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