diff --git a/src/stores/employee/types.ts b/src/stores/employee/types.ts index 17df8333..1673f84f 100644 --- a/src/stores/employee/types.ts +++ b/src/stores/employee/types.ts @@ -282,3 +282,35 @@ export type NewEmployeeHistory = { history: { valueAfter: string; valueBefore: string; field: string }[]; }[]; }; + +export type EmployeeVisaPayload = { + number: string; + type: string; + entryCount: number; + issueCountry: string; + issuePlace: string; + issueDate: Date; + expireDate: Date; + mrz?: string; + remark?: string; +}; + +export type EmployeePassportPayload = { + number: string; + type: string; + issueDate: Date; + expireDate: Date; + issueCountry: string; + issuePlace: string; + previousPassportRef?: string | null; +}; + +export type EmployeeInCountryNoticePayload = { + noticeNumber: string; + noticeDate: string; + nextNoticeDate: Date; + tmNumber: string; + entryDate: Date; + travelBy: string; + travelFrom: string; +};