@saritasa/crm-delmar-core-sdk 0.0.84 → 0.0.86

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.
Files changed (30) hide show
  1. package/README.md +2 -2
  2. package/api/search-periods-api.serviceInterface.d.ts +1 -2
  3. package/api/user-periods-api.serviceInterface.d.ts +1 -2
  4. package/esm2022/api/search-periods-api.service.mjs +6 -13
  5. package/esm2022/api/search-periods-api.serviceInterface.mjs +1 -1
  6. package/esm2022/api/user-periods-api.service.mjs +4 -8
  7. package/esm2022/api/user-periods-api.serviceInterface.mjs +1 -1
  8. package/esm2022/model/models.mjs +3 -5
  9. package/esm2022/model/search-periods-list-error.dto.mjs +1 -1
  10. package/esm2022/model/search-periods-list-period-overlap-error-component.dto.mjs +20 -0
  11. package/esm2022/model/simple-task.dto.mjs +1 -1
  12. package/esm2022/model/user-periods-list-error.dto.mjs +1 -1
  13. package/esm2022/model/user-periods-list-period-overlap-error-component.dto.mjs +19 -0
  14. package/fesm2022/saritasa-crm-delmar-core-sdk.mjs +28 -74
  15. package/fesm2022/saritasa-crm-delmar-core-sdk.mjs.map +1 -1
  16. package/model/models.d.ts +2 -4
  17. package/model/search-periods-list-error.dto.d.ts +2 -3
  18. package/model/search-periods-list-period-overlap-error-component.dto.d.ts +28 -0
  19. package/model/simple-task.dto.d.ts +3 -0
  20. package/model/user-periods-list-error.dto.d.ts +2 -3
  21. package/model/user-periods-list-period-overlap-error-component.dto.d.ts +27 -0
  22. package/package.json +2 -2
  23. package/esm2022/model/search-periods-list-period-gte-error-component.dto.mjs +0 -19
  24. package/esm2022/model/search-periods-list-period-lte-error-component.dto.mjs +0 -19
  25. package/esm2022/model/user-periods-list-period-endswith-lte-error-component.dto.mjs +0 -18
  26. package/esm2022/model/user-periods-list-period-startswith-gte-error-component.dto.mjs +0 -18
  27. package/model/search-periods-list-period-gte-error-component.dto.d.ts +0 -27
  28. package/model/search-periods-list-period-lte-error-component.dto.d.ts +0 -27
  29. package/model/user-periods-list-period-endswith-lte-error-component.dto.d.ts +0 -26
  30. package/model/user-periods-list-period-startswith-gte-error-component.dto.d.ts +0 -26
package/model/models.d.ts CHANGED
@@ -410,8 +410,7 @@ export * from "./scope-enum.dto";
410
410
  export * from "./search-periods-list-branch-in-error-component.dto";
411
411
  export * from "./search-periods-list-error.dto";
412
412
  export * from "./search-periods-list-error-response400.dto";
413
- export * from "./search-periods-list-period-gte-error-component.dto";
414
- export * from "./search-periods-list-period-lte-error-component.dto";
413
+ export * from "./search-periods-list-period-overlap-error-component.dto";
415
414
  export * from "./search-periods-list-status-in-error-component.dto";
416
415
  export * from "./search-periods-list-type-in-error-component.dto";
417
416
  export * from "./search-periods-list-user-branch-in-error-component.dto";
@@ -591,8 +590,7 @@ export * from "./user-periods-list-error.dto";
591
590
  export * from "./user-periods-list-error-response400.dto";
592
591
  export * from "./user-periods-list-id-error-component.dto";
593
592
  export * from "./user-periods-list-id-in-error-component.dto";
594
- export * from "./user-periods-list-period-endswith-lte-error-component.dto";
595
- export * from "./user-periods-list-period-startswith-gte-error-component.dto";
593
+ export * from "./user-periods-list-period-overlap-error-component.dto";
596
594
  export * from "./user-periods-list-status-error-component.dto";
597
595
  export * from "./user-periods-list-status-in-error-component.dto";
598
596
  export * from "./user-periods-list-type-error-component.dto";
@@ -8,9 +8,8 @@
8
8
  * Do not edit the class manually.
9
9
  */
10
10
  import { SearchPeriodsListUserInErrorComponentDto } from "./search-periods-list-user-in-error-component.dto";
11
- import { SearchPeriodsListPeriodLteErrorComponentDto } from "./search-periods-list-period-lte-error-component.dto";
11
+ import { SearchPeriodsListPeriodOverlapErrorComponentDto } from "./search-periods-list-period-overlap-error-component.dto";
12
12
  import { SearchPeriodsListUserSupervisorsInErrorComponentDto } from "./search-periods-list-user-supervisors-in-error-component.dto";
13
- import { SearchPeriodsListPeriodGteErrorComponentDto } from "./search-periods-list-period-gte-error-component.dto";
14
13
  import { SearchPeriodsListUserSuperviseesInErrorComponentDto } from "./search-periods-list-user-supervisees-in-error-component.dto";
15
14
  import { SearchPeriodsListUserWorkTypeInErrorComponentDto } from "./search-periods-list-user-work-type-in-error-component.dto";
16
15
  import { SearchPeriodsListUserDepartmentInErrorComponentDto } from "./search-periods-list-user-department-in-error-component.dto";
@@ -23,4 +22,4 @@ import { SearchPeriodsListStatusInErrorComponentDto } from "./search-periods-lis
23
22
  * @type SearchPeriodsListErrorDto
24
23
  * @export
25
24
  */
26
- export type SearchPeriodsListErrorDto = SearchPeriodsListBranchInErrorComponentDto | SearchPeriodsListPeriodGteErrorComponentDto | SearchPeriodsListPeriodLteErrorComponentDto | SearchPeriodsListStatusInErrorComponentDto | SearchPeriodsListTypeInErrorComponentDto | SearchPeriodsListUserBranchInErrorComponentDto | SearchPeriodsListUserDepartmentInErrorComponentDto | SearchPeriodsListUserInErrorComponentDto | SearchPeriodsListUserStatusInErrorComponentDto | SearchPeriodsListUserSuperviseesInErrorComponentDto | SearchPeriodsListUserSupervisorsInErrorComponentDto | SearchPeriodsListUserWorkTypeInErrorComponentDto;
25
+ export type SearchPeriodsListErrorDto = SearchPeriodsListBranchInErrorComponentDto | SearchPeriodsListPeriodOverlapErrorComponentDto | SearchPeriodsListStatusInErrorComponentDto | SearchPeriodsListTypeInErrorComponentDto | SearchPeriodsListUserBranchInErrorComponentDto | SearchPeriodsListUserDepartmentInErrorComponentDto | SearchPeriodsListUserInErrorComponentDto | SearchPeriodsListUserStatusInErrorComponentDto | SearchPeriodsListUserSuperviseesInErrorComponentDto | SearchPeriodsListUserSupervisorsInErrorComponentDto | SearchPeriodsListUserWorkTypeInErrorComponentDto;
@@ -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 SearchPeriodsListPeriodOverlapErrorComponentDto {
11
+ /**
12
+ * * `period__overlap` - period__overlap
13
+ */
14
+ attr: SearchPeriodsListPeriodOverlapErrorComponentDtoAttrEnum;
15
+ /**
16
+ * * `invalid` - invalid * `null_characters_not_allowed` - null_characters_not_allowed * `required` - required
17
+ */
18
+ code: SearchPeriodsListPeriodOverlapErrorComponentDtoCodeEnum;
19
+ detail: string;
20
+ }
21
+ export declare enum SearchPeriodsListPeriodOverlapErrorComponentDtoAttrEnum {
22
+ PeriodOverlap = "period__overlap"
23
+ }
24
+ export declare enum SearchPeriodsListPeriodOverlapErrorComponentDtoCodeEnum {
25
+ Invalid = "invalid",
26
+ NullCharactersNotAllowed = "null_characters_not_allowed",
27
+ Required = "required"
28
+ }
@@ -7,6 +7,7 @@
7
7
  * https://openapi-generator.tech
8
8
  * Do not edit the class manually.
9
9
  */
10
+ import { SimpleProjectDto } from "./simple-project.dto";
10
11
  import { PriorityEnumDto } from "./priority-enum.dto";
11
12
  /**
12
13
  * Simple serializer for Task model.
@@ -17,4 +18,6 @@ export interface SimpleTaskDto {
17
18
  readonly modified: string;
18
19
  title: string;
19
20
  priority: PriorityEnumDto;
21
+ project: number;
22
+ readonly project_data: SimpleProjectDto;
20
23
  }
@@ -17,14 +17,13 @@ import { UserPeriodsListStatusInErrorComponentDto } from "./user-periods-list-st
17
17
  import { UserPeriodsListUserIdInErrorComponentDto } from "./user-periods-list-user-id-in-error-component.dto";
18
18
  import { UserPeriodsListUserStatusInErrorComponentDto } from "./user-periods-list-user-status-in-error-component.dto";
19
19
  import { UserPeriodsListTypeErrorComponentDto } from "./user-periods-list-type-error-component.dto";
20
- import { UserPeriodsListPeriodStartswithGteErrorComponentDto } from "./user-periods-list-period-startswith-gte-error-component.dto";
20
+ import { UserPeriodsListPeriodOverlapErrorComponentDto } from "./user-periods-list-period-overlap-error-component.dto";
21
21
  import { UserPeriodsListUserBranchIdInErrorComponentDto } from "./user-periods-list-user-branch-id-in-error-component.dto";
22
22
  import { UserPeriodsListUserDepartmentIdInErrorComponentDto } from "./user-periods-list-user-department-id-in-error-component.dto";
23
23
  import { UserPeriodsListUserSuperviseesIdInErrorComponentDto } from "./user-periods-list-user-supervisees-id-in-error-component.dto";
24
- import { UserPeriodsListPeriodEndswithLteErrorComponentDto } from "./user-periods-list-period-endswith-lte-error-component.dto";
25
24
  import { UserPeriodsListIdErrorComponentDto } from "./user-periods-list-id-error-component.dto";
26
25
  /**
27
26
  * @type UserPeriodsListErrorDto
28
27
  * @export
29
28
  */
30
- export type UserPeriodsListErrorDto = UserPeriodsListIdErrorComponentDto | UserPeriodsListIdInErrorComponentDto | UserPeriodsListPeriodEndswithLteErrorComponentDto | UserPeriodsListPeriodStartswithGteErrorComponentDto | UserPeriodsListStatusErrorComponentDto | UserPeriodsListStatusInErrorComponentDto | UserPeriodsListTypeErrorComponentDto | UserPeriodsListTypeInErrorComponentDto | UserPeriodsListUserBranchIdInErrorComponentDto | UserPeriodsListUserDepartmentIdInErrorComponentDto | UserPeriodsListUserIdInErrorComponentDto | UserPeriodsListUserStatusErrorComponentDto | UserPeriodsListUserStatusInErrorComponentDto | UserPeriodsListUserSuperviseesIdInErrorComponentDto | UserPeriodsListUserSupervisorsIdInErrorComponentDto | UserPeriodsListUserWorkTypeIdInErrorComponentDto;
29
+ export type UserPeriodsListErrorDto = UserPeriodsListIdErrorComponentDto | UserPeriodsListIdInErrorComponentDto | UserPeriodsListPeriodOverlapErrorComponentDto | 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 UserPeriodsListPeriodOverlapErrorComponentDto {
11
+ /**
12
+ * * `period__overlap` - period__overlap
13
+ */
14
+ attr: UserPeriodsListPeriodOverlapErrorComponentDtoAttrEnum;
15
+ /**
16
+ * * `invalid` - invalid * `null_characters_not_allowed` - null_characters_not_allowed
17
+ */
18
+ code: UserPeriodsListPeriodOverlapErrorComponentDtoCodeEnum;
19
+ detail: string;
20
+ }
21
+ export declare enum UserPeriodsListPeriodOverlapErrorComponentDtoAttrEnum {
22
+ PeriodOverlap = "period__overlap"
23
+ }
24
+ export declare enum UserPeriodsListPeriodOverlapErrorComponentDtoCodeEnum {
25
+ Invalid = "invalid",
26
+ NullCharactersNotAllowed = "null_characters_not_allowed"
27
+ }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@saritasa/crm-delmar-core-sdk",
3
- "version": "0.0.84",
4
- "description": "OpenAPI client for @saritasa/crm-delmar-core-sdk(for version 0.0.63)",
3
+ "version": "0.0.86",
4
+ "description": "OpenAPI client for @saritasa/crm-delmar-core-sdk(for version 0.0.65)",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
7
7
  "type": "git",
@@ -1,19 +0,0 @@
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 var SearchPeriodsListPeriodGteErrorComponentDtoAttrEnum;
11
- (function (SearchPeriodsListPeriodGteErrorComponentDtoAttrEnum) {
12
- SearchPeriodsListPeriodGteErrorComponentDtoAttrEnum["PeriodGte"] = "period__gte";
13
- })(SearchPeriodsListPeriodGteErrorComponentDtoAttrEnum || (SearchPeriodsListPeriodGteErrorComponentDtoAttrEnum = {}));
14
- export var SearchPeriodsListPeriodGteErrorComponentDtoCodeEnum;
15
- (function (SearchPeriodsListPeriodGteErrorComponentDtoCodeEnum) {
16
- SearchPeriodsListPeriodGteErrorComponentDtoCodeEnum["Invalid"] = "invalid";
17
- SearchPeriodsListPeriodGteErrorComponentDtoCodeEnum["Required"] = "required";
18
- })(SearchPeriodsListPeriodGteErrorComponentDtoCodeEnum || (SearchPeriodsListPeriodGteErrorComponentDtoCodeEnum = {}));
19
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VhcmNoLXBlcmlvZHMtbGlzdC1wZXJpb2QtZ3RlLWVycm9yLWNvbXBvbmVudC5kdG8uanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9tb2RlbC9zZWFyY2gtcGVyaW9kcy1saXN0LXBlcmlvZC1ndGUtZXJyb3ItY29tcG9uZW50LmR0by50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7Ozs7Ozs7R0FRRztBQWFILE1BQU0sQ0FBTixJQUFZLG1EQUVYO0FBRkQsV0FBWSxtREFBbUQ7SUFDN0QsZ0ZBQXlCLENBQUE7QUFDM0IsQ0FBQyxFQUZXLG1EQUFtRCxLQUFuRCxtREFBbUQsUUFFOUQ7QUFDRCxNQUFNLENBQU4sSUFBWSxtREFHWDtBQUhELFdBQVksbURBQW1EO0lBQzdELDBFQUFtQixDQUFBO0lBQ25CLDRFQUFxQixDQUFBO0FBQ3ZCLENBQUMsRUFIVyxtREFBbUQsS0FBbkQsbURBQW1ELFFBRzlEIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBEZWxtYXIgQXBpXG4gKlxuICpcbiAqXG4gKiBOT1RFOiBUaGlzIGNsYXNzIGlzIGF1dG8gZ2VuZXJhdGVkIGJ5IE9wZW5BUEkgR2VuZXJhdG9yIChodHRwczovL29wZW5hcGktZ2VuZXJhdG9yLnRlY2gpLlxuICogaHR0cHM6Ly9vcGVuYXBpLWdlbmVyYXRvci50ZWNoXG4gKiBEbyBub3QgZWRpdCB0aGUgY2xhc3MgbWFudWFsbHkuXG4gKi9cblxuZXhwb3J0IGludGVyZmFjZSBTZWFyY2hQZXJpb2RzTGlzdFBlcmlvZEd0ZUVycm9yQ29tcG9uZW50RHRvIHtcbiAgLyoqXG4gICAqICogYHBlcmlvZF9fZ3RlYCAtIHBlcmlvZF9fZ3RlXG4gICAqL1xuICBhdHRyOiBTZWFyY2hQZXJpb2RzTGlzdFBlcmlvZEd0ZUVycm9yQ29tcG9uZW50RHRvQXR0ckVudW07XG4gIC8qKlxuICAgKiAqIGBpbnZhbGlkYCAtIGludmFsaWQgKiBgcmVxdWlyZWRgIC0gcmVxdWlyZWRcbiAgICovXG4gIGNvZGU6IFNlYXJjaFBlcmlvZHNMaXN0UGVyaW9kR3RlRXJyb3JDb21wb25lbnREdG9Db2RlRW51bTtcbiAgZGV0YWlsOiBzdHJpbmc7XG59XG5leHBvcnQgZW51bSBTZWFyY2hQZXJpb2RzTGlzdFBlcmlvZEd0ZUVycm9yQ29tcG9uZW50RHRvQXR0ckVudW0ge1xuICBQZXJpb2RHdGUgPSBcInBlcmlvZF9fZ3RlXCIsXG59XG5leHBvcnQgZW51bSBTZWFyY2hQZXJpb2RzTGlzdFBlcmlvZEd0ZUVycm9yQ29tcG9uZW50RHRvQ29kZUVudW0ge1xuICBJbnZhbGlkID0gXCJpbnZhbGlkXCIsXG4gIFJlcXVpcmVkID0gXCJyZXF1aXJlZFwiLFxufVxuIl19
@@ -1,19 +0,0 @@
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 var SearchPeriodsListPeriodLteErrorComponentDtoAttrEnum;
11
- (function (SearchPeriodsListPeriodLteErrorComponentDtoAttrEnum) {
12
- SearchPeriodsListPeriodLteErrorComponentDtoAttrEnum["PeriodLte"] = "period__lte";
13
- })(SearchPeriodsListPeriodLteErrorComponentDtoAttrEnum || (SearchPeriodsListPeriodLteErrorComponentDtoAttrEnum = {}));
14
- export var SearchPeriodsListPeriodLteErrorComponentDtoCodeEnum;
15
- (function (SearchPeriodsListPeriodLteErrorComponentDtoCodeEnum) {
16
- SearchPeriodsListPeriodLteErrorComponentDtoCodeEnum["Invalid"] = "invalid";
17
- SearchPeriodsListPeriodLteErrorComponentDtoCodeEnum["Required"] = "required";
18
- })(SearchPeriodsListPeriodLteErrorComponentDtoCodeEnum || (SearchPeriodsListPeriodLteErrorComponentDtoCodeEnum = {}));
19
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VhcmNoLXBlcmlvZHMtbGlzdC1wZXJpb2QtbHRlLWVycm9yLWNvbXBvbmVudC5kdG8uanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9tb2RlbC9zZWFyY2gtcGVyaW9kcy1saXN0LXBlcmlvZC1sdGUtZXJyb3ItY29tcG9uZW50LmR0by50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7Ozs7Ozs7R0FRRztBQWFILE1BQU0sQ0FBTixJQUFZLG1EQUVYO0FBRkQsV0FBWSxtREFBbUQ7SUFDN0QsZ0ZBQXlCLENBQUE7QUFDM0IsQ0FBQyxFQUZXLG1EQUFtRCxLQUFuRCxtREFBbUQsUUFFOUQ7QUFDRCxNQUFNLENBQU4sSUFBWSxtREFHWDtBQUhELFdBQVksbURBQW1EO0lBQzdELDBFQUFtQixDQUFBO0lBQ25CLDRFQUFxQixDQUFBO0FBQ3ZCLENBQUMsRUFIVyxtREFBbUQsS0FBbkQsbURBQW1ELFFBRzlEIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBEZWxtYXIgQXBpXG4gKlxuICpcbiAqXG4gKiBOT1RFOiBUaGlzIGNsYXNzIGlzIGF1dG8gZ2VuZXJhdGVkIGJ5IE9wZW5BUEkgR2VuZXJhdG9yIChodHRwczovL29wZW5hcGktZ2VuZXJhdG9yLnRlY2gpLlxuICogaHR0cHM6Ly9vcGVuYXBpLWdlbmVyYXRvci50ZWNoXG4gKiBEbyBub3QgZWRpdCB0aGUgY2xhc3MgbWFudWFsbHkuXG4gKi9cblxuZXhwb3J0IGludGVyZmFjZSBTZWFyY2hQZXJpb2RzTGlzdFBlcmlvZEx0ZUVycm9yQ29tcG9uZW50RHRvIHtcbiAgLyoqXG4gICAqICogYHBlcmlvZF9fbHRlYCAtIHBlcmlvZF9fbHRlXG4gICAqL1xuICBhdHRyOiBTZWFyY2hQZXJpb2RzTGlzdFBlcmlvZEx0ZUVycm9yQ29tcG9uZW50RHRvQXR0ckVudW07XG4gIC8qKlxuICAgKiAqIGBpbnZhbGlkYCAtIGludmFsaWQgKiBgcmVxdWlyZWRgIC0gcmVxdWlyZWRcbiAgICovXG4gIGNvZGU6IFNlYXJjaFBlcmlvZHNMaXN0UGVyaW9kTHRlRXJyb3JDb21wb25lbnREdG9Db2RlRW51bTtcbiAgZGV0YWlsOiBzdHJpbmc7XG59XG5leHBvcnQgZW51bSBTZWFyY2hQZXJpb2RzTGlzdFBlcmlvZEx0ZUVycm9yQ29tcG9uZW50RHRvQXR0ckVudW0ge1xuICBQZXJpb2RMdGUgPSBcInBlcmlvZF9fbHRlXCIsXG59XG5leHBvcnQgZW51bSBTZWFyY2hQZXJpb2RzTGlzdFBlcmlvZEx0ZUVycm9yQ29tcG9uZW50RHRvQ29kZUVudW0ge1xuICBJbnZhbGlkID0gXCJpbnZhbGlkXCIsXG4gIFJlcXVpcmVkID0gXCJyZXF1aXJlZFwiLFxufVxuIl19
@@ -1,18 +0,0 @@
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 var UserPeriodsListPeriodEndswithLteErrorComponentDtoAttrEnum;
11
- (function (UserPeriodsListPeriodEndswithLteErrorComponentDtoAttrEnum) {
12
- UserPeriodsListPeriodEndswithLteErrorComponentDtoAttrEnum["PeriodEndswithLte"] = "period__endswith__lte";
13
- })(UserPeriodsListPeriodEndswithLteErrorComponentDtoAttrEnum || (UserPeriodsListPeriodEndswithLteErrorComponentDtoAttrEnum = {}));
14
- export var UserPeriodsListPeriodEndswithLteErrorComponentDtoCodeEnum;
15
- (function (UserPeriodsListPeriodEndswithLteErrorComponentDtoCodeEnum) {
16
- UserPeriodsListPeriodEndswithLteErrorComponentDtoCodeEnum["Invalid"] = "invalid";
17
- })(UserPeriodsListPeriodEndswithLteErrorComponentDtoCodeEnum || (UserPeriodsListPeriodEndswithLteErrorComponentDtoCodeEnum = {}));
18
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidXNlci1wZXJpb2RzLWxpc3QtcGVyaW9kLWVuZHN3aXRoLWx0ZS1lcnJvci1jb21wb25lbnQuZHRvLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vbW9kZWwvdXNlci1wZXJpb2RzLWxpc3QtcGVyaW9kLWVuZHN3aXRoLWx0ZS1lcnJvci1jb21wb25lbnQuZHRvLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOzs7Ozs7OztHQVFHO0FBYUgsTUFBTSxDQUFOLElBQVkseURBRVg7QUFGRCxXQUFZLHlEQUF5RDtJQUNuRSx3R0FBMkMsQ0FBQTtBQUM3QyxDQUFDLEVBRlcseURBQXlELEtBQXpELHlEQUF5RCxRQUVwRTtBQUNELE1BQU0sQ0FBTixJQUFZLHlEQUVYO0FBRkQsV0FBWSx5REFBeUQ7SUFDbkUsZ0ZBQW1CLENBQUE7QUFDckIsQ0FBQyxFQUZXLHlEQUF5RCxLQUF6RCx5REFBeUQsUUFFcEUiLCJzb3VyY2VzQ29udGVudCI6WyIvKipcbiAqIERlbG1hciBBcGlcbiAqXG4gKlxuICpcbiAqIE5PVEU6IFRoaXMgY2xhc3MgaXMgYXV0byBnZW5lcmF0ZWQgYnkgT3BlbkFQSSBHZW5lcmF0b3IgKGh0dHBzOi8vb3BlbmFwaS1nZW5lcmF0b3IudGVjaCkuXG4gKiBodHRwczovL29wZW5hcGktZ2VuZXJhdG9yLnRlY2hcbiAqIERvIG5vdCBlZGl0IHRoZSBjbGFzcyBtYW51YWxseS5cbiAqL1xuXG5leHBvcnQgaW50ZXJmYWNlIFVzZXJQZXJpb2RzTGlzdFBlcmlvZEVuZHN3aXRoTHRlRXJyb3JDb21wb25lbnREdG8ge1xuICAvKipcbiAgICogKiBgcGVyaW9kX19lbmRzd2l0aF9fbHRlYCAtIHBlcmlvZF9fZW5kc3dpdGhfX2x0ZVxuICAgKi9cbiAgYXR0cjogVXNlclBlcmlvZHNMaXN0UGVyaW9kRW5kc3dpdGhMdGVFcnJvckNvbXBvbmVudER0b0F0dHJFbnVtO1xuICAvKipcbiAgICogKiBgaW52YWxpZGAgLSBpbnZhbGlkXG4gICAqL1xuICBjb2RlOiBVc2VyUGVyaW9kc0xpc3RQZXJpb2RFbmRzd2l0aEx0ZUVycm9yQ29tcG9uZW50RHRvQ29kZUVudW07XG4gIGRldGFpbDogc3RyaW5nO1xufVxuZXhwb3J0IGVudW0gVXNlclBlcmlvZHNMaXN0UGVyaW9kRW5kc3dpdGhMdGVFcnJvckNvbXBvbmVudER0b0F0dHJFbnVtIHtcbiAgUGVyaW9kRW5kc3dpdGhMdGUgPSBcInBlcmlvZF9fZW5kc3dpdGhfX2x0ZVwiLFxufVxuZXhwb3J0IGVudW0gVXNlclBlcmlvZHNMaXN0UGVyaW9kRW5kc3dpdGhMdGVFcnJvckNvbXBvbmVudER0b0NvZGVFbnVtIHtcbiAgSW52YWxpZCA9IFwiaW52YWxpZFwiLFxufVxuIl19
@@ -1,18 +0,0 @@
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 var UserPeriodsListPeriodStartswithGteErrorComponentDtoAttrEnum;
11
- (function (UserPeriodsListPeriodStartswithGteErrorComponentDtoAttrEnum) {
12
- UserPeriodsListPeriodStartswithGteErrorComponentDtoAttrEnum["PeriodStartswithGte"] = "period__startswith__gte";
13
- })(UserPeriodsListPeriodStartswithGteErrorComponentDtoAttrEnum || (UserPeriodsListPeriodStartswithGteErrorComponentDtoAttrEnum = {}));
14
- export var UserPeriodsListPeriodStartswithGteErrorComponentDtoCodeEnum;
15
- (function (UserPeriodsListPeriodStartswithGteErrorComponentDtoCodeEnum) {
16
- UserPeriodsListPeriodStartswithGteErrorComponentDtoCodeEnum["Invalid"] = "invalid";
17
- })(UserPeriodsListPeriodStartswithGteErrorComponentDtoCodeEnum || (UserPeriodsListPeriodStartswithGteErrorComponentDtoCodeEnum = {}));
18
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidXNlci1wZXJpb2RzLWxpc3QtcGVyaW9kLXN0YXJ0c3dpdGgtZ3RlLWVycm9yLWNvbXBvbmVudC5kdG8uanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9tb2RlbC91c2VyLXBlcmlvZHMtbGlzdC1wZXJpb2Qtc3RhcnRzd2l0aC1ndGUtZXJyb3ItY29tcG9uZW50LmR0by50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7Ozs7Ozs7R0FRRztBQWFILE1BQU0sQ0FBTixJQUFZLDJEQUVYO0FBRkQsV0FBWSwyREFBMkQ7SUFDckUsOEdBQStDLENBQUE7QUFDakQsQ0FBQyxFQUZXLDJEQUEyRCxLQUEzRCwyREFBMkQsUUFFdEU7QUFDRCxNQUFNLENBQU4sSUFBWSwyREFFWDtBQUZELFdBQVksMkRBQTJEO0lBQ3JFLGtGQUFtQixDQUFBO0FBQ3JCLENBQUMsRUFGVywyREFBMkQsS0FBM0QsMkRBQTJELFFBRXRFIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBEZWxtYXIgQXBpXG4gKlxuICpcbiAqXG4gKiBOT1RFOiBUaGlzIGNsYXNzIGlzIGF1dG8gZ2VuZXJhdGVkIGJ5IE9wZW5BUEkgR2VuZXJhdG9yIChodHRwczovL29wZW5hcGktZ2VuZXJhdG9yLnRlY2gpLlxuICogaHR0cHM6Ly9vcGVuYXBpLWdlbmVyYXRvci50ZWNoXG4gKiBEbyBub3QgZWRpdCB0aGUgY2xhc3MgbWFudWFsbHkuXG4gKi9cblxuZXhwb3J0IGludGVyZmFjZSBVc2VyUGVyaW9kc0xpc3RQZXJpb2RTdGFydHN3aXRoR3RlRXJyb3JDb21wb25lbnREdG8ge1xuICAvKipcbiAgICogKiBgcGVyaW9kX19zdGFydHN3aXRoX19ndGVgIC0gcGVyaW9kX19zdGFydHN3aXRoX19ndGVcbiAgICovXG4gIGF0dHI6IFVzZXJQZXJpb2RzTGlzdFBlcmlvZFN0YXJ0c3dpdGhHdGVFcnJvckNvbXBvbmVudER0b0F0dHJFbnVtO1xuICAvKipcbiAgICogKiBgaW52YWxpZGAgLSBpbnZhbGlkXG4gICAqL1xuICBjb2RlOiBVc2VyUGVyaW9kc0xpc3RQZXJpb2RTdGFydHN3aXRoR3RlRXJyb3JDb21wb25lbnREdG9Db2RlRW51bTtcbiAgZGV0YWlsOiBzdHJpbmc7XG59XG5leHBvcnQgZW51bSBVc2VyUGVyaW9kc0xpc3RQZXJpb2RTdGFydHN3aXRoR3RlRXJyb3JDb21wb25lbnREdG9BdHRyRW51bSB7XG4gIFBlcmlvZFN0YXJ0c3dpdGhHdGUgPSBcInBlcmlvZF9fc3RhcnRzd2l0aF9fZ3RlXCIsXG59XG5leHBvcnQgZW51bSBVc2VyUGVyaW9kc0xpc3RQZXJpb2RTdGFydHN3aXRoR3RlRXJyb3JDb21wb25lbnREdG9Db2RlRW51bSB7XG4gIEludmFsaWQgPSBcImludmFsaWRcIixcbn1cbiJdfQ==
@@ -1,27 +0,0 @@
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 SearchPeriodsListPeriodGteErrorComponentDto {
11
- /**
12
- * * `period__gte` - period__gte
13
- */
14
- attr: SearchPeriodsListPeriodGteErrorComponentDtoAttrEnum;
15
- /**
16
- * * `invalid` - invalid * `required` - required
17
- */
18
- code: SearchPeriodsListPeriodGteErrorComponentDtoCodeEnum;
19
- detail: string;
20
- }
21
- export declare enum SearchPeriodsListPeriodGteErrorComponentDtoAttrEnum {
22
- PeriodGte = "period__gte"
23
- }
24
- export declare enum SearchPeriodsListPeriodGteErrorComponentDtoCodeEnum {
25
- Invalid = "invalid",
26
- Required = "required"
27
- }
@@ -1,27 +0,0 @@
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 SearchPeriodsListPeriodLteErrorComponentDto {
11
- /**
12
- * * `period__lte` - period__lte
13
- */
14
- attr: SearchPeriodsListPeriodLteErrorComponentDtoAttrEnum;
15
- /**
16
- * * `invalid` - invalid * `required` - required
17
- */
18
- code: SearchPeriodsListPeriodLteErrorComponentDtoCodeEnum;
19
- detail: string;
20
- }
21
- export declare enum SearchPeriodsListPeriodLteErrorComponentDtoAttrEnum {
22
- PeriodLte = "period__lte"
23
- }
24
- export declare enum SearchPeriodsListPeriodLteErrorComponentDtoCodeEnum {
25
- Invalid = "invalid",
26
- Required = "required"
27
- }
@@ -1,26 +0,0 @@
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 UserPeriodsListPeriodEndswithLteErrorComponentDto {
11
- /**
12
- * * `period__endswith__lte` - period__endswith__lte
13
- */
14
- attr: UserPeriodsListPeriodEndswithLteErrorComponentDtoAttrEnum;
15
- /**
16
- * * `invalid` - invalid
17
- */
18
- code: UserPeriodsListPeriodEndswithLteErrorComponentDtoCodeEnum;
19
- detail: string;
20
- }
21
- export declare enum UserPeriodsListPeriodEndswithLteErrorComponentDtoAttrEnum {
22
- PeriodEndswithLte = "period__endswith__lte"
23
- }
24
- export declare enum UserPeriodsListPeriodEndswithLteErrorComponentDtoCodeEnum {
25
- Invalid = "invalid"
26
- }
@@ -1,26 +0,0 @@
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 UserPeriodsListPeriodStartswithGteErrorComponentDto {
11
- /**
12
- * * `period__startswith__gte` - period__startswith__gte
13
- */
14
- attr: UserPeriodsListPeriodStartswithGteErrorComponentDtoAttrEnum;
15
- /**
16
- * * `invalid` - invalid
17
- */
18
- code: UserPeriodsListPeriodStartswithGteErrorComponentDtoCodeEnum;
19
- detail: string;
20
- }
21
- export declare enum UserPeriodsListPeriodStartswithGteErrorComponentDtoAttrEnum {
22
- PeriodStartswithGte = "period__startswith__gte"
23
- }
24
- export declare enum UserPeriodsListPeriodStartswithGteErrorComponentDtoCodeEnum {
25
- Invalid = "invalid"
26
- }