@saritasa/crm-delmar-core-sdk 0.1.91 → 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.
- package/README.md +2 -2
- package/api/jobs-api.serviceInterface.d.ts +0 -4
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs +0 -8
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs.map +1 -1
- package/model/client-duration-data.dto.d.ts +3 -12
- package/model/client-margin-report.dto.d.ts +3 -12
- package/model/project-margin-report.dto.d.ts +3 -12
- package/package.json +1 -1
|
@@ -15,16 +15,7 @@ export interface ClientDurationDataDto {
|
|
|
15
15
|
readonly created: string;
|
|
16
16
|
readonly modified: string;
|
|
17
17
|
name: string;
|
|
18
|
-
|
|
19
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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