import { OmitType } from '@nestjs/mapped-types'; import { Product } from '../../entity/product.entity'; // NOTE: Use class-validator decorators here for production-grade validation. export class CreateProductDto extends OmitType(Product, ['id']) {}