fix: missing selected image field
This commit is contained in:
parent
68d6bcfcab
commit
c755650fed
1 changed files with 2 additions and 0 deletions
|
|
@ -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")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue