@saritasa/crm-delmar-core-sdk 0.2.124 → 0.2.129

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/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";
@@ -52,6 +52,7 @@ export interface ProjectRequestDto {
52
52
  * Project ID in Zoho CRM
53
53
  */
54
54
  zoho_id?: string;
55
+ qa_status_name?: string;
55
56
  dev_site?: string;
56
57
  actual_site?: string;
57
58
  client_contact?: number | null;
@@ -72,6 +72,7 @@ export interface ProjectStatusReportDto {
72
72
  * Project ID in Zoho CRM
73
73
  */
74
74
  zoho_id?: string;
75
+ qa_status_name?: string;
75
76
  dev_site?: string;
76
77
  actual_site?: string;
77
78
  client_contact?: number | null;
@@ -71,6 +71,7 @@ export interface ProjectDto {
71
71
  * Project ID in Zoho CRM
72
72
  */
73
73
  zoho_id?: string;
74
+ qa_status_name?: string;
74
75
  dev_site?: string;
75
76
  actual_site?: string;
76
77
  client_contact?: number | null;
@@ -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.124",
4
- "description": "OpenAPI client for @saritasa/crm-delmar-core-sdk(for version 0.2.2)",
3
+ "version": "0.2.129",
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",