@saritasa/crm-delmar-core-sdk 0.1.22 → 0.1.23
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/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 +1 -1
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";
|
|
@@ -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