ITOTEAM-525 no mobile ao adicionar attachments aparece um sem título

This commit is contained in:
Peter Maquiran
2024-06-22 21:51:40 +01:00
parent 536548af0c
commit e1914505f2
13 changed files with 41 additions and 19 deletions
@@ -0,0 +1,13 @@
import { z } from 'zod';
export const AttachInputDTOSchema = z.object({
attachments: z.array(z.object({
docId: z.any(),
sourceName: z.any(),
description: z.any(),
applicationId: z.any(),
}))
})
export type AttachInputDTO = z.infer<typeof AttachInputDTOSchema>