refactor: rename prestataire to constructeur

This commit is contained in:
Matthieu
2025-09-17 08:50:07 +02:00
parent 4d2d552391
commit e8aeaf98e9
36 changed files with 796 additions and 783 deletions

View File

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