add notification create route, update permit update rotue

This commit is contained in:
2025-03-27 11:08:49 +05:30
parent 300e67bcb7
commit 3e68d594d2
7 changed files with 70 additions and 4 deletions

View File

@@ -133,6 +133,7 @@ const updatePermitInput = z.object({
.nullable()
.optional(),
assignedTo: z.string().optional(),
newPayment: z.array(z.any()),
});
export type CreatePermitInput = z.infer<typeof createPermitInput>;