@saritasa/crm-delmar-core-sdk 0.2.114 → 0.2.115
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/branches-api.service.d.ts +24 -1
- package/api/branches-api.serviceInterface.d.ts +16 -0
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs +57 -0
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs.map +1 -1
- package/model/branch-metrics.dto.d.ts +31 -0
- package/model/branch-user-metrics.dto.d.ts +36 -0
- package/model/models.d.ts +2 -0
- 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 { BranchUserMetricsDto } from "./branch-user-metrics.dto";
|
|
11
|
+
/**
|
|
12
|
+
* Serializer for Branch model with metrics stats.
|
|
13
|
+
*/
|
|
14
|
+
export interface BranchMetricsDto {
|
|
15
|
+
readonly id: number;
|
|
16
|
+
readonly created: string;
|
|
17
|
+
readonly modified: string;
|
|
18
|
+
name: string;
|
|
19
|
+
readonly utilization: string;
|
|
20
|
+
readonly billable_utilization: string;
|
|
21
|
+
readonly billable_job_duration: number;
|
|
22
|
+
readonly selfedu_job_duration: number;
|
|
23
|
+
readonly avg_day_job_duration: number;
|
|
24
|
+
readonly total_job_duration: number;
|
|
25
|
+
readonly plus_score: number;
|
|
26
|
+
readonly minus_score: number;
|
|
27
|
+
readonly total_score: number;
|
|
28
|
+
readonly total_workdays_count: number;
|
|
29
|
+
readonly total_holidays_count: number;
|
|
30
|
+
readonly users_data: Array<BranchUserMetricsDto>;
|
|
31
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
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 { SimpleDepartmentDto } from "./simple-department.dto";
|
|
11
|
+
/**
|
|
12
|
+
* Serializer for User model with metrics stats.
|
|
13
|
+
*/
|
|
14
|
+
export interface BranchUserMetricsDto {
|
|
15
|
+
readonly id: number;
|
|
16
|
+
readonly created: string;
|
|
17
|
+
readonly modified: string;
|
|
18
|
+
first_name: string;
|
|
19
|
+
last_name: string;
|
|
20
|
+
email: string;
|
|
21
|
+
readonly utilization: string;
|
|
22
|
+
readonly billable_utilization: string;
|
|
23
|
+
readonly billable_job_duration: number;
|
|
24
|
+
readonly selfedu_job_duration: number;
|
|
25
|
+
readonly avg_day_job_duration: number;
|
|
26
|
+
readonly total_job_duration: number;
|
|
27
|
+
readonly plus_score: number;
|
|
28
|
+
readonly minus_score: number;
|
|
29
|
+
readonly total_score: number;
|
|
30
|
+
readonly pto_days_count: number;
|
|
31
|
+
readonly personal_workday_days_count: number;
|
|
32
|
+
readonly total_workdays_count: number;
|
|
33
|
+
readonly department_data: SimpleDepartmentDto;
|
|
34
|
+
middle_name?: string;
|
|
35
|
+
avatar?: string | null;
|
|
36
|
+
}
|
package/model/models.d.ts
CHANGED
|
@@ -4,11 +4,13 @@ export * from "./billing-method-enum.dto";
|
|
|
4
4
|
export * from "./billing-type-enum.dto";
|
|
5
5
|
export * from "./branch-change-state-request.dto";
|
|
6
6
|
export * from "./branch.dto";
|
|
7
|
+
export * from "./branch-metrics.dto";
|
|
7
8
|
export * from "./branch-period.dto";
|
|
8
9
|
export * from "./branch-period-for-utilization-report.dto";
|
|
9
10
|
export * from "./branch-period-request.dto";
|
|
10
11
|
export * from "./branch-period-type-enum.dto";
|
|
11
12
|
export * from "./branch-request.dto";
|
|
13
|
+
export * from "./branch-user-metrics.dto";
|
|
12
14
|
export * from "./branch-user-stats.dto";
|
|
13
15
|
export * from "./client-component-hourly-report-export-resource-create-export-job-request.dto";
|
|
14
16
|
export * from "./client-department-hourly-report-export-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.115",
|
|
4
|
+
"description": "OpenAPI client for @saritasa/crm-delmar-core-sdk(for version 0.2.2)",
|
|
5
5
|
"author": "OpenAPI-Generator Contributors",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|