@saritasa/crm-delmar-core-sdk 0.1.90 → 0.1.93

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.
@@ -15,16 +15,7 @@ export interface ClientDurationDataDto {
15
15
  readonly created: string;
16
16
  readonly modified: string;
17
17
  name: string;
18
- /**
19
- * Get billable duration.
20
- */
21
- readonly billable_job_duration: number;
22
- /**
23
- * Get unbillable duration.
24
- */
25
- readonly unbillable_job_duration: number;
26
- /**
27
- * Get total duration.
28
- */
29
- readonly total_job_duration: number;
18
+ billable_job_duration: number;
19
+ unbillable_job_duration: number;
20
+ total_job_duration: number;
30
21
  }
@@ -12,17 +12,8 @@ import { ClientDurationDataDto } from "./client-duration-data.dto";
12
12
  * Serializer to present total margin report for `Client` instances.
13
13
  */
14
14
  export interface ClientMarginReportDto {
15
- /**
16
- * Get billable duration.
17
- */
18
- readonly billable_job_duration: number;
19
- /**
20
- * Get unbillable duration.
21
- */
22
- readonly unbillable_job_duration: number;
23
- /**
24
- * Get total duration.
25
- */
26
- readonly total_job_duration: number;
15
+ billable_job_duration: number;
16
+ unbillable_job_duration: number;
17
+ total_job_duration: number;
27
18
  readonly clients: Array<ClientDurationDataDto>;
28
19
  }
@@ -20,18 +20,9 @@ export interface ProjectMarginReportDto {
20
20
  readonly modified: string;
21
21
  name: string;
22
22
  billing_type: BillingTypeEnumDto;
23
- /**
24
- * Get billable duration.
25
- */
26
- readonly billable_job_duration: number;
27
- /**
28
- * Get unbillable duration.
29
- */
30
- readonly unbillable_job_duration: number;
31
- /**
32
- * Get total duration.
33
- */
34
- readonly total_job_duration: number;
23
+ billable_job_duration: number;
24
+ unbillable_job_duration: number;
25
+ total_job_duration: number;
35
26
  readonly priority_data: SimpleProjectPriorityDto | null;
36
27
  billing_frequency?: BillingFrequencyEnumDto;
37
28
  priority?: number | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@saritasa/crm-delmar-core-sdk",
3
- "version": "0.1.90",
3
+ "version": "0.1.93",
4
4
  "description": "OpenAPI client for @saritasa/crm-delmar-core-sdk(for version 0.1.48)",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {