@saritasa/crm-delmar-core-sdk 0.1.29 → 0.1.31
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/month-closures-api.service.d.ts +56 -0
- package/api/month-closures-api.serviceInterface.d.ts +49 -0
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs +406 -1
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs.map +1 -1
- package/model/models.d.ts +21 -0
- package/model/month-closure-request.dto.d.ts +17 -0
- package/model/month-closure.dto.d.ts +20 -0
- package/model/month-closures-create-error-response400.dto.d.ts +16 -0
- package/model/month-closures-create-error.dto.d.ts +18 -0
- package/model/month-closures-create-is-closed-error-component.dto.d.ts +28 -0
- package/model/month-closures-create-month-error-component.dto.d.ts +31 -0
- package/model/month-closures-create-non-field-errors-error-component.dto.d.ts +27 -0
- package/model/month-closures-create-validation-error.dto.d.ts +15 -0
- package/model/month-closures-create-year-error-component.dto.d.ts +31 -0
- package/model/month-closures-list-error-response400.dto.d.ts +16 -0
- package/model/month-closures-list-error.dto.d.ts +22 -0
- package/model/month-closures-list-id-error-component.dto.d.ts +27 -0
- package/model/month-closures-list-id-in-error-component.dto.d.ts +27 -0
- package/model/month-closures-list-month-error-component.dto.d.ts +27 -0
- package/model/month-closures-list-month-gte-error-component.dto.d.ts +27 -0
- package/model/month-closures-list-month-lte-error-component.dto.d.ts +27 -0
- package/model/month-closures-list-validation-error.dto.d.ts +15 -0
- package/model/month-closures-list-year-error-component.dto.d.ts +27 -0
- package/model/month-closures-list-year-gte-error-component.dto.d.ts +27 -0
- package/model/month-closures-list-year-lte-error-component.dto.d.ts +27 -0
- package/model/paginated-month-closure-list.dto.d.ts +16 -0
- package/model/profile.dto.d.ts +4 -0
- package/model/user.dto.d.ts +4 -0
- package/package.json +2 -2
package/model/models.d.ts
CHANGED
|
@@ -926,6 +926,26 @@ export * from "./locations-update-validation-error.dto";
|
|
|
926
926
|
export * from "./login-open-id-request.dto";
|
|
927
927
|
export * from "./margin-report-resource-create-export-job-file-format-enum.dto";
|
|
928
928
|
export * from "./margin-report-resource-create-export-job-request.dto";
|
|
929
|
+
export * from "./month-closure.dto";
|
|
930
|
+
export * from "./month-closure-request.dto";
|
|
931
|
+
export * from "./month-closures-create-error.dto";
|
|
932
|
+
export * from "./month-closures-create-error-response400.dto";
|
|
933
|
+
export * from "./month-closures-create-is-closed-error-component.dto";
|
|
934
|
+
export * from "./month-closures-create-month-error-component.dto";
|
|
935
|
+
export * from "./month-closures-create-non-field-errors-error-component.dto";
|
|
936
|
+
export * from "./month-closures-create-validation-error.dto";
|
|
937
|
+
export * from "./month-closures-create-year-error-component.dto";
|
|
938
|
+
export * from "./month-closures-list-error.dto";
|
|
939
|
+
export * from "./month-closures-list-error-response400.dto";
|
|
940
|
+
export * from "./month-closures-list-id-error-component.dto";
|
|
941
|
+
export * from "./month-closures-list-id-in-error-component.dto";
|
|
942
|
+
export * from "./month-closures-list-month-error-component.dto";
|
|
943
|
+
export * from "./month-closures-list-month-gte-error-component.dto";
|
|
944
|
+
export * from "./month-closures-list-month-lte-error-component.dto";
|
|
945
|
+
export * from "./month-closures-list-validation-error.dto";
|
|
946
|
+
export * from "./month-closures-list-year-error-component.dto";
|
|
947
|
+
export * from "./month-closures-list-year-gte-error-component.dto";
|
|
948
|
+
export * from "./month-closures-list-year-lte-error-component.dto";
|
|
929
949
|
export * from "./notification-data.dto";
|
|
930
950
|
export * from "./notification.dto";
|
|
931
951
|
export * from "./notification-payload.dto";
|
|
@@ -971,6 +991,7 @@ export * from "./paginated-jira-instance-list.dto";
|
|
|
971
991
|
export * from "./paginated-job-list.dto";
|
|
972
992
|
export * from "./paginated-job-report-hourly-list.dto";
|
|
973
993
|
export * from "./paginated-location-list.dto";
|
|
994
|
+
export * from "./paginated-month-closure-list.dto";
|
|
974
995
|
export * from "./paginated-notification-list.dto";
|
|
975
996
|
export * from "./paginated-project-list.dto";
|
|
976
997
|
export * from "./paginated-project-margin-report-list.dto";
|
|
@@ -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
|
+
/**
|
|
11
|
+
* Serializer for `MonthClosure` model.
|
|
12
|
+
*/
|
|
13
|
+
export interface MonthClosureRequestDto {
|
|
14
|
+
month: number;
|
|
15
|
+
year: number;
|
|
16
|
+
is_closed: boolean;
|
|
17
|
+
}
|
|
@@ -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
|
+
/**
|
|
11
|
+
* Serializer for `MonthClosure` model.
|
|
12
|
+
*/
|
|
13
|
+
export interface MonthClosureDto {
|
|
14
|
+
readonly id: number;
|
|
15
|
+
readonly created: string;
|
|
16
|
+
readonly modified: string;
|
|
17
|
+
month: number;
|
|
18
|
+
year: number;
|
|
19
|
+
is_closed: boolean;
|
|
20
|
+
}
|
|
@@ -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 { MonthClosuresCreateValidationErrorDto } from "./month-closures-create-validation-error.dto";
|
|
12
|
+
/**
|
|
13
|
+
* @type MonthClosuresCreateErrorResponse400Dto
|
|
14
|
+
* @export
|
|
15
|
+
*/
|
|
16
|
+
export type MonthClosuresCreateErrorResponse400Dto = MonthClosuresCreateValidationErrorDto | ParseErrorResponseDto;
|
|
@@ -0,0 +1,18 @@
|
|
|
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 { MonthClosuresCreateYearErrorComponentDto } from "./month-closures-create-year-error-component.dto";
|
|
11
|
+
import { MonthClosuresCreateIsClosedErrorComponentDto } from "./month-closures-create-is-closed-error-component.dto";
|
|
12
|
+
import { MonthClosuresCreateMonthErrorComponentDto } from "./month-closures-create-month-error-component.dto";
|
|
13
|
+
import { MonthClosuresCreateNonFieldErrorsErrorComponentDto } from "./month-closures-create-non-field-errors-error-component.dto";
|
|
14
|
+
/**
|
|
15
|
+
* @type MonthClosuresCreateErrorDto
|
|
16
|
+
* @export
|
|
17
|
+
*/
|
|
18
|
+
export type MonthClosuresCreateErrorDto = MonthClosuresCreateIsClosedErrorComponentDto | MonthClosuresCreateMonthErrorComponentDto | MonthClosuresCreateNonFieldErrorsErrorComponentDto | MonthClosuresCreateYearErrorComponentDto;
|
|
@@ -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 MonthClosuresCreateIsClosedErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `is_closed` - is_closed
|
|
13
|
+
*/
|
|
14
|
+
attr: MonthClosuresCreateIsClosedErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid` - invalid * `null` - null * `required` - required
|
|
17
|
+
*/
|
|
18
|
+
code: MonthClosuresCreateIsClosedErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum MonthClosuresCreateIsClosedErrorComponentDtoAttrEnum {
|
|
22
|
+
IsClosed = "is_closed"
|
|
23
|
+
}
|
|
24
|
+
export declare enum MonthClosuresCreateIsClosedErrorComponentDtoCodeEnum {
|
|
25
|
+
Invalid = "invalid",
|
|
26
|
+
Null = "null",
|
|
27
|
+
Required = "required"
|
|
28
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
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 MonthClosuresCreateMonthErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `month` - month
|
|
13
|
+
*/
|
|
14
|
+
attr: MonthClosuresCreateMonthErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid` - invalid * `max_string_length` - max_string_length * `max_value` - max_value * `min_value` - min_value * `null` - null * `required` - required
|
|
17
|
+
*/
|
|
18
|
+
code: MonthClosuresCreateMonthErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum MonthClosuresCreateMonthErrorComponentDtoAttrEnum {
|
|
22
|
+
Month = "month"
|
|
23
|
+
}
|
|
24
|
+
export declare enum MonthClosuresCreateMonthErrorComponentDtoCodeEnum {
|
|
25
|
+
Invalid = "invalid",
|
|
26
|
+
MaxStringLength = "max_string_length",
|
|
27
|
+
MaxValue = "max_value",
|
|
28
|
+
MinValue = "min_value",
|
|
29
|
+
Null = "null",
|
|
30
|
+
Required = "required"
|
|
31
|
+
}
|
|
@@ -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 MonthClosuresCreateNonFieldErrorsErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `non_field_errors` - non_field_errors
|
|
13
|
+
*/
|
|
14
|
+
attr: MonthClosuresCreateNonFieldErrorsErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid` - invalid * `null` - null
|
|
17
|
+
*/
|
|
18
|
+
code: MonthClosuresCreateNonFieldErrorsErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum MonthClosuresCreateNonFieldErrorsErrorComponentDtoAttrEnum {
|
|
22
|
+
NonFieldErrors = "non_field_errors"
|
|
23
|
+
}
|
|
24
|
+
export declare enum MonthClosuresCreateNonFieldErrorsErrorComponentDtoCodeEnum {
|
|
25
|
+
Invalid = "invalid",
|
|
26
|
+
Null = "null"
|
|
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 { MonthClosuresCreateErrorDto } from "./month-closures-create-error.dto";
|
|
11
|
+
import { ValidationErrorEnumDto } from "./validation-error-enum.dto";
|
|
12
|
+
export interface MonthClosuresCreateValidationErrorDto {
|
|
13
|
+
type: ValidationErrorEnumDto;
|
|
14
|
+
errors: Array<MonthClosuresCreateErrorDto>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
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 MonthClosuresCreateYearErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `year` - year
|
|
13
|
+
*/
|
|
14
|
+
attr: MonthClosuresCreateYearErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid` - invalid * `max_string_length` - max_string_length * `max_value` - max_value * `min_value` - min_value * `null` - null * `required` - required
|
|
17
|
+
*/
|
|
18
|
+
code: MonthClosuresCreateYearErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum MonthClosuresCreateYearErrorComponentDtoAttrEnum {
|
|
22
|
+
Year = "year"
|
|
23
|
+
}
|
|
24
|
+
export declare enum MonthClosuresCreateYearErrorComponentDtoCodeEnum {
|
|
25
|
+
Invalid = "invalid",
|
|
26
|
+
MaxStringLength = "max_string_length",
|
|
27
|
+
MaxValue = "max_value",
|
|
28
|
+
MinValue = "min_value",
|
|
29
|
+
Null = "null",
|
|
30
|
+
Required = "required"
|
|
31
|
+
}
|
|
@@ -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 { MonthClosuresListValidationErrorDto } from "./month-closures-list-validation-error.dto";
|
|
12
|
+
/**
|
|
13
|
+
* @type MonthClosuresListErrorResponse400Dto
|
|
14
|
+
* @export
|
|
15
|
+
*/
|
|
16
|
+
export type MonthClosuresListErrorResponse400Dto = MonthClosuresListValidationErrorDto | ParseErrorResponseDto;
|
|
@@ -0,0 +1,22 @@
|
|
|
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 { MonthClosuresListYearErrorComponentDto } from "./month-closures-list-year-error-component.dto";
|
|
11
|
+
import { MonthClosuresListYearGteErrorComponentDto } from "./month-closures-list-year-gte-error-component.dto";
|
|
12
|
+
import { MonthClosuresListIdInErrorComponentDto } from "./month-closures-list-id-in-error-component.dto";
|
|
13
|
+
import { MonthClosuresListMonthGteErrorComponentDto } from "./month-closures-list-month-gte-error-component.dto";
|
|
14
|
+
import { MonthClosuresListMonthLteErrorComponentDto } from "./month-closures-list-month-lte-error-component.dto";
|
|
15
|
+
import { MonthClosuresListYearLteErrorComponentDto } from "./month-closures-list-year-lte-error-component.dto";
|
|
16
|
+
import { MonthClosuresListMonthErrorComponentDto } from "./month-closures-list-month-error-component.dto";
|
|
17
|
+
import { MonthClosuresListIdErrorComponentDto } from "./month-closures-list-id-error-component.dto";
|
|
18
|
+
/**
|
|
19
|
+
* @type MonthClosuresListErrorDto
|
|
20
|
+
* @export
|
|
21
|
+
*/
|
|
22
|
+
export type MonthClosuresListErrorDto = MonthClosuresListIdErrorComponentDto | MonthClosuresListIdInErrorComponentDto | MonthClosuresListMonthErrorComponentDto | MonthClosuresListMonthGteErrorComponentDto | MonthClosuresListMonthLteErrorComponentDto | MonthClosuresListYearErrorComponentDto | MonthClosuresListYearGteErrorComponentDto | MonthClosuresListYearLteErrorComponentDto;
|
|
@@ -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 MonthClosuresListIdErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `id` - id
|
|
13
|
+
*/
|
|
14
|
+
attr: MonthClosuresListIdErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid` - invalid * `max_value` - max_value
|
|
17
|
+
*/
|
|
18
|
+
code: MonthClosuresListIdErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum MonthClosuresListIdErrorComponentDtoAttrEnum {
|
|
22
|
+
Id = "id"
|
|
23
|
+
}
|
|
24
|
+
export declare enum MonthClosuresListIdErrorComponentDtoCodeEnum {
|
|
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 MonthClosuresListIdInErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `id__in` - id__in
|
|
13
|
+
*/
|
|
14
|
+
attr: MonthClosuresListIdInErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid` - invalid * `max_value` - max_value
|
|
17
|
+
*/
|
|
18
|
+
code: MonthClosuresListIdInErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum MonthClosuresListIdInErrorComponentDtoAttrEnum {
|
|
22
|
+
IdIn = "id__in"
|
|
23
|
+
}
|
|
24
|
+
export declare enum MonthClosuresListIdInErrorComponentDtoCodeEnum {
|
|
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 MonthClosuresListMonthErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `month` - month
|
|
13
|
+
*/
|
|
14
|
+
attr: MonthClosuresListMonthErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid` - invalid * `max_value` - max_value
|
|
17
|
+
*/
|
|
18
|
+
code: MonthClosuresListMonthErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum MonthClosuresListMonthErrorComponentDtoAttrEnum {
|
|
22
|
+
Month = "month"
|
|
23
|
+
}
|
|
24
|
+
export declare enum MonthClosuresListMonthErrorComponentDtoCodeEnum {
|
|
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 MonthClosuresListMonthGteErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `month__gte` - month__gte
|
|
13
|
+
*/
|
|
14
|
+
attr: MonthClosuresListMonthGteErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid` - invalid * `max_value` - max_value
|
|
17
|
+
*/
|
|
18
|
+
code: MonthClosuresListMonthGteErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum MonthClosuresListMonthGteErrorComponentDtoAttrEnum {
|
|
22
|
+
MonthGte = "month__gte"
|
|
23
|
+
}
|
|
24
|
+
export declare enum MonthClosuresListMonthGteErrorComponentDtoCodeEnum {
|
|
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 MonthClosuresListMonthLteErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `month__lte` - month__lte
|
|
13
|
+
*/
|
|
14
|
+
attr: MonthClosuresListMonthLteErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid` - invalid * `max_value` - max_value
|
|
17
|
+
*/
|
|
18
|
+
code: MonthClosuresListMonthLteErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum MonthClosuresListMonthLteErrorComponentDtoAttrEnum {
|
|
22
|
+
MonthLte = "month__lte"
|
|
23
|
+
}
|
|
24
|
+
export declare enum MonthClosuresListMonthLteErrorComponentDtoCodeEnum {
|
|
25
|
+
Invalid = "invalid",
|
|
26
|
+
MaxValue = "max_value"
|
|
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 { ValidationErrorEnumDto } from "./validation-error-enum.dto";
|
|
11
|
+
import { MonthClosuresListErrorDto } from "./month-closures-list-error.dto";
|
|
12
|
+
export interface MonthClosuresListValidationErrorDto {
|
|
13
|
+
type: ValidationErrorEnumDto;
|
|
14
|
+
errors: Array<MonthClosuresListErrorDto>;
|
|
15
|
+
}
|
|
@@ -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 MonthClosuresListYearErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `year` - year
|
|
13
|
+
*/
|
|
14
|
+
attr: MonthClosuresListYearErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid` - invalid * `max_value` - max_value
|
|
17
|
+
*/
|
|
18
|
+
code: MonthClosuresListYearErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum MonthClosuresListYearErrorComponentDtoAttrEnum {
|
|
22
|
+
Year = "year"
|
|
23
|
+
}
|
|
24
|
+
export declare enum MonthClosuresListYearErrorComponentDtoCodeEnum {
|
|
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 MonthClosuresListYearGteErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `year__gte` - year__gte
|
|
13
|
+
*/
|
|
14
|
+
attr: MonthClosuresListYearGteErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid` - invalid * `max_value` - max_value
|
|
17
|
+
*/
|
|
18
|
+
code: MonthClosuresListYearGteErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum MonthClosuresListYearGteErrorComponentDtoAttrEnum {
|
|
22
|
+
YearGte = "year__gte"
|
|
23
|
+
}
|
|
24
|
+
export declare enum MonthClosuresListYearGteErrorComponentDtoCodeEnum {
|
|
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 MonthClosuresListYearLteErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `year__lte` - year__lte
|
|
13
|
+
*/
|
|
14
|
+
attr: MonthClosuresListYearLteErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid` - invalid * `max_value` - max_value
|
|
17
|
+
*/
|
|
18
|
+
code: MonthClosuresListYearLteErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum MonthClosuresListYearLteErrorComponentDtoAttrEnum {
|
|
22
|
+
YearLte = "year__lte"
|
|
23
|
+
}
|
|
24
|
+
export declare enum MonthClosuresListYearLteErrorComponentDtoCodeEnum {
|
|
25
|
+
Invalid = "invalid",
|
|
26
|
+
MaxValue = "max_value"
|
|
27
|
+
}
|
|
@@ -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 { MonthClosureDto } from "./month-closure.dto";
|
|
11
|
+
export interface PaginatedMonthClosureListDto {
|
|
12
|
+
count: number;
|
|
13
|
+
results: Array<MonthClosureDto>;
|
|
14
|
+
next?: string | null;
|
|
15
|
+
previous?: string | null;
|
|
16
|
+
}
|
package/model/profile.dto.d.ts
CHANGED
|
@@ -51,6 +51,10 @@ export interface ProfileDto {
|
|
|
51
51
|
readonly jira_account_id: string | null;
|
|
52
52
|
readonly supervisors: Array<number>;
|
|
53
53
|
readonly supervisees: Array<number>;
|
|
54
|
+
readonly on_vacation: boolean;
|
|
55
|
+
readonly is_sick: boolean;
|
|
56
|
+
readonly on_personal_workday: boolean;
|
|
57
|
+
readonly on_personal_holiday: boolean;
|
|
54
58
|
readonly utilization: string;
|
|
55
59
|
readonly billable_utilization: string;
|
|
56
60
|
readonly branch_data: SimpleBranchDto;
|
package/model/user.dto.d.ts
CHANGED
|
@@ -43,6 +43,10 @@ export interface UserDto {
|
|
|
43
43
|
dismissal_reasons: Array<number>;
|
|
44
44
|
supervisors: Array<number>;
|
|
45
45
|
supervisees: Array<number>;
|
|
46
|
+
readonly on_vacation: boolean;
|
|
47
|
+
readonly is_sick: boolean;
|
|
48
|
+
readonly on_personal_workday: boolean;
|
|
49
|
+
readonly on_personal_holiday: boolean;
|
|
46
50
|
readonly utilization: string;
|
|
47
51
|
readonly billable_utilization: string;
|
|
48
52
|
readonly role_data: SimpleRoleDto | null;
|
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.31",
|
|
4
|
+
"description": "OpenAPI client for @saritasa/crm-delmar-core-sdk(for version 0.1.24)",
|
|
5
5
|
"author": "OpenAPI-Generator Contributors",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|