From c755650fed7f2bd9c54c6be67ebbd5297d3a43a0 Mon Sep 17 00:00:00 2001 From: Methapon Metanipat Date: Tue, 10 Sep 2024 15:45:58 +0700 Subject: [PATCH] fix: missing selected image field --- src/controllers/03-customer-controller.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/controllers/03-customer-controller.ts b/src/controllers/03-customer-controller.ts index 1ee60d2..cab6850 100644 --- a/src/controllers/03-customer-controller.ts +++ b/src/controllers/03-customer-controller.ts @@ -63,6 +63,7 @@ export type CustomerCreate = { lastNameEN?: string; gender: string; birthDate: Date; + selectedImage?: string; }; export type CustomerUpdate = { @@ -78,6 +79,7 @@ export type CustomerUpdate = { lastNameEN?: string; gender?: string; birthDate?: Date; + selectedImage?: string; }; @Route("api/v1/customer")