@saritasa/crm-delmar-core-sdk 0.1.22 → 0.1.24
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/projects-api.serviceInterface.d.ts +1 -0
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs +25 -1
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs.map +1 -1
- package/model/models.d.ts +1 -0
- package/model/project-status-report.dto.d.ts +2 -1
- package/model/projects-margin-report-list-error.dto.d.ts +2 -1
- package/model/projects-margin-report-list-rounding-type-error-component.dto.d.ts +27 -0
- package/package.json +2 -2
package/model/models.d.ts
CHANGED
|
@@ -1214,6 +1214,7 @@ export * from "./projects-margin-report-list-ordering-error-component.dto";
|
|
|
1214
1214
|
export * from "./projects-margin-report-list-period-error-component.dto";
|
|
1215
1215
|
export * from "./projects-margin-report-list-project-managers-error-component.dto";
|
|
1216
1216
|
export * from "./projects-margin-report-list-project-managers-in-error-component.dto";
|
|
1217
|
+
export * from "./projects-margin-report-list-rounding-type-error-component.dto";
|
|
1217
1218
|
export * from "./projects-margin-report-list-validation-error.dto";
|
|
1218
1219
|
export * from "./projects-status-report-list-billing-type-error-component.dto";
|
|
1219
1220
|
export * from "./projects-status-report-list-billing-type-in-error-component.dto";
|
|
@@ -29,7 +29,7 @@ export interface ProjectStatusReportDto {
|
|
|
29
29
|
is_utilized: boolean;
|
|
30
30
|
is_billable: boolean;
|
|
31
31
|
time_limit_per_month: number;
|
|
32
|
-
time_limit: number;
|
|
32
|
+
readonly time_limit: number;
|
|
33
33
|
/**
|
|
34
34
|
* This is the code used by DevOps team to format project infrastructure. For example, <code>-dev.saritasa.rocks for dev DNS.
|
|
35
35
|
*/
|
|
@@ -42,6 +42,7 @@ export interface ProjectStatusReportDto {
|
|
|
42
42
|
jira_link: SimpleJiraProjectDto | null;
|
|
43
43
|
readonly billable_duration: number;
|
|
44
44
|
readonly unbillable_duration: number;
|
|
45
|
+
readonly total_duration: number;
|
|
45
46
|
readonly client_data: SimpleClientStatusReportDto;
|
|
46
47
|
readonly client_contact_data: SimpleClientContactDto | null;
|
|
47
48
|
readonly priority_data: SimpleProjectPriorityDto | null;
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
import { ProjectsMarginReportListProjectManagersErrorComponentDto } from "./projects-margin-report-list-project-managers-error-component.dto";
|
|
11
11
|
import { ProjectsMarginReportListProjectManagersInErrorComponentDto } from "./projects-margin-report-list-project-managers-in-error-component.dto";
|
|
12
12
|
import { ProjectsMarginReportListPeriodErrorComponentDto } from "./projects-margin-report-list-period-error-component.dto";
|
|
13
|
+
import { ProjectsMarginReportListRoundingTypeErrorComponentDto } from "./projects-margin-report-list-rounding-type-error-component.dto";
|
|
13
14
|
import { ProjectsMarginReportListBillingTypeInErrorComponentDto } from "./projects-margin-report-list-billing-type-in-error-component.dto";
|
|
14
15
|
import { ProjectsMarginReportListClientAccountManagerErrorComponentDto } from "./projects-margin-report-list-client-account-manager-error-component.dto";
|
|
15
16
|
import { ProjectsMarginReportListClientAccountManagerInErrorComponentDto } from "./projects-margin-report-list-client-account-manager-in-error-component.dto";
|
|
@@ -22,4 +23,4 @@ import { ProjectsMarginReportListIdInErrorComponentDto } from "./projects-margin
|
|
|
22
23
|
* @type ProjectsMarginReportListErrorDto
|
|
23
24
|
* @export
|
|
24
25
|
*/
|
|
25
|
-
export type ProjectsMarginReportListErrorDto = ProjectsMarginReportListBillingTypeErrorComponentDto | ProjectsMarginReportListBillingTypeInErrorComponentDto | ProjectsMarginReportListClientAccountManagerErrorComponentDto | ProjectsMarginReportListClientAccountManagerInErrorComponentDto | ProjectsMarginReportListClientErrorComponentDto | ProjectsMarginReportListClientInErrorComponentDto | ProjectsMarginReportListIdInErrorComponentDto | ProjectsMarginReportListOrderingErrorComponentDto | ProjectsMarginReportListPeriodErrorComponentDto | ProjectsMarginReportListProjectManagersErrorComponentDto | ProjectsMarginReportListProjectManagersInErrorComponentDto;
|
|
26
|
+
export type ProjectsMarginReportListErrorDto = ProjectsMarginReportListBillingTypeErrorComponentDto | ProjectsMarginReportListBillingTypeInErrorComponentDto | ProjectsMarginReportListClientAccountManagerErrorComponentDto | ProjectsMarginReportListClientAccountManagerInErrorComponentDto | ProjectsMarginReportListClientErrorComponentDto | ProjectsMarginReportListClientInErrorComponentDto | ProjectsMarginReportListIdInErrorComponentDto | ProjectsMarginReportListOrderingErrorComponentDto | ProjectsMarginReportListPeriodErrorComponentDto | ProjectsMarginReportListProjectManagersErrorComponentDto | ProjectsMarginReportListProjectManagersInErrorComponentDto | ProjectsMarginReportListRoundingTypeErrorComponentDto;
|
|
@@ -0,0 +1,27 @@
|
|
|
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
|
+
export interface ProjectsMarginReportListRoundingTypeErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `rounding_type` - rounding_type
|
|
13
|
+
*/
|
|
14
|
+
attr: ProjectsMarginReportListRoundingTypeErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid_choice` - invalid_choice * `required` - required
|
|
17
|
+
*/
|
|
18
|
+
code: ProjectsMarginReportListRoundingTypeErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum ProjectsMarginReportListRoundingTypeErrorComponentDtoAttrEnum {
|
|
22
|
+
RoundingType = "rounding_type"
|
|
23
|
+
}
|
|
24
|
+
export declare enum ProjectsMarginReportListRoundingTypeErrorComponentDtoCodeEnum {
|
|
25
|
+
InvalidChoice = "invalid_choice",
|
|
26
|
+
Required = "required"
|
|
27
|
+
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@saritasa/crm-delmar-core-sdk",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "OpenAPI client for @saritasa/crm-delmar-core-sdk(for version 0.1.
|
|
3
|
+
"version": "0.1.24",
|
|
4
|
+
"description": "OpenAPI client for @saritasa/crm-delmar-core-sdk(for version 0.1.20)",
|
|
5
5
|
"author": "OpenAPI-Generator Contributors",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|