@saritasa/crm-delmar-core-sdk 0.2.148 → 0.2.151
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/departments-api.service.d.ts +24 -1
- package/api/departments-api.serviceInterface.d.ts +17 -0
- package/api/users-api.service.d.ts +4 -4
- package/api/users-api.serviceInterface.d.ts +4 -6
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs +81 -22
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs.map +1 -1
- package/model/company-jobs-department.dto.d.ts +31 -0
- package/model/company-jobs-departments-data.dto.d.ts +19 -0
- package/model/{project-duration-data.dto.d.ts → company-jobs-project.dto.d.ts} +1 -1
- package/model/{user-duration-data.dto.d.ts → company-jobs-user.dto.d.ts} +10 -4
- package/model/{user-company-jobs-report.dto.d.ts → company-jobs-users-data.dto.d.ts} +3 -3
- package/model/models.d.ts +5 -3
- package/package.json +2 -2
|
@@ -0,0 +1,31 @@
|
|
|
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
|
+
import { CompanyJobsProjectDto } from "./company-jobs-project.dto";
|
|
11
|
+
/**
|
|
12
|
+
* Serializer to present company jobs report for `Department` instance.
|
|
13
|
+
*/
|
|
14
|
+
export interface CompanyJobsDepartmentDto {
|
|
15
|
+
readonly id: number;
|
|
16
|
+
readonly created: string;
|
|
17
|
+
readonly modified: string;
|
|
18
|
+
name: string;
|
|
19
|
+
readonly utilization: string;
|
|
20
|
+
billable_job_duration: number;
|
|
21
|
+
unbillable_job_duration: number;
|
|
22
|
+
total_job_duration: number;
|
|
23
|
+
utilized_projects_billable_job_duration: number;
|
|
24
|
+
utilized_projects_unbillable_job_duration: number;
|
|
25
|
+
utilized_projects_total_job_duration: number;
|
|
26
|
+
unutilized_projects_billable_job_duration: number;
|
|
27
|
+
unutilized_projects_unbillable_job_duration: number;
|
|
28
|
+
unutilized_projects_total_job_duration: number;
|
|
29
|
+
utilized_projects: Array<CompanyJobsProjectDto>;
|
|
30
|
+
unutilized_projects: Array<CompanyJobsProjectDto>;
|
|
31
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
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
|
+
import { CompanyJobsDepartmentDto } from "./company-jobs-department.dto";
|
|
11
|
+
/**
|
|
12
|
+
* Serializer to present company jobs report for `Department` instances.
|
|
13
|
+
*/
|
|
14
|
+
export interface CompanyJobsDepartmentsDataDto {
|
|
15
|
+
billable_job_duration: number;
|
|
16
|
+
unbillable_job_duration: number;
|
|
17
|
+
total_job_duration: number;
|
|
18
|
+
objects: Array<CompanyJobsDepartmentDto>;
|
|
19
|
+
}
|
|
@@ -7,12 +7,12 @@
|
|
|
7
7
|
* https://openapi-generator.tech
|
|
8
8
|
* Do not edit the class manually.
|
|
9
9
|
*/
|
|
10
|
-
import {
|
|
10
|
+
import { CompanyJobsProjectDto } from "./company-jobs-project.dto";
|
|
11
11
|
import { SimpleDepartmentDto } from "./simple-department.dto";
|
|
12
12
|
/**
|
|
13
13
|
* Serializer to present company jobs report for `User` instance.
|
|
14
14
|
*/
|
|
15
|
-
export interface
|
|
15
|
+
export interface CompanyJobsUserDto {
|
|
16
16
|
readonly id: number;
|
|
17
17
|
readonly created: string;
|
|
18
18
|
readonly modified: string;
|
|
@@ -28,8 +28,14 @@ export interface UserDurationDataDto {
|
|
|
28
28
|
billable_job_duration: number;
|
|
29
29
|
unbillable_job_duration: number;
|
|
30
30
|
total_job_duration: number;
|
|
31
|
-
|
|
32
|
-
|
|
31
|
+
utilized_projects_billable_job_duration: number;
|
|
32
|
+
utilized_projects_unbillable_job_duration: number;
|
|
33
|
+
utilized_projects_total_job_duration: number;
|
|
34
|
+
unutilized_projects_billable_job_duration: number;
|
|
35
|
+
unutilized_projects_unbillable_job_duration: number;
|
|
36
|
+
unutilized_projects_total_job_duration: number;
|
|
37
|
+
utilized_projects: Array<CompanyJobsProjectDto>;
|
|
38
|
+
unutilized_projects: Array<CompanyJobsProjectDto>;
|
|
33
39
|
readonly department_data: SimpleDepartmentDto;
|
|
34
40
|
middle_name?: string;
|
|
35
41
|
avatar?: string | null;
|
|
@@ -7,13 +7,13 @@
|
|
|
7
7
|
* https://openapi-generator.tech
|
|
8
8
|
* Do not edit the class manually.
|
|
9
9
|
*/
|
|
10
|
-
import {
|
|
10
|
+
import { CompanyJobsUserDto } from "./company-jobs-user.dto";
|
|
11
11
|
/**
|
|
12
12
|
* Serializer to present company jobs report for `User` instances.
|
|
13
13
|
*/
|
|
14
|
-
export interface
|
|
14
|
+
export interface CompanyJobsUsersDataDto {
|
|
15
15
|
billable_job_duration: number;
|
|
16
16
|
unbillable_job_duration: number;
|
|
17
17
|
total_job_duration: number;
|
|
18
|
-
|
|
18
|
+
objects: Array<CompanyJobsUserDto>;
|
|
19
19
|
}
|
package/model/models.d.ts
CHANGED
|
@@ -33,6 +33,11 @@ export * from "./client-statistics-request.dto";
|
|
|
33
33
|
export * from "./client-status-enum.dto";
|
|
34
34
|
export * from "./client-summary-export-resource-create-export-job-request.dto";
|
|
35
35
|
export * from "./client-task-hourly-report-export-resource-create-export-job-request.dto";
|
|
36
|
+
export * from "./company-jobs-department.dto";
|
|
37
|
+
export * from "./company-jobs-departments-data.dto";
|
|
38
|
+
export * from "./company-jobs-project.dto";
|
|
39
|
+
export * from "./company-jobs-user.dto";
|
|
40
|
+
export * from "./company-jobs-users-data.dto";
|
|
36
41
|
export * from "./compare-task-progress.dto";
|
|
37
42
|
export * from "./compare-task-progress-state-enum.dto";
|
|
38
43
|
export * from "./component.dto";
|
|
@@ -177,7 +182,6 @@ export * from "./progress-info.dto";
|
|
|
177
182
|
export * from "./project-component-hourly-report-export-resource-create-export-job-request.dto";
|
|
178
183
|
export * from "./project-department-hourly-report-export-resource-create-export-job-request.dto";
|
|
179
184
|
export * from "./project.dto";
|
|
180
|
-
export * from "./project-duration-data.dto";
|
|
181
185
|
export * from "./project-job-hourly-report-export-resource-create-export-job-request.dto";
|
|
182
186
|
export * from "./project-margin-report.dto";
|
|
183
187
|
export * from "./project-note.dto";
|
|
@@ -274,11 +278,9 @@ export * from "./update-project-note-request.dto";
|
|
|
274
278
|
export * from "./update-task.dto";
|
|
275
279
|
export * from "./update-task-request.dto";
|
|
276
280
|
export * from "./user-capacity.dto";
|
|
277
|
-
export * from "./user-company-jobs-report.dto";
|
|
278
281
|
export * from "./user-daily-tabular-report.dto";
|
|
279
282
|
export * from "./user-day-for-utilization-report.dto";
|
|
280
283
|
export * from "./user.dto";
|
|
281
|
-
export * from "./user-duration-data.dto";
|
|
282
284
|
export * from "./user-login.dto";
|
|
283
285
|
export * from "./user-login-request.dto";
|
|
284
286
|
export * from "./user-metrics-resource-create-export-job-request.dto";
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@saritasa/crm-delmar-core-sdk",
|
|
3
|
-
"version": "0.2.
|
|
4
|
-
"description": "OpenAPI client for @saritasa/crm-delmar-core-sdk(for version 0.2.
|
|
3
|
+
"version": "0.2.151",
|
|
4
|
+
"description": "OpenAPI client for @saritasa/crm-delmar-core-sdk(for version 0.2.7)",
|
|
5
5
|
"author": "OpenAPI-Generator Contributors",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|