@saritasa/crm-delmar-core-sdk 0.0.237 → 0.0.238

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 (28) hide show
  1. package/README.md +2 -2
  2. package/api/branch-periods-api.serviceInterface.d.ts +6 -0
  3. package/api/search-periods-api.serviceInterface.d.ts +1 -0
  4. package/esm2022/api/branch-periods-api.service.mjs +18 -2
  5. package/esm2022/api/branch-periods-api.serviceInterface.mjs +1 -1
  6. package/esm2022/api/search-periods-api.service.mjs +3 -1
  7. package/esm2022/api/search-periods-api.serviceInterface.mjs +1 -1
  8. package/esm2022/model/branch-periods-list-error-response400.dto.mjs +1 -1
  9. package/esm2022/model/branch-periods-list-error.dto.mjs +2 -0
  10. package/esm2022/model/branch-periods-list-id-error-component.dto.mjs +19 -0
  11. package/esm2022/model/branch-periods-list-id-in-error-component.dto.mjs +19 -0
  12. package/esm2022/model/branch-periods-list-period-overlap-error-component.dto.mjs +19 -0
  13. package/esm2022/model/branch-periods-list-type-error-component.dto.mjs +18 -0
  14. package/esm2022/model/branch-periods-list-type-in-error-component.dto.mjs +18 -0
  15. package/esm2022/model/branch-periods-list-validation-error.dto.mjs +2 -0
  16. package/esm2022/model/models.mjs +8 -1
  17. package/fesm2022/saritasa-crm-delmar-core-sdk.mjs +112 -1
  18. package/fesm2022/saritasa-crm-delmar-core-sdk.mjs.map +1 -1
  19. package/model/branch-periods-list-error-response400.dto.d.ts +2 -1
  20. package/model/branch-periods-list-error.dto.d.ts +19 -0
  21. package/model/branch-periods-list-id-error-component.dto.d.ts +27 -0
  22. package/model/branch-periods-list-id-in-error-component.dto.d.ts +27 -0
  23. package/model/branch-periods-list-period-overlap-error-component.dto.d.ts +27 -0
  24. package/model/branch-periods-list-type-error-component.dto.d.ts +26 -0
  25. package/model/branch-periods-list-type-in-error-component.dto.d.ts +26 -0
  26. package/model/branch-periods-list-validation-error.dto.d.ts +15 -0
  27. package/model/models.d.ts +7 -0
  28. package/package.json +1 -1
@@ -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 { BranchPeriodsListValidationErrorDto } from "./branch-periods-list-validation-error.dto";
11
12
  /**
12
13
  * @type BranchPeriodsListErrorResponse400Dto
13
14
  * @export
14
15
  */
15
- export type BranchPeriodsListErrorResponse400Dto = ParseErrorResponseDto;
16
+ export type BranchPeriodsListErrorResponse400Dto = BranchPeriodsListValidationErrorDto | ParseErrorResponseDto;
@@ -0,0 +1,19 @@
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 { BranchPeriodsListPeriodOverlapErrorComponentDto } from "./branch-periods-list-period-overlap-error-component.dto";
11
+ import { BranchPeriodsListTypeErrorComponentDto } from "./branch-periods-list-type-error-component.dto";
12
+ import { BranchPeriodsListTypeInErrorComponentDto } from "./branch-periods-list-type-in-error-component.dto";
13
+ import { BranchPeriodsListIdErrorComponentDto } from "./branch-periods-list-id-error-component.dto";
14
+ import { BranchPeriodsListIdInErrorComponentDto } from "./branch-periods-list-id-in-error-component.dto";
15
+ /**
16
+ * @type BranchPeriodsListErrorDto
17
+ * @export
18
+ */
19
+ export type BranchPeriodsListErrorDto = BranchPeriodsListIdErrorComponentDto | BranchPeriodsListIdInErrorComponentDto | BranchPeriodsListPeriodOverlapErrorComponentDto | BranchPeriodsListTypeErrorComponentDto | BranchPeriodsListTypeInErrorComponentDto;
@@ -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 BranchPeriodsListIdErrorComponentDto {
11
+ /**
12
+ * * `id` - id
13
+ */
14
+ attr: BranchPeriodsListIdErrorComponentDtoAttrEnum;
15
+ /**
16
+ * * `invalid` - invalid * `max_value` - max_value
17
+ */
18
+ code: BranchPeriodsListIdErrorComponentDtoCodeEnum;
19
+ detail: string;
20
+ }
21
+ export declare enum BranchPeriodsListIdErrorComponentDtoAttrEnum {
22
+ Id = "id"
23
+ }
24
+ export declare enum BranchPeriodsListIdErrorComponentDtoCodeEnum {
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 BranchPeriodsListIdInErrorComponentDto {
11
+ /**
12
+ * * `id__in` - id__in
13
+ */
14
+ attr: BranchPeriodsListIdInErrorComponentDtoAttrEnum;
15
+ /**
16
+ * * `invalid` - invalid * `max_value` - max_value
17
+ */
18
+ code: BranchPeriodsListIdInErrorComponentDtoCodeEnum;
19
+ detail: string;
20
+ }
21
+ export declare enum BranchPeriodsListIdInErrorComponentDtoAttrEnum {
22
+ IdIn = "id__in"
23
+ }
24
+ export declare enum BranchPeriodsListIdInErrorComponentDtoCodeEnum {
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 BranchPeriodsListPeriodOverlapErrorComponentDto {
11
+ /**
12
+ * * `period__overlap` - period__overlap
13
+ */
14
+ attr: BranchPeriodsListPeriodOverlapErrorComponentDtoAttrEnum;
15
+ /**
16
+ * * `invalid` - invalid * `null_characters_not_allowed` - null_characters_not_allowed
17
+ */
18
+ code: BranchPeriodsListPeriodOverlapErrorComponentDtoCodeEnum;
19
+ detail: string;
20
+ }
21
+ export declare enum BranchPeriodsListPeriodOverlapErrorComponentDtoAttrEnum {
22
+ PeriodOverlap = "period__overlap"
23
+ }
24
+ export declare enum BranchPeriodsListPeriodOverlapErrorComponentDtoCodeEnum {
25
+ Invalid = "invalid",
26
+ NullCharactersNotAllowed = "null_characters_not_allowed"
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 BranchPeriodsListTypeErrorComponentDto {
11
+ /**
12
+ * * `type` - type
13
+ */
14
+ attr: BranchPeriodsListTypeErrorComponentDtoAttrEnum;
15
+ /**
16
+ * * `invalid_choice` - invalid_choice
17
+ */
18
+ code: BranchPeriodsListTypeErrorComponentDtoCodeEnum;
19
+ detail: string;
20
+ }
21
+ export declare enum BranchPeriodsListTypeErrorComponentDtoAttrEnum {
22
+ Type = "type"
23
+ }
24
+ export declare enum BranchPeriodsListTypeErrorComponentDtoCodeEnum {
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 BranchPeriodsListTypeInErrorComponentDto {
11
+ /**
12
+ * * `type__in` - type__in
13
+ */
14
+ attr: BranchPeriodsListTypeInErrorComponentDtoAttrEnum;
15
+ /**
16
+ * * `null_characters_not_allowed` - null_characters_not_allowed
17
+ */
18
+ code: BranchPeriodsListTypeInErrorComponentDtoCodeEnum;
19
+ detail: string;
20
+ }
21
+ export declare enum BranchPeriodsListTypeInErrorComponentDtoAttrEnum {
22
+ TypeIn = "type__in"
23
+ }
24
+ export declare enum BranchPeriodsListTypeInErrorComponentDtoCodeEnum {
25
+ NullCharactersNotAllowed = "null_characters_not_allowed"
26
+ }
@@ -0,0 +1,15 @@
1
+ /**
2
+ * Delmar Api
3
+ *
4
+ *
5
+ *
6
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
7
+ * https://openapi-generator.tech
8
+ * Do not edit the class manually.
9
+ */
10
+ import { ValidationErrorEnumDto } from "./validation-error-enum.dto";
11
+ import { BranchPeriodsListErrorDto } from "./branch-periods-list-error.dto";
12
+ export interface BranchPeriodsListValidationErrorDto {
13
+ type: ValidationErrorEnumDto;
14
+ errors: Array<BranchPeriodsListErrorDto>;
15
+ }
package/model/models.d.ts CHANGED
@@ -19,7 +19,14 @@ export * from "./branch-periods-create-title-error-component.dto";
19
19
  export * from "./branch-periods-create-type-error-component.dto";
20
20
  export * from "./branch-periods-create-validation-error.dto";
21
21
  export * from "./branch-periods-destroy-error-response400.dto";
22
+ export * from "./branch-periods-list-error.dto";
22
23
  export * from "./branch-periods-list-error-response400.dto";
24
+ export * from "./branch-periods-list-id-error-component.dto";
25
+ export * from "./branch-periods-list-id-in-error-component.dto";
26
+ export * from "./branch-periods-list-period-overlap-error-component.dto";
27
+ export * from "./branch-periods-list-type-error-component.dto";
28
+ export * from "./branch-periods-list-type-in-error-component.dto";
29
+ export * from "./branch-periods-list-validation-error.dto";
23
30
  export * from "./branch-periods-retrieve-error-response400.dto";
24
31
  export * from "./branch-periods-update-branch-error-component.dto";
25
32
  export * from "./branch-periods-update-description-error-component.dto";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@saritasa/crm-delmar-core-sdk",
3
- "version": "0.0.237",
3
+ "version": "0.0.238",
4
4
  "description": "OpenAPI client for @saritasa/crm-delmar-core-sdk(for version 0.0.129)",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {