From 46ba857e2892fb2107a353566bedd8831c69f5ed Mon Sep 17 00:00:00 2001 From: Methapon2001 <61303214+Methapon2001@users.noreply.github.com> Date: Wed, 16 Jul 2025 11:38:11 +0700 Subject: [PATCH] fix: missing type --- src/controllers/02-user-controller.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/controllers/02-user-controller.ts b/src/controllers/02-user-controller.ts index c663b74..e05fcd1 100644 --- a/src/controllers/02-user-controller.ts +++ b/src/controllers/02-user-controller.ts @@ -132,6 +132,7 @@ type UserCreate = { provinceText?: string | null; provinceTextEN?: string | null; provinceId?: string | null; + zipCodeText?: string | null; selectedImage?: string; @@ -203,6 +204,7 @@ type UserUpdate = { provinceText?: string | null; provinceTextEN?: string | null; provinceId?: string | null; + zipCodeText?: string | null; branchId?: string | string[];