fix: update type should not require customerType

This commit is contained in:
Methapon2001 2024-04-09 15:43:21 +07:00
parent 356e307470
commit 748451240a

View file

@ -34,7 +34,7 @@ export type CustomerCreate = {
export type CustomerUpdate = {
status?: "ACTIVE" | "INACTIVE";
customerType: CustomerType;
customerType?: CustomerType;
customerName?: string;
customerNameEN?: string;
};