@saritasa/crm-delmar-core-sdk 0.0.94 → 0.0.95
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/api.d.ts +4 -1
- package/api/project-priorities-api.service.d.ts +61 -0
- package/api/project-priorities-api.serviceInterface.d.ts +45 -0
- package/esm2022/api/api.mjs +5 -1
- package/esm2022/api/project-priorities-api.service.mjs +249 -0
- package/esm2022/api/project-priorities-api.serviceInterface.mjs +2 -0
- package/esm2022/model/models.mjs +12 -1
- package/esm2022/model/paginated-simple-project-priority-list.dto.mjs +2 -0
- package/esm2022/model/project-priorities-list-color-error-component.dto.mjs +18 -0
- package/esm2022/model/project-priorities-list-color-in-error-component.dto.mjs +18 -0
- package/esm2022/model/project-priorities-list-error-response400.dto.mjs +2 -0
- package/esm2022/model/project-priorities-list-error.dto.mjs +2 -0
- package/esm2022/model/project-priorities-list-id-error-component.dto.mjs +19 -0
- package/esm2022/model/project-priorities-list-id-in-error-component.dto.mjs +19 -0
- package/esm2022/model/project-priorities-list-name-error-component.dto.mjs +18 -0
- package/esm2022/model/project-priorities-list-name-in-error-component.dto.mjs +18 -0
- package/esm2022/model/project-priorities-list-validation-error.dto.mjs +2 -0
- package/esm2022/model/project-priorities-retrieve-error-response400.dto.mjs +2 -0
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs +352 -1
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs.map +1 -1
- package/model/models.d.ts +11 -0
- package/model/paginated-simple-project-priority-list.dto.d.ts +16 -0
- package/model/project-priorities-list-color-error-component.dto.d.ts +26 -0
- package/model/project-priorities-list-color-in-error-component.dto.d.ts +26 -0
- package/model/project-priorities-list-error-response400.dto.d.ts +16 -0
- package/model/project-priorities-list-error.dto.d.ts +20 -0
- package/model/project-priorities-list-id-error-component.dto.d.ts +27 -0
- package/model/project-priorities-list-id-in-error-component.dto.d.ts +27 -0
- package/model/project-priorities-list-name-error-component.dto.d.ts +26 -0
- package/model/project-priorities-list-name-in-error-component.dto.d.ts +26 -0
- package/model/project-priorities-list-validation-error.dto.d.ts +15 -0
- package/model/project-priorities-retrieve-error-response400.dto.d.ts +15 -0
- package/package.json +2 -2
package/model/models.d.ts
CHANGED
|
@@ -327,6 +327,7 @@ export * from "./paginated-notification-list.dto";
|
|
|
327
327
|
export * from "./paginated-project-list.dto";
|
|
328
328
|
export * from "./paginated-role-list.dto";
|
|
329
329
|
export * from "./paginated-simple-dismissal-reason-list.dto";
|
|
330
|
+
export * from "./paginated-simple-project-priority-list.dto";
|
|
330
331
|
export * from "./paginated-simple-vendor-list.dto";
|
|
331
332
|
export * from "./paginated-task-list.dto";
|
|
332
333
|
export * from "./paginated-user-capacity-list.dto";
|
|
@@ -376,6 +377,16 @@ export * from "./profile-update-timezone-error-component.dto";
|
|
|
376
377
|
export * from "./profile-update-updated-by-error-component.dto";
|
|
377
378
|
export * from "./profile-update-validation-error.dto";
|
|
378
379
|
export * from "./project.dto";
|
|
380
|
+
export * from "./project-priorities-list-color-error-component.dto";
|
|
381
|
+
export * from "./project-priorities-list-color-in-error-component.dto";
|
|
382
|
+
export * from "./project-priorities-list-error.dto";
|
|
383
|
+
export * from "./project-priorities-list-error-response400.dto";
|
|
384
|
+
export * from "./project-priorities-list-id-error-component.dto";
|
|
385
|
+
export * from "./project-priorities-list-id-in-error-component.dto";
|
|
386
|
+
export * from "./project-priorities-list-name-error-component.dto";
|
|
387
|
+
export * from "./project-priorities-list-name-in-error-component.dto";
|
|
388
|
+
export * from "./project-priorities-list-validation-error.dto";
|
|
389
|
+
export * from "./project-priorities-retrieve-error-response400.dto";
|
|
379
390
|
export * from "./project-status-enum.dto";
|
|
380
391
|
export * from "./projects-list-client-contact-error-component.dto";
|
|
381
392
|
export * from "./projects-list-client-contact-in-error-component.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 { SimpleProjectPriorityDto } from "./simple-project-priority.dto";
|
|
11
|
+
export interface PaginatedSimpleProjectPriorityListDto {
|
|
12
|
+
count: number;
|
|
13
|
+
results: Array<SimpleProjectPriorityDto>;
|
|
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 ProjectPrioritiesListColorErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `color` - color
|
|
13
|
+
*/
|
|
14
|
+
attr: ProjectPrioritiesListColorErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `null_characters_not_allowed` - null_characters_not_allowed
|
|
17
|
+
*/
|
|
18
|
+
code: ProjectPrioritiesListColorErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum ProjectPrioritiesListColorErrorComponentDtoAttrEnum {
|
|
22
|
+
Color = "color"
|
|
23
|
+
}
|
|
24
|
+
export declare enum ProjectPrioritiesListColorErrorComponentDtoCodeEnum {
|
|
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 ProjectPrioritiesListColorInErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `color__in` - color__in
|
|
13
|
+
*/
|
|
14
|
+
attr: ProjectPrioritiesListColorInErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `null_characters_not_allowed` - null_characters_not_allowed
|
|
17
|
+
*/
|
|
18
|
+
code: ProjectPrioritiesListColorInErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum ProjectPrioritiesListColorInErrorComponentDtoAttrEnum {
|
|
22
|
+
ColorIn = "color__in"
|
|
23
|
+
}
|
|
24
|
+
export declare enum ProjectPrioritiesListColorInErrorComponentDtoCodeEnum {
|
|
25
|
+
NullCharactersNotAllowed = "null_characters_not_allowed"
|
|
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 { ProjectPrioritiesListValidationErrorDto } from "./project-priorities-list-validation-error.dto";
|
|
12
|
+
/**
|
|
13
|
+
* @type ProjectPrioritiesListErrorResponse400Dto
|
|
14
|
+
* @export
|
|
15
|
+
*/
|
|
16
|
+
export type ProjectPrioritiesListErrorResponse400Dto = ParseErrorResponseDto | ProjectPrioritiesListValidationErrorDto;
|
|
@@ -0,0 +1,20 @@
|
|
|
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 { ProjectPrioritiesListIdInErrorComponentDto } from "./project-priorities-list-id-in-error-component.dto";
|
|
11
|
+
import { ProjectPrioritiesListColorErrorComponentDto } from "./project-priorities-list-color-error-component.dto";
|
|
12
|
+
import { ProjectPrioritiesListIdErrorComponentDto } from "./project-priorities-list-id-error-component.dto";
|
|
13
|
+
import { ProjectPrioritiesListNameInErrorComponentDto } from "./project-priorities-list-name-in-error-component.dto";
|
|
14
|
+
import { ProjectPrioritiesListColorInErrorComponentDto } from "./project-priorities-list-color-in-error-component.dto";
|
|
15
|
+
import { ProjectPrioritiesListNameErrorComponentDto } from "./project-priorities-list-name-error-component.dto";
|
|
16
|
+
/**
|
|
17
|
+
* @type ProjectPrioritiesListErrorDto
|
|
18
|
+
* @export
|
|
19
|
+
*/
|
|
20
|
+
export type ProjectPrioritiesListErrorDto = ProjectPrioritiesListColorErrorComponentDto | ProjectPrioritiesListColorInErrorComponentDto | ProjectPrioritiesListIdErrorComponentDto | ProjectPrioritiesListIdInErrorComponentDto | ProjectPrioritiesListNameErrorComponentDto | ProjectPrioritiesListNameInErrorComponentDto;
|
|
@@ -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 ProjectPrioritiesListIdErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `id` - id
|
|
13
|
+
*/
|
|
14
|
+
attr: ProjectPrioritiesListIdErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid` - invalid * `max_value` - max_value
|
|
17
|
+
*/
|
|
18
|
+
code: ProjectPrioritiesListIdErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum ProjectPrioritiesListIdErrorComponentDtoAttrEnum {
|
|
22
|
+
Id = "id"
|
|
23
|
+
}
|
|
24
|
+
export declare enum ProjectPrioritiesListIdErrorComponentDtoCodeEnum {
|
|
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 ProjectPrioritiesListIdInErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `id__in` - id__in
|
|
13
|
+
*/
|
|
14
|
+
attr: ProjectPrioritiesListIdInErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid` - invalid * `max_value` - max_value
|
|
17
|
+
*/
|
|
18
|
+
code: ProjectPrioritiesListIdInErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum ProjectPrioritiesListIdInErrorComponentDtoAttrEnum {
|
|
22
|
+
IdIn = "id__in"
|
|
23
|
+
}
|
|
24
|
+
export declare enum ProjectPrioritiesListIdInErrorComponentDtoCodeEnum {
|
|
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 ProjectPrioritiesListNameErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `name` - name
|
|
13
|
+
*/
|
|
14
|
+
attr: ProjectPrioritiesListNameErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `null_characters_not_allowed` - null_characters_not_allowed
|
|
17
|
+
*/
|
|
18
|
+
code: ProjectPrioritiesListNameErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum ProjectPrioritiesListNameErrorComponentDtoAttrEnum {
|
|
22
|
+
Name = "name"
|
|
23
|
+
}
|
|
24
|
+
export declare enum ProjectPrioritiesListNameErrorComponentDtoCodeEnum {
|
|
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 ProjectPrioritiesListNameInErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `name__in` - name__in
|
|
13
|
+
*/
|
|
14
|
+
attr: ProjectPrioritiesListNameInErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `null_characters_not_allowed` - null_characters_not_allowed
|
|
17
|
+
*/
|
|
18
|
+
code: ProjectPrioritiesListNameInErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum ProjectPrioritiesListNameInErrorComponentDtoAttrEnum {
|
|
22
|
+
NameIn = "name__in"
|
|
23
|
+
}
|
|
24
|
+
export declare enum ProjectPrioritiesListNameInErrorComponentDtoCodeEnum {
|
|
25
|
+
NullCharactersNotAllowed = "null_characters_not_allowed"
|
|
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 { ProjectPrioritiesListErrorDto } from "./project-priorities-list-error.dto";
|
|
12
|
+
export interface ProjectPrioritiesListValidationErrorDto {
|
|
13
|
+
type: ValidationErrorEnumDto;
|
|
14
|
+
errors: Array<ProjectPrioritiesListErrorDto>;
|
|
15
|
+
}
|
|
@@ -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 { ParseErrorResponseDto } from "./parse-error-response.dto";
|
|
11
|
+
/**
|
|
12
|
+
* @type ProjectPrioritiesRetrieveErrorResponse400Dto
|
|
13
|
+
* @export
|
|
14
|
+
*/
|
|
15
|
+
export type ProjectPrioritiesRetrieveErrorResponse400Dto = ParseErrorResponseDto;
|
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.95",
|
|
4
|
+
"description": "OpenAPI client for @saritasa/crm-delmar-core-sdk(for version 0.0.73)",
|
|
5
5
|
"author": "OpenAPI-Generator Contributors",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|