@silexpert/core 0.4.186 → 0.4.188
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/es/api/resources/Mail.d.ts +1 -0
- package/es/api/resources/Mail.d.ts.map +1 -1
- package/es/api/resources/Mail.js +3 -0
- package/es/api/resources/Mail.js.map +1 -1
- package/es/api/resources/SheetMonthSchedule.d.ts +4 -1
- package/es/api/resources/SheetMonthSchedule.d.ts.map +1 -1
- package/es/api/resources/SheetMonthSchedule.js +9 -0
- package/es/api/resources/SheetMonthSchedule.js.map +1 -1
- package/es/types/Enum/Role.d.ts +5 -1
- package/es/types/Enum/Role.d.ts.map +1 -1
- package/es/types/Enum/Role.js +4 -0
- package/es/types/Enum/Role.js.map +1 -1
- package/es/types/Enum/RoleDetail.d.ts +24 -0
- package/es/types/Enum/RoleDetail.d.ts.map +1 -1
- package/es/types/Enum/RoleDetail.js +24 -0
- package/es/types/Enum/RoleDetail.js.map +1 -1
- package/es/types/Enum/SheetMonthScheduleDetailType.d.ts +12 -0
- package/es/types/Enum/SheetMonthScheduleDetailType.d.ts.map +1 -0
- package/es/types/Enum/SheetMonthScheduleDetailType.js +14 -0
- package/es/types/Enum/SheetMonthScheduleDetailType.js.map +1 -0
- package/es/types/Interface/api/mail/QueryPaginatedMail.d.ts +1 -0
- package/es/types/Interface/api/mail/QueryPaginatedMail.d.ts.map +1 -1
- package/es/types/Interface/api/mail/QueryPaginatedMail.js +7 -0
- package/es/types/Interface/api/mail/QueryPaginatedMail.js.map +1 -1
- package/es/types/Interface/models/ISheetMonthSchedule.d.ts +2 -0
- package/es/types/Interface/models/ISheetMonthSchedule.d.ts.map +1 -1
- package/es/types/Interface/models/ISheetMonthSchedule.js.map +1 -1
- package/es/types/Interface/models/ISheetMonthScheduleDetails.d.ts +10 -0
- package/es/types/Interface/models/ISheetMonthScheduleDetails.d.ts.map +1 -0
- package/es/types/Interface/models/ISheetMonthScheduleDetails.js +2 -0
- package/es/types/Interface/models/ISheetMonthScheduleDetails.js.map +1 -0
- package/es/types/index.d.ts +2 -0
- package/es/types/index.d.ts.map +1 -1
- package/es/types/index.js +2 -0
- package/es/types/index.js.map +1 -1
- package/js/api/resources/Mail.js +13 -0
- package/js/api/resources/Mail.js.map +1 -1
- package/js/api/resources/SheetMonthSchedule.js +12 -0
- package/js/api/resources/SheetMonthSchedule.js.map +1 -1
- package/js/types/Enum/Role.js +4 -0
- package/js/types/Enum/Role.js.map +1 -1
- package/js/types/Enum/RoleDetail.js +24 -0
- package/js/types/Enum/RoleDetail.js.map +1 -1
- package/js/types/Enum/SheetMonthScheduleDetailType.js +28 -0
- package/js/types/Enum/SheetMonthScheduleDetailType.js.map +1 -0
- package/js/types/Interface/api/mail/QueryPaginatedMail.js +2 -0
- package/js/types/Interface/api/mail/QueryPaginatedMail.js.map +1 -1
- package/js/types/Interface/models/ISheetMonthScheduleDetails.js +6 -0
- package/js/types/Interface/models/ISheetMonthScheduleDetails.js.map +1 -0
- package/js/types/index.js +24 -0
- package/js/types/index.js.map +1 -1
- package/package.json +1 -1
- package/ts/api/resources/Mail.ts +12 -0
- package/ts/api/resources/SheetMonthSchedule.ts +13 -1
- package/ts/types/Enum/Role.ts +4 -0
- package/ts/types/Enum/RoleDetail.ts +24 -0
- package/ts/types/Enum/SheetMonthScheduleDetailType.ts +15 -0
- package/ts/types/Interface/api/mail/QueryPaginatedMail.ts +6 -0
- package/ts/types/Interface/models/ISheetMonthSchedule.ts +2 -0
- package/ts/types/Interface/models/ISheetMonthScheduleDetails.ts +10 -0
- package/ts/types/index.ts +2 -0
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { IEmployee } from './IEmployee';
|
|
2
2
|
import { IMonth } from './IMonth';
|
|
3
|
+
import { ISheetMonthScheduleDetail } from './ISheetMonthScheduleDetails';
|
|
3
4
|
|
|
4
5
|
// sheetMonthSchedules
|
|
5
6
|
export interface ISheetMonthSchedule {
|
|
@@ -41,4 +42,5 @@ export interface ISheetMonthSchedule {
|
|
|
41
42
|
// Associations
|
|
42
43
|
employee: IEmployee;
|
|
43
44
|
month: IMonth;
|
|
45
|
+
sheetMonthScheduleDetails: ISheetMonthScheduleDetail[]
|
|
44
46
|
}
|
package/ts/types/index.ts
CHANGED
|
@@ -168,6 +168,7 @@ export * from './Interface/models/ISector';
|
|
|
168
168
|
export * from './Interface/models/ISendMethod';
|
|
169
169
|
export * from './Interface/models/IService';
|
|
170
170
|
export * from './Interface/models/ISheetMonthSchedule';
|
|
171
|
+
export * from './Interface/models/ISheetMonthScheduleDetails';
|
|
171
172
|
export * from './Interface/models/ISimulation';
|
|
172
173
|
export * from './Interface/models/ISimulationAdditionalFinance';
|
|
173
174
|
export * from './Interface/models/ISimulationColor';
|
|
@@ -405,6 +406,7 @@ export * from './Enum/WebmailFlag';
|
|
|
405
406
|
export * from './Enum/MailFlag';
|
|
406
407
|
export * from './Enum/Contract';
|
|
407
408
|
export * from './Enum/SalariesType';
|
|
409
|
+
export * from './Enum/SheetMonthScheduleDetailType';
|
|
408
410
|
|
|
409
411
|
// Interfaces API
|
|
410
412
|
export * from './Interface/api/jeDeclare/ReadJeDeclare';
|