Complete inquiry participant flow coverage

This commit is contained in:
SepehrYahyaee
2026-09-13 11:29:43 +03:30
parent d060b6d9e2
commit b5b18114d8
8 changed files with 698 additions and 167 deletions

View File

@@ -24,9 +24,8 @@ export enum VehicleRegistrationState {
export class InquiryPlateDto {
@ApiProperty({ example: "44" })
@IsString()
@IsNotEmpty()
leftDigits: string;
leftDigits: string | number;
@ApiProperty({ example: "ب" })
@IsString()
@@ -34,14 +33,12 @@ export class InquiryPlateDto {
centerAlphabet: string;
@ApiProperty({ example: "111" })
@IsString()
@IsNotEmpty()
centerDigits: string;
centerDigits: string | number;
@ApiProperty({ example: "22" })
@IsString()
@IsNotEmpty()
ir: string;
ir: string | number;
}
export class InquiryParticipantInputDto {