From 13f8b34d7e901f2a9994a405aed87986bacb3086 Mon Sep 17 00:00:00 2001 From: Methapon Metanipat Date: Mon, 16 Sep 2024 14:14:51 +0700 Subject: [PATCH] Revert "refactor: make field optional" This reverts commit b583c23bd1b630eea2e52588b37b698bc4269480. --- src/controllers/03-customer-controller.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/controllers/03-customer-controller.ts b/src/controllers/03-customer-controller.ts index 8b771d8..367cd91 100644 --- a/src/controllers/03-customer-controller.ts +++ b/src/controllers/03-customer-controller.ts @@ -63,7 +63,7 @@ export type CustomerCreate = { authorizedCapital?: string; authorizedName?: string; authorizedNameEN?: string; - customerName: string; + customerName?: string; customerId?: string;