feat(constructeurs): introduce constructors management

This commit is contained in:
Matthieu
2025-09-17 15:09:54 +02:00
parent 339f46ec24
commit 83251b532c
13 changed files with 335 additions and 14 deletions

View File

@@ -19,7 +19,7 @@ export class CreateComposantDto {
@IsOptional()
@IsString()
constructeur?: string;
constructeurId?: string;
@IsOptional()
@Transform(({ value }) => value === '' ? null : value)
@@ -46,7 +46,7 @@ export class UpdateComposantDto {
@IsOptional()
@IsString()
constructeur?: string;
constructeurId?: string;
@IsOptional()
@Transform(({ value }) => value === '' ? null : value)