@saritasa/crm-delmar-core-sdk 0.0.395 → 0.0.396
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
CHANGED
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
* Do not edit the class manually.
|
|
9
9
|
*/
|
|
10
10
|
import { DateRangeFieldDto } from "./date-range-field.dto";
|
|
11
|
+
import { LinkedUserPeriodDto } from "./linked-user-period.dto";
|
|
11
12
|
import { UserPeriodTypeEnumDto } from "./user-period-type-enum.dto";
|
|
12
13
|
import { SimpleUserPeriodApproverDto } from "./simple-user-period-approver.dto";
|
|
13
14
|
import { UserPeriodStatusEnumDto } from "./user-period-status-enum.dto";
|
|
@@ -22,6 +23,11 @@ export interface UserPeriodForStatsDto {
|
|
|
22
23
|
type: UserPeriodTypeEnumDto;
|
|
23
24
|
status: UserPeriodStatusEnumDto;
|
|
24
25
|
readonly approvers_data: Array<SimpleUserPeriodApproverDto>;
|
|
26
|
+
/**
|
|
27
|
+
* Reference to another UserPeriod. For now it is used to link personal holidays to personal workdays.
|
|
28
|
+
*/
|
|
29
|
+
readonly linked_user_period_data: LinkedUserPeriodDto | null;
|
|
30
|
+
readonly linked_user_period_to_data: LinkedUserPeriodDto;
|
|
25
31
|
status_updated?: string | null;
|
|
26
32
|
file?: string | null;
|
|
27
33
|
description?: string;
|
package/package.json
CHANGED