refactor: nullable field
This commit is contained in:
parent
d33f1795cc
commit
44776ecb12
1 changed files with 6 additions and 6 deletions
|
|
@ -51,16 +51,16 @@ export type UserCreate = {
|
|||
gender: string;
|
||||
addressEN: string;
|
||||
address: string;
|
||||
trainingPlace?: string;
|
||||
importNationality?: string;
|
||||
sourceNationality?: string;
|
||||
trainingPlace?: string | null;
|
||||
importNationality?: string | null;
|
||||
sourceNationality?: string | null;
|
||||
licenseExpireDate?: Date | null;
|
||||
licenseIssueDate?: Date | null;
|
||||
licenseNo?: string;
|
||||
licenseNo?: string | null;
|
||||
discountCondition?: string;
|
||||
retireDate?: Date | null;
|
||||
startDate?: Date | null;
|
||||
registrationNo?: string;
|
||||
registrationNo?: string | null;
|
||||
lastNameEN: string;
|
||||
lastName: string;
|
||||
firstNameEN: string;
|
||||
|
|
@ -68,5 +68,5 @@ export type UserCreate = {
|
|||
userRole: string;
|
||||
userType: string;
|
||||
keycloakId: string;
|
||||
profileImage?: File;
|
||||
profileImage: File;
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue