Uecko_ERP/modules/customers/src/web/pages/create/customer.schema.ts

7 lines
228 B
TypeScript
Raw Normal View History

2025-08-23 11:57:48 +00:00
import * as z from "zod/v4";
2025-09-01 14:07:59 +00:00
import { UpdateCustomerRequestSchema } from "../../../common";
2025-08-23 11:57:48 +00:00
2025-09-01 14:07:59 +00:00
export const CustomerDataFormSchema = UpdateCustomerRequestSchema;
2025-08-23 11:57:48 +00:00
export type CustomerData = z.infer<typeof CustomerDataFormSchema>;