feat: make field optional

This commit is contained in:
Methapon2001 2024-06-19 14:10:31 +07:00
parent 886cae7f94
commit a3207ea026

View file

@ -69,7 +69,7 @@ export type CustomerCreate = {
export type CustomerUpdate = { export type CustomerUpdate = {
status?: "ACTIVE" | "INACTIVE"; status?: "ACTIVE" | "INACTIVE";
personName: string; personName?: string;
personNameEN?: string; personNameEN?: string;
customerType?: CustomerType; customerType?: CustomerType;
customerName?: string; customerName?: string;