@digital8/lighting-illusions-ts-sdk 0.0.644 → 0.0.646
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/.openapi-generator/FILES +12 -2
- package/README.md +8 -3
- package/dist/models/CategoryFrontendResource.d.ts +70 -0
- package/dist/models/CategoryFrontendResource.js +73 -0
- package/dist/models/CategoryFrontendResourceArrayResponse.d.ts +33 -0
- package/dist/models/CategoryFrontendResourceArrayResponse.js +50 -0
- package/dist/models/CategoryWithChildrenFrontendResource.d.ts +39 -0
- package/dist/models/CategoryWithChildrenFrontendResource.js +56 -0
- package/dist/models/CategoryWithChildrenFrontendResourceArrayResponse.d.ts +33 -0
- package/dist/models/CategoryWithChildrenFrontendResourceArrayResponse.js +50 -0
- package/dist/models/OverlayTemplateAssetFrontendResource.d.ts +3 -2
- package/dist/models/OverlayTemplateAssetFrontendResource.js +3 -2
- package/dist/models/OverlayTemplateAssetResource.d.ts +3 -3
- package/dist/models/OverlayTemplateAssetResource.js +3 -3
- package/dist/models/PaginatedCategoryFrontendResourceResponse.d.ts +40 -0
- package/dist/models/PaginatedCategoryFrontendResourceResponse.js +57 -0
- package/dist/models/ProductAvailability.d.ts +26 -0
- package/dist/models/ProductAvailability.js +52 -0
- package/dist/models/ProductCompareResource.d.ts +2 -2
- package/dist/models/ProductSearchResultResource.d.ts +12 -6
- package/dist/models/ProductSearchResultResource.js +8 -4
- package/dist/models/SupplierFrontendResource.d.ts +7 -8
- package/dist/models/SupplierFrontendResource.js +8 -9
- package/dist/models/index.d.ts +6 -1
- package/dist/models/index.js +6 -1
- package/docs/CategoryFrontendResource.md +46 -0
- package/docs/CategoryFrontendResourceArrayResponse.md +34 -0
- package/docs/CategoryWithChildrenFrontendResource.md +36 -0
- package/docs/CategoryWithChildrenFrontendResourceArrayResponse.md +34 -0
- package/docs/OverlayTemplateAssetFrontendResource.md +1 -1
- package/docs/OverlayTemplateAssetResource.md +1 -1
- package/docs/PaginatedCategoryFrontendResourceResponse.md +36 -0
- package/docs/{ProductStatus.md → ProductAvailability.md} +4 -4
- package/docs/ProductCompareResource.md +1 -1
- package/docs/ProductSearchResultResource.md +4 -2
- package/docs/SupplierFrontendResource.md +4 -4
- package/package.json +1 -1
- package/src/models/CategoryFrontendResource.ts +133 -0
- package/src/models/CategoryFrontendResourceArrayResponse.ts +73 -0
- package/src/models/CategoryWithChildrenFrontendResource.ts +83 -0
- package/src/models/CategoryWithChildrenFrontendResourceArrayResponse.ts +73 -0
- package/src/models/OverlayTemplateAssetFrontendResource.ts +12 -4
- package/src/models/OverlayTemplateAssetResource.ts +10 -10
- package/src/models/PaginatedCategoryFrontendResourceResponse.ts +90 -0
- package/src/models/ProductAvailability.ts +54 -0
- package/src/models/ProductCompareResource.ts +2 -2
- package/src/models/ProductSearchResultResource.ts +18 -9
- package/src/models/SupplierFrontendResource.ts +20 -27
- package/src/models/index.ts +6 -1
- package/dist/models/ProductStatus.d.ts +0 -24
- package/dist/models/ProductStatus.js +0 -50
- package/src/models/ProductStatus.ts +0 -52
package/.openapi-generator/FILES
CHANGED
|
@@ -38,6 +38,10 @@ docs/CategoryAutomationConditionType.md
|
|
|
38
38
|
docs/CategoryAutomationFieldType.md
|
|
39
39
|
docs/CategoryAutomationRuleResource.md
|
|
40
40
|
docs/CategoryAutomationRuleResourceArrayResponse.md
|
|
41
|
+
docs/CategoryFrontendResource.md
|
|
42
|
+
docs/CategoryFrontendResourceArrayResponse.md
|
|
43
|
+
docs/CategoryWithChildrenFrontendResource.md
|
|
44
|
+
docs/CategoryWithChildrenFrontendResourceArrayResponse.md
|
|
41
45
|
docs/CouponDiscountType.md
|
|
42
46
|
docs/DefinitionApi.md
|
|
43
47
|
docs/DefinitionListResource.md
|
|
@@ -121,6 +125,7 @@ docs/PaginatedAttributeListResourceResponse.md
|
|
|
121
125
|
docs/PaginatedAttributeLiteResourceResponse.md
|
|
122
126
|
docs/PaginatedAttributeProductTypeRelationResourceResponse.md
|
|
123
127
|
docs/PaginatedAttributeResourceResponse.md
|
|
128
|
+
docs/PaginatedCategoryFrontendResourceResponse.md
|
|
124
129
|
docs/PaginatedDefinitionListResourceResponse.md
|
|
125
130
|
docs/PaginatedDefinitionResourceResponse.md
|
|
126
131
|
docs/PaginatedDocumentResourceResponse.md
|
|
@@ -163,6 +168,7 @@ docs/PreviewAutomationRulesResourceArrayResponse.md
|
|
|
163
168
|
docs/ProductAggregationResource.md
|
|
164
169
|
docs/ProductAggregationResourceArrayResponse.md
|
|
165
170
|
docs/ProductApi.md
|
|
171
|
+
docs/ProductAvailability.md
|
|
166
172
|
docs/ProductCategoryApi.md
|
|
167
173
|
docs/ProductCategoryHierarchyResource.md
|
|
168
174
|
docs/ProductCategoryHierarchyResourceArrayResponse.md
|
|
@@ -203,7 +209,6 @@ docs/ProductSearchResponseResourcePriceInfo.md
|
|
|
203
209
|
docs/ProductSearchResultResource.md
|
|
204
210
|
docs/ProductSearchResultResourceArrayResponse.md
|
|
205
211
|
docs/ProductSortBy.md
|
|
206
|
-
docs/ProductStatus.md
|
|
207
212
|
docs/ProductTypeApi.md
|
|
208
213
|
docs/ProductTypeListResource.md
|
|
209
214
|
docs/ProductTypeListResourceArrayResponse.md
|
|
@@ -337,6 +342,10 @@ src/models/CategoryAutomationConditionType.ts
|
|
|
337
342
|
src/models/CategoryAutomationFieldType.ts
|
|
338
343
|
src/models/CategoryAutomationRuleResource.ts
|
|
339
344
|
src/models/CategoryAutomationRuleResourceArrayResponse.ts
|
|
345
|
+
src/models/CategoryFrontendResource.ts
|
|
346
|
+
src/models/CategoryFrontendResourceArrayResponse.ts
|
|
347
|
+
src/models/CategoryWithChildrenFrontendResource.ts
|
|
348
|
+
src/models/CategoryWithChildrenFrontendResourceArrayResponse.ts
|
|
340
349
|
src/models/CouponDiscountType.ts
|
|
341
350
|
src/models/DefinitionListResource.ts
|
|
342
351
|
src/models/DefinitionListResourceArrayResponse.ts
|
|
@@ -415,6 +424,7 @@ src/models/PaginatedAttributeListResourceResponse.ts
|
|
|
415
424
|
src/models/PaginatedAttributeLiteResourceResponse.ts
|
|
416
425
|
src/models/PaginatedAttributeProductTypeRelationResourceResponse.ts
|
|
417
426
|
src/models/PaginatedAttributeResourceResponse.ts
|
|
427
|
+
src/models/PaginatedCategoryFrontendResourceResponse.ts
|
|
418
428
|
src/models/PaginatedDefinitionListResourceResponse.ts
|
|
419
429
|
src/models/PaginatedDefinitionResourceResponse.ts
|
|
420
430
|
src/models/PaginatedDocumentResourceResponse.ts
|
|
@@ -456,6 +466,7 @@ src/models/PreviewAutomationRulesResource.ts
|
|
|
456
466
|
src/models/PreviewAutomationRulesResourceArrayResponse.ts
|
|
457
467
|
src/models/ProductAggregationResource.ts
|
|
458
468
|
src/models/ProductAggregationResourceArrayResponse.ts
|
|
469
|
+
src/models/ProductAvailability.ts
|
|
459
470
|
src/models/ProductCategoryHierarchyResource.ts
|
|
460
471
|
src/models/ProductCategoryHierarchyResourceArrayResponse.ts
|
|
461
472
|
src/models/ProductCategoryListResource.ts
|
|
@@ -494,7 +505,6 @@ src/models/ProductSearchResponseResourcePriceInfo.ts
|
|
|
494
505
|
src/models/ProductSearchResultResource.ts
|
|
495
506
|
src/models/ProductSearchResultResourceArrayResponse.ts
|
|
496
507
|
src/models/ProductSortBy.ts
|
|
497
|
-
src/models/ProductStatus.ts
|
|
498
508
|
src/models/ProductTypeListResource.ts
|
|
499
509
|
src/models/ProductTypeListResourceArrayResponse.ts
|
|
500
510
|
src/models/ProductTypeLiteResource.ts
|
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# @digital8/lighting-illusions-ts-sdk@0.0.
|
|
1
|
+
# @digital8/lighting-illusions-ts-sdk@0.0.646
|
|
2
2
|
|
|
3
3
|
A TypeScript SDK client for the localhost API.
|
|
4
4
|
|
|
@@ -198,6 +198,10 @@ All URIs are relative to *http://localhost/api*
|
|
|
198
198
|
- [CategoryAutomationFieldType](docs/CategoryAutomationFieldType.md)
|
|
199
199
|
- [CategoryAutomationRuleResource](docs/CategoryAutomationRuleResource.md)
|
|
200
200
|
- [CategoryAutomationRuleResourceArrayResponse](docs/CategoryAutomationRuleResourceArrayResponse.md)
|
|
201
|
+
- [CategoryFrontendResource](docs/CategoryFrontendResource.md)
|
|
202
|
+
- [CategoryFrontendResourceArrayResponse](docs/CategoryFrontendResourceArrayResponse.md)
|
|
203
|
+
- [CategoryWithChildrenFrontendResource](docs/CategoryWithChildrenFrontendResource.md)
|
|
204
|
+
- [CategoryWithChildrenFrontendResourceArrayResponse](docs/CategoryWithChildrenFrontendResourceArrayResponse.md)
|
|
201
205
|
- [CouponDiscountType](docs/CouponDiscountType.md)
|
|
202
206
|
- [DefinitionListResource](docs/DefinitionListResource.md)
|
|
203
207
|
- [DefinitionListResourceArrayResponse](docs/DefinitionListResourceArrayResponse.md)
|
|
@@ -276,6 +280,7 @@ All URIs are relative to *http://localhost/api*
|
|
|
276
280
|
- [PaginatedAttributeLiteResourceResponse](docs/PaginatedAttributeLiteResourceResponse.md)
|
|
277
281
|
- [PaginatedAttributeProductTypeRelationResourceResponse](docs/PaginatedAttributeProductTypeRelationResourceResponse.md)
|
|
278
282
|
- [PaginatedAttributeResourceResponse](docs/PaginatedAttributeResourceResponse.md)
|
|
283
|
+
- [PaginatedCategoryFrontendResourceResponse](docs/PaginatedCategoryFrontendResourceResponse.md)
|
|
279
284
|
- [PaginatedDefinitionListResourceResponse](docs/PaginatedDefinitionListResourceResponse.md)
|
|
280
285
|
- [PaginatedDefinitionResourceResponse](docs/PaginatedDefinitionResourceResponse.md)
|
|
281
286
|
- [PaginatedDocumentResourceResponse](docs/PaginatedDocumentResourceResponse.md)
|
|
@@ -317,6 +322,7 @@ All URIs are relative to *http://localhost/api*
|
|
|
317
322
|
- [PreviewAutomationRulesResourceArrayResponse](docs/PreviewAutomationRulesResourceArrayResponse.md)
|
|
318
323
|
- [ProductAggregationResource](docs/ProductAggregationResource.md)
|
|
319
324
|
- [ProductAggregationResourceArrayResponse](docs/ProductAggregationResourceArrayResponse.md)
|
|
325
|
+
- [ProductAvailability](docs/ProductAvailability.md)
|
|
320
326
|
- [ProductCategoryHierarchyResource](docs/ProductCategoryHierarchyResource.md)
|
|
321
327
|
- [ProductCategoryHierarchyResourceArrayResponse](docs/ProductCategoryHierarchyResourceArrayResponse.md)
|
|
322
328
|
- [ProductCategoryListResource](docs/ProductCategoryListResource.md)
|
|
@@ -355,7 +361,6 @@ All URIs are relative to *http://localhost/api*
|
|
|
355
361
|
- [ProductSearchResultResource](docs/ProductSearchResultResource.md)
|
|
356
362
|
- [ProductSearchResultResourceArrayResponse](docs/ProductSearchResultResourceArrayResponse.md)
|
|
357
363
|
- [ProductSortBy](docs/ProductSortBy.md)
|
|
358
|
-
- [ProductStatus](docs/ProductStatus.md)
|
|
359
364
|
- [ProductTypeListResource](docs/ProductTypeListResource.md)
|
|
360
365
|
- [ProductTypeListResourceArrayResponse](docs/ProductTypeListResourceArrayResponse.md)
|
|
361
366
|
- [ProductTypeLiteResource](docs/ProductTypeLiteResource.md)
|
|
@@ -447,7 +452,7 @@ and is automatically generated by the
|
|
|
447
452
|
[OpenAPI Generator](https://openapi-generator.tech) project:
|
|
448
453
|
|
|
449
454
|
- API version: `1.0.0`
|
|
450
|
-
- Package version: `0.0.
|
|
455
|
+
- Package version: `0.0.646`
|
|
451
456
|
- Generator version: `7.19.0`
|
|
452
457
|
- Build package: `org.openapitools.codegen.languages.TypeScriptFetchClientCodegen`
|
|
453
458
|
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* My API
|
|
3
|
+
* API documentation for my Laravel app
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import type { AssetLiteResource } from './AssetLiteResource';
|
|
13
|
+
import type { DescriptionResource } from './DescriptionResource';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface CategoryFrontendResource
|
|
18
|
+
*/
|
|
19
|
+
export interface CategoryFrontendResource {
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @type {number}
|
|
23
|
+
* @memberof CategoryFrontendResource
|
|
24
|
+
*/
|
|
25
|
+
id?: number | null;
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof CategoryFrontendResource
|
|
30
|
+
*/
|
|
31
|
+
name: string;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof CategoryFrontendResource
|
|
36
|
+
*/
|
|
37
|
+
slug: string;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {string}
|
|
41
|
+
* @memberof CategoryFrontendResource
|
|
42
|
+
*/
|
|
43
|
+
parentId?: string | null;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {AssetLiteResource}
|
|
47
|
+
* @memberof CategoryFrontendResource
|
|
48
|
+
*/
|
|
49
|
+
thumbnail: AssetLiteResource | null;
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @type {object}
|
|
53
|
+
* @memberof CategoryFrontendResource
|
|
54
|
+
*/
|
|
55
|
+
seo: object;
|
|
56
|
+
/**
|
|
57
|
+
*
|
|
58
|
+
* @type {Array<DescriptionResource>}
|
|
59
|
+
* @memberof CategoryFrontendResource
|
|
60
|
+
*/
|
|
61
|
+
descriptions: Array<DescriptionResource> | null;
|
|
62
|
+
}
|
|
63
|
+
/**
|
|
64
|
+
* Check if a given object implements the CategoryFrontendResource interface.
|
|
65
|
+
*/
|
|
66
|
+
export declare function instanceOfCategoryFrontendResource(value: object): value is CategoryFrontendResource;
|
|
67
|
+
export declare function CategoryFrontendResourceFromJSON(json: any): CategoryFrontendResource;
|
|
68
|
+
export declare function CategoryFrontendResourceFromJSONTyped(json: any, ignoreDiscriminator: boolean): CategoryFrontendResource;
|
|
69
|
+
export declare function CategoryFrontendResourceToJSON(json: any): CategoryFrontendResource;
|
|
70
|
+
export declare function CategoryFrontendResourceToJSONTyped(value?: CategoryFrontendResource | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* My API
|
|
6
|
+
* API documentation for my Laravel app
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.instanceOfCategoryFrontendResource = instanceOfCategoryFrontendResource;
|
|
17
|
+
exports.CategoryFrontendResourceFromJSON = CategoryFrontendResourceFromJSON;
|
|
18
|
+
exports.CategoryFrontendResourceFromJSONTyped = CategoryFrontendResourceFromJSONTyped;
|
|
19
|
+
exports.CategoryFrontendResourceToJSON = CategoryFrontendResourceToJSON;
|
|
20
|
+
exports.CategoryFrontendResourceToJSONTyped = CategoryFrontendResourceToJSONTyped;
|
|
21
|
+
var AssetLiteResource_1 = require("./AssetLiteResource");
|
|
22
|
+
var DescriptionResource_1 = require("./DescriptionResource");
|
|
23
|
+
/**
|
|
24
|
+
* Check if a given object implements the CategoryFrontendResource interface.
|
|
25
|
+
*/
|
|
26
|
+
function instanceOfCategoryFrontendResource(value) {
|
|
27
|
+
if (!('name' in value) || value['name'] === undefined)
|
|
28
|
+
return false;
|
|
29
|
+
if (!('slug' in value) || value['slug'] === undefined)
|
|
30
|
+
return false;
|
|
31
|
+
if (!('thumbnail' in value) || value['thumbnail'] === undefined)
|
|
32
|
+
return false;
|
|
33
|
+
if (!('seo' in value) || value['seo'] === undefined)
|
|
34
|
+
return false;
|
|
35
|
+
if (!('descriptions' in value) || value['descriptions'] === undefined)
|
|
36
|
+
return false;
|
|
37
|
+
return true;
|
|
38
|
+
}
|
|
39
|
+
function CategoryFrontendResourceFromJSON(json) {
|
|
40
|
+
return CategoryFrontendResourceFromJSONTyped(json, false);
|
|
41
|
+
}
|
|
42
|
+
function CategoryFrontendResourceFromJSONTyped(json, ignoreDiscriminator) {
|
|
43
|
+
if (json == null) {
|
|
44
|
+
return json;
|
|
45
|
+
}
|
|
46
|
+
return {
|
|
47
|
+
'id': json['id'] == null ? undefined : json['id'],
|
|
48
|
+
'name': json['name'],
|
|
49
|
+
'slug': json['slug'],
|
|
50
|
+
'parentId': json['parentId'] == null ? undefined : json['parentId'],
|
|
51
|
+
'thumbnail': (0, AssetLiteResource_1.AssetLiteResourceFromJSON)(json['thumbnail']),
|
|
52
|
+
'seo': json['seo'],
|
|
53
|
+
'descriptions': (json['descriptions'] == null ? null : json['descriptions'].map(DescriptionResource_1.DescriptionResourceFromJSON)),
|
|
54
|
+
};
|
|
55
|
+
}
|
|
56
|
+
function CategoryFrontendResourceToJSON(json) {
|
|
57
|
+
return CategoryFrontendResourceToJSONTyped(json, false);
|
|
58
|
+
}
|
|
59
|
+
function CategoryFrontendResourceToJSONTyped(value, ignoreDiscriminator) {
|
|
60
|
+
if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
|
|
61
|
+
if (value == null) {
|
|
62
|
+
return value;
|
|
63
|
+
}
|
|
64
|
+
return {
|
|
65
|
+
'id': value['id'],
|
|
66
|
+
'name': value['name'],
|
|
67
|
+
'slug': value['slug'],
|
|
68
|
+
'parentId': value['parentId'],
|
|
69
|
+
'thumbnail': (0, AssetLiteResource_1.AssetLiteResourceToJSON)(value['thumbnail']),
|
|
70
|
+
'seo': value['seo'],
|
|
71
|
+
'descriptions': (value['descriptions'] == null ? null : value['descriptions'].map(DescriptionResource_1.DescriptionResourceToJSON)),
|
|
72
|
+
};
|
|
73
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* My API
|
|
3
|
+
* API documentation for my Laravel app
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import type { CategoryFrontendResource } from './CategoryFrontendResource';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface CategoryFrontendResourceArrayResponse
|
|
17
|
+
*/
|
|
18
|
+
export interface CategoryFrontendResourceArrayResponse {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {Array<CategoryFrontendResource>}
|
|
22
|
+
* @memberof CategoryFrontendResourceArrayResponse
|
|
23
|
+
*/
|
|
24
|
+
data?: Array<CategoryFrontendResource>;
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* Check if a given object implements the CategoryFrontendResourceArrayResponse interface.
|
|
28
|
+
*/
|
|
29
|
+
export declare function instanceOfCategoryFrontendResourceArrayResponse(value: object): value is CategoryFrontendResourceArrayResponse;
|
|
30
|
+
export declare function CategoryFrontendResourceArrayResponseFromJSON(json: any): CategoryFrontendResourceArrayResponse;
|
|
31
|
+
export declare function CategoryFrontendResourceArrayResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CategoryFrontendResourceArrayResponse;
|
|
32
|
+
export declare function CategoryFrontendResourceArrayResponseToJSON(json: any): CategoryFrontendResourceArrayResponse;
|
|
33
|
+
export declare function CategoryFrontendResourceArrayResponseToJSONTyped(value?: CategoryFrontendResourceArrayResponse | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* My API
|
|
6
|
+
* API documentation for my Laravel app
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.instanceOfCategoryFrontendResourceArrayResponse = instanceOfCategoryFrontendResourceArrayResponse;
|
|
17
|
+
exports.CategoryFrontendResourceArrayResponseFromJSON = CategoryFrontendResourceArrayResponseFromJSON;
|
|
18
|
+
exports.CategoryFrontendResourceArrayResponseFromJSONTyped = CategoryFrontendResourceArrayResponseFromJSONTyped;
|
|
19
|
+
exports.CategoryFrontendResourceArrayResponseToJSON = CategoryFrontendResourceArrayResponseToJSON;
|
|
20
|
+
exports.CategoryFrontendResourceArrayResponseToJSONTyped = CategoryFrontendResourceArrayResponseToJSONTyped;
|
|
21
|
+
var CategoryFrontendResource_1 = require("./CategoryFrontendResource");
|
|
22
|
+
/**
|
|
23
|
+
* Check if a given object implements the CategoryFrontendResourceArrayResponse interface.
|
|
24
|
+
*/
|
|
25
|
+
function instanceOfCategoryFrontendResourceArrayResponse(value) {
|
|
26
|
+
return true;
|
|
27
|
+
}
|
|
28
|
+
function CategoryFrontendResourceArrayResponseFromJSON(json) {
|
|
29
|
+
return CategoryFrontendResourceArrayResponseFromJSONTyped(json, false);
|
|
30
|
+
}
|
|
31
|
+
function CategoryFrontendResourceArrayResponseFromJSONTyped(json, ignoreDiscriminator) {
|
|
32
|
+
if (json == null) {
|
|
33
|
+
return json;
|
|
34
|
+
}
|
|
35
|
+
return {
|
|
36
|
+
'data': json['data'] == null ? undefined : (json['data'].map(CategoryFrontendResource_1.CategoryFrontendResourceFromJSON)),
|
|
37
|
+
};
|
|
38
|
+
}
|
|
39
|
+
function CategoryFrontendResourceArrayResponseToJSON(json) {
|
|
40
|
+
return CategoryFrontendResourceArrayResponseToJSONTyped(json, false);
|
|
41
|
+
}
|
|
42
|
+
function CategoryFrontendResourceArrayResponseToJSONTyped(value, ignoreDiscriminator) {
|
|
43
|
+
if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
|
|
44
|
+
if (value == null) {
|
|
45
|
+
return value;
|
|
46
|
+
}
|
|
47
|
+
return {
|
|
48
|
+
'data': value['data'] == null ? undefined : (value['data'].map(CategoryFrontendResource_1.CategoryFrontendResourceToJSON)),
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* My API
|
|
3
|
+
* API documentation for my Laravel app
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import type { CategoryFrontendResource } from './CategoryFrontendResource';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface CategoryWithChildrenFrontendResource
|
|
17
|
+
*/
|
|
18
|
+
export interface CategoryWithChildrenFrontendResource {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {CategoryFrontendResource}
|
|
22
|
+
* @memberof CategoryWithChildrenFrontendResource
|
|
23
|
+
*/
|
|
24
|
+
category: CategoryFrontendResource | null;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {Array<CategoryFrontendResource>}
|
|
28
|
+
* @memberof CategoryWithChildrenFrontendResource
|
|
29
|
+
*/
|
|
30
|
+
children: Array<CategoryFrontendResource> | null;
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* Check if a given object implements the CategoryWithChildrenFrontendResource interface.
|
|
34
|
+
*/
|
|
35
|
+
export declare function instanceOfCategoryWithChildrenFrontendResource(value: object): value is CategoryWithChildrenFrontendResource;
|
|
36
|
+
export declare function CategoryWithChildrenFrontendResourceFromJSON(json: any): CategoryWithChildrenFrontendResource;
|
|
37
|
+
export declare function CategoryWithChildrenFrontendResourceFromJSONTyped(json: any, ignoreDiscriminator: boolean): CategoryWithChildrenFrontendResource;
|
|
38
|
+
export declare function CategoryWithChildrenFrontendResourceToJSON(json: any): CategoryWithChildrenFrontendResource;
|
|
39
|
+
export declare function CategoryWithChildrenFrontendResourceToJSONTyped(value?: CategoryWithChildrenFrontendResource | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* My API
|
|
6
|
+
* API documentation for my Laravel app
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.instanceOfCategoryWithChildrenFrontendResource = instanceOfCategoryWithChildrenFrontendResource;
|
|
17
|
+
exports.CategoryWithChildrenFrontendResourceFromJSON = CategoryWithChildrenFrontendResourceFromJSON;
|
|
18
|
+
exports.CategoryWithChildrenFrontendResourceFromJSONTyped = CategoryWithChildrenFrontendResourceFromJSONTyped;
|
|
19
|
+
exports.CategoryWithChildrenFrontendResourceToJSON = CategoryWithChildrenFrontendResourceToJSON;
|
|
20
|
+
exports.CategoryWithChildrenFrontendResourceToJSONTyped = CategoryWithChildrenFrontendResourceToJSONTyped;
|
|
21
|
+
var CategoryFrontendResource_1 = require("./CategoryFrontendResource");
|
|
22
|
+
/**
|
|
23
|
+
* Check if a given object implements the CategoryWithChildrenFrontendResource interface.
|
|
24
|
+
*/
|
|
25
|
+
function instanceOfCategoryWithChildrenFrontendResource(value) {
|
|
26
|
+
if (!('category' in value) || value['category'] === undefined)
|
|
27
|
+
return false;
|
|
28
|
+
if (!('children' in value) || value['children'] === undefined)
|
|
29
|
+
return false;
|
|
30
|
+
return true;
|
|
31
|
+
}
|
|
32
|
+
function CategoryWithChildrenFrontendResourceFromJSON(json) {
|
|
33
|
+
return CategoryWithChildrenFrontendResourceFromJSONTyped(json, false);
|
|
34
|
+
}
|
|
35
|
+
function CategoryWithChildrenFrontendResourceFromJSONTyped(json, ignoreDiscriminator) {
|
|
36
|
+
if (json == null) {
|
|
37
|
+
return json;
|
|
38
|
+
}
|
|
39
|
+
return {
|
|
40
|
+
'category': (0, CategoryFrontendResource_1.CategoryFrontendResourceFromJSON)(json['category']),
|
|
41
|
+
'children': (json['children'] == null ? null : json['children'].map(CategoryFrontendResource_1.CategoryFrontendResourceFromJSON)),
|
|
42
|
+
};
|
|
43
|
+
}
|
|
44
|
+
function CategoryWithChildrenFrontendResourceToJSON(json) {
|
|
45
|
+
return CategoryWithChildrenFrontendResourceToJSONTyped(json, false);
|
|
46
|
+
}
|
|
47
|
+
function CategoryWithChildrenFrontendResourceToJSONTyped(value, ignoreDiscriminator) {
|
|
48
|
+
if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
|
|
49
|
+
if (value == null) {
|
|
50
|
+
return value;
|
|
51
|
+
}
|
|
52
|
+
return {
|
|
53
|
+
'category': (0, CategoryFrontendResource_1.CategoryFrontendResourceToJSON)(value['category']),
|
|
54
|
+
'children': (value['children'] == null ? null : value['children'].map(CategoryFrontendResource_1.CategoryFrontendResourceToJSON)),
|
|
55
|
+
};
|
|
56
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* My API
|
|
3
|
+
* API documentation for my Laravel app
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import type { CategoryWithChildrenFrontendResource } from './CategoryWithChildrenFrontendResource';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface CategoryWithChildrenFrontendResourceArrayResponse
|
|
17
|
+
*/
|
|
18
|
+
export interface CategoryWithChildrenFrontendResourceArrayResponse {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {Array<CategoryWithChildrenFrontendResource>}
|
|
22
|
+
* @memberof CategoryWithChildrenFrontendResourceArrayResponse
|
|
23
|
+
*/
|
|
24
|
+
data?: Array<CategoryWithChildrenFrontendResource>;
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* Check if a given object implements the CategoryWithChildrenFrontendResourceArrayResponse interface.
|
|
28
|
+
*/
|
|
29
|
+
export declare function instanceOfCategoryWithChildrenFrontendResourceArrayResponse(value: object): value is CategoryWithChildrenFrontendResourceArrayResponse;
|
|
30
|
+
export declare function CategoryWithChildrenFrontendResourceArrayResponseFromJSON(json: any): CategoryWithChildrenFrontendResourceArrayResponse;
|
|
31
|
+
export declare function CategoryWithChildrenFrontendResourceArrayResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CategoryWithChildrenFrontendResourceArrayResponse;
|
|
32
|
+
export declare function CategoryWithChildrenFrontendResourceArrayResponseToJSON(json: any): CategoryWithChildrenFrontendResourceArrayResponse;
|
|
33
|
+
export declare function CategoryWithChildrenFrontendResourceArrayResponseToJSONTyped(value?: CategoryWithChildrenFrontendResourceArrayResponse | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* My API
|
|
6
|
+
* API documentation for my Laravel app
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.instanceOfCategoryWithChildrenFrontendResourceArrayResponse = instanceOfCategoryWithChildrenFrontendResourceArrayResponse;
|
|
17
|
+
exports.CategoryWithChildrenFrontendResourceArrayResponseFromJSON = CategoryWithChildrenFrontendResourceArrayResponseFromJSON;
|
|
18
|
+
exports.CategoryWithChildrenFrontendResourceArrayResponseFromJSONTyped = CategoryWithChildrenFrontendResourceArrayResponseFromJSONTyped;
|
|
19
|
+
exports.CategoryWithChildrenFrontendResourceArrayResponseToJSON = CategoryWithChildrenFrontendResourceArrayResponseToJSON;
|
|
20
|
+
exports.CategoryWithChildrenFrontendResourceArrayResponseToJSONTyped = CategoryWithChildrenFrontendResourceArrayResponseToJSONTyped;
|
|
21
|
+
var CategoryWithChildrenFrontendResource_1 = require("./CategoryWithChildrenFrontendResource");
|
|
22
|
+
/**
|
|
23
|
+
* Check if a given object implements the CategoryWithChildrenFrontendResourceArrayResponse interface.
|
|
24
|
+
*/
|
|
25
|
+
function instanceOfCategoryWithChildrenFrontendResourceArrayResponse(value) {
|
|
26
|
+
return true;
|
|
27
|
+
}
|
|
28
|
+
function CategoryWithChildrenFrontendResourceArrayResponseFromJSON(json) {
|
|
29
|
+
return CategoryWithChildrenFrontendResourceArrayResponseFromJSONTyped(json, false);
|
|
30
|
+
}
|
|
31
|
+
function CategoryWithChildrenFrontendResourceArrayResponseFromJSONTyped(json, ignoreDiscriminator) {
|
|
32
|
+
if (json == null) {
|
|
33
|
+
return json;
|
|
34
|
+
}
|
|
35
|
+
return {
|
|
36
|
+
'data': json['data'] == null ? undefined : (json['data'].map(CategoryWithChildrenFrontendResource_1.CategoryWithChildrenFrontendResourceFromJSON)),
|
|
37
|
+
};
|
|
38
|
+
}
|
|
39
|
+
function CategoryWithChildrenFrontendResourceArrayResponseToJSON(json) {
|
|
40
|
+
return CategoryWithChildrenFrontendResourceArrayResponseToJSONTyped(json, false);
|
|
41
|
+
}
|
|
42
|
+
function CategoryWithChildrenFrontendResourceArrayResponseToJSONTyped(value, ignoreDiscriminator) {
|
|
43
|
+
if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
|
|
44
|
+
if (value == null) {
|
|
45
|
+
return value;
|
|
46
|
+
}
|
|
47
|
+
return {
|
|
48
|
+
'data': value['data'] == null ? undefined : (value['data'].map(CategoryWithChildrenFrontendResource_1.CategoryWithChildrenFrontendResourceToJSON)),
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import type { AssetLiteResource } from './AssetLiteResource';
|
|
12
13
|
/**
|
|
13
14
|
*
|
|
14
15
|
* @export
|
|
@@ -47,10 +48,10 @@ export interface OverlayTemplateAssetFrontendResource {
|
|
|
47
48
|
verticalMargin: number;
|
|
48
49
|
/**
|
|
49
50
|
*
|
|
50
|
-
* @type {
|
|
51
|
+
* @type {AssetLiteResource}
|
|
51
52
|
* @memberof OverlayTemplateAssetFrontendResource
|
|
52
53
|
*/
|
|
53
|
-
image:
|
|
54
|
+
image: AssetLiteResource | null;
|
|
54
55
|
}
|
|
55
56
|
/**
|
|
56
57
|
* Check if a given object implements the OverlayTemplateAssetFrontendResource interface.
|
|
@@ -18,6 +18,7 @@ exports.OverlayTemplateAssetFrontendResourceFromJSON = OverlayTemplateAssetFront
|
|
|
18
18
|
exports.OverlayTemplateAssetFrontendResourceFromJSONTyped = OverlayTemplateAssetFrontendResourceFromJSONTyped;
|
|
19
19
|
exports.OverlayTemplateAssetFrontendResourceToJSON = OverlayTemplateAssetFrontendResourceToJSON;
|
|
20
20
|
exports.OverlayTemplateAssetFrontendResourceToJSONTyped = OverlayTemplateAssetFrontendResourceToJSONTyped;
|
|
21
|
+
var AssetLiteResource_1 = require("./AssetLiteResource");
|
|
21
22
|
/**
|
|
22
23
|
* Check if a given object implements the OverlayTemplateAssetFrontendResource interface.
|
|
23
24
|
*/
|
|
@@ -49,7 +50,7 @@ function OverlayTemplateAssetFrontendResourceFromJSONTyped(json, ignoreDiscrimin
|
|
|
49
50
|
'padding': json['padding'],
|
|
50
51
|
'horizontalMargin': json['horizontalMargin'],
|
|
51
52
|
'verticalMargin': json['verticalMargin'],
|
|
52
|
-
'image': json['image'],
|
|
53
|
+
'image': (0, AssetLiteResource_1.AssetLiteResourceFromJSON)(json['image']),
|
|
53
54
|
};
|
|
54
55
|
}
|
|
55
56
|
function OverlayTemplateAssetFrontendResourceToJSON(json) {
|
|
@@ -66,6 +67,6 @@ function OverlayTemplateAssetFrontendResourceToJSONTyped(value, ignoreDiscrimina
|
|
|
66
67
|
'padding': value['padding'],
|
|
67
68
|
'horizontalMargin': value['horizontalMargin'],
|
|
68
69
|
'verticalMargin': value['verticalMargin'],
|
|
69
|
-
'image': value['image'],
|
|
70
|
+
'image': (0, AssetLiteResource_1.AssetLiteResourceToJSON)(value['image']),
|
|
70
71
|
};
|
|
71
72
|
}
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
-
import type {
|
|
12
|
+
import type { AssetLiteResource } from './AssetLiteResource';
|
|
13
13
|
/**
|
|
14
14
|
*
|
|
15
15
|
* @export
|
|
@@ -24,10 +24,10 @@ export interface OverlayTemplateAssetResource {
|
|
|
24
24
|
id: number;
|
|
25
25
|
/**
|
|
26
26
|
*
|
|
27
|
-
* @type {
|
|
27
|
+
* @type {AssetLiteResource}
|
|
28
28
|
* @memberof OverlayTemplateAssetResource
|
|
29
29
|
*/
|
|
30
|
-
asset:
|
|
30
|
+
asset: AssetLiteResource | null;
|
|
31
31
|
/**
|
|
32
32
|
*
|
|
33
33
|
* @type {string}
|
|
@@ -18,7 +18,7 @@ exports.OverlayTemplateAssetResourceFromJSON = OverlayTemplateAssetResourceFromJ
|
|
|
18
18
|
exports.OverlayTemplateAssetResourceFromJSONTyped = OverlayTemplateAssetResourceFromJSONTyped;
|
|
19
19
|
exports.OverlayTemplateAssetResourceToJSON = OverlayTemplateAssetResourceToJSON;
|
|
20
20
|
exports.OverlayTemplateAssetResourceToJSONTyped = OverlayTemplateAssetResourceToJSONTyped;
|
|
21
|
-
var
|
|
21
|
+
var AssetLiteResource_1 = require("./AssetLiteResource");
|
|
22
22
|
/**
|
|
23
23
|
* Check if a given object implements the OverlayTemplateAssetResource interface.
|
|
24
24
|
*/
|
|
@@ -46,7 +46,7 @@ function OverlayTemplateAssetResourceFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
46
46
|
}
|
|
47
47
|
return {
|
|
48
48
|
'id': json['id'],
|
|
49
|
-
'asset': (0,
|
|
49
|
+
'asset': (0, AssetLiteResource_1.AssetLiteResourceFromJSON)(json['asset']),
|
|
50
50
|
'position': json['position'],
|
|
51
51
|
'padding': json['padding'],
|
|
52
52
|
'horizontalMargin': json['horizontalMargin'],
|
|
@@ -63,7 +63,7 @@ function OverlayTemplateAssetResourceToJSONTyped(value, ignoreDiscriminator) {
|
|
|
63
63
|
}
|
|
64
64
|
return {
|
|
65
65
|
'id': value['id'],
|
|
66
|
-
'asset': (0,
|
|
66
|
+
'asset': (0, AssetLiteResource_1.AssetLiteResourceToJSON)(value['asset']),
|
|
67
67
|
'position': value['position'],
|
|
68
68
|
'padding': value['padding'],
|
|
69
69
|
'horizontalMargin': value['horizontalMargin'],
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* My API
|
|
3
|
+
* API documentation for my Laravel app
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import type { PagingMetadata } from './PagingMetadata';
|
|
13
|
+
import type { CategoryFrontendResource } from './CategoryFrontendResource';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface PaginatedCategoryFrontendResourceResponse
|
|
18
|
+
*/
|
|
19
|
+
export interface PaginatedCategoryFrontendResourceResponse {
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @type {Array<CategoryFrontendResource>}
|
|
23
|
+
* @memberof PaginatedCategoryFrontendResourceResponse
|
|
24
|
+
*/
|
|
25
|
+
data: Array<CategoryFrontendResource>;
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {PagingMetadata}
|
|
29
|
+
* @memberof PaginatedCategoryFrontendResourceResponse
|
|
30
|
+
*/
|
|
31
|
+
meta: PagingMetadata;
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* Check if a given object implements the PaginatedCategoryFrontendResourceResponse interface.
|
|
35
|
+
*/
|
|
36
|
+
export declare function instanceOfPaginatedCategoryFrontendResourceResponse(value: object): value is PaginatedCategoryFrontendResourceResponse;
|
|
37
|
+
export declare function PaginatedCategoryFrontendResourceResponseFromJSON(json: any): PaginatedCategoryFrontendResourceResponse;
|
|
38
|
+
export declare function PaginatedCategoryFrontendResourceResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedCategoryFrontendResourceResponse;
|
|
39
|
+
export declare function PaginatedCategoryFrontendResourceResponseToJSON(json: any): PaginatedCategoryFrontendResourceResponse;
|
|
40
|
+
export declare function PaginatedCategoryFrontendResourceResponseToJSONTyped(value?: PaginatedCategoryFrontendResourceResponse | null, ignoreDiscriminator?: boolean): any;
|