refactor: edit type passpor
This commit is contained in:
parent
6efce3c4bb
commit
82d28cc3aa
3 changed files with 124 additions and 109 deletions
|
|
@ -297,14 +297,29 @@ export type EmployeeVisaPayload = {
|
|||
};
|
||||
|
||||
export type EmployeePassportPayload = {
|
||||
id?: string;
|
||||
number: string;
|
||||
type: string;
|
||||
issueDate: Date;
|
||||
expireDate: Date;
|
||||
issueCountry: string;
|
||||
birthCountry: string;
|
||||
previousPassportRef: string;
|
||||
issuePlace: string;
|
||||
previousPassportRef?: string | null;
|
||||
issueCountry: string;
|
||||
issueDate: Date;
|
||||
type: string;
|
||||
expireDate: Date;
|
||||
birthDate: Date;
|
||||
updatedAt: Date;
|
||||
createdAt: Date;
|
||||
workerStatus: string;
|
||||
nationality: string;
|
||||
gender: string;
|
||||
lastNameEN: string;
|
||||
lastName: string;
|
||||
middleNameEN: string;
|
||||
middleName: string;
|
||||
firstNameEN: string;
|
||||
firstName: string;
|
||||
namePrefix: string;
|
||||
employeeId: string;
|
||||
number: string;
|
||||
id?: string;
|
||||
};
|
||||
|
||||
export type EmployeeInCountryNoticePayload = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue