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;
|
gender: string;
|
||||||
addressEN: string;
|
addressEN: string;
|
||||||
address: string;
|
address: string;
|
||||||
trainingPlace?: string;
|
trainingPlace?: string | null;
|
||||||
importNationality?: string;
|
importNationality?: string | null;
|
||||||
sourceNationality?: string;
|
sourceNationality?: string | null;
|
||||||
licenseExpireDate?: Date | null;
|
licenseExpireDate?: Date | null;
|
||||||
licenseIssueDate?: Date | null;
|
licenseIssueDate?: Date | null;
|
||||||
licenseNo?: string;
|
licenseNo?: string | null;
|
||||||
discountCondition?: string;
|
discountCondition?: string;
|
||||||
retireDate?: Date | null;
|
retireDate?: Date | null;
|
||||||
startDate?: Date | null;
|
startDate?: Date | null;
|
||||||
registrationNo?: string;
|
registrationNo?: string | null;
|
||||||
lastNameEN: string;
|
lastNameEN: string;
|
||||||
lastName: string;
|
lastName: string;
|
||||||
firstNameEN: string;
|
firstNameEN: string;
|
||||||
|
|
@ -68,5 +68,5 @@ export type UserCreate = {
|
||||||
userRole: string;
|
userRole: string;
|
||||||
userType: string;
|
userType: string;
|
||||||
keycloakId: string;
|
keycloakId: string;
|
||||||
profileImage?: File;
|
profileImage: File;
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue