@saritasa/crm-delmar-core-sdk 0.2.108 → 0.2.112
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/export-users-api.serviceInterface.d.ts +2 -0
- package/api/users-api.serviceInterface.d.ts +6 -0
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs +16 -0
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs.map +1 -1
- package/model/user-capacity.dto.d.ts +7 -0
- package/model/user-sum-capacity.dto.d.ts +1 -0
- package/package.json +1 -1
|
@@ -15,7 +15,14 @@ export interface UserCapacityDto {
|
|
|
15
15
|
readonly created: string;
|
|
16
16
|
readonly modified: string;
|
|
17
17
|
date: string;
|
|
18
|
+
/**
|
|
19
|
+
* How much the user should bill.
|
|
20
|
+
*/
|
|
18
21
|
capacity: number;
|
|
22
|
+
/**
|
|
23
|
+
* How much the user should spend on utilized projects.
|
|
24
|
+
*/
|
|
25
|
+
utilization_capacity: number;
|
|
19
26
|
user: number;
|
|
20
27
|
branch: number;
|
|
21
28
|
work_type: number;
|
package/package.json
CHANGED