YARA-1218

This commit is contained in:
SepehrYahyaee
2026-08-09 14:08:11 +03:30
parent d4cd8c9343
commit 8e4c794d61
3 changed files with 29 additions and 0 deletions

View File

@@ -89,6 +89,16 @@ export class RunInquiriesV3Dto {
@IsOptional()
@IsString()
insurerLicense?: string;
@ApiPropertyOptional({
example: "1",
description:
"Driving licence type code from GET /lookups/driving-licence-types. " +
"Optional — used in V4 FileMaker flow.",
})
@IsOptional()
@IsString()
licenseType?: string;
}
/**
@@ -152,4 +162,14 @@ export class RunInquiriesVinV3Dto {
@IsOptional()
@IsString()
insurerLicense?: string;
@ApiPropertyOptional({
example: "1",
description:
"Driving licence type code from GET /lookups/driving-licence-types. " +
"Optional — used in V4 FileMaker flow.",
})
@IsOptional()
@IsString()
licenseType?: string;
}