@saritasa/crm-delmar-core-sdk 0.2.424 → 0.2.429
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/README.md +2 -2
- package/api/branch-periods-api.serviceInterface.d.ts +1 -0
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs +211 -209
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs.map +1 -1
- package/model/notification-type-enum.dto.d.ts +1 -1
- package/model/notify-data-user-on-vacation-with-projects.dto.d.ts +1 -1
- package/model/notify-data-user-on-vacation-with-tasks.dto.d.ts +1 -1
- package/package.json +1 -1
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
* Do not edit the class manually.
|
|
9
9
|
*/
|
|
10
10
|
/**
|
|
11
|
-
* * `new_user_score` - New user score * `new_user_score_for_supervisee` - New user score for supervisee * `new_vacation` - New vacation * `updated_vacation` - Updated vacation * `vacation_approved` - Vacation approved * `vacation_rejected` - Vacation rejected * `vacation_approval_reminder` - Vacation approval reminder * `vacation_user_recheck_reminder` - Vacation user recheck reminder * `new_sick` - New sick * `new_personal_holiday` - New personal holiday * `new_personal_workday` - New personal workday * `new_compensation` - New compensation * `updated_sick` - Updated sick * `updated_personal_holiday` - Updated personal holiday * `updated_personal_workday` - Updated personal workday * `deleted_sick` - Deleted sick * `deleted_personal_holiday` - Deleted personal holiday * `deleted_personal_workday` - Deleted personal workday * `user_period_approver_approved` - Approver approved user period * `user_period_approver_review_requested` - Approver was requested to review user period * `user_on_vacation_with_projects_reminder` - Reminder for
|
|
11
|
+
* * `new_user_score` - New user score * `new_user_score_for_supervisee` - New user score for supervisee * `new_vacation` - New vacation * `updated_vacation` - Updated vacation * `vacation_approved` - Vacation approved * `vacation_rejected` - Vacation rejected * `vacation_approval_reminder` - Vacation approval reminder * `vacation_user_recheck_reminder` - Vacation user recheck reminder * `new_sick` - New sick * `new_personal_holiday` - New personal holiday * `new_personal_workday` - New personal workday * `new_compensation` - New compensation * `updated_sick` - Updated sick * `updated_personal_holiday` - Updated personal holiday * `updated_personal_workday` - Updated personal workday * `deleted_sick` - Deleted sick * `deleted_personal_holiday` - Deleted personal holiday * `deleted_personal_workday` - Deleted personal workday * `user_period_approver_approved` - Approver approved user period * `user_period_approver_review_requested` - Approver was requested to review user period * `user_on_vacation_with_projects_reminder` - Reminder for user that other user they are working with is going on vacation * `user_on_vacation_with_assigned_tasks_reminder` - Reminder for user that other user on vacation has assigned tasks
|
|
12
12
|
*/
|
|
13
13
|
export declare enum NotificationTypeEnumDto {
|
|
14
14
|
NewUserScore = "new_user_score",
|
|
@@ -28,7 +28,7 @@ export interface NotifyDataUserOnVacationWithProjectsDto {
|
|
|
28
28
|
branch_id: number;
|
|
29
29
|
work_type_id: number;
|
|
30
30
|
location_id: number;
|
|
31
|
-
|
|
31
|
+
user_to_notify: NotifyDataUserDto;
|
|
32
32
|
vacation: NotifyDataUserPeriodDto;
|
|
33
33
|
projects: Array<NotifyDataProjectDto>;
|
|
34
34
|
}
|
|
@@ -28,7 +28,7 @@ export interface NotifyDataUserOnVacationWithTasksDto {
|
|
|
28
28
|
branch_id: number;
|
|
29
29
|
work_type_id: number;
|
|
30
30
|
location_id: number;
|
|
31
|
-
|
|
31
|
+
user_to_notify: NotifyDataUserDto;
|
|
32
32
|
vacation: NotifyDataUserPeriodDto;
|
|
33
33
|
tasks: Array<NotifyDataTaskDto>;
|
|
34
34
|
}
|
package/package.json
CHANGED