import { RacingDomainValidationError } from '../errors/RacingDomainError'; import type { IValueObject } from '@core/shared/domain'; export class TeamCreatedAt implements IValueObject { private constructor(private readonly value: Date) {} get props(): Date { return new Date(this.value); } static create(value: Date): TeamCreatedAt { const now = new Date(); if (value > now) { throw new RacingDomainValidationError('Created date cannot be in the future'); } return new TeamCreatedAt(new Date(value)); } toDate(): Date { return new Date(this.value); } equals(other: IValueObject): boolean { return this.value.getTime() === other.props.getTime(); } }