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")