update manualStatus field to be nullable

This commit is contained in:
2025-03-18 14:01:30 +05:30
parent 711a3d1df7
commit f8d99b6389

View File

@@ -130,6 +130,7 @@ const listPermitResponse = z.object({
const updatePermitInput = z.object({
manualStatus: z
.enum(["Ready To Issue", "Issued", "Invoiced", "Paid", "Closed"])
.nullable()
.optional(),
assignedTo: z.string().optional(),
});