add viewer

This commit is contained in:
Peter Maquiran
2024-02-08 16:17:57 +01:00
parent e6f70cb7e6
commit eb2a665d2a
10 changed files with 146 additions and 39 deletions
@@ -0,0 +1,12 @@
import { z } from "zod";
const Bodyschema = z.object({
SerialNumber: z.string(),
DispatchDocId: z.number(),
FolderID: z.any(),
Subject: z.string(),
Comment: z.string().optional(),
DelegatedUserEmail: z.string().email(),
UserId: z.any(),
DraftIds: z.string(),
})