feat(api): accept Yacimiento concession type

This commit is contained in:
2026-09-11 00:59:18 -03:00
parent c1f51eb81f
commit e5c71a0c16
@@ -54,6 +54,10 @@ export class CreateAssetDto {
@IsUUID('4')
operatorCompanyId?: string | null;
@IsOptional()
@IsUUID('4')
concessionTypeId?: string | null;
@IsOptional()
@Transform(({ value }) =>
typeof value === 'string' && value.trim() ? value.trim() : null,