@skysoftware-co/bayan-hr-widgets-ui 2.0.2 → 2.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -308,6 +308,41 @@ interface PersonalDocument {
|
|
|
308
308
|
ExpiryDate: string;
|
|
309
309
|
Attachments: Attachment[];
|
|
310
310
|
}
|
|
311
|
+
type SubordinateDTO = {
|
|
312
|
+
EmployeeNumber: string;
|
|
313
|
+
EmployeeName: string;
|
|
314
|
+
EmployeeNameInitials: string;
|
|
315
|
+
PositionName: string;
|
|
316
|
+
GradeName: string;
|
|
317
|
+
PhotoPath: string;
|
|
318
|
+
PropertyName?: string;
|
|
319
|
+
PropertySymbol?: string;
|
|
320
|
+
AdminUnitName?: string;
|
|
321
|
+
MobileNumber?: string;
|
|
322
|
+
PersonalEmail?: string;
|
|
323
|
+
BusinessEmail?: string;
|
|
324
|
+
};
|
|
325
|
+
type SubordinatesPaginationDTO = {
|
|
326
|
+
PageIndex: number;
|
|
327
|
+
PageSize: number;
|
|
328
|
+
TotalPages: number;
|
|
329
|
+
TotalCount: number;
|
|
330
|
+
};
|
|
331
|
+
type SubordinatesApiResponse = {
|
|
332
|
+
Data: SubordinateDTO[];
|
|
333
|
+
Pagination: SubordinatesPaginationDTO;
|
|
334
|
+
};
|
|
335
|
+
type EmployeeMainInfo = {
|
|
336
|
+
EmployeeNumber: string;
|
|
337
|
+
EmployeeName: string;
|
|
338
|
+
PhotoKey: string;
|
|
339
|
+
PositionName: string;
|
|
340
|
+
AdminUnitName: string;
|
|
341
|
+
GradeName: string | null;
|
|
342
|
+
PropertyName: string;
|
|
343
|
+
PropertySymbol: string;
|
|
344
|
+
EmployeeNameInitials: string;
|
|
345
|
+
};
|
|
311
346
|
|
|
312
347
|
declare class BankInformationCacheService {
|
|
313
348
|
private bankInformationCache$;
|
|
@@ -1394,4 +1429,4 @@ declare class MyProfilePersonalDocumentsWidgetComponent implements OnInit {
|
|
|
1394
1429
|
}
|
|
1395
1430
|
|
|
1396
1431
|
export { EventOption, EventTypeEnum, HRCardHeaderComponent, HRConstantsService, HREmployeeCalendarComponent, HRTranslatePipe, HRTranslateService, MainWidgetShortcut, MyCalendarWidgetComponent, MyDependentsWidgetComponent, MyMainDetailsWidgetComponent, MyNextWeekVacationInsightsWidgetComponent, MyProfileAddressWidgetComponent, MyProfileBankInfoWidgetComponent, MyProfileContactWidgetComponent, MyProfileContractWidgetComponent, MyProfileDegreesWidgetComponent, MyProfileDependentsDocumentsWidgetComponent, MyProfileEntitlementsOthersWidgetComponent, MyProfileExperiencesWidgetComponent, MyProfileIndemnityWidgetComponent, MyProfileJobInfoWidgetComponent, MyProfileLanguagesWidgetComponent, MyProfileMedicalInsuranceWidgetComponent, MyProfileOtherNationalitiesWidgetComponent, MyProfilePersonalDocumentsWidgetComponent, MyProfileSalaryWidgetComponent, MyProfileServiceChargeWidgetComponent, MyProfileTicketWidgetComponent, MyProfileVacationsWidgetComponent, MyUpcomingEventsWidgetComponent, ProfilePersonalInfoMainWidgetComponent, PublicHolidayWeekContext, RelativeDay, ScheduleVacationTypes, ServiceChargeEntitlementMode, VacationPopupType };
|
|
1397
|
-
export type { Allowances, Attachment, Birthday, CalendarResponse, DatePeriod, Degree, Dependent, DependentDocumentGroup, DependentDocumentsResponse, DependentTicketDetails, DependentsMedicalInsurance, DocumentModel, DocumentRow, EmployeeMedicalInsurance, EmployeeTicketDetails, EntitlementsIndemnity, EntitlementsMedicalInsurance, EntitlementsTicket, EntitlementsVacation, Experience, FilteredUpcomingEvent, JobInformationContract, JobInformationMain, JobInformationSalary, JobInformationServiceCharge, MyBankInfo, MyMainDetailsWidgetDetails, PersonalDocument, PersonalInfoAddressDetails, PersonalInfoContactDetails, PersonalInfoContactEmergencyContact, PersonalInfoMainDetails, PublicHoliday, ScheduleCalenderVacation, ScheduleRequestsResponse, UpcomingEventsV2, VacationBalance };
|
|
1432
|
+
export type { Allowances, Attachment, Birthday, CalendarResponse, DatePeriod, Degree, Dependent, DependentDocumentGroup, DependentDocumentsResponse, DependentTicketDetails, DependentsMedicalInsurance, DocumentModel, DocumentRow, EmployeeMainInfo, EmployeeMedicalInsurance, EmployeeTicketDetails, EntitlementsIndemnity, EntitlementsMedicalInsurance, EntitlementsTicket, EntitlementsVacation, Experience, FilteredUpcomingEvent, JobInformationContract, JobInformationMain, JobInformationSalary, JobInformationServiceCharge, MyBankInfo, MyMainDetailsWidgetDetails, PersonalDocument, PersonalInfoAddressDetails, PersonalInfoContactDetails, PersonalInfoContactEmergencyContact, PersonalInfoMainDetails, PublicHoliday, ScheduleCalenderVacation, ScheduleRequestsResponse, SubordinateDTO, SubordinatesApiResponse, SubordinatesPaginationDTO, UpcomingEventsV2, VacationBalance };
|