260319:1323 Fix fronend UUID #02
Build and Deploy / deploy (push) Failing after 4m23s

This commit is contained in:
admin
2026-03-19 13:23:23 +07:00
parent 17afe3e392
commit 48c0f468bd
9 changed files with 727 additions and 71 deletions
@@ -8,11 +8,11 @@ export class SearchContractDto {
@IsString()
search?: string;
@ApiPropertyOptional({ description: 'Filter by Project ID' })
@ApiPropertyOptional({
description: 'Filter by Project ID or UUID (ADR-019)',
})
@IsOptional()
@IsInt()
@Type(() => Number)
projectId?: number;
projectId?: number | string;
@ApiPropertyOptional({ description: 'Page number', default: 1 })
@IsOptional()