feat: add passport fields
This commit is contained in:
parent
00ce2abc7e
commit
c66cf6e3a0
3 changed files with 39 additions and 0 deletions
|
|
@ -40,6 +40,19 @@ type EmployeePassportPayload = {
|
|||
issueCountry: string;
|
||||
issuePlace: string;
|
||||
previousPassportRef?: string | null;
|
||||
|
||||
workerStatus: string;
|
||||
nationality: string;
|
||||
namePrefix?: string | null;
|
||||
firstName: string;
|
||||
firstNameEN: string;
|
||||
middleName?: string | null;
|
||||
middleNameEN?: string | null;
|
||||
lastName: string;
|
||||
lastNameEN: string;
|
||||
gender: string;
|
||||
birthDate: string;
|
||||
birthCountry: string;
|
||||
};
|
||||
|
||||
@Route("api/v1/employee/{employeeId}/passport")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue