@saritasa/crm-delmar-core-sdk 0.1.34 → 0.1.35
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-project-status-reports-api.serviceInterface.d.ts +1 -0
- package/api/projects-api.service.d.ts +3 -3
- package/api/projects-api.serviceInterface.d.ts +1 -0
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs +31 -1
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs.map +1 -1
- package/model/models.d.ts +1 -0
- package/model/projects-status-report-list-error.dto.d.ts +2 -1
- package/model/projects-status-report-list-period-error-component.dto.d.ts +28 -0
- package/package.json +2 -2
package/model/models.d.ts
CHANGED
|
@@ -1289,6 +1289,7 @@ export * from "./projects-status-report-list-error.dto";
|
|
|
1289
1289
|
export * from "./projects-status-report-list-error-response400.dto";
|
|
1290
1290
|
export * from "./projects-status-report-list-id-error-component.dto";
|
|
1291
1291
|
export * from "./projects-status-report-list-id-in-error-component.dto";
|
|
1292
|
+
export * from "./projects-status-report-list-period-error-component.dto";
|
|
1292
1293
|
export * from "./projects-status-report-list-project-managers-id-in-error-component.dto";
|
|
1293
1294
|
export * from "./projects-status-report-list-status-error-component.dto";
|
|
1294
1295
|
export * from "./projects-status-report-list-status-in-error-component.dto";
|
|
@@ -11,6 +11,7 @@ import { ProjectsStatusReportListClientAccountManagerInErrorComponentDto } from
|
|
|
11
11
|
import { ProjectsStatusReportListClientContactErrorComponentDto } from "./projects-status-report-list-client-contact-error-component.dto";
|
|
12
12
|
import { ProjectsStatusReportListStatusInErrorComponentDto } from "./projects-status-report-list-status-in-error-component.dto";
|
|
13
13
|
import { ProjectsStatusReportListCreatedDateLteErrorComponentDto } from "./projects-status-report-list-created-date-lte-error-component.dto";
|
|
14
|
+
import { ProjectsStatusReportListPeriodErrorComponentDto } from "./projects-status-report-list-period-error-component.dto";
|
|
14
15
|
import { ProjectsStatusReportListCreatedGteErrorComponentDto } from "./projects-status-report-list-created-gte-error-component.dto";
|
|
15
16
|
import { ProjectsStatusReportListBillingTypeInErrorComponentDto } from "./projects-status-report-list-billing-type-in-error-component.dto";
|
|
16
17
|
import { ProjectsStatusReportListIdInErrorComponentDto } from "./projects-status-report-list-id-in-error-component.dto";
|
|
@@ -28,4 +29,4 @@ import { ProjectsStatusReportListClientErrorComponentDto } from "./projects-stat
|
|
|
28
29
|
* @type ProjectsStatusReportListErrorDto
|
|
29
30
|
* @export
|
|
30
31
|
*/
|
|
31
|
-
export type ProjectsStatusReportListErrorDto = ProjectsStatusReportListBillingTypeErrorComponentDto | ProjectsStatusReportListBillingTypeInErrorComponentDto | ProjectsStatusReportListClientAccountManagerErrorComponentDto | ProjectsStatusReportListClientAccountManagerInErrorComponentDto | ProjectsStatusReportListClientContactErrorComponentDto | ProjectsStatusReportListClientContactInErrorComponentDto | ProjectsStatusReportListClientErrorComponentDto | ProjectsStatusReportListClientInErrorComponentDto | ProjectsStatusReportListCreatedDateGteErrorComponentDto | ProjectsStatusReportListCreatedDateLteErrorComponentDto | ProjectsStatusReportListCreatedGteErrorComponentDto | ProjectsStatusReportListCreatedLteErrorComponentDto | ProjectsStatusReportListIdErrorComponentDto | ProjectsStatusReportListIdInErrorComponentDto | ProjectsStatusReportListProjectManagersIdInErrorComponentDto | ProjectsStatusReportListStatusErrorComponentDto | ProjectsStatusReportListStatusInErrorComponentDto;
|
|
32
|
+
export type ProjectsStatusReportListErrorDto = ProjectsStatusReportListBillingTypeErrorComponentDto | ProjectsStatusReportListBillingTypeInErrorComponentDto | ProjectsStatusReportListClientAccountManagerErrorComponentDto | ProjectsStatusReportListClientAccountManagerInErrorComponentDto | ProjectsStatusReportListClientContactErrorComponentDto | ProjectsStatusReportListClientContactInErrorComponentDto | ProjectsStatusReportListClientErrorComponentDto | ProjectsStatusReportListClientInErrorComponentDto | ProjectsStatusReportListCreatedDateGteErrorComponentDto | ProjectsStatusReportListCreatedDateLteErrorComponentDto | ProjectsStatusReportListCreatedGteErrorComponentDto | ProjectsStatusReportListCreatedLteErrorComponentDto | ProjectsStatusReportListIdErrorComponentDto | ProjectsStatusReportListIdInErrorComponentDto | ProjectsStatusReportListPeriodErrorComponentDto | ProjectsStatusReportListProjectManagersIdInErrorComponentDto | ProjectsStatusReportListStatusErrorComponentDto | ProjectsStatusReportListStatusInErrorComponentDto;
|
|
@@ -0,0 +1,28 @@
|
|
|
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 ProjectsStatusReportListPeriodErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `period` - period
|
|
13
|
+
*/
|
|
14
|
+
attr: ProjectsStatusReportListPeriodErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid` - invalid * `null_characters_not_allowed` - null_characters_not_allowed * `required` - required
|
|
17
|
+
*/
|
|
18
|
+
code: ProjectsStatusReportListPeriodErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum ProjectsStatusReportListPeriodErrorComponentDtoAttrEnum {
|
|
22
|
+
Period = "period"
|
|
23
|
+
}
|
|
24
|
+
export declare enum ProjectsStatusReportListPeriodErrorComponentDtoCodeEnum {
|
|
25
|
+
Invalid = "invalid",
|
|
26
|
+
NullCharactersNotAllowed = "null_characters_not_allowed",
|
|
27
|
+
Required = "required"
|
|
28
|
+
}
|
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.35",
|
|
4
|
+
"description": "OpenAPI client for @saritasa/crm-delmar-core-sdk(for version 0.1.27)",
|
|
5
5
|
"author": "OpenAPI-Generator Contributors",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|