@saritasa/crm-delmar-core-sdk 0.0.90 → 0.0.92
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/users-api.service.d.ts +23 -1
- package/api/users-api.serviceInterface.d.ts +28 -0
- package/esm2022/api/users-api.service.mjs +144 -1
- package/esm2022/api/users-api.serviceInterface.mjs +1 -1
- package/esm2022/model/models.mjs +23 -1
- package/esm2022/model/task.dto.mjs +1 -1
- package/esm2022/model/users-utilization-chart-list-branch-error-component.dto.mjs +18 -0
- package/esm2022/model/users-utilization-chart-list-branch-in-error-component.dto.mjs +18 -0
- package/esm2022/model/users-utilization-chart-list-date-gte-error-component.dto.mjs +19 -0
- package/esm2022/model/users-utilization-chart-list-date-lte-error-component.dto.mjs +19 -0
- package/esm2022/model/users-utilization-chart-list-department-error-component.dto.mjs +18 -0
- package/esm2022/model/users-utilization-chart-list-department-in-error-component.dto.mjs +18 -0
- package/esm2022/model/users-utilization-chart-list-error-response400.dto.mjs +2 -0
- package/esm2022/model/users-utilization-chart-list-error.dto.mjs +2 -0
- package/esm2022/model/users-utilization-chart-list-id-error-component.dto.mjs +19 -0
- package/esm2022/model/users-utilization-chart-list-id-in-error-component.dto.mjs +19 -0
- package/esm2022/model/users-utilization-chart-list-is-total-error-component.dto.mjs +18 -0
- package/esm2022/model/users-utilization-chart-list-role-error-component.dto.mjs +18 -0
- package/esm2022/model/users-utilization-chart-list-role-in-error-component.dto.mjs +18 -0
- package/esm2022/model/users-utilization-chart-list-status-error-component.dto.mjs +18 -0
- package/esm2022/model/users-utilization-chart-list-status-in-error-component.dto.mjs +18 -0
- package/esm2022/model/users-utilization-chart-list-supervisees-id-in-error-component.dto.mjs +19 -0
- package/esm2022/model/users-utilization-chart-list-supervisors-id-in-error-component.dto.mjs +19 -0
- package/esm2022/model/users-utilization-chart-list-time-span-error-component.dto.mjs +19 -0
- package/esm2022/model/users-utilization-chart-list-validation-error.dto.mjs +2 -0
- package/esm2022/model/users-utilization-chart-list-work-type-error-component.dto.mjs +18 -0
- package/esm2022/model/users-utilization-chart-list-work-type-in-error-component.dto.mjs +18 -0
- package/esm2022/model/utilization-chart-point.dto.mjs +2 -0
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs +475 -1
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs.map +1 -1
- package/model/models.d.ts +22 -0
- package/model/task.dto.d.ts +1 -0
- package/model/users-utilization-chart-list-branch-error-component.dto.d.ts +26 -0
- package/model/users-utilization-chart-list-branch-in-error-component.dto.d.ts +26 -0
- package/model/users-utilization-chart-list-date-gte-error-component.dto.d.ts +27 -0
- package/model/users-utilization-chart-list-date-lte-error-component.dto.d.ts +27 -0
- package/model/users-utilization-chart-list-department-error-component.dto.d.ts +26 -0
- package/model/users-utilization-chart-list-department-in-error-component.dto.d.ts +26 -0
- package/model/users-utilization-chart-list-error-response400.dto.d.ts +16 -0
- package/model/users-utilization-chart-list-error.dto.d.ts +32 -0
- package/model/users-utilization-chart-list-id-error-component.dto.d.ts +27 -0
- package/model/users-utilization-chart-list-id-in-error-component.dto.d.ts +27 -0
- package/model/users-utilization-chart-list-is-total-error-component.dto.d.ts +26 -0
- package/model/users-utilization-chart-list-role-error-component.dto.d.ts +26 -0
- package/model/users-utilization-chart-list-role-in-error-component.dto.d.ts +26 -0
- package/model/users-utilization-chart-list-status-error-component.dto.d.ts +26 -0
- package/model/users-utilization-chart-list-status-in-error-component.dto.d.ts +26 -0
- package/model/users-utilization-chart-list-supervisees-id-in-error-component.dto.d.ts +27 -0
- package/model/users-utilization-chart-list-supervisors-id-in-error-component.dto.d.ts +27 -0
- package/model/users-utilization-chart-list-time-span-error-component.dto.d.ts +27 -0
- package/model/users-utilization-chart-list-validation-error.dto.d.ts +15 -0
- package/model/users-utilization-chart-list-work-type-error-component.dto.d.ts +26 -0
- package/model/users-utilization-chart-list-work-type-in-error-component.dto.d.ts +26 -0
- package/model/utilization-chart-point.dto.d.ts +17 -0
- package/package.json +2 -2
package/model/models.d.ts
CHANGED
|
@@ -784,6 +784,28 @@ export * from "./users-update-utilization-percent-error-component.dto";
|
|
|
784
784
|
export * from "./users-update-validation-error.dto";
|
|
785
785
|
export * from "./users-update-vendor-error-component.dto";
|
|
786
786
|
export * from "./users-update-work-type-error-component.dto";
|
|
787
|
+
export * from "./users-utilization-chart-list-branch-error-component.dto";
|
|
788
|
+
export * from "./users-utilization-chart-list-branch-in-error-component.dto";
|
|
789
|
+
export * from "./users-utilization-chart-list-date-gte-error-component.dto";
|
|
790
|
+
export * from "./users-utilization-chart-list-date-lte-error-component.dto";
|
|
791
|
+
export * from "./users-utilization-chart-list-department-error-component.dto";
|
|
792
|
+
export * from "./users-utilization-chart-list-department-in-error-component.dto";
|
|
793
|
+
export * from "./users-utilization-chart-list-error.dto";
|
|
794
|
+
export * from "./users-utilization-chart-list-error-response400.dto";
|
|
795
|
+
export * from "./users-utilization-chart-list-id-error-component.dto";
|
|
796
|
+
export * from "./users-utilization-chart-list-id-in-error-component.dto";
|
|
797
|
+
export * from "./users-utilization-chart-list-is-total-error-component.dto";
|
|
798
|
+
export * from "./users-utilization-chart-list-role-error-component.dto";
|
|
799
|
+
export * from "./users-utilization-chart-list-role-in-error-component.dto";
|
|
800
|
+
export * from "./users-utilization-chart-list-status-error-component.dto";
|
|
801
|
+
export * from "./users-utilization-chart-list-status-in-error-component.dto";
|
|
802
|
+
export * from "./users-utilization-chart-list-supervisees-id-in-error-component.dto";
|
|
803
|
+
export * from "./users-utilization-chart-list-supervisors-id-in-error-component.dto";
|
|
804
|
+
export * from "./users-utilization-chart-list-time-span-error-component.dto";
|
|
805
|
+
export * from "./users-utilization-chart-list-validation-error.dto";
|
|
806
|
+
export * from "./users-utilization-chart-list-work-type-error-component.dto";
|
|
807
|
+
export * from "./users-utilization-chart-list-work-type-in-error-component.dto";
|
|
808
|
+
export * from "./utilization-chart-point.dto";
|
|
787
809
|
export * from "./validation-error-enum.dto";
|
|
788
810
|
export * from "./vendors-create-error.dto";
|
|
789
811
|
export * from "./vendors-create-error-response400.dto";
|
package/model/task.dto.d.ts
CHANGED
|
@@ -29,6 +29,7 @@ export interface TaskDto {
|
|
|
29
29
|
readonly project_data: SimpleProjectDto;
|
|
30
30
|
readonly component_data: SimpleComponentDto;
|
|
31
31
|
readonly sprint_data: SimpleSprintDto;
|
|
32
|
+
readonly assignee_by_data: SimpleUserDto;
|
|
32
33
|
readonly created_by: number | null;
|
|
33
34
|
readonly created_by_data: SimpleUserDto;
|
|
34
35
|
readonly updated_by: number | null;
|
|
@@ -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 UsersUtilizationChartListBranchErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `branch` - branch
|
|
13
|
+
*/
|
|
14
|
+
attr: UsersUtilizationChartListBranchErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid_choice` - invalid_choice
|
|
17
|
+
*/
|
|
18
|
+
code: UsersUtilizationChartListBranchErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum UsersUtilizationChartListBranchErrorComponentDtoAttrEnum {
|
|
22
|
+
Branch = "branch"
|
|
23
|
+
}
|
|
24
|
+
export declare enum UsersUtilizationChartListBranchErrorComponentDtoCodeEnum {
|
|
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 UsersUtilizationChartListBranchInErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `branch__in` - branch__in
|
|
13
|
+
*/
|
|
14
|
+
attr: UsersUtilizationChartListBranchInErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid_choice` - invalid_choice
|
|
17
|
+
*/
|
|
18
|
+
code: UsersUtilizationChartListBranchInErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum UsersUtilizationChartListBranchInErrorComponentDtoAttrEnum {
|
|
22
|
+
BranchIn = "branch__in"
|
|
23
|
+
}
|
|
24
|
+
export declare enum UsersUtilizationChartListBranchInErrorComponentDtoCodeEnum {
|
|
25
|
+
InvalidChoice = "invalid_choice"
|
|
26
|
+
}
|
|
@@ -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 UsersUtilizationChartListDateGteErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `date__gte` - date__gte
|
|
13
|
+
*/
|
|
14
|
+
attr: UsersUtilizationChartListDateGteErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid` - invalid * `required` - required
|
|
17
|
+
*/
|
|
18
|
+
code: UsersUtilizationChartListDateGteErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum UsersUtilizationChartListDateGteErrorComponentDtoAttrEnum {
|
|
22
|
+
DateGte = "date__gte"
|
|
23
|
+
}
|
|
24
|
+
export declare enum UsersUtilizationChartListDateGteErrorComponentDtoCodeEnum {
|
|
25
|
+
Invalid = "invalid",
|
|
26
|
+
Required = "required"
|
|
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 UsersUtilizationChartListDateLteErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `date__lte` - date__lte
|
|
13
|
+
*/
|
|
14
|
+
attr: UsersUtilizationChartListDateLteErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid` - invalid * `required` - required
|
|
17
|
+
*/
|
|
18
|
+
code: UsersUtilizationChartListDateLteErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum UsersUtilizationChartListDateLteErrorComponentDtoAttrEnum {
|
|
22
|
+
DateLte = "date__lte"
|
|
23
|
+
}
|
|
24
|
+
export declare enum UsersUtilizationChartListDateLteErrorComponentDtoCodeEnum {
|
|
25
|
+
Invalid = "invalid",
|
|
26
|
+
Required = "required"
|
|
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 UsersUtilizationChartListDepartmentErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `department` - department
|
|
13
|
+
*/
|
|
14
|
+
attr: UsersUtilizationChartListDepartmentErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid_choice` - invalid_choice
|
|
17
|
+
*/
|
|
18
|
+
code: UsersUtilizationChartListDepartmentErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum UsersUtilizationChartListDepartmentErrorComponentDtoAttrEnum {
|
|
22
|
+
Department = "department"
|
|
23
|
+
}
|
|
24
|
+
export declare enum UsersUtilizationChartListDepartmentErrorComponentDtoCodeEnum {
|
|
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 UsersUtilizationChartListDepartmentInErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `department__in` - department__in
|
|
13
|
+
*/
|
|
14
|
+
attr: UsersUtilizationChartListDepartmentInErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid_choice` - invalid_choice
|
|
17
|
+
*/
|
|
18
|
+
code: UsersUtilizationChartListDepartmentInErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum UsersUtilizationChartListDepartmentInErrorComponentDtoAttrEnum {
|
|
22
|
+
DepartmentIn = "department__in"
|
|
23
|
+
}
|
|
24
|
+
export declare enum UsersUtilizationChartListDepartmentInErrorComponentDtoCodeEnum {
|
|
25
|
+
InvalidChoice = "invalid_choice"
|
|
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 { UsersUtilizationChartListValidationErrorDto } from "./users-utilization-chart-list-validation-error.dto";
|
|
12
|
+
/**
|
|
13
|
+
* @type UsersUtilizationChartListErrorResponse400Dto
|
|
14
|
+
* @export
|
|
15
|
+
*/
|
|
16
|
+
export type UsersUtilizationChartListErrorResponse400Dto = ParseErrorResponseDto | UsersUtilizationChartListValidationErrorDto;
|
|
@@ -0,0 +1,32 @@
|
|
|
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 { UsersUtilizationChartListDateLteErrorComponentDto } from "./users-utilization-chart-list-date-lte-error-component.dto";
|
|
11
|
+
import { UsersUtilizationChartListRoleErrorComponentDto } from "./users-utilization-chart-list-role-error-component.dto";
|
|
12
|
+
import { UsersUtilizationChartListWorkTypeErrorComponentDto } from "./users-utilization-chart-list-work-type-error-component.dto";
|
|
13
|
+
import { UsersUtilizationChartListTimeSpanErrorComponentDto } from "./users-utilization-chart-list-time-span-error-component.dto";
|
|
14
|
+
import { UsersUtilizationChartListBranchInErrorComponentDto } from "./users-utilization-chart-list-branch-in-error-component.dto";
|
|
15
|
+
import { UsersUtilizationChartListStatusInErrorComponentDto } from "./users-utilization-chart-list-status-in-error-component.dto";
|
|
16
|
+
import { UsersUtilizationChartListBranchErrorComponentDto } from "./users-utilization-chart-list-branch-error-component.dto";
|
|
17
|
+
import { UsersUtilizationChartListDepartmentInErrorComponentDto } from "./users-utilization-chart-list-department-in-error-component.dto";
|
|
18
|
+
import { UsersUtilizationChartListDepartmentErrorComponentDto } from "./users-utilization-chart-list-department-error-component.dto";
|
|
19
|
+
import { UsersUtilizationChartListDateGteErrorComponentDto } from "./users-utilization-chart-list-date-gte-error-component.dto";
|
|
20
|
+
import { UsersUtilizationChartListSuperviseesIdInErrorComponentDto } from "./users-utilization-chart-list-supervisees-id-in-error-component.dto";
|
|
21
|
+
import { UsersUtilizationChartListIsTotalErrorComponentDto } from "./users-utilization-chart-list-is-total-error-component.dto";
|
|
22
|
+
import { UsersUtilizationChartListIdErrorComponentDto } from "./users-utilization-chart-list-id-error-component.dto";
|
|
23
|
+
import { UsersUtilizationChartListStatusErrorComponentDto } from "./users-utilization-chart-list-status-error-component.dto";
|
|
24
|
+
import { UsersUtilizationChartListIdInErrorComponentDto } from "./users-utilization-chart-list-id-in-error-component.dto";
|
|
25
|
+
import { UsersUtilizationChartListRoleInErrorComponentDto } from "./users-utilization-chart-list-role-in-error-component.dto";
|
|
26
|
+
import { UsersUtilizationChartListWorkTypeInErrorComponentDto } from "./users-utilization-chart-list-work-type-in-error-component.dto";
|
|
27
|
+
import { UsersUtilizationChartListSupervisorsIdInErrorComponentDto } from "./users-utilization-chart-list-supervisors-id-in-error-component.dto";
|
|
28
|
+
/**
|
|
29
|
+
* @type UsersUtilizationChartListErrorDto
|
|
30
|
+
* @export
|
|
31
|
+
*/
|
|
32
|
+
export type UsersUtilizationChartListErrorDto = UsersUtilizationChartListBranchErrorComponentDto | UsersUtilizationChartListBranchInErrorComponentDto | UsersUtilizationChartListDateGteErrorComponentDto | UsersUtilizationChartListDateLteErrorComponentDto | UsersUtilizationChartListDepartmentErrorComponentDto | UsersUtilizationChartListDepartmentInErrorComponentDto | UsersUtilizationChartListIdErrorComponentDto | UsersUtilizationChartListIdInErrorComponentDto | UsersUtilizationChartListIsTotalErrorComponentDto | UsersUtilizationChartListRoleErrorComponentDto | UsersUtilizationChartListRoleInErrorComponentDto | UsersUtilizationChartListStatusErrorComponentDto | UsersUtilizationChartListStatusInErrorComponentDto | UsersUtilizationChartListSuperviseesIdInErrorComponentDto | UsersUtilizationChartListSupervisorsIdInErrorComponentDto | UsersUtilizationChartListTimeSpanErrorComponentDto | UsersUtilizationChartListWorkTypeErrorComponentDto | UsersUtilizationChartListWorkTypeInErrorComponentDto;
|
|
@@ -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 UsersUtilizationChartListIdErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `id` - id
|
|
13
|
+
*/
|
|
14
|
+
attr: UsersUtilizationChartListIdErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid` - invalid * `max_value` - max_value
|
|
17
|
+
*/
|
|
18
|
+
code: UsersUtilizationChartListIdErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum UsersUtilizationChartListIdErrorComponentDtoAttrEnum {
|
|
22
|
+
Id = "id"
|
|
23
|
+
}
|
|
24
|
+
export declare enum UsersUtilizationChartListIdErrorComponentDtoCodeEnum {
|
|
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 UsersUtilizationChartListIdInErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `id__in` - id__in
|
|
13
|
+
*/
|
|
14
|
+
attr: UsersUtilizationChartListIdInErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid` - invalid * `max_value` - max_value
|
|
17
|
+
*/
|
|
18
|
+
code: UsersUtilizationChartListIdInErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum UsersUtilizationChartListIdInErrorComponentDtoAttrEnum {
|
|
22
|
+
IdIn = "id__in"
|
|
23
|
+
}
|
|
24
|
+
export declare enum UsersUtilizationChartListIdInErrorComponentDtoCodeEnum {
|
|
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 UsersUtilizationChartListIsTotalErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `is_total` - is_total
|
|
13
|
+
*/
|
|
14
|
+
attr: UsersUtilizationChartListIsTotalErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `required` - required
|
|
17
|
+
*/
|
|
18
|
+
code: UsersUtilizationChartListIsTotalErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum UsersUtilizationChartListIsTotalErrorComponentDtoAttrEnum {
|
|
22
|
+
IsTotal = "is_total"
|
|
23
|
+
}
|
|
24
|
+
export declare enum UsersUtilizationChartListIsTotalErrorComponentDtoCodeEnum {
|
|
25
|
+
Required = "required"
|
|
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 UsersUtilizationChartListRoleErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `role` - role
|
|
13
|
+
*/
|
|
14
|
+
attr: UsersUtilizationChartListRoleErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid_choice` - invalid_choice
|
|
17
|
+
*/
|
|
18
|
+
code: UsersUtilizationChartListRoleErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum UsersUtilizationChartListRoleErrorComponentDtoAttrEnum {
|
|
22
|
+
Role = "role"
|
|
23
|
+
}
|
|
24
|
+
export declare enum UsersUtilizationChartListRoleErrorComponentDtoCodeEnum {
|
|
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 UsersUtilizationChartListRoleInErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `role__in` - role__in
|
|
13
|
+
*/
|
|
14
|
+
attr: UsersUtilizationChartListRoleInErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid_choice` - invalid_choice
|
|
17
|
+
*/
|
|
18
|
+
code: UsersUtilizationChartListRoleInErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum UsersUtilizationChartListRoleInErrorComponentDtoAttrEnum {
|
|
22
|
+
RoleIn = "role__in"
|
|
23
|
+
}
|
|
24
|
+
export declare enum UsersUtilizationChartListRoleInErrorComponentDtoCodeEnum {
|
|
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 UsersUtilizationChartListStatusErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `status` - status
|
|
13
|
+
*/
|
|
14
|
+
attr: UsersUtilizationChartListStatusErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid_choice` - invalid_choice
|
|
17
|
+
*/
|
|
18
|
+
code: UsersUtilizationChartListStatusErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum UsersUtilizationChartListStatusErrorComponentDtoAttrEnum {
|
|
22
|
+
Status = "status"
|
|
23
|
+
}
|
|
24
|
+
export declare enum UsersUtilizationChartListStatusErrorComponentDtoCodeEnum {
|
|
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 UsersUtilizationChartListStatusInErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `status__in` - status__in
|
|
13
|
+
*/
|
|
14
|
+
attr: UsersUtilizationChartListStatusInErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `null_characters_not_allowed` - null_characters_not_allowed
|
|
17
|
+
*/
|
|
18
|
+
code: UsersUtilizationChartListStatusInErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum UsersUtilizationChartListStatusInErrorComponentDtoAttrEnum {
|
|
22
|
+
StatusIn = "status__in"
|
|
23
|
+
}
|
|
24
|
+
export declare enum UsersUtilizationChartListStatusInErrorComponentDtoCodeEnum {
|
|
25
|
+
NullCharactersNotAllowed = "null_characters_not_allowed"
|
|
26
|
+
}
|
|
@@ -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 UsersUtilizationChartListSuperviseesIdInErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `supervisees__id__in` - supervisees__id__in
|
|
13
|
+
*/
|
|
14
|
+
attr: UsersUtilizationChartListSuperviseesIdInErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid` - invalid * `max_value` - max_value
|
|
17
|
+
*/
|
|
18
|
+
code: UsersUtilizationChartListSuperviseesIdInErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum UsersUtilizationChartListSuperviseesIdInErrorComponentDtoAttrEnum {
|
|
22
|
+
SuperviseesIdIn = "supervisees__id__in"
|
|
23
|
+
}
|
|
24
|
+
export declare enum UsersUtilizationChartListSuperviseesIdInErrorComponentDtoCodeEnum {
|
|
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 UsersUtilizationChartListSupervisorsIdInErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `supervisors__id__in` - supervisors__id__in
|
|
13
|
+
*/
|
|
14
|
+
attr: UsersUtilizationChartListSupervisorsIdInErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid` - invalid * `max_value` - max_value
|
|
17
|
+
*/
|
|
18
|
+
code: UsersUtilizationChartListSupervisorsIdInErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum UsersUtilizationChartListSupervisorsIdInErrorComponentDtoAttrEnum {
|
|
22
|
+
SupervisorsIdIn = "supervisors__id__in"
|
|
23
|
+
}
|
|
24
|
+
export declare enum UsersUtilizationChartListSupervisorsIdInErrorComponentDtoCodeEnum {
|
|
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 UsersUtilizationChartListTimeSpanErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `time_span` - time_span
|
|
13
|
+
*/
|
|
14
|
+
attr: UsersUtilizationChartListTimeSpanErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid_choice` - invalid_choice * `required` - required
|
|
17
|
+
*/
|
|
18
|
+
code: UsersUtilizationChartListTimeSpanErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum UsersUtilizationChartListTimeSpanErrorComponentDtoAttrEnum {
|
|
22
|
+
TimeSpan = "time_span"
|
|
23
|
+
}
|
|
24
|
+
export declare enum UsersUtilizationChartListTimeSpanErrorComponentDtoCodeEnum {
|
|
25
|
+
InvalidChoice = "invalid_choice",
|
|
26
|
+
Required = "required"
|
|
27
|
+
}
|
|
@@ -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 { UsersUtilizationChartListErrorDto } from "./users-utilization-chart-list-error.dto";
|
|
11
|
+
import { ValidationErrorEnumDto } from "./validation-error-enum.dto";
|
|
12
|
+
export interface UsersUtilizationChartListValidationErrorDto {
|
|
13
|
+
type: ValidationErrorEnumDto;
|
|
14
|
+
errors: Array<UsersUtilizationChartListErrorDto>;
|
|
15
|
+
}
|
|
@@ -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 UsersUtilizationChartListWorkTypeErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `work_type` - work_type
|
|
13
|
+
*/
|
|
14
|
+
attr: UsersUtilizationChartListWorkTypeErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid_choice` - invalid_choice
|
|
17
|
+
*/
|
|
18
|
+
code: UsersUtilizationChartListWorkTypeErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum UsersUtilizationChartListWorkTypeErrorComponentDtoAttrEnum {
|
|
22
|
+
WorkType = "work_type"
|
|
23
|
+
}
|
|
24
|
+
export declare enum UsersUtilizationChartListWorkTypeErrorComponentDtoCodeEnum {
|
|
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 UsersUtilizationChartListWorkTypeInErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `work_type__in` - work_type__in
|
|
13
|
+
*/
|
|
14
|
+
attr: UsersUtilizationChartListWorkTypeInErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid_choice` - invalid_choice
|
|
17
|
+
*/
|
|
18
|
+
code: UsersUtilizationChartListWorkTypeInErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum UsersUtilizationChartListWorkTypeInErrorComponentDtoAttrEnum {
|
|
22
|
+
WorkTypeIn = "work_type__in"
|
|
23
|
+
}
|
|
24
|
+
export declare enum UsersUtilizationChartListWorkTypeInErrorComponentDtoCodeEnum {
|
|
25
|
+
InvalidChoice = "invalid_choice"
|
|
26
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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 { DateRangeFieldDto } from "./date-range-field.dto";
|
|
11
|
+
/**
|
|
12
|
+
* Representation of point in utilization chart.
|
|
13
|
+
*/
|
|
14
|
+
export interface UtilizationChartPointDto {
|
|
15
|
+
utilization: string;
|
|
16
|
+
period: DateRangeFieldDto;
|
|
17
|
+
}
|
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.92",
|
|
4
|
+
"description": "OpenAPI client for @saritasa/crm-delmar-core-sdk(for version 0.0.70)",
|
|
5
5
|
"author": "OpenAPI-Generator Contributors",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|