forked from Yara724/api
Fixed resendCarParts label_fa's + OTP
This commit is contained in:
@@ -67,8 +67,24 @@ export class ExpertResendDetailsV2Dto {
|
||||
@ApiPropertyOptional({ type: [String] })
|
||||
resendDocuments?: string[];
|
||||
|
||||
@ApiPropertyOptional({ type: [Object] })
|
||||
resendCarParts?: Array<{ key?: string; label_fa?: string; label_en?: string }>;
|
||||
@ApiPropertyOptional({
|
||||
description:
|
||||
"Damaged parts the expert asked to re-capture (same shape as damagedParts: id, name, side, label_fa, catalogKey, captured, url).",
|
||||
type: [Object],
|
||||
})
|
||||
resendCarParts?: Array<{
|
||||
id?: number | null;
|
||||
name?: string;
|
||||
side?: string;
|
||||
label_fa?: string;
|
||||
label_en?: string;
|
||||
catalogKey?: string;
|
||||
key?: string;
|
||||
captured?: boolean;
|
||||
url?: string;
|
||||
path?: string;
|
||||
fileName?: string;
|
||||
}>;
|
||||
|
||||
@ApiPropertyOptional({ description: 'Set when the owner satisfied the resend request' })
|
||||
fulfilledAt?: Date;
|
||||
|
||||
Reference in New Issue
Block a user