a.... LOT of Refactoring ~ 30% done???

This commit is contained in:
user
2025-10-21 15:44:16 +03:00
parent 5f4e9fc7fc
commit c0df8cae57
27 changed files with 586 additions and 746 deletions

View File

@@ -1,5 +1,11 @@
import { z } from "zod";
export enum Gender {
Male = "male",
Female = "female",
Other = "other",
}
export const customerInfoModel = z.object({
id: z.number().optional(),
firstName: z.string().min(1).max(64),