@saritasa/crm-delmar-core-sdk 0.0.279 → 0.0.280
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.service.d.ts +23 -1
- package/api/projects-api.serviceInterface.d.ts +32 -0
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs +530 -143
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs.map +1 -1
- package/model/models.d.ts +20 -0
- package/model/paginated-simple-project-list.dto.d.ts +16 -0
- package/model/projects-worked-on-list-client-contact-error-component.dto.d.ts +26 -0
- package/model/projects-worked-on-list-client-contact-in-error-component.dto.d.ts +26 -0
- package/model/projects-worked-on-list-client-error-component.dto.d.ts +26 -0
- package/model/projects-worked-on-list-client-in-error-component.dto.d.ts +26 -0
- package/model/projects-worked-on-list-created-date-gte-error-component.dto.d.ts +26 -0
- package/model/projects-worked-on-list-created-date-lte-error-component.dto.d.ts +26 -0
- package/model/projects-worked-on-list-created-gte-error-component.dto.d.ts +26 -0
- package/model/projects-worked-on-list-created-lte-error-component.dto.d.ts +26 -0
- package/model/projects-worked-on-list-error-response400.dto.d.ts +16 -0
- package/model/projects-worked-on-list-error.dto.d.ts +30 -0
- package/model/projects-worked-on-list-id-error-component.dto.d.ts +27 -0
- package/model/projects-worked-on-list-id-in-error-component.dto.d.ts +27 -0
- package/model/projects-worked-on-list-project-managers-id-in-error-component.dto.d.ts +27 -0
- package/model/projects-worked-on-list-status-error-component.dto.d.ts +26 -0
- package/model/projects-worked-on-list-status-in-error-component.dto.d.ts +26 -0
- package/model/projects-worked-on-list-tasks-jobs-billed-by-in-error-component.dto.d.ts +26 -0
- package/model/projects-worked-on-list-tasks-jobs-date-gte-error-component.dto.d.ts +26 -0
- package/model/projects-worked-on-list-tasks-jobs-date-lte-error-component.dto.d.ts +26 -0
- package/model/projects-worked-on-list-validation-error.dto.d.ts +15 -0
- package/package.json +2 -2
package/model/models.d.ts
CHANGED
|
@@ -854,6 +854,7 @@ export * from "./paginated-project-note-list.dto";
|
|
|
854
854
|
export * from "./paginated-project-resource-list.dto";
|
|
855
855
|
export * from "./paginated-project-serializer-with-stats-list.dto";
|
|
856
856
|
export * from "./paginated-role-list.dto";
|
|
857
|
+
export * from "./paginated-simple-project-list.dto";
|
|
857
858
|
export * from "./paginated-simple-project-priority-list.dto";
|
|
858
859
|
export * from "./paginated-simple-vendor-list.dto";
|
|
859
860
|
export * from "./paginated-sprint-job-hourly-report-list.dto";
|
|
@@ -1099,6 +1100,25 @@ export * from "./projects-with-stats-list-project-managers-id-in-error-component
|
|
|
1099
1100
|
export * from "./projects-with-stats-list-status-error-component.dto";
|
|
1100
1101
|
export * from "./projects-with-stats-list-status-in-error-component.dto";
|
|
1101
1102
|
export * from "./projects-with-stats-list-validation-error.dto";
|
|
1103
|
+
export * from "./projects-worked-on-list-client-contact-error-component.dto";
|
|
1104
|
+
export * from "./projects-worked-on-list-client-contact-in-error-component.dto";
|
|
1105
|
+
export * from "./projects-worked-on-list-client-error-component.dto";
|
|
1106
|
+
export * from "./projects-worked-on-list-client-in-error-component.dto";
|
|
1107
|
+
export * from "./projects-worked-on-list-created-date-gte-error-component.dto";
|
|
1108
|
+
export * from "./projects-worked-on-list-created-date-lte-error-component.dto";
|
|
1109
|
+
export * from "./projects-worked-on-list-created-gte-error-component.dto";
|
|
1110
|
+
export * from "./projects-worked-on-list-created-lte-error-component.dto";
|
|
1111
|
+
export * from "./projects-worked-on-list-error.dto";
|
|
1112
|
+
export * from "./projects-worked-on-list-error-response400.dto";
|
|
1113
|
+
export * from "./projects-worked-on-list-id-error-component.dto";
|
|
1114
|
+
export * from "./projects-worked-on-list-id-in-error-component.dto";
|
|
1115
|
+
export * from "./projects-worked-on-list-project-managers-id-in-error-component.dto";
|
|
1116
|
+
export * from "./projects-worked-on-list-status-error-component.dto";
|
|
1117
|
+
export * from "./projects-worked-on-list-status-in-error-component.dto";
|
|
1118
|
+
export * from "./projects-worked-on-list-tasks-jobs-billed-by-in-error-component.dto";
|
|
1119
|
+
export * from "./projects-worked-on-list-tasks-jobs-date-gte-error-component.dto";
|
|
1120
|
+
export * from "./projects-worked-on-list-tasks-jobs-date-lte-error-component.dto";
|
|
1121
|
+
export * from "./projects-worked-on-list-validation-error.dto";
|
|
1102
1122
|
export * from "./report-by-departments-resource-create-export-job-request.dto";
|
|
1103
1123
|
export * from "./report-by-users-resource-create-export-job-request.dto";
|
|
1104
1124
|
export * from "./role.dto";
|
|
@@ -0,0 +1,16 @@
|
|
|
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
|
+
import { SimpleProjectDto } from "./simple-project.dto";
|
|
11
|
+
export interface PaginatedSimpleProjectListDto {
|
|
12
|
+
count: number;
|
|
13
|
+
results: Array<SimpleProjectDto>;
|
|
14
|
+
next?: string | null;
|
|
15
|
+
previous?: string | null;
|
|
16
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
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 ProjectsWorkedOnListClientContactErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `client_contact` - client_contact
|
|
13
|
+
*/
|
|
14
|
+
attr: ProjectsWorkedOnListClientContactErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid_choice` - invalid_choice
|
|
17
|
+
*/
|
|
18
|
+
code: ProjectsWorkedOnListClientContactErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum ProjectsWorkedOnListClientContactErrorComponentDtoAttrEnum {
|
|
22
|
+
ClientContact = "client_contact"
|
|
23
|
+
}
|
|
24
|
+
export declare enum ProjectsWorkedOnListClientContactErrorComponentDtoCodeEnum {
|
|
25
|
+
InvalidChoice = "invalid_choice"
|
|
26
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
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 ProjectsWorkedOnListClientContactInErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `client_contact__in` - client_contact__in
|
|
13
|
+
*/
|
|
14
|
+
attr: ProjectsWorkedOnListClientContactInErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid_choice` - invalid_choice
|
|
17
|
+
*/
|
|
18
|
+
code: ProjectsWorkedOnListClientContactInErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum ProjectsWorkedOnListClientContactInErrorComponentDtoAttrEnum {
|
|
22
|
+
ClientContactIn = "client_contact__in"
|
|
23
|
+
}
|
|
24
|
+
export declare enum ProjectsWorkedOnListClientContactInErrorComponentDtoCodeEnum {
|
|
25
|
+
InvalidChoice = "invalid_choice"
|
|
26
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
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 ProjectsWorkedOnListClientErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `client` - client
|
|
13
|
+
*/
|
|
14
|
+
attr: ProjectsWorkedOnListClientErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid_choice` - invalid_choice
|
|
17
|
+
*/
|
|
18
|
+
code: ProjectsWorkedOnListClientErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum ProjectsWorkedOnListClientErrorComponentDtoAttrEnum {
|
|
22
|
+
Client = "client"
|
|
23
|
+
}
|
|
24
|
+
export declare enum ProjectsWorkedOnListClientErrorComponentDtoCodeEnum {
|
|
25
|
+
InvalidChoice = "invalid_choice"
|
|
26
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
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 ProjectsWorkedOnListClientInErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `client__in` - client__in
|
|
13
|
+
*/
|
|
14
|
+
attr: ProjectsWorkedOnListClientInErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid_choice` - invalid_choice
|
|
17
|
+
*/
|
|
18
|
+
code: ProjectsWorkedOnListClientInErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum ProjectsWorkedOnListClientInErrorComponentDtoAttrEnum {
|
|
22
|
+
ClientIn = "client__in"
|
|
23
|
+
}
|
|
24
|
+
export declare enum ProjectsWorkedOnListClientInErrorComponentDtoCodeEnum {
|
|
25
|
+
InvalidChoice = "invalid_choice"
|
|
26
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
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 ProjectsWorkedOnListCreatedDateGteErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `created__date__gte` - created__date__gte
|
|
13
|
+
*/
|
|
14
|
+
attr: ProjectsWorkedOnListCreatedDateGteErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid` - invalid
|
|
17
|
+
*/
|
|
18
|
+
code: ProjectsWorkedOnListCreatedDateGteErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum ProjectsWorkedOnListCreatedDateGteErrorComponentDtoAttrEnum {
|
|
22
|
+
CreatedDateGte = "created__date__gte"
|
|
23
|
+
}
|
|
24
|
+
export declare enum ProjectsWorkedOnListCreatedDateGteErrorComponentDtoCodeEnum {
|
|
25
|
+
Invalid = "invalid"
|
|
26
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
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 ProjectsWorkedOnListCreatedDateLteErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `created__date__lte` - created__date__lte
|
|
13
|
+
*/
|
|
14
|
+
attr: ProjectsWorkedOnListCreatedDateLteErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid` - invalid
|
|
17
|
+
*/
|
|
18
|
+
code: ProjectsWorkedOnListCreatedDateLteErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum ProjectsWorkedOnListCreatedDateLteErrorComponentDtoAttrEnum {
|
|
22
|
+
CreatedDateLte = "created__date__lte"
|
|
23
|
+
}
|
|
24
|
+
export declare enum ProjectsWorkedOnListCreatedDateLteErrorComponentDtoCodeEnum {
|
|
25
|
+
Invalid = "invalid"
|
|
26
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
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 ProjectsWorkedOnListCreatedGteErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `created__gte` - created__gte
|
|
13
|
+
*/
|
|
14
|
+
attr: ProjectsWorkedOnListCreatedGteErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid` - invalid
|
|
17
|
+
*/
|
|
18
|
+
code: ProjectsWorkedOnListCreatedGteErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum ProjectsWorkedOnListCreatedGteErrorComponentDtoAttrEnum {
|
|
22
|
+
CreatedGte = "created__gte"
|
|
23
|
+
}
|
|
24
|
+
export declare enum ProjectsWorkedOnListCreatedGteErrorComponentDtoCodeEnum {
|
|
25
|
+
Invalid = "invalid"
|
|
26
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
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 ProjectsWorkedOnListCreatedLteErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `created__lte` - created__lte
|
|
13
|
+
*/
|
|
14
|
+
attr: ProjectsWorkedOnListCreatedLteErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid` - invalid
|
|
17
|
+
*/
|
|
18
|
+
code: ProjectsWorkedOnListCreatedLteErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum ProjectsWorkedOnListCreatedLteErrorComponentDtoAttrEnum {
|
|
22
|
+
CreatedLte = "created__lte"
|
|
23
|
+
}
|
|
24
|
+
export declare enum ProjectsWorkedOnListCreatedLteErrorComponentDtoCodeEnum {
|
|
25
|
+
Invalid = "invalid"
|
|
26
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
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
|
+
import { ParseErrorResponseDto } from "./parse-error-response.dto";
|
|
11
|
+
import { ProjectsWorkedOnListValidationErrorDto } from "./projects-worked-on-list-validation-error.dto";
|
|
12
|
+
/**
|
|
13
|
+
* @type ProjectsWorkedOnListErrorResponse400Dto
|
|
14
|
+
* @export
|
|
15
|
+
*/
|
|
16
|
+
export type ProjectsWorkedOnListErrorResponse400Dto = ParseErrorResponseDto | ProjectsWorkedOnListValidationErrorDto;
|
|
@@ -0,0 +1,30 @@
|
|
|
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
|
+
import { ProjectsWorkedOnListCreatedDateLteErrorComponentDto } from "./projects-worked-on-list-created-date-lte-error-component.dto";
|
|
11
|
+
import { ProjectsWorkedOnListIdInErrorComponentDto } from "./projects-worked-on-list-id-in-error-component.dto";
|
|
12
|
+
import { ProjectsWorkedOnListClientErrorComponentDto } from "./projects-worked-on-list-client-error-component.dto";
|
|
13
|
+
import { ProjectsWorkedOnListClientContactInErrorComponentDto } from "./projects-worked-on-list-client-contact-in-error-component.dto";
|
|
14
|
+
import { ProjectsWorkedOnListCreatedGteErrorComponentDto } from "./projects-worked-on-list-created-gte-error-component.dto";
|
|
15
|
+
import { ProjectsWorkedOnListTasksJobsDateLteErrorComponentDto } from "./projects-worked-on-list-tasks-jobs-date-lte-error-component.dto";
|
|
16
|
+
import { ProjectsWorkedOnListCreatedDateGteErrorComponentDto } from "./projects-worked-on-list-created-date-gte-error-component.dto";
|
|
17
|
+
import { ProjectsWorkedOnListCreatedLteErrorComponentDto } from "./projects-worked-on-list-created-lte-error-component.dto";
|
|
18
|
+
import { ProjectsWorkedOnListTasksJobsDateGteErrorComponentDto } from "./projects-worked-on-list-tasks-jobs-date-gte-error-component.dto";
|
|
19
|
+
import { ProjectsWorkedOnListClientContactErrorComponentDto } from "./projects-worked-on-list-client-contact-error-component.dto";
|
|
20
|
+
import { ProjectsWorkedOnListTasksJobsBilledByInErrorComponentDto } from "./projects-worked-on-list-tasks-jobs-billed-by-in-error-component.dto";
|
|
21
|
+
import { ProjectsWorkedOnListIdErrorComponentDto } from "./projects-worked-on-list-id-error-component.dto";
|
|
22
|
+
import { ProjectsWorkedOnListProjectManagersIdInErrorComponentDto } from "./projects-worked-on-list-project-managers-id-in-error-component.dto";
|
|
23
|
+
import { ProjectsWorkedOnListStatusErrorComponentDto } from "./projects-worked-on-list-status-error-component.dto";
|
|
24
|
+
import { ProjectsWorkedOnListClientInErrorComponentDto } from "./projects-worked-on-list-client-in-error-component.dto";
|
|
25
|
+
import { ProjectsWorkedOnListStatusInErrorComponentDto } from "./projects-worked-on-list-status-in-error-component.dto";
|
|
26
|
+
/**
|
|
27
|
+
* @type ProjectsWorkedOnListErrorDto
|
|
28
|
+
* @export
|
|
29
|
+
*/
|
|
30
|
+
export type ProjectsWorkedOnListErrorDto = ProjectsWorkedOnListClientContactErrorComponentDto | ProjectsWorkedOnListClientContactInErrorComponentDto | ProjectsWorkedOnListClientErrorComponentDto | ProjectsWorkedOnListClientInErrorComponentDto | ProjectsWorkedOnListCreatedDateGteErrorComponentDto | ProjectsWorkedOnListCreatedDateLteErrorComponentDto | ProjectsWorkedOnListCreatedGteErrorComponentDto | ProjectsWorkedOnListCreatedLteErrorComponentDto | ProjectsWorkedOnListIdErrorComponentDto | ProjectsWorkedOnListIdInErrorComponentDto | ProjectsWorkedOnListProjectManagersIdInErrorComponentDto | ProjectsWorkedOnListStatusErrorComponentDto | ProjectsWorkedOnListStatusInErrorComponentDto | ProjectsWorkedOnListTasksJobsBilledByInErrorComponentDto | ProjectsWorkedOnListTasksJobsDateGteErrorComponentDto | ProjectsWorkedOnListTasksJobsDateLteErrorComponentDto;
|
|
@@ -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 ProjectsWorkedOnListIdErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `id` - id
|
|
13
|
+
*/
|
|
14
|
+
attr: ProjectsWorkedOnListIdErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid` - invalid * `max_value` - max_value
|
|
17
|
+
*/
|
|
18
|
+
code: ProjectsWorkedOnListIdErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum ProjectsWorkedOnListIdErrorComponentDtoAttrEnum {
|
|
22
|
+
Id = "id"
|
|
23
|
+
}
|
|
24
|
+
export declare enum ProjectsWorkedOnListIdErrorComponentDtoCodeEnum {
|
|
25
|
+
Invalid = "invalid",
|
|
26
|
+
MaxValue = "max_value"
|
|
27
|
+
}
|
|
@@ -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 ProjectsWorkedOnListIdInErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `id__in` - id__in
|
|
13
|
+
*/
|
|
14
|
+
attr: ProjectsWorkedOnListIdInErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid` - invalid * `max_value` - max_value
|
|
17
|
+
*/
|
|
18
|
+
code: ProjectsWorkedOnListIdInErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum ProjectsWorkedOnListIdInErrorComponentDtoAttrEnum {
|
|
22
|
+
IdIn = "id__in"
|
|
23
|
+
}
|
|
24
|
+
export declare enum ProjectsWorkedOnListIdInErrorComponentDtoCodeEnum {
|
|
25
|
+
Invalid = "invalid",
|
|
26
|
+
MaxValue = "max_value"
|
|
27
|
+
}
|
|
@@ -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 ProjectsWorkedOnListProjectManagersIdInErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `project_managers__id__in` - project_managers__id__in
|
|
13
|
+
*/
|
|
14
|
+
attr: ProjectsWorkedOnListProjectManagersIdInErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid` - invalid * `max_value` - max_value
|
|
17
|
+
*/
|
|
18
|
+
code: ProjectsWorkedOnListProjectManagersIdInErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum ProjectsWorkedOnListProjectManagersIdInErrorComponentDtoAttrEnum {
|
|
22
|
+
ProjectManagersIdIn = "project_managers__id__in"
|
|
23
|
+
}
|
|
24
|
+
export declare enum ProjectsWorkedOnListProjectManagersIdInErrorComponentDtoCodeEnum {
|
|
25
|
+
Invalid = "invalid",
|
|
26
|
+
MaxValue = "max_value"
|
|
27
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
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 ProjectsWorkedOnListStatusErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `status` - status
|
|
13
|
+
*/
|
|
14
|
+
attr: ProjectsWorkedOnListStatusErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid_choice` - invalid_choice
|
|
17
|
+
*/
|
|
18
|
+
code: ProjectsWorkedOnListStatusErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum ProjectsWorkedOnListStatusErrorComponentDtoAttrEnum {
|
|
22
|
+
Status = "status"
|
|
23
|
+
}
|
|
24
|
+
export declare enum ProjectsWorkedOnListStatusErrorComponentDtoCodeEnum {
|
|
25
|
+
InvalidChoice = "invalid_choice"
|
|
26
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
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 ProjectsWorkedOnListStatusInErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `status__in` - status__in
|
|
13
|
+
*/
|
|
14
|
+
attr: ProjectsWorkedOnListStatusInErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `null_characters_not_allowed` - null_characters_not_allowed
|
|
17
|
+
*/
|
|
18
|
+
code: ProjectsWorkedOnListStatusInErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum ProjectsWorkedOnListStatusInErrorComponentDtoAttrEnum {
|
|
22
|
+
StatusIn = "status__in"
|
|
23
|
+
}
|
|
24
|
+
export declare enum ProjectsWorkedOnListStatusInErrorComponentDtoCodeEnum {
|
|
25
|
+
NullCharactersNotAllowed = "null_characters_not_allowed"
|
|
26
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
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 ProjectsWorkedOnListTasksJobsBilledByInErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `tasks__jobs__billed_by__in` - tasks__jobs__billed_by__in
|
|
13
|
+
*/
|
|
14
|
+
attr: ProjectsWorkedOnListTasksJobsBilledByInErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid_choice` - invalid_choice
|
|
17
|
+
*/
|
|
18
|
+
code: ProjectsWorkedOnListTasksJobsBilledByInErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum ProjectsWorkedOnListTasksJobsBilledByInErrorComponentDtoAttrEnum {
|
|
22
|
+
TasksJobsBilledByIn = "tasks__jobs__billed_by__in"
|
|
23
|
+
}
|
|
24
|
+
export declare enum ProjectsWorkedOnListTasksJobsBilledByInErrorComponentDtoCodeEnum {
|
|
25
|
+
InvalidChoice = "invalid_choice"
|
|
26
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
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 ProjectsWorkedOnListTasksJobsDateGteErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `tasks__jobs__date__gte` - tasks__jobs__date__gte
|
|
13
|
+
*/
|
|
14
|
+
attr: ProjectsWorkedOnListTasksJobsDateGteErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid` - invalid
|
|
17
|
+
*/
|
|
18
|
+
code: ProjectsWorkedOnListTasksJobsDateGteErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum ProjectsWorkedOnListTasksJobsDateGteErrorComponentDtoAttrEnum {
|
|
22
|
+
TasksJobsDateGte = "tasks__jobs__date__gte"
|
|
23
|
+
}
|
|
24
|
+
export declare enum ProjectsWorkedOnListTasksJobsDateGteErrorComponentDtoCodeEnum {
|
|
25
|
+
Invalid = "invalid"
|
|
26
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
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 ProjectsWorkedOnListTasksJobsDateLteErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `tasks__jobs__date__lte` - tasks__jobs__date__lte
|
|
13
|
+
*/
|
|
14
|
+
attr: ProjectsWorkedOnListTasksJobsDateLteErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid` - invalid
|
|
17
|
+
*/
|
|
18
|
+
code: ProjectsWorkedOnListTasksJobsDateLteErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum ProjectsWorkedOnListTasksJobsDateLteErrorComponentDtoAttrEnum {
|
|
22
|
+
TasksJobsDateLte = "tasks__jobs__date__lte"
|
|
23
|
+
}
|
|
24
|
+
export declare enum ProjectsWorkedOnListTasksJobsDateLteErrorComponentDtoCodeEnum {
|
|
25
|
+
Invalid = "invalid"
|
|
26
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
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
|
+
import { ValidationErrorEnumDto } from "./validation-error-enum.dto";
|
|
11
|
+
import { ProjectsWorkedOnListErrorDto } from "./projects-worked-on-list-error.dto";
|
|
12
|
+
export interface ProjectsWorkedOnListValidationErrorDto {
|
|
13
|
+
type: ValidationErrorEnumDto;
|
|
14
|
+
errors: Array<ProjectsWorkedOnListErrorDto>;
|
|
15
|
+
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@saritasa/crm-delmar-core-sdk",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"description": "OpenAPI client for @saritasa/crm-delmar-core-sdk(for version 0.0.
|
|
3
|
+
"version": "0.0.280",
|
|
4
|
+
"description": "OpenAPI client for @saritasa/crm-delmar-core-sdk(for version 0.0.142)",
|
|
5
5
|
"author": "OpenAPI-Generator Contributors",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|