forked from Yara724/api
Complete inquiry participant flow coverage
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user