@saritasa/crm-delmar-core-sdk 0.2.381 → 0.2.389
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
package/model/task.dto.d.ts
CHANGED
|
@@ -39,6 +39,7 @@ export interface TaskDto {
|
|
|
39
39
|
readonly assignee_data: SimpleUserDto | null;
|
|
40
40
|
readonly created_by_data: SimpleUserDto | null;
|
|
41
41
|
readonly updated_by_data: SimpleUserDto | null;
|
|
42
|
+
development_estimated?: number | null;
|
|
42
43
|
component?: number | null;
|
|
43
44
|
sprint?: number | null;
|
|
44
45
|
assignee?: number | null;
|
|
@@ -25,6 +25,7 @@ export interface UpdateTaskDto {
|
|
|
25
25
|
readonly text: string;
|
|
26
26
|
readonly status: string;
|
|
27
27
|
readonly estimated: number;
|
|
28
|
+
readonly development_estimated: number | null;
|
|
28
29
|
readonly priority: PriorityEnumDto;
|
|
29
30
|
readonly project: number;
|
|
30
31
|
readonly component: number | null;
|
|
@@ -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;
|
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
* https://openapi-generator.tech
|
|
8
8
|
* Do not edit the class manually.
|
|
9
9
|
*/
|
|
10
|
+
import { UserPeriodTypeEnumDto } from "./user-period-type-enum.dto";
|
|
10
11
|
import { DateRangeFieldRequestDto } from "./date-range-field-request.dto";
|
|
11
12
|
/**
|
|
12
13
|
* Serializer to update UserPeriod.
|
|
@@ -14,7 +15,7 @@ import { DateRangeFieldRequestDto } from "./date-range-field-request.dto";
|
|
|
14
15
|
export interface UserPeriodUpdateRequestDto {
|
|
15
16
|
period: DateRangeFieldRequestDto;
|
|
16
17
|
linked_period: DateRangeFieldRequestDto | null;
|
|
17
|
-
|
|
18
|
+
type: UserPeriodTypeEnumDto;
|
|
18
19
|
approver_users: Array<number>;
|
|
19
20
|
file?: string | null;
|
|
20
21
|
description?: string;
|
|
@@ -22,8 +22,8 @@ export interface UserPeriodUpdateDto {
|
|
|
22
22
|
readonly modified: string;
|
|
23
23
|
period: DateRangeFieldDto;
|
|
24
24
|
linked_period: DateRangeFieldDto | null;
|
|
25
|
-
user: number;
|
|
26
|
-
|
|
25
|
+
readonly user: number;
|
|
26
|
+
type: UserPeriodTypeEnumDto;
|
|
27
27
|
readonly status: UserPeriodStatusEnumDto;
|
|
28
28
|
readonly status_updated: string | null;
|
|
29
29
|
readonly user_data: SimpleUserDto;
|
package/package.json
CHANGED