Event to approval bug solved

This commit is contained in:
Eudes Inácio
2024-06-18 11:39:17 +01:00
parent f827e8b0c2
commit 4cf2b5254d
10 changed files with 57 additions and 27 deletions
@@ -177,7 +177,11 @@ const EventToApproveDetails = z.object({
totalDocuments: z.number().nullable(),
Documents: z.array(z.unknown()).nullable(),
PrivateMessage: z.string().nullable(),
Attachments: z.array(Attachments)
Attachments: z.array(Attachments),
eventRecurrence: z.object({
frequency: z.number(),
until: z.string()
})
});