@saritasa/crm-delmar-core-sdk 0.2.314 → 0.2.317

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.
@@ -14,9 +14,9 @@ export interface ClientStatisticsRequestDto {
14
14
  billable_tasks_count: number;
15
15
  unbillable_tasks_count: number;
16
16
  total_tasks_count: number;
17
- billable_jobs_count: number;
18
- unbillable_jobs_count: number;
19
- total_jobs_count: number;
17
+ billable_job_count: number;
18
+ unbillable_job_count: number;
19
+ total_job_count: number;
20
20
  billable_job_duration: number;
21
21
  unbillable_job_duration: number;
22
22
  total_job_duration: number;
@@ -17,9 +17,9 @@ export interface ClientStatisticsDto {
17
17
  billable_tasks_count: number;
18
18
  unbillable_tasks_count: number;
19
19
  total_tasks_count: number;
20
- billable_jobs_count: number;
21
- unbillable_jobs_count: number;
22
- total_jobs_count: number;
20
+ billable_job_count: number;
21
+ unbillable_job_count: number;
22
+ total_job_count: number;
23
23
  billable_job_duration: number;
24
24
  unbillable_job_duration: number;
25
25
  total_job_duration: number;
package/model/models.d.ts CHANGED
@@ -267,6 +267,8 @@ export * from "./task.dto";
267
267
  export * from "./task-hourly-report.dto";
268
268
  export * from "./task-progress-info.dto";
269
269
  export * from "./task-resource-create-export-job-request.dto";
270
+ export * from "./task-statistics.dto";
271
+ export * from "./task-statistics-request.dto";
270
272
  export * from "./task-stats.dto";
271
273
  export * from "./task-statuses.dto";
272
274
  export * from "./token-obtain-pair.dto";
@@ -14,9 +14,9 @@ export interface ProjectStatisticsRequestDto {
14
14
  billable_tasks_count: number;
15
15
  unbillable_tasks_count: number;
16
16
  total_tasks_count: number;
17
- billable_jobs_count: number;
18
- unbillable_jobs_count: number;
19
- total_jobs_count: number;
17
+ billable_job_count: number;
18
+ unbillable_job_count: number;
19
+ total_job_count: number;
20
20
  billable_job_duration: number;
21
21
  unbillable_job_duration: number;
22
22
  total_job_duration: number;
@@ -17,9 +17,9 @@ export interface ProjectStatisticsDto {
17
17
  billable_tasks_count: number;
18
18
  unbillable_tasks_count: number;
19
19
  total_tasks_count: number;
20
- billable_jobs_count: number;
21
- unbillable_jobs_count: number;
22
- total_jobs_count: number;
20
+ billable_job_count: number;
21
+ unbillable_job_count: number;
22
+ total_job_count: number;
23
23
  billable_job_duration: number;
24
24
  unbillable_job_duration: number;
25
25
  total_job_duration: number;
@@ -0,0 +1,22 @@
1
+ /**
2
+ * Delmar Api
3
+ *
4
+ *
5
+ *
6
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
7
+ * https://openapi-generator.tech
8
+ * Do not edit the class manually.
9
+ */
10
+ /**
11
+ * Serializer for TaskStatistics model.
12
+ */
13
+ export interface TaskStatisticsRequestDto {
14
+ billable_job_count: number;
15
+ unbillable_job_count: number;
16
+ total_job_count: number;
17
+ billable_job_duration: number;
18
+ unbillable_job_duration: number;
19
+ total_job_duration: number;
20
+ time_left: number;
21
+ overtime: string;
22
+ }
@@ -0,0 +1,25 @@
1
+ /**
2
+ * Delmar Api
3
+ *
4
+ *
5
+ *
6
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
7
+ * https://openapi-generator.tech
8
+ * Do not edit the class manually.
9
+ */
10
+ /**
11
+ * Serializer for TaskStatistics model.
12
+ */
13
+ export interface TaskStatisticsDto {
14
+ readonly id: number;
15
+ readonly created: string;
16
+ readonly modified: string;
17
+ billable_job_count: number;
18
+ unbillable_job_count: number;
19
+ total_job_count: number;
20
+ billable_job_duration: number;
21
+ unbillable_job_duration: number;
22
+ total_job_duration: number;
23
+ time_left: number;
24
+ overtime: string;
25
+ }
@@ -9,6 +9,7 @@
9
9
  */
10
10
  import { SimpleUserDto } from "./simple-user.dto";
11
11
  import { SimpleProjectDto } from "./simple-project.dto";
12
+ import { TaskStatisticsDto } from "./task-statistics.dto";
12
13
  import { SimpleComponentDto } from "./simple-component.dto";
13
14
  import { SimpleJiraTaskDto } from "./simple-jira-task.dto";
14
15
  import { PriorityEnumDto } from "./priority-enum.dto";
@@ -30,13 +31,7 @@ export interface TaskDto {
30
31
  readonly created_by: number | null;
31
32
  readonly updated_by: number | null;
32
33
  jira_link: number;
33
- readonly billable_jobs_count: number;
34
- readonly unbillable_jobs_count: number;
35
- readonly billable_duration: number;
36
- readonly unbillable_duration: number;
37
- readonly total_duration: number;
38
- readonly time_left: number;
39
- readonly overtime: string;
34
+ readonly statistics_data: TaskStatisticsDto;
40
35
  readonly project_data: SimpleProjectDto;
41
36
  readonly component_data: SimpleComponentDto | null;
42
37
  readonly sprint_data: SimpleSprintDto | null;
@@ -9,6 +9,7 @@
9
9
  */
10
10
  import { SimpleUserDto } from "./simple-user.dto";
11
11
  import { SimpleProjectDto } from "./simple-project.dto";
12
+ import { TaskStatisticsDto } from "./task-statistics.dto";
12
13
  import { SimpleComponentDto } from "./simple-component.dto";
13
14
  import { SimpleJiraTaskDto } from "./simple-jira-task.dto";
14
15
  import { PriorityEnumDto } from "./priority-enum.dto";
@@ -32,14 +33,8 @@ export interface UpdateTaskDto {
32
33
  readonly created_by: number | null;
33
34
  readonly updated_by: number | null;
34
35
  readonly jira_link: number;
35
- readonly billable_jobs_count: number;
36
- readonly unbillable_jobs_count: number;
37
- readonly billable_duration: number;
38
- readonly unbillable_duration: number;
39
- readonly total_duration: number;
40
- readonly time_left: number;
41
- readonly overtime: string;
42
36
  is_billable: boolean;
37
+ readonly statistics_data: TaskStatisticsDto;
43
38
  readonly project_data: SimpleProjectDto;
44
39
  readonly component_data: SimpleComponentDto | null;
45
40
  readonly sprint_data: SimpleSprintDto | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@saritasa/crm-delmar-core-sdk",
3
- "version": "0.2.314",
3
+ "version": "0.2.317",
4
4
  "description": "OpenAPI client for @saritasa/crm-delmar-core-sdk(for version 0.2.8)",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {