@saritasa/crm-delmar-core-sdk 0.0.36 → 0.0.38
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/user-periods-api.service.d.ts +64 -1
- package/api/user-periods-api.serviceInterface.d.ts +43 -0
- package/esm2022/api/user-periods-api.service.mjs +255 -2
- package/esm2022/api/user-periods-api.serviceInterface.mjs +1 -1
- package/esm2022/model/models.mjs +45 -1
- package/esm2022/model/user-period-request.dto.mjs +2 -0
- package/esm2022/model/user-period.dto.mjs +1 -1
- package/esm2022/model/user-periods-create-description-error-component.dto.mjs +23 -0
- package/esm2022/model/user-periods-create-error-response400.dto.mjs +2 -0
- package/esm2022/model/user-periods-create-error.dto.mjs +2 -0
- package/esm2022/model/user-periods-create-file-error-component.dto.mjs +22 -0
- package/esm2022/model/user-periods-create-non-field-errors-error-component.dto.mjs +19 -0
- package/esm2022/model/user-periods-create-period-end-error-component.dto.mjs +20 -0
- package/esm2022/model/user-periods-create-period-non-field-errors-error-component.dto.mjs +20 -0
- package/esm2022/model/user-periods-create-period-start-error-component.dto.mjs +20 -0
- package/esm2022/model/user-periods-create-status-updated-by-error-component.dto.mjs +19 -0
- package/esm2022/model/user-periods-create-status-updated-error-component.dto.mjs +21 -0
- package/esm2022/model/user-periods-create-type-error-component.dto.mjs +20 -0
- package/esm2022/model/user-periods-create-user-error-component.dto.mjs +21 -0
- package/esm2022/model/user-periods-create-validation-error.dto.mjs +2 -0
- package/esm2022/model/user-periods-destroy-error-response400.dto.mjs +2 -0
- package/esm2022/model/user-periods-list-error-response400.dto.mjs +1 -1
- package/esm2022/model/user-periods-list-error.dto.mjs +2 -0
- package/esm2022/model/user-periods-list-id-error-component.dto.mjs +19 -0
- package/esm2022/model/user-periods-list-id-in-error-component.dto.mjs +19 -0
- package/esm2022/model/user-periods-list-status-error-component.dto.mjs +18 -0
- package/esm2022/model/user-periods-list-status-in-error-component.dto.mjs +18 -0
- package/esm2022/model/user-periods-list-type-error-component.dto.mjs +18 -0
- package/esm2022/model/user-periods-list-type-in-error-component.dto.mjs +18 -0
- package/esm2022/model/user-periods-list-user-branch-id-in-error-component.dto.mjs +19 -0
- package/esm2022/model/user-periods-list-user-department-id-in-error-component.dto.mjs +19 -0
- package/esm2022/model/user-periods-list-user-id-in-error-component.dto.mjs +19 -0
- package/esm2022/model/user-periods-list-user-status-error-component.dto.mjs +18 -0
- package/esm2022/model/user-periods-list-user-status-in-error-component.dto.mjs +18 -0
- package/esm2022/model/user-periods-list-user-supervisees-id-in-error-component.dto.mjs +19 -0
- package/esm2022/model/user-periods-list-user-supervisors-id-in-error-component.dto.mjs +19 -0
- package/esm2022/model/user-periods-list-user-work-type-id-in-error-component.dto.mjs +19 -0
- package/esm2022/model/user-periods-list-validation-error.dto.mjs +2 -0
- package/esm2022/model/user-periods-update-description-error-component.dto.mjs +23 -0
- package/esm2022/model/user-periods-update-error-response400.dto.mjs +2 -0
- package/esm2022/model/user-periods-update-error.dto.mjs +2 -0
- package/esm2022/model/user-periods-update-file-error-component.dto.mjs +22 -0
- package/esm2022/model/user-periods-update-non-field-errors-error-component.dto.mjs +19 -0
- package/esm2022/model/user-periods-update-period-end-error-component.dto.mjs +20 -0
- package/esm2022/model/user-periods-update-period-non-field-errors-error-component.dto.mjs +20 -0
- package/esm2022/model/user-periods-update-period-start-error-component.dto.mjs +20 -0
- package/esm2022/model/user-periods-update-status-updated-by-error-component.dto.mjs +19 -0
- package/esm2022/model/user-periods-update-status-updated-error-component.dto.mjs +21 -0
- package/esm2022/model/user-periods-update-type-error-component.dto.mjs +20 -0
- package/esm2022/model/user-periods-update-user-error-component.dto.mjs +21 -0
- package/esm2022/model/user-periods-update-validation-error.dto.mjs +2 -0
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs +924 -1
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs.map +1 -1
- package/model/models.d.ts +44 -0
- package/model/user-period-request.dto.d.ts +23 -0
- package/model/user-period.dto.d.ts +1 -2
- package/model/user-periods-create-description-error-component.dto.d.ts +31 -0
- package/model/user-periods-create-error-response400.dto.d.ts +16 -0
- package/model/user-periods-create-error.dto.d.ts +24 -0
- package/model/user-periods-create-file-error-component.dto.d.ts +30 -0
- package/model/user-periods-create-non-field-errors-error-component.dto.d.ts +27 -0
- package/model/user-periods-create-period-end-error-component.dto.d.ts +28 -0
- package/model/user-periods-create-period-non-field-errors-error-component.dto.d.ts +28 -0
- package/model/user-periods-create-period-start-error-component.dto.d.ts +28 -0
- package/model/user-periods-create-status-updated-by-error-component.dto.d.ts +27 -0
- package/model/user-periods-create-status-updated-error-component.dto.d.ts +29 -0
- package/model/user-periods-create-type-error-component.dto.d.ts +28 -0
- package/model/user-periods-create-user-error-component.dto.d.ts +29 -0
- package/model/user-periods-create-validation-error.dto.d.ts +15 -0
- package/model/user-periods-destroy-error-response400.dto.d.ts +15 -0
- package/model/user-periods-list-error-response400.dto.d.ts +2 -1
- package/model/user-periods-list-error.dto.d.ts +28 -0
- package/model/user-periods-list-id-error-component.dto.d.ts +27 -0
- package/model/user-periods-list-id-in-error-component.dto.d.ts +27 -0
- package/model/user-periods-list-status-error-component.dto.d.ts +26 -0
- package/model/user-periods-list-status-in-error-component.dto.d.ts +26 -0
- package/model/user-periods-list-type-error-component.dto.d.ts +26 -0
- package/model/user-periods-list-type-in-error-component.dto.d.ts +26 -0
- package/model/user-periods-list-user-branch-id-in-error-component.dto.d.ts +27 -0
- package/model/user-periods-list-user-department-id-in-error-component.dto.d.ts +27 -0
- package/model/user-periods-list-user-id-in-error-component.dto.d.ts +27 -0
- package/model/user-periods-list-user-status-error-component.dto.d.ts +26 -0
- package/model/user-periods-list-user-status-in-error-component.dto.d.ts +26 -0
- package/model/user-periods-list-user-supervisees-id-in-error-component.dto.d.ts +27 -0
- package/model/user-periods-list-user-supervisors-id-in-error-component.dto.d.ts +27 -0
- package/model/user-periods-list-user-work-type-id-in-error-component.dto.d.ts +27 -0
- package/model/user-periods-list-validation-error.dto.d.ts +15 -0
- package/model/user-periods-update-description-error-component.dto.d.ts +31 -0
- package/model/user-periods-update-error-response400.dto.d.ts +16 -0
- package/model/user-periods-update-error.dto.d.ts +24 -0
- package/model/user-periods-update-file-error-component.dto.d.ts +30 -0
- package/model/user-periods-update-non-field-errors-error-component.dto.d.ts +27 -0
- package/model/user-periods-update-period-end-error-component.dto.d.ts +28 -0
- package/model/user-periods-update-period-non-field-errors-error-component.dto.d.ts +28 -0
- package/model/user-periods-update-period-start-error-component.dto.d.ts +28 -0
- package/model/user-periods-update-status-updated-by-error-component.dto.d.ts +27 -0
- package/model/user-periods-update-status-updated-error-component.dto.d.ts +29 -0
- package/model/user-periods-update-type-error-component.dto.d.ts +28 -0
- package/model/user-periods-update-user-error-component.dto.d.ts +29 -0
- package/model/user-periods-update-validation-error.dto.d.ts +15 -0
- package/package.json +2 -2
package/model/models.d.ts
CHANGED
|
@@ -450,10 +450,54 @@ export * from "./user-logins-update-non-field-errors-error-component.dto";
|
|
|
450
450
|
export * from "./user-logins-update-role-error-component.dto";
|
|
451
451
|
export * from "./user-logins-update-validation-error.dto";
|
|
452
452
|
export * from "./user-period.dto";
|
|
453
|
+
export * from "./user-period-request.dto";
|
|
453
454
|
export * from "./user-period-status-enum.dto";
|
|
454
455
|
export * from "./user-period-type-enum.dto";
|
|
456
|
+
export * from "./user-periods-create-description-error-component.dto";
|
|
457
|
+
export * from "./user-periods-create-error.dto";
|
|
458
|
+
export * from "./user-periods-create-error-response400.dto";
|
|
459
|
+
export * from "./user-periods-create-file-error-component.dto";
|
|
460
|
+
export * from "./user-periods-create-non-field-errors-error-component.dto";
|
|
461
|
+
export * from "./user-periods-create-period-end-error-component.dto";
|
|
462
|
+
export * from "./user-periods-create-period-non-field-errors-error-component.dto";
|
|
463
|
+
export * from "./user-periods-create-period-start-error-component.dto";
|
|
464
|
+
export * from "./user-periods-create-status-updated-by-error-component.dto";
|
|
465
|
+
export * from "./user-periods-create-status-updated-error-component.dto";
|
|
466
|
+
export * from "./user-periods-create-type-error-component.dto";
|
|
467
|
+
export * from "./user-periods-create-user-error-component.dto";
|
|
468
|
+
export * from "./user-periods-create-validation-error.dto";
|
|
469
|
+
export * from "./user-periods-destroy-error-response400.dto";
|
|
470
|
+
export * from "./user-periods-list-error.dto";
|
|
455
471
|
export * from "./user-periods-list-error-response400.dto";
|
|
472
|
+
export * from "./user-periods-list-id-error-component.dto";
|
|
473
|
+
export * from "./user-periods-list-id-in-error-component.dto";
|
|
474
|
+
export * from "./user-periods-list-status-error-component.dto";
|
|
475
|
+
export * from "./user-periods-list-status-in-error-component.dto";
|
|
476
|
+
export * from "./user-periods-list-type-error-component.dto";
|
|
477
|
+
export * from "./user-periods-list-type-in-error-component.dto";
|
|
478
|
+
export * from "./user-periods-list-user-branch-id-in-error-component.dto";
|
|
479
|
+
export * from "./user-periods-list-user-department-id-in-error-component.dto";
|
|
480
|
+
export * from "./user-periods-list-user-id-in-error-component.dto";
|
|
481
|
+
export * from "./user-periods-list-user-status-error-component.dto";
|
|
482
|
+
export * from "./user-periods-list-user-status-in-error-component.dto";
|
|
483
|
+
export * from "./user-periods-list-user-supervisees-id-in-error-component.dto";
|
|
484
|
+
export * from "./user-periods-list-user-supervisors-id-in-error-component.dto";
|
|
485
|
+
export * from "./user-periods-list-user-work-type-id-in-error-component.dto";
|
|
486
|
+
export * from "./user-periods-list-validation-error.dto";
|
|
456
487
|
export * from "./user-periods-retrieve-error-response400.dto";
|
|
488
|
+
export * from "./user-periods-update-description-error-component.dto";
|
|
489
|
+
export * from "./user-periods-update-error.dto";
|
|
490
|
+
export * from "./user-periods-update-error-response400.dto";
|
|
491
|
+
export * from "./user-periods-update-file-error-component.dto";
|
|
492
|
+
export * from "./user-periods-update-non-field-errors-error-component.dto";
|
|
493
|
+
export * from "./user-periods-update-period-end-error-component.dto";
|
|
494
|
+
export * from "./user-periods-update-period-non-field-errors-error-component.dto";
|
|
495
|
+
export * from "./user-periods-update-period-start-error-component.dto";
|
|
496
|
+
export * from "./user-periods-update-status-updated-by-error-component.dto";
|
|
497
|
+
export * from "./user-periods-update-status-updated-error-component.dto";
|
|
498
|
+
export * from "./user-periods-update-type-error-component.dto";
|
|
499
|
+
export * from "./user-periods-update-user-error-component.dto";
|
|
500
|
+
export * from "./user-periods-update-validation-error.dto";
|
|
457
501
|
export * from "./user-request.dto";
|
|
458
502
|
export * from "./user-status-enum.dto";
|
|
459
503
|
export * from "./user-sum-capacity.dto";
|
|
@@ -0,0 +1,23 @@
|
|
|
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 { UserPeriodTypeEnumDto } from "./user-period-type-enum.dto";
|
|
11
|
+
import { DateRangeFieldRequestDto } from "./date-range-field-request.dto";
|
|
12
|
+
/**
|
|
13
|
+
* Serializer for UserPeriod model.
|
|
14
|
+
*/
|
|
15
|
+
export interface UserPeriodRequestDto {
|
|
16
|
+
period: DateRangeFieldRequestDto;
|
|
17
|
+
user: number;
|
|
18
|
+
type: UserPeriodTypeEnumDto;
|
|
19
|
+
description: string;
|
|
20
|
+
status_updated_by?: number | null;
|
|
21
|
+
status_updated?: string | null;
|
|
22
|
+
file?: string | null;
|
|
23
|
+
}
|
|
@@ -9,7 +9,6 @@
|
|
|
9
9
|
*/
|
|
10
10
|
import { DateRangeFieldDto } from "./date-range-field.dto";
|
|
11
11
|
import { UserPeriodTypeEnumDto } from "./user-period-type-enum.dto";
|
|
12
|
-
import { UserPeriodStatusEnumDto } from "./user-period-status-enum.dto";
|
|
13
12
|
/**
|
|
14
13
|
* Serializer for UserPeriod model.
|
|
15
14
|
*/
|
|
@@ -20,7 +19,7 @@ export interface UserPeriodDto {
|
|
|
20
19
|
period: DateRangeFieldDto;
|
|
21
20
|
user: number;
|
|
22
21
|
type: UserPeriodTypeEnumDto;
|
|
23
|
-
status:
|
|
22
|
+
readonly status: string;
|
|
24
23
|
description: string;
|
|
25
24
|
status_updated_by?: number | null;
|
|
26
25
|
status_updated?: string | null;
|
|
@@ -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 UserPeriodsCreateDescriptionErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `description` - description
|
|
13
|
+
*/
|
|
14
|
+
attr: UserPeriodsCreateDescriptionErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `blank` - blank * `invalid` - invalid * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `required` - required * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed
|
|
17
|
+
*/
|
|
18
|
+
code: UserPeriodsCreateDescriptionErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum UserPeriodsCreateDescriptionErrorComponentDtoAttrEnum {
|
|
22
|
+
Description = "description"
|
|
23
|
+
}
|
|
24
|
+
export declare enum UserPeriodsCreateDescriptionErrorComponentDtoCodeEnum {
|
|
25
|
+
Blank = "blank",
|
|
26
|
+
Invalid = "invalid",
|
|
27
|
+
Null = "null",
|
|
28
|
+
NullCharactersNotAllowed = "null_characters_not_allowed",
|
|
29
|
+
Required = "required",
|
|
30
|
+
SurrogateCharactersNotAllowed = "surrogate_characters_not_allowed"
|
|
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 { UserPeriodsCreateValidationErrorDto } from "./user-periods-create-validation-error.dto";
|
|
12
|
+
/**
|
|
13
|
+
* @type UserPeriodsCreateErrorResponse400Dto
|
|
14
|
+
* @export
|
|
15
|
+
*/
|
|
16
|
+
export type UserPeriodsCreateErrorResponse400Dto = ParseErrorResponseDto | UserPeriodsCreateValidationErrorDto;
|
|
@@ -0,0 +1,24 @@
|
|
|
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 { UserPeriodsCreateNonFieldErrorsErrorComponentDto } from "./user-periods-create-non-field-errors-error-component.dto";
|
|
11
|
+
import { UserPeriodsCreateTypeErrorComponentDto } from "./user-periods-create-type-error-component.dto";
|
|
12
|
+
import { UserPeriodsCreateStatusUpdatedByErrorComponentDto } from "./user-periods-create-status-updated-by-error-component.dto";
|
|
13
|
+
import { UserPeriodsCreateFileErrorComponentDto } from "./user-periods-create-file-error-component.dto";
|
|
14
|
+
import { UserPeriodsCreatePeriodEndErrorComponentDto } from "./user-periods-create-period-end-error-component.dto";
|
|
15
|
+
import { UserPeriodsCreateDescriptionErrorComponentDto } from "./user-periods-create-description-error-component.dto";
|
|
16
|
+
import { UserPeriodsCreatePeriodStartErrorComponentDto } from "./user-periods-create-period-start-error-component.dto";
|
|
17
|
+
import { UserPeriodsCreatePeriodNonFieldErrorsErrorComponentDto } from "./user-periods-create-period-non-field-errors-error-component.dto";
|
|
18
|
+
import { UserPeriodsCreateUserErrorComponentDto } from "./user-periods-create-user-error-component.dto";
|
|
19
|
+
import { UserPeriodsCreateStatusUpdatedErrorComponentDto } from "./user-periods-create-status-updated-error-component.dto";
|
|
20
|
+
/**
|
|
21
|
+
* @type UserPeriodsCreateErrorDto
|
|
22
|
+
* @export
|
|
23
|
+
*/
|
|
24
|
+
export type UserPeriodsCreateErrorDto = UserPeriodsCreateDescriptionErrorComponentDto | UserPeriodsCreateFileErrorComponentDto | UserPeriodsCreateNonFieldErrorsErrorComponentDto | UserPeriodsCreatePeriodEndErrorComponentDto | UserPeriodsCreatePeriodNonFieldErrorsErrorComponentDto | UserPeriodsCreatePeriodStartErrorComponentDto | UserPeriodsCreateStatusUpdatedByErrorComponentDto | UserPeriodsCreateStatusUpdatedErrorComponentDto | UserPeriodsCreateTypeErrorComponentDto | UserPeriodsCreateUserErrorComponentDto;
|
|
@@ -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
|
+
export interface UserPeriodsCreateFileErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `file` - file
|
|
13
|
+
*/
|
|
14
|
+
attr: UserPeriodsCreateFileErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `blank` - blank * `invalid` - invalid * `max_length` - max_length * `null_characters_not_allowed` - null_characters_not_allowed * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed
|
|
17
|
+
*/
|
|
18
|
+
code: UserPeriodsCreateFileErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum UserPeriodsCreateFileErrorComponentDtoAttrEnum {
|
|
22
|
+
File = "file"
|
|
23
|
+
}
|
|
24
|
+
export declare enum UserPeriodsCreateFileErrorComponentDtoCodeEnum {
|
|
25
|
+
Blank = "blank",
|
|
26
|
+
Invalid = "invalid",
|
|
27
|
+
MaxLength = "max_length",
|
|
28
|
+
NullCharactersNotAllowed = "null_characters_not_allowed",
|
|
29
|
+
SurrogateCharactersNotAllowed = "surrogate_characters_not_allowed"
|
|
30
|
+
}
|
|
@@ -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 UserPeriodsCreateNonFieldErrorsErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `non_field_errors` - non_field_errors
|
|
13
|
+
*/
|
|
14
|
+
attr: UserPeriodsCreateNonFieldErrorsErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid` - invalid * `null` - null
|
|
17
|
+
*/
|
|
18
|
+
code: UserPeriodsCreateNonFieldErrorsErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum UserPeriodsCreateNonFieldErrorsErrorComponentDtoAttrEnum {
|
|
22
|
+
NonFieldErrors = "non_field_errors"
|
|
23
|
+
}
|
|
24
|
+
export declare enum UserPeriodsCreateNonFieldErrorsErrorComponentDtoCodeEnum {
|
|
25
|
+
Invalid = "invalid",
|
|
26
|
+
Null = "null"
|
|
27
|
+
}
|
|
@@ -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 UserPeriodsCreatePeriodEndErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `period.end` - period.end
|
|
13
|
+
*/
|
|
14
|
+
attr: UserPeriodsCreatePeriodEndErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `datetime` - datetime * `invalid` - invalid * `required` - required
|
|
17
|
+
*/
|
|
18
|
+
code: UserPeriodsCreatePeriodEndErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum UserPeriodsCreatePeriodEndErrorComponentDtoAttrEnum {
|
|
22
|
+
PeriodEnd = "period.end"
|
|
23
|
+
}
|
|
24
|
+
export declare enum UserPeriodsCreatePeriodEndErrorComponentDtoCodeEnum {
|
|
25
|
+
Datetime = "datetime",
|
|
26
|
+
Invalid = "invalid",
|
|
27
|
+
Required = "required"
|
|
28
|
+
}
|
|
@@ -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 UserPeriodsCreatePeriodNonFieldErrorsErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `period.non_field_errors` - period.non_field_errors
|
|
13
|
+
*/
|
|
14
|
+
attr: UserPeriodsCreatePeriodNonFieldErrorsErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid` - invalid * `null` - null * `required` - required
|
|
17
|
+
*/
|
|
18
|
+
code: UserPeriodsCreatePeriodNonFieldErrorsErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum UserPeriodsCreatePeriodNonFieldErrorsErrorComponentDtoAttrEnum {
|
|
22
|
+
PeriodNonFieldErrors = "period.non_field_errors"
|
|
23
|
+
}
|
|
24
|
+
export declare enum UserPeriodsCreatePeriodNonFieldErrorsErrorComponentDtoCodeEnum {
|
|
25
|
+
Invalid = "invalid",
|
|
26
|
+
Null = "null",
|
|
27
|
+
Required = "required"
|
|
28
|
+
}
|
|
@@ -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 UserPeriodsCreatePeriodStartErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `period.start` - period.start
|
|
13
|
+
*/
|
|
14
|
+
attr: UserPeriodsCreatePeriodStartErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `datetime` - datetime * `invalid` - invalid * `required` - required
|
|
17
|
+
*/
|
|
18
|
+
code: UserPeriodsCreatePeriodStartErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum UserPeriodsCreatePeriodStartErrorComponentDtoAttrEnum {
|
|
22
|
+
PeriodStart = "period.start"
|
|
23
|
+
}
|
|
24
|
+
export declare enum UserPeriodsCreatePeriodStartErrorComponentDtoCodeEnum {
|
|
25
|
+
Datetime = "datetime",
|
|
26
|
+
Invalid = "invalid",
|
|
27
|
+
Required = "required"
|
|
28
|
+
}
|
|
@@ -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 UserPeriodsCreateStatusUpdatedByErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `status_updated_by` - status_updated_by
|
|
13
|
+
*/
|
|
14
|
+
attr: UserPeriodsCreateStatusUpdatedByErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `does_not_exist` - does_not_exist * `incorrect_type` - incorrect_type
|
|
17
|
+
*/
|
|
18
|
+
code: UserPeriodsCreateStatusUpdatedByErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum UserPeriodsCreateStatusUpdatedByErrorComponentDtoAttrEnum {
|
|
22
|
+
StatusUpdatedBy = "status_updated_by"
|
|
23
|
+
}
|
|
24
|
+
export declare enum UserPeriodsCreateStatusUpdatedByErrorComponentDtoCodeEnum {
|
|
25
|
+
DoesNotExist = "does_not_exist",
|
|
26
|
+
IncorrectType = "incorrect_type"
|
|
27
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
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 UserPeriodsCreateStatusUpdatedErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `status_updated` - status_updated
|
|
13
|
+
*/
|
|
14
|
+
attr: UserPeriodsCreateStatusUpdatedErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `date` - date * `invalid` - invalid * `make_aware` - make_aware * `overflow` - overflow
|
|
17
|
+
*/
|
|
18
|
+
code: UserPeriodsCreateStatusUpdatedErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum UserPeriodsCreateStatusUpdatedErrorComponentDtoAttrEnum {
|
|
22
|
+
StatusUpdated = "status_updated"
|
|
23
|
+
}
|
|
24
|
+
export declare enum UserPeriodsCreateStatusUpdatedErrorComponentDtoCodeEnum {
|
|
25
|
+
Date = "date",
|
|
26
|
+
Invalid = "invalid",
|
|
27
|
+
MakeAware = "make_aware",
|
|
28
|
+
Overflow = "overflow"
|
|
29
|
+
}
|
|
@@ -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 UserPeriodsCreateTypeErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `type` - type
|
|
13
|
+
*/
|
|
14
|
+
attr: UserPeriodsCreateTypeErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid_choice` - invalid_choice * `null` - null * `required` - required
|
|
17
|
+
*/
|
|
18
|
+
code: UserPeriodsCreateTypeErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum UserPeriodsCreateTypeErrorComponentDtoAttrEnum {
|
|
22
|
+
Type = "type"
|
|
23
|
+
}
|
|
24
|
+
export declare enum UserPeriodsCreateTypeErrorComponentDtoCodeEnum {
|
|
25
|
+
InvalidChoice = "invalid_choice",
|
|
26
|
+
Null = "null",
|
|
27
|
+
Required = "required"
|
|
28
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
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 UserPeriodsCreateUserErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `user` - user
|
|
13
|
+
*/
|
|
14
|
+
attr: UserPeriodsCreateUserErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `does_not_exist` - does_not_exist * `incorrect_type` - incorrect_type * `null` - null * `required` - required
|
|
17
|
+
*/
|
|
18
|
+
code: UserPeriodsCreateUserErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum UserPeriodsCreateUserErrorComponentDtoAttrEnum {
|
|
22
|
+
User = "user"
|
|
23
|
+
}
|
|
24
|
+
export declare enum UserPeriodsCreateUserErrorComponentDtoCodeEnum {
|
|
25
|
+
DoesNotExist = "does_not_exist",
|
|
26
|
+
IncorrectType = "incorrect_type",
|
|
27
|
+
Null = "null",
|
|
28
|
+
Required = "required"
|
|
29
|
+
}
|
|
@@ -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 { UserPeriodsCreateErrorDto } from "./user-periods-create-error.dto";
|
|
12
|
+
export interface UserPeriodsCreateValidationErrorDto {
|
|
13
|
+
type: ValidationErrorEnumDto;
|
|
14
|
+
errors: Array<UserPeriodsCreateErrorDto>;
|
|
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 UserPeriodsDestroyErrorResponse400Dto
|
|
13
|
+
* @export
|
|
14
|
+
*/
|
|
15
|
+
export type UserPeriodsDestroyErrorResponse400Dto = ParseErrorResponseDto;
|
|
@@ -8,8 +8,9 @@
|
|
|
8
8
|
* Do not edit the class manually.
|
|
9
9
|
*/
|
|
10
10
|
import { ParseErrorResponseDto } from "./parse-error-response.dto";
|
|
11
|
+
import { UserPeriodsListValidationErrorDto } from "./user-periods-list-validation-error.dto";
|
|
11
12
|
/**
|
|
12
13
|
* @type UserPeriodsListErrorResponse400Dto
|
|
13
14
|
* @export
|
|
14
15
|
*/
|
|
15
|
-
export type UserPeriodsListErrorResponse400Dto = ParseErrorResponseDto;
|
|
16
|
+
export type UserPeriodsListErrorResponse400Dto = ParseErrorResponseDto | UserPeriodsListValidationErrorDto;
|
|
@@ -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
|
+
import { UserPeriodsListTypeInErrorComponentDto } from "./user-periods-list-type-in-error-component.dto";
|
|
11
|
+
import { UserPeriodsListUserStatusErrorComponentDto } from "./user-periods-list-user-status-error-component.dto";
|
|
12
|
+
import { UserPeriodsListIdInErrorComponentDto } from "./user-periods-list-id-in-error-component.dto";
|
|
13
|
+
import { UserPeriodsListUserSupervisorsIdInErrorComponentDto } from "./user-periods-list-user-supervisors-id-in-error-component.dto";
|
|
14
|
+
import { UserPeriodsListStatusErrorComponentDto } from "./user-periods-list-status-error-component.dto";
|
|
15
|
+
import { UserPeriodsListUserWorkTypeIdInErrorComponentDto } from "./user-periods-list-user-work-type-id-in-error-component.dto";
|
|
16
|
+
import { UserPeriodsListStatusInErrorComponentDto } from "./user-periods-list-status-in-error-component.dto";
|
|
17
|
+
import { UserPeriodsListUserIdInErrorComponentDto } from "./user-periods-list-user-id-in-error-component.dto";
|
|
18
|
+
import { UserPeriodsListUserStatusInErrorComponentDto } from "./user-periods-list-user-status-in-error-component.dto";
|
|
19
|
+
import { UserPeriodsListTypeErrorComponentDto } from "./user-periods-list-type-error-component.dto";
|
|
20
|
+
import { UserPeriodsListUserBranchIdInErrorComponentDto } from "./user-periods-list-user-branch-id-in-error-component.dto";
|
|
21
|
+
import { UserPeriodsListUserDepartmentIdInErrorComponentDto } from "./user-periods-list-user-department-id-in-error-component.dto";
|
|
22
|
+
import { UserPeriodsListUserSuperviseesIdInErrorComponentDto } from "./user-periods-list-user-supervisees-id-in-error-component.dto";
|
|
23
|
+
import { UserPeriodsListIdErrorComponentDto } from "./user-periods-list-id-error-component.dto";
|
|
24
|
+
/**
|
|
25
|
+
* @type UserPeriodsListErrorDto
|
|
26
|
+
* @export
|
|
27
|
+
*/
|
|
28
|
+
export type UserPeriodsListErrorDto = UserPeriodsListIdErrorComponentDto | UserPeriodsListIdInErrorComponentDto | UserPeriodsListStatusErrorComponentDto | UserPeriodsListStatusInErrorComponentDto | UserPeriodsListTypeErrorComponentDto | UserPeriodsListTypeInErrorComponentDto | UserPeriodsListUserBranchIdInErrorComponentDto | UserPeriodsListUserDepartmentIdInErrorComponentDto | UserPeriodsListUserIdInErrorComponentDto | UserPeriodsListUserStatusErrorComponentDto | UserPeriodsListUserStatusInErrorComponentDto | UserPeriodsListUserSuperviseesIdInErrorComponentDto | UserPeriodsListUserSupervisorsIdInErrorComponentDto | UserPeriodsListUserWorkTypeIdInErrorComponentDto;
|
|
@@ -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 UserPeriodsListIdErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `id` - id
|
|
13
|
+
*/
|
|
14
|
+
attr: UserPeriodsListIdErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid` - invalid * `max_value` - max_value
|
|
17
|
+
*/
|
|
18
|
+
code: UserPeriodsListIdErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum UserPeriodsListIdErrorComponentDtoAttrEnum {
|
|
22
|
+
Id = "id"
|
|
23
|
+
}
|
|
24
|
+
export declare enum UserPeriodsListIdErrorComponentDtoCodeEnum {
|
|
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 UserPeriodsListIdInErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `id__in` - id__in
|
|
13
|
+
*/
|
|
14
|
+
attr: UserPeriodsListIdInErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid` - invalid * `max_value` - max_value
|
|
17
|
+
*/
|
|
18
|
+
code: UserPeriodsListIdInErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum UserPeriodsListIdInErrorComponentDtoAttrEnum {
|
|
22
|
+
IdIn = "id__in"
|
|
23
|
+
}
|
|
24
|
+
export declare enum UserPeriodsListIdInErrorComponentDtoCodeEnum {
|
|
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 UserPeriodsListStatusErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `status` - status
|
|
13
|
+
*/
|
|
14
|
+
attr: UserPeriodsListStatusErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid_choice` - invalid_choice
|
|
17
|
+
*/
|
|
18
|
+
code: UserPeriodsListStatusErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum UserPeriodsListStatusErrorComponentDtoAttrEnum {
|
|
22
|
+
Status = "status"
|
|
23
|
+
}
|
|
24
|
+
export declare enum UserPeriodsListStatusErrorComponentDtoCodeEnum {
|
|
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 UserPeriodsListStatusInErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `status__in` - status__in
|
|
13
|
+
*/
|
|
14
|
+
attr: UserPeriodsListStatusInErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `null_characters_not_allowed` - null_characters_not_allowed
|
|
17
|
+
*/
|
|
18
|
+
code: UserPeriodsListStatusInErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum UserPeriodsListStatusInErrorComponentDtoAttrEnum {
|
|
22
|
+
StatusIn = "status__in"
|
|
23
|
+
}
|
|
24
|
+
export declare enum UserPeriodsListStatusInErrorComponentDtoCodeEnum {
|
|
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 UserPeriodsListTypeErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `type` - type
|
|
13
|
+
*/
|
|
14
|
+
attr: UserPeriodsListTypeErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid_choice` - invalid_choice
|
|
17
|
+
*/
|
|
18
|
+
code: UserPeriodsListTypeErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum UserPeriodsListTypeErrorComponentDtoAttrEnum {
|
|
22
|
+
Type = "type"
|
|
23
|
+
}
|
|
24
|
+
export declare enum UserPeriodsListTypeErrorComponentDtoCodeEnum {
|
|
25
|
+
InvalidChoice = "invalid_choice"
|
|
26
|
+
}
|