feat: add passport fields

This commit is contained in:
Methapon Metanipat 2024-11-11 13:25:04 +07:00
parent 00ce2abc7e
commit c66cf6e3a0
3 changed files with 39 additions and 0 deletions

View file

@ -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")