@saritasa/crm-delmar-core-sdk 0.2.124 → 0.2.127
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/jobs-api.service.d.ts +24 -1
- package/api/jobs-api.serviceInterface.d.ts +16 -0
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs +59 -0
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs.map +1 -1
- package/model/models.d.ts +1 -0
- package/model/utilization-metrics-chart.dto.d.ts +26 -0
- package/package.json +2 -2
package/model/models.d.ts
CHANGED
|
@@ -305,6 +305,7 @@ export * from "./user-timezone-setting-request.dto";
|
|
|
305
305
|
export * from "./user-total-score.dto";
|
|
306
306
|
export * from "./user-utilization-report.dto";
|
|
307
307
|
export * from "./utilization-chart-point.dto";
|
|
308
|
+
export * from "./utilization-metrics-chart.dto";
|
|
308
309
|
export * from "./validation-error.dto";
|
|
309
310
|
export * from "./validation-response.dto";
|
|
310
311
|
export * from "./who-am-i.dto";
|
|
@@ -0,0 +1,26 @@
|
|
|
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 { DateRangeFieldDto } from "./date-range-field.dto";
|
|
11
|
+
/**
|
|
12
|
+
* Representation of utilization metrics chart.
|
|
13
|
+
*/
|
|
14
|
+
export interface UtilizationMetricsChartDto {
|
|
15
|
+
period: DateRangeFieldDto;
|
|
16
|
+
total: number;
|
|
17
|
+
utilized: number;
|
|
18
|
+
billable: number;
|
|
19
|
+
billable_previous_period: number;
|
|
20
|
+
capacity: number;
|
|
21
|
+
utilized_capacity: number;
|
|
22
|
+
utilization_capacity: number;
|
|
23
|
+
utilization_capacity_previous_period: number;
|
|
24
|
+
amplification: string;
|
|
25
|
+
amplification_previous_period: string;
|
|
26
|
+
}
|
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.127",
|
|
4
|
+
"description": "OpenAPI client for @saritasa/crm-delmar-core-sdk(for version 0.2.3)",
|
|
5
5
|
"author": "OpenAPI-Generator Contributors",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|