add null otherNationality
All checks were successful
Spell Check / Spell Check with Typos (push) Successful in 6s
All checks were successful
Spell Check / Spell Check with Typos (push) Successful in 6s
This commit is contained in:
parent
7fe0512a2f
commit
ce42a6dca6
1 changed files with 2 additions and 2 deletions
|
|
@ -74,7 +74,7 @@ type EmployeeCreate = {
|
||||||
dateOfBirth?: Date | null;
|
dateOfBirth?: Date | null;
|
||||||
gender: string;
|
gender: string;
|
||||||
nationality: string;
|
nationality: string;
|
||||||
otherNationality?: string;
|
otherNationality?: string | null;
|
||||||
|
|
||||||
namePrefix?: string | null;
|
namePrefix?: string | null;
|
||||||
firstName?: string;
|
firstName?: string;
|
||||||
|
|
@ -111,7 +111,7 @@ type EmployeeUpdate = {
|
||||||
dateOfBirth?: Date;
|
dateOfBirth?: Date;
|
||||||
gender?: string;
|
gender?: string;
|
||||||
nationality?: string;
|
nationality?: string;
|
||||||
otherNationality?: string;
|
otherNationality?: string | null;
|
||||||
|
|
||||||
namePrefix?: string | null;
|
namePrefix?: string | null;
|
||||||
firstName?: string;
|
firstName?: string;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue