updated possible values for manualStatus

This commit is contained in:
2025-05-19 13:38:56 +05:30
parent bd4d6363d0
commit 6e7ef46625

View File

@@ -132,7 +132,16 @@ const listPermitResponse = z.object({
const updatePermitInput = z.object({
manualStatus: z
.enum(["Ready To Issue", "Issued", "Invoiced", "Paid", "Closed"])
.enum([
"Ready To Issue",
"Issued",
"Paid",
"Closed",
"Requested Issuance",
"Rejected",
"On Hold",
"Ready to Download",
])
.nullable()
.optional(),
utility: z