@digital8/lighting-illusions-ts-sdk 0.0.531 → 0.0.533

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 (144) hide show
  1. package/.openapi-generator/FILES +66 -0
  2. package/README.md +42 -2
  3. package/dist/apis/ProductCategoryApi.d.ts +105 -0
  4. package/dist/apis/ProductCategoryApi.js +445 -0
  5. package/dist/apis/index.d.ts +1 -0
  6. package/dist/apis/index.js +1 -0
  7. package/dist/models/CategoryAutomationComparisonType.d.ts +29 -0
  8. package/dist/models/CategoryAutomationComparisonType.js +55 -0
  9. package/dist/models/CategoryAutomationConditionType.d.ts +25 -0
  10. package/dist/models/CategoryAutomationConditionType.js +51 -0
  11. package/dist/models/CategoryAutomationFieldType.d.ts +30 -0
  12. package/dist/models/CategoryAutomationFieldType.js +56 -0
  13. package/dist/models/CategoryAutomationRuleResource.d.ts +68 -0
  14. package/dist/models/CategoryAutomationRuleResource.js +67 -0
  15. package/dist/models/CategoryAutomationRuleResourceArrayResponse.d.ts +33 -0
  16. package/dist/models/CategoryAutomationRuleResourceArrayResponse.js +50 -0
  17. package/dist/models/ExternalApiLogResource.d.ts +1 -1
  18. package/dist/models/ExternalApiLogResource.js +3 -1
  19. package/dist/models/GetAllProductCategoryRequest.d.ts +115 -0
  20. package/dist/models/GetAllProductCategoryRequest.js +94 -0
  21. package/dist/models/IndexProductCategoryRequest.d.ts +127 -0
  22. package/dist/models/IndexProductCategoryRequest.js +98 -0
  23. package/dist/models/PaginatedProductCategoryListResourceResponse.d.ts +40 -0
  24. package/dist/models/PaginatedProductCategoryListResourceResponse.js +57 -0
  25. package/dist/models/PaginatedProductCategoryResourceResponse.d.ts +40 -0
  26. package/dist/models/PaginatedProductCategoryResourceResponse.js +57 -0
  27. package/dist/models/PaginatedProductSearchResultResourceResponse.d.ts +40 -0
  28. package/dist/models/PaginatedProductSearchResultResourceResponse.js +57 -0
  29. package/dist/models/ProductAggregationResource.d.ts +50 -0
  30. package/dist/models/ProductAggregationResource.js +63 -0
  31. package/dist/models/ProductAggregationResourceArrayResponse.d.ts +33 -0
  32. package/dist/models/ProductAggregationResourceArrayResponse.js +50 -0
  33. package/dist/models/ProductCategoryHierarchyResource.d.ts +62 -0
  34. package/dist/models/ProductCategoryHierarchyResource.js +69 -0
  35. package/dist/models/ProductCategoryHierarchyResourceArrayResponse.d.ts +33 -0
  36. package/dist/models/ProductCategoryHierarchyResourceArrayResponse.js +50 -0
  37. package/dist/models/ProductCategoryListResource.d.ts +75 -0
  38. package/dist/models/ProductCategoryListResource.js +78 -0
  39. package/dist/models/ProductCategoryListResourceArrayResponse.d.ts +33 -0
  40. package/dist/models/ProductCategoryListResourceArrayResponse.js +50 -0
  41. package/dist/models/ProductCategoryLiteResource.d.ts +38 -0
  42. package/dist/models/ProductCategoryLiteResource.js +53 -0
  43. package/dist/models/ProductCategoryLiteResourceArrayResponse.d.ts +33 -0
  44. package/dist/models/ProductCategoryLiteResourceArrayResponse.js +50 -0
  45. package/dist/models/ProductCategoryResource.d.ts +107 -0
  46. package/dist/models/ProductCategoryResource.js +96 -0
  47. package/dist/models/ProductCategoryResourceArrayResponse.d.ts +33 -0
  48. package/dist/models/ProductCategoryResourceArrayResponse.js +50 -0
  49. package/dist/models/ProductRating.d.ts +26 -0
  50. package/dist/models/ProductRating.js +52 -0
  51. package/dist/models/ProductSearchResponseResource.d.ts +54 -0
  52. package/dist/models/ProductSearchResponseResource.js +67 -0
  53. package/dist/models/ProductSearchResponseResourceArrayResponse.d.ts +33 -0
  54. package/dist/models/ProductSearchResponseResourceArrayResponse.js +50 -0
  55. package/dist/models/ProductSearchResponseResourceMeta.d.ts +50 -0
  56. package/dist/models/ProductSearchResponseResourceMeta.js +63 -0
  57. package/dist/models/ProductSearchResponseResourcePriceInfo.d.ts +50 -0
  58. package/dist/models/ProductSearchResponseResourcePriceInfo.js +63 -0
  59. package/dist/models/ProductSearchResultResource.d.ts +116 -0
  60. package/dist/models/ProductSearchResultResource.js +105 -0
  61. package/dist/models/ProductSearchResultResourceArrayResponse.d.ts +33 -0
  62. package/dist/models/ProductSearchResultResourceArrayResponse.js +50 -0
  63. package/dist/models/ProductSortBy.d.ts +32 -0
  64. package/dist/models/ProductSortBy.js +58 -0
  65. package/dist/models/ProductStatus.d.ts +24 -0
  66. package/dist/models/ProductStatus.js +50 -0
  67. package/dist/models/StoreProductCategoryRequest.d.ts +113 -0
  68. package/dist/models/StoreProductCategoryRequest.js +94 -0
  69. package/dist/models/StoreProductCategoryRequestAutomationRulesInner.d.ts +87 -0
  70. package/dist/models/StoreProductCategoryRequestAutomationRulesInner.js +87 -0
  71. package/dist/models/UpdateProductCategoryRequest.d.ts +113 -0
  72. package/dist/models/UpdateProductCategoryRequest.js +82 -0
  73. package/dist/models/index.d.ts +32 -0
  74. package/dist/models/index.js +32 -0
  75. package/docs/CategoryAutomationComparisonType.md +32 -0
  76. package/docs/CategoryAutomationConditionType.md +32 -0
  77. package/docs/CategoryAutomationFieldType.md +32 -0
  78. package/docs/CategoryAutomationRuleResource.md +46 -0
  79. package/docs/CategoryAutomationRuleResourceArrayResponse.md +34 -0
  80. package/docs/GetAllProductCategoryRequest.md +52 -0
  81. package/docs/IndexProductCategoryRequest.md +56 -0
  82. package/docs/PaginatedProductCategoryListResourceResponse.md +36 -0
  83. package/docs/PaginatedProductCategoryResourceResponse.md +36 -0
  84. package/docs/PaginatedProductSearchResultResourceResponse.md +36 -0
  85. package/docs/ProductAggregationResource.md +40 -0
  86. package/docs/ProductAggregationResourceArrayResponse.md +34 -0
  87. package/docs/ProductCategoryApi.md +534 -0
  88. package/docs/ProductCategoryHierarchyResource.md +44 -0
  89. package/docs/ProductCategoryHierarchyResourceArrayResponse.md +34 -0
  90. package/docs/ProductCategoryListResource.md +48 -0
  91. package/docs/ProductCategoryListResourceArrayResponse.md +34 -0
  92. package/docs/ProductCategoryLiteResource.md +36 -0
  93. package/docs/ProductCategoryLiteResourceArrayResponse.md +34 -0
  94. package/docs/ProductCategoryResource.md +58 -0
  95. package/docs/ProductCategoryResourceArrayResponse.md +34 -0
  96. package/docs/ProductRating.md +32 -0
  97. package/docs/ProductSearchResponseResource.md +40 -0
  98. package/docs/ProductSearchResponseResourceArrayResponse.md +34 -0
  99. package/docs/ProductSearchResponseResourceMeta.md +40 -0
  100. package/docs/ProductSearchResponseResourcePriceInfo.md +40 -0
  101. package/docs/ProductSearchResultResource.md +62 -0
  102. package/docs/ProductSearchResultResourceArrayResponse.md +34 -0
  103. package/docs/ProductSortBy.md +32 -0
  104. package/docs/ProductStatus.md +32 -0
  105. package/docs/StoreProductCategoryRequest.md +58 -0
  106. package/docs/StoreProductCategoryRequestAutomationRulesInner.md +44 -0
  107. package/docs/UpdateProductCategoryRequest.md +58 -0
  108. package/package.json +1 -1
  109. package/src/apis/ProductCategoryApi.ts +363 -0
  110. package/src/apis/index.ts +1 -0
  111. package/src/models/CategoryAutomationComparisonType.ts +57 -0
  112. package/src/models/CategoryAutomationConditionType.ts +53 -0
  113. package/src/models/CategoryAutomationFieldType.ts +58 -0
  114. package/src/models/CategoryAutomationRuleResource.ts +116 -0
  115. package/src/models/CategoryAutomationRuleResourceArrayResponse.ts +73 -0
  116. package/src/models/ExternalApiLogResource.ts +3 -2
  117. package/src/models/GetAllProductCategoryRequest.ts +171 -0
  118. package/src/models/IndexProductCategoryRequest.ts +187 -0
  119. package/src/models/PaginatedProductCategoryListResourceResponse.ts +90 -0
  120. package/src/models/PaginatedProductCategoryResourceResponse.ts +90 -0
  121. package/src/models/PaginatedProductSearchResultResourceResponse.ts +90 -0
  122. package/src/models/ProductAggregationResource.ts +93 -0
  123. package/src/models/ProductAggregationResourceArrayResponse.ts +73 -0
  124. package/src/models/ProductCategoryHierarchyResource.ts +110 -0
  125. package/src/models/ProductCategoryHierarchyResourceArrayResponse.ts +73 -0
  126. package/src/models/ProductCategoryListResource.ts +136 -0
  127. package/src/models/ProductCategoryListResourceArrayResponse.ts +73 -0
  128. package/src/models/ProductCategoryLiteResource.ts +74 -0
  129. package/src/models/ProductCategoryLiteResourceArrayResponse.ts +73 -0
  130. package/src/models/ProductCategoryResource.ts +193 -0
  131. package/src/models/ProductCategoryResourceArrayResponse.ts +73 -0
  132. package/src/models/ProductRating.ts +54 -0
  133. package/src/models/ProductSearchResponseResource.ts +122 -0
  134. package/src/models/ProductSearchResponseResourceArrayResponse.ts +73 -0
  135. package/src/models/ProductSearchResponseResourceMeta.ts +93 -0
  136. package/src/models/ProductSearchResponseResourcePriceInfo.ts +93 -0
  137. package/src/models/ProductSearchResultResource.ts +191 -0
  138. package/src/models/ProductSearchResultResourceArrayResponse.ts +73 -0
  139. package/src/models/ProductSortBy.ts +60 -0
  140. package/src/models/ProductStatus.ts +52 -0
  141. package/src/models/StoreProductCategoryRequest.ts +186 -0
  142. package/src/models/StoreProductCategoryRequestAutomationRulesInner.ts +136 -0
  143. package/src/models/UpdateProductCategoryRequest.ts +180 -0
  144. package/src/models/index.ts +32 -0
@@ -0,0 +1,90 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * My API
5
+ * API documentation for my Laravel app
6
+ *
7
+ * The version of the OpenAPI document: 1.0.0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+ import { mapValues } from '../runtime';
16
+ import type { PagingMetadata } from './PagingMetadata';
17
+ import {
18
+ PagingMetadataFromJSON,
19
+ PagingMetadataFromJSONTyped,
20
+ PagingMetadataToJSON,
21
+ PagingMetadataToJSONTyped,
22
+ } from './PagingMetadata';
23
+ import type { ProductSearchResultResource } from './ProductSearchResultResource';
24
+ import {
25
+ ProductSearchResultResourceFromJSON,
26
+ ProductSearchResultResourceFromJSONTyped,
27
+ ProductSearchResultResourceToJSON,
28
+ ProductSearchResultResourceToJSONTyped,
29
+ } from './ProductSearchResultResource';
30
+
31
+ /**
32
+ *
33
+ * @export
34
+ * @interface PaginatedProductSearchResultResourceResponse
35
+ */
36
+ export interface PaginatedProductSearchResultResourceResponse {
37
+ /**
38
+ *
39
+ * @type {Array<ProductSearchResultResource>}
40
+ * @memberof PaginatedProductSearchResultResourceResponse
41
+ */
42
+ data: Array<ProductSearchResultResource>;
43
+ /**
44
+ *
45
+ * @type {PagingMetadata}
46
+ * @memberof PaginatedProductSearchResultResourceResponse
47
+ */
48
+ meta: PagingMetadata;
49
+ }
50
+
51
+ /**
52
+ * Check if a given object implements the PaginatedProductSearchResultResourceResponse interface.
53
+ */
54
+ export function instanceOfPaginatedProductSearchResultResourceResponse(value: object): value is PaginatedProductSearchResultResourceResponse {
55
+ if (!('data' in value) || value['data'] === undefined) return false;
56
+ if (!('meta' in value) || value['meta'] === undefined) return false;
57
+ return true;
58
+ }
59
+
60
+ export function PaginatedProductSearchResultResourceResponseFromJSON(json: any): PaginatedProductSearchResultResourceResponse {
61
+ return PaginatedProductSearchResultResourceResponseFromJSONTyped(json, false);
62
+ }
63
+
64
+ export function PaginatedProductSearchResultResourceResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedProductSearchResultResourceResponse {
65
+ if (json == null) {
66
+ return json;
67
+ }
68
+ return {
69
+
70
+ 'data': ((json['data'] as Array<any>).map(ProductSearchResultResourceFromJSON)),
71
+ 'meta': PagingMetadataFromJSON(json['meta']),
72
+ };
73
+ }
74
+
75
+ export function PaginatedProductSearchResultResourceResponseToJSON(json: any): PaginatedProductSearchResultResourceResponse {
76
+ return PaginatedProductSearchResultResourceResponseToJSONTyped(json, false);
77
+ }
78
+
79
+ export function PaginatedProductSearchResultResourceResponseToJSONTyped(value?: PaginatedProductSearchResultResourceResponse | null, ignoreDiscriminator: boolean = false): any {
80
+ if (value == null) {
81
+ return value;
82
+ }
83
+
84
+ return {
85
+
86
+ 'data': ((value['data'] as Array<any>).map(ProductSearchResultResourceToJSON)),
87
+ 'meta': PagingMetadataToJSON(value['meta']),
88
+ };
89
+ }
90
+
@@ -0,0 +1,93 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * My API
5
+ * API documentation for my Laravel app
6
+ *
7
+ * The version of the OpenAPI document: 1.0.0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+ import { mapValues } from '../runtime';
16
+ /**
17
+ *
18
+ * @export
19
+ * @interface ProductAggregationResource
20
+ */
21
+ export interface ProductAggregationResource {
22
+ /**
23
+ *
24
+ * @type {object}
25
+ * @memberof ProductAggregationResource
26
+ */
27
+ attributes: object;
28
+ /**
29
+ *
30
+ * @type {Array<object>}
31
+ * @memberof ProductAggregationResource
32
+ */
33
+ priceRanges: Array<object>;
34
+ /**
35
+ *
36
+ * @type {Array<object>}
37
+ * @memberof ProductAggregationResource
38
+ */
39
+ brands: Array<object>;
40
+ /**
41
+ *
42
+ * @type {Array<object>}
43
+ * @memberof ProductAggregationResource
44
+ */
45
+ ratings: Array<object>;
46
+ }
47
+
48
+ /**
49
+ * Check if a given object implements the ProductAggregationResource interface.
50
+ */
51
+ export function instanceOfProductAggregationResource(value: object): value is ProductAggregationResource {
52
+ if (!('attributes' in value) || value['attributes'] === undefined) return false;
53
+ if (!('priceRanges' in value) || value['priceRanges'] === undefined) return false;
54
+ if (!('brands' in value) || value['brands'] === undefined) return false;
55
+ if (!('ratings' in value) || value['ratings'] === undefined) return false;
56
+ return true;
57
+ }
58
+
59
+ export function ProductAggregationResourceFromJSON(json: any): ProductAggregationResource {
60
+ return ProductAggregationResourceFromJSONTyped(json, false);
61
+ }
62
+
63
+ export function ProductAggregationResourceFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProductAggregationResource {
64
+ if (json == null) {
65
+ return json;
66
+ }
67
+ return {
68
+
69
+ 'attributes': json['attributes'],
70
+ 'priceRanges': json['priceRanges'],
71
+ 'brands': json['brands'],
72
+ 'ratings': json['ratings'],
73
+ };
74
+ }
75
+
76
+ export function ProductAggregationResourceToJSON(json: any): ProductAggregationResource {
77
+ return ProductAggregationResourceToJSONTyped(json, false);
78
+ }
79
+
80
+ export function ProductAggregationResourceToJSONTyped(value?: ProductAggregationResource | null, ignoreDiscriminator: boolean = false): any {
81
+ if (value == null) {
82
+ return value;
83
+ }
84
+
85
+ return {
86
+
87
+ 'attributes': value['attributes'],
88
+ 'priceRanges': value['priceRanges'],
89
+ 'brands': value['brands'],
90
+ 'ratings': value['ratings'],
91
+ };
92
+ }
93
+
@@ -0,0 +1,73 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * My API
5
+ * API documentation for my Laravel app
6
+ *
7
+ * The version of the OpenAPI document: 1.0.0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+ import { mapValues } from '../runtime';
16
+ import type { ProductAggregationResource } from './ProductAggregationResource';
17
+ import {
18
+ ProductAggregationResourceFromJSON,
19
+ ProductAggregationResourceFromJSONTyped,
20
+ ProductAggregationResourceToJSON,
21
+ ProductAggregationResourceToJSONTyped,
22
+ } from './ProductAggregationResource';
23
+
24
+ /**
25
+ *
26
+ * @export
27
+ * @interface ProductAggregationResourceArrayResponse
28
+ */
29
+ export interface ProductAggregationResourceArrayResponse {
30
+ /**
31
+ *
32
+ * @type {Array<ProductAggregationResource>}
33
+ * @memberof ProductAggregationResourceArrayResponse
34
+ */
35
+ data?: Array<ProductAggregationResource>;
36
+ }
37
+
38
+ /**
39
+ * Check if a given object implements the ProductAggregationResourceArrayResponse interface.
40
+ */
41
+ export function instanceOfProductAggregationResourceArrayResponse(value: object): value is ProductAggregationResourceArrayResponse {
42
+ return true;
43
+ }
44
+
45
+ export function ProductAggregationResourceArrayResponseFromJSON(json: any): ProductAggregationResourceArrayResponse {
46
+ return ProductAggregationResourceArrayResponseFromJSONTyped(json, false);
47
+ }
48
+
49
+ export function ProductAggregationResourceArrayResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProductAggregationResourceArrayResponse {
50
+ if (json == null) {
51
+ return json;
52
+ }
53
+ return {
54
+
55
+ 'data': json['data'] == null ? undefined : ((json['data'] as Array<any>).map(ProductAggregationResourceFromJSON)),
56
+ };
57
+ }
58
+
59
+ export function ProductAggregationResourceArrayResponseToJSON(json: any): ProductAggregationResourceArrayResponse {
60
+ return ProductAggregationResourceArrayResponseToJSONTyped(json, false);
61
+ }
62
+
63
+ export function ProductAggregationResourceArrayResponseToJSONTyped(value?: ProductAggregationResourceArrayResponse | null, ignoreDiscriminator: boolean = false): any {
64
+ if (value == null) {
65
+ return value;
66
+ }
67
+
68
+ return {
69
+
70
+ 'data': value['data'] == null ? undefined : ((value['data'] as Array<any>).map(ProductAggregationResourceToJSON)),
71
+ };
72
+ }
73
+
@@ -0,0 +1,110 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * My API
5
+ * API documentation for my Laravel app
6
+ *
7
+ * The version of the OpenAPI document: 1.0.0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+ import { mapValues } from '../runtime';
16
+ /**
17
+ *
18
+ * @export
19
+ * @interface ProductCategoryHierarchyResource
20
+ */
21
+ export interface ProductCategoryHierarchyResource {
22
+ /**
23
+ *
24
+ * @type {number}
25
+ * @memberof ProductCategoryHierarchyResource
26
+ */
27
+ id?: number | null;
28
+ /**
29
+ *
30
+ * @type {string}
31
+ * @memberof ProductCategoryHierarchyResource
32
+ */
33
+ name: string;
34
+ /**
35
+ *
36
+ * @type {string}
37
+ * @memberof ProductCategoryHierarchyResource
38
+ */
39
+ slug: string;
40
+ /**
41
+ *
42
+ * @type {number}
43
+ * @memberof ProductCategoryHierarchyResource
44
+ */
45
+ index: number;
46
+ /**
47
+ *
48
+ * @type {boolean}
49
+ * @memberof ProductCategoryHierarchyResource
50
+ */
51
+ isAutomated: boolean;
52
+ /**
53
+ *
54
+ * @type {object}
55
+ * @memberof ProductCategoryHierarchyResource
56
+ */
57
+ children: object;
58
+ }
59
+
60
+ /**
61
+ * Check if a given object implements the ProductCategoryHierarchyResource interface.
62
+ */
63
+ export function instanceOfProductCategoryHierarchyResource(value: object): value is ProductCategoryHierarchyResource {
64
+ if (!('name' in value) || value['name'] === undefined) return false;
65
+ if (!('slug' in value) || value['slug'] === undefined) return false;
66
+ if (!('index' in value) || value['index'] === undefined) return false;
67
+ if (!('isAutomated' in value) || value['isAutomated'] === undefined) return false;
68
+ if (!('children' in value) || value['children'] === undefined) return false;
69
+ return true;
70
+ }
71
+
72
+ export function ProductCategoryHierarchyResourceFromJSON(json: any): ProductCategoryHierarchyResource {
73
+ return ProductCategoryHierarchyResourceFromJSONTyped(json, false);
74
+ }
75
+
76
+ export function ProductCategoryHierarchyResourceFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProductCategoryHierarchyResource {
77
+ if (json == null) {
78
+ return json;
79
+ }
80
+ return {
81
+
82
+ 'id': json['id'] == null ? undefined : json['id'],
83
+ 'name': json['name'],
84
+ 'slug': json['slug'],
85
+ 'index': json['index'],
86
+ 'isAutomated': json['isAutomated'],
87
+ 'children': json['children'],
88
+ };
89
+ }
90
+
91
+ export function ProductCategoryHierarchyResourceToJSON(json: any): ProductCategoryHierarchyResource {
92
+ return ProductCategoryHierarchyResourceToJSONTyped(json, false);
93
+ }
94
+
95
+ export function ProductCategoryHierarchyResourceToJSONTyped(value?: ProductCategoryHierarchyResource | null, ignoreDiscriminator: boolean = false): any {
96
+ if (value == null) {
97
+ return value;
98
+ }
99
+
100
+ return {
101
+
102
+ 'id': value['id'],
103
+ 'name': value['name'],
104
+ 'slug': value['slug'],
105
+ 'index': value['index'],
106
+ 'isAutomated': value['isAutomated'],
107
+ 'children': value['children'],
108
+ };
109
+ }
110
+
@@ -0,0 +1,73 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * My API
5
+ * API documentation for my Laravel app
6
+ *
7
+ * The version of the OpenAPI document: 1.0.0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+ import { mapValues } from '../runtime';
16
+ import type { ProductCategoryHierarchyResource } from './ProductCategoryHierarchyResource';
17
+ import {
18
+ ProductCategoryHierarchyResourceFromJSON,
19
+ ProductCategoryHierarchyResourceFromJSONTyped,
20
+ ProductCategoryHierarchyResourceToJSON,
21
+ ProductCategoryHierarchyResourceToJSONTyped,
22
+ } from './ProductCategoryHierarchyResource';
23
+
24
+ /**
25
+ *
26
+ * @export
27
+ * @interface ProductCategoryHierarchyResourceArrayResponse
28
+ */
29
+ export interface ProductCategoryHierarchyResourceArrayResponse {
30
+ /**
31
+ *
32
+ * @type {Array<ProductCategoryHierarchyResource>}
33
+ * @memberof ProductCategoryHierarchyResourceArrayResponse
34
+ */
35
+ data?: Array<ProductCategoryHierarchyResource>;
36
+ }
37
+
38
+ /**
39
+ * Check if a given object implements the ProductCategoryHierarchyResourceArrayResponse interface.
40
+ */
41
+ export function instanceOfProductCategoryHierarchyResourceArrayResponse(value: object): value is ProductCategoryHierarchyResourceArrayResponse {
42
+ return true;
43
+ }
44
+
45
+ export function ProductCategoryHierarchyResourceArrayResponseFromJSON(json: any): ProductCategoryHierarchyResourceArrayResponse {
46
+ return ProductCategoryHierarchyResourceArrayResponseFromJSONTyped(json, false);
47
+ }
48
+
49
+ export function ProductCategoryHierarchyResourceArrayResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProductCategoryHierarchyResourceArrayResponse {
50
+ if (json == null) {
51
+ return json;
52
+ }
53
+ return {
54
+
55
+ 'data': json['data'] == null ? undefined : ((json['data'] as Array<any>).map(ProductCategoryHierarchyResourceFromJSON)),
56
+ };
57
+ }
58
+
59
+ export function ProductCategoryHierarchyResourceArrayResponseToJSON(json: any): ProductCategoryHierarchyResourceArrayResponse {
60
+ return ProductCategoryHierarchyResourceArrayResponseToJSONTyped(json, false);
61
+ }
62
+
63
+ export function ProductCategoryHierarchyResourceArrayResponseToJSONTyped(value?: ProductCategoryHierarchyResourceArrayResponse | null, ignoreDiscriminator: boolean = false): any {
64
+ if (value == null) {
65
+ return value;
66
+ }
67
+
68
+ return {
69
+
70
+ 'data': value['data'] == null ? undefined : ((value['data'] as Array<any>).map(ProductCategoryHierarchyResourceToJSON)),
71
+ };
72
+ }
73
+
@@ -0,0 +1,136 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * My API
5
+ * API documentation for my Laravel app
6
+ *
7
+ * The version of the OpenAPI document: 1.0.0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+ import { mapValues } from '../runtime';
16
+ import type { SiteLiteResource } from './SiteLiteResource';
17
+ import {
18
+ SiteLiteResourceFromJSON,
19
+ SiteLiteResourceFromJSONTyped,
20
+ SiteLiteResourceToJSON,
21
+ SiteLiteResourceToJSONTyped,
22
+ } from './SiteLiteResource';
23
+
24
+ /**
25
+ *
26
+ * @export
27
+ * @interface ProductCategoryListResource
28
+ */
29
+ export interface ProductCategoryListResource {
30
+ /**
31
+ *
32
+ * @type {number}
33
+ * @memberof ProductCategoryListResource
34
+ */
35
+ id?: number | null;
36
+ /**
37
+ *
38
+ * @type {string}
39
+ * @memberof ProductCategoryListResource
40
+ */
41
+ name: string;
42
+ /**
43
+ *
44
+ * @type {string}
45
+ * @memberof ProductCategoryListResource
46
+ */
47
+ slug: string;
48
+ /**
49
+ *
50
+ * @type {boolean}
51
+ * @memberof ProductCategoryListResource
52
+ */
53
+ isDisabled: boolean;
54
+ /**
55
+ *
56
+ * @type {boolean}
57
+ * @memberof ProductCategoryListResource
58
+ */
59
+ isAutomated: boolean;
60
+ /**
61
+ *
62
+ * @type {boolean}
63
+ * @memberof ProductCategoryListResource
64
+ */
65
+ hasChildren: boolean;
66
+ /**
67
+ *
68
+ * @type {number}
69
+ * @memberof ProductCategoryListResource
70
+ */
71
+ productCount: number;
72
+ /**
73
+ *
74
+ * @type {SiteLiteResource}
75
+ * @memberof ProductCategoryListResource
76
+ */
77
+ site: SiteLiteResource | null;
78
+ }
79
+
80
+ /**
81
+ * Check if a given object implements the ProductCategoryListResource interface.
82
+ */
83
+ export function instanceOfProductCategoryListResource(value: object): value is ProductCategoryListResource {
84
+ if (!('name' in value) || value['name'] === undefined) return false;
85
+ if (!('slug' in value) || value['slug'] === undefined) return false;
86
+ if (!('isDisabled' in value) || value['isDisabled'] === undefined) return false;
87
+ if (!('isAutomated' in value) || value['isAutomated'] === undefined) return false;
88
+ if (!('hasChildren' in value) || value['hasChildren'] === undefined) return false;
89
+ if (!('productCount' in value) || value['productCount'] === undefined) return false;
90
+ if (!('site' in value) || value['site'] === undefined) return false;
91
+ return true;
92
+ }
93
+
94
+ export function ProductCategoryListResourceFromJSON(json: any): ProductCategoryListResource {
95
+ return ProductCategoryListResourceFromJSONTyped(json, false);
96
+ }
97
+
98
+ export function ProductCategoryListResourceFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProductCategoryListResource {
99
+ if (json == null) {
100
+ return json;
101
+ }
102
+ return {
103
+
104
+ 'id': json['id'] == null ? undefined : json['id'],
105
+ 'name': json['name'],
106
+ 'slug': json['slug'],
107
+ 'isDisabled': json['isDisabled'],
108
+ 'isAutomated': json['isAutomated'],
109
+ 'hasChildren': json['hasChildren'],
110
+ 'productCount': json['productCount'],
111
+ 'site': SiteLiteResourceFromJSON(json['site']),
112
+ };
113
+ }
114
+
115
+ export function ProductCategoryListResourceToJSON(json: any): ProductCategoryListResource {
116
+ return ProductCategoryListResourceToJSONTyped(json, false);
117
+ }
118
+
119
+ export function ProductCategoryListResourceToJSONTyped(value?: ProductCategoryListResource | null, ignoreDiscriminator: boolean = false): any {
120
+ if (value == null) {
121
+ return value;
122
+ }
123
+
124
+ return {
125
+
126
+ 'id': value['id'],
127
+ 'name': value['name'],
128
+ 'slug': value['slug'],
129
+ 'isDisabled': value['isDisabled'],
130
+ 'isAutomated': value['isAutomated'],
131
+ 'hasChildren': value['hasChildren'],
132
+ 'productCount': value['productCount'],
133
+ 'site': SiteLiteResourceToJSON(value['site']),
134
+ };
135
+ }
136
+
@@ -0,0 +1,73 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * My API
5
+ * API documentation for my Laravel app
6
+ *
7
+ * The version of the OpenAPI document: 1.0.0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+ import { mapValues } from '../runtime';
16
+ import type { ProductCategoryListResource } from './ProductCategoryListResource';
17
+ import {
18
+ ProductCategoryListResourceFromJSON,
19
+ ProductCategoryListResourceFromJSONTyped,
20
+ ProductCategoryListResourceToJSON,
21
+ ProductCategoryListResourceToJSONTyped,
22
+ } from './ProductCategoryListResource';
23
+
24
+ /**
25
+ *
26
+ * @export
27
+ * @interface ProductCategoryListResourceArrayResponse
28
+ */
29
+ export interface ProductCategoryListResourceArrayResponse {
30
+ /**
31
+ *
32
+ * @type {Array<ProductCategoryListResource>}
33
+ * @memberof ProductCategoryListResourceArrayResponse
34
+ */
35
+ data?: Array<ProductCategoryListResource>;
36
+ }
37
+
38
+ /**
39
+ * Check if a given object implements the ProductCategoryListResourceArrayResponse interface.
40
+ */
41
+ export function instanceOfProductCategoryListResourceArrayResponse(value: object): value is ProductCategoryListResourceArrayResponse {
42
+ return true;
43
+ }
44
+
45
+ export function ProductCategoryListResourceArrayResponseFromJSON(json: any): ProductCategoryListResourceArrayResponse {
46
+ return ProductCategoryListResourceArrayResponseFromJSONTyped(json, false);
47
+ }
48
+
49
+ export function ProductCategoryListResourceArrayResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProductCategoryListResourceArrayResponse {
50
+ if (json == null) {
51
+ return json;
52
+ }
53
+ return {
54
+
55
+ 'data': json['data'] == null ? undefined : ((json['data'] as Array<any>).map(ProductCategoryListResourceFromJSON)),
56
+ };
57
+ }
58
+
59
+ export function ProductCategoryListResourceArrayResponseToJSON(json: any): ProductCategoryListResourceArrayResponse {
60
+ return ProductCategoryListResourceArrayResponseToJSONTyped(json, false);
61
+ }
62
+
63
+ export function ProductCategoryListResourceArrayResponseToJSONTyped(value?: ProductCategoryListResourceArrayResponse | null, ignoreDiscriminator: boolean = false): any {
64
+ if (value == null) {
65
+ return value;
66
+ }
67
+
68
+ return {
69
+
70
+ 'data': value['data'] == null ? undefined : ((value['data'] as Array<any>).map(ProductCategoryListResourceToJSON)),
71
+ };
72
+ }
73
+