forked from Yara724/api
resolved conflicts and maintained new features
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import { ApiProperty } from "@nestjs/swagger";
|
||||
import { ApiProperty, ApiPropertyOptional } from "@nestjs/swagger";
|
||||
|
||||
export class UserResendResponseDto {
|
||||
@ApiProperty({
|
||||
@@ -24,6 +24,22 @@ export class UserResendResponseDto {
|
||||
description: "Whether the user has completed uploading all requested items",
|
||||
})
|
||||
completed: boolean;
|
||||
|
||||
@ApiPropertyOptional({
|
||||
description:
|
||||
"Per-item UI hint: document_camera (open camera), voice, video, or text (multiline field).",
|
||||
example: [
|
||||
{ item: "drivingLicense", inputKind: "document_camera" },
|
||||
{ item: "description", inputKind: "text" },
|
||||
],
|
||||
})
|
||||
requestedItemsUi?: { item: string; inputKind: string }[];
|
||||
|
||||
@ApiPropertyOptional({
|
||||
description: "Requested items this party has not yet satisfied (partial resend).",
|
||||
example: ["carCertificate"],
|
||||
})
|
||||
remainingItems?: string[];
|
||||
}
|
||||
|
||||
export class UserResendUploadResponseDto {
|
||||
|
||||
Reference in New Issue
Block a user