@digital8/lighting-illusions-ts-sdk 0.0.1145 → 0.0.1147
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 +8 -2
- package/README.md +9 -5
- package/dist/apis/OverlayTemplateApi.d.ts +17 -1
- package/dist/apis/OverlayTemplateApi.js +61 -0
- package/dist/apis/ProductApi.d.ts +13 -12
- package/dist/apis/ProductApi.js +7 -5
- package/dist/models/AssetWithOverlayLinkResource.d.ts +93 -0
- package/dist/models/AssetWithOverlayLinkResource.js +90 -0
- package/dist/models/AssetWithOverlayLinkResourceArrayResponse.d.ts +33 -0
- package/dist/models/AssetWithOverlayLinkResourceArrayResponse.js +50 -0
- package/dist/models/AttachAssetsOverlayTemplateRequest.d.ts +6 -0
- package/dist/models/AttachAssetsOverlayTemplateRequest.js +2 -0
- package/dist/models/ExternalApiLogResource.d.ts +1 -1
- package/dist/models/ExternalApiLogResource.js +3 -1
- package/dist/models/GetProductChildrenOverlayTemplateRequest.d.ts +190 -0
- package/dist/models/{IndexProductChildRequest.js → GetProductChildrenOverlayTemplateRequest.js} +17 -17
- package/dist/models/ProductChildOverlayRelationResource.d.ts +25 -12
- package/dist/models/ProductChildOverlayRelationResource.js +24 -17
- package/dist/models/ProductTypeListResource.d.ts +0 -6
- package/dist/models/ProductTypeListResource.js +0 -4
- package/dist/models/ShowAssetsProductChildRequest.d.ts +32 -0
- package/dist/models/ShowAssetsProductChildRequest.js +49 -0
- package/dist/models/index.d.ts +4 -1
- package/dist/models/index.js +4 -1
- package/docs/AssetWithOverlayLinkResource.md +54 -0
- package/docs/AssetWithOverlayLinkResourceArrayResponse.md +34 -0
- package/docs/AttachAssetsOverlayTemplateRequest.md +2 -0
- package/docs/{IndexProductChildRequest.md → GetProductChildrenOverlayTemplateRequest.md} +4 -4
- package/docs/OverlayTemplateApi.md +69 -0
- package/docs/ProductApi.md +24 -21
- package/docs/ProductChildOverlayRelationResource.md +13 -9
- package/docs/ProductTypeListResource.md +0 -2
- package/docs/ShowAssetsProductChildRequest.md +34 -0
- package/package.json +1 -1
- package/src/apis/OverlayTemplateApi.ts +59 -0
- package/src/apis/ProductApi.ts +29 -22
- package/src/models/AssetWithOverlayLinkResource.ts +163 -0
- package/src/models/AssetWithOverlayLinkResourceArrayResponse.ts +73 -0
- package/src/models/AttachAssetsOverlayTemplateRequest.ts +8 -0
- package/src/models/ExternalApiLogResource.ts +3 -2
- package/src/models/{IndexProductChildRequest.ts → GetProductChildrenOverlayTemplateRequest.ts} +42 -42
- package/src/models/ProductChildOverlayRelationResource.ts +55 -31
- package/src/models/ProductTypeListResource.ts +0 -9
- package/src/models/ShowAssetsProductChildRequest.ts +65 -0
- package/src/models/index.ts +4 -1
- package/dist/models/IndexProductChildRequest.d.ts +0 -190
package/.openapi-generator/FILES
CHANGED
|
@@ -11,6 +11,8 @@ docs/AssetLiteResource.md
|
|
|
11
11
|
docs/AssetLiteResourceArrayResponse.md
|
|
12
12
|
docs/AssetResource.md
|
|
13
13
|
docs/AssetResourceArrayResponse.md
|
|
14
|
+
docs/AssetWithOverlayLinkResource.md
|
|
15
|
+
docs/AssetWithOverlayLinkResourceArrayResponse.md
|
|
14
16
|
docs/AttachAccessoriesProductChildRequest.md
|
|
15
17
|
docs/AttachAssetsOverlayTemplateRequest.md
|
|
16
18
|
docs/AttachAttributeProductTypeRequest.md
|
|
@@ -85,6 +87,7 @@ docs/GetAllProductRequest.md
|
|
|
85
87
|
docs/GetAllProductTypeRequest.md
|
|
86
88
|
docs/GetAllSupplierRequest.md
|
|
87
89
|
docs/GetHierarchyProductCategoryRequest.md
|
|
90
|
+
docs/GetProductChildrenOverlayTemplateRequest.md
|
|
88
91
|
docs/GlobalSearchCategoryResource.md
|
|
89
92
|
docs/GlobalSearchCategoryResourceArrayResponse.md
|
|
90
93
|
docs/GlobalSearchProductResource.md
|
|
@@ -103,7 +106,6 @@ docs/IndexDocumentRequest.md
|
|
|
103
106
|
docs/IndexExternalApiLogRequest.md
|
|
104
107
|
docs/IndexOverlayTemplateRequest.md
|
|
105
108
|
docs/IndexProductCategoryRequest.md
|
|
106
|
-
docs/IndexProductChildRequest.md
|
|
107
109
|
docs/IndexProductRequest.md
|
|
108
110
|
docs/IndexProductTypeRequest.md
|
|
109
111
|
docs/IndexSiteNotificationRequest.md
|
|
@@ -225,6 +227,7 @@ docs/ProductTypeResource.md
|
|
|
225
227
|
docs/ProductTypeResourceArrayResponse.md
|
|
226
228
|
docs/SEOResource.md
|
|
227
229
|
docs/SEOResourceArrayResponse.md
|
|
230
|
+
docs/ShowAssetsProductChildRequest.md
|
|
228
231
|
docs/SiteApi.md
|
|
229
232
|
docs/SiteConfigResource.md
|
|
230
233
|
docs/SiteConfigResourceArrayResponse.md
|
|
@@ -330,6 +333,8 @@ src/models/AssetLiteResource.ts
|
|
|
330
333
|
src/models/AssetLiteResourceArrayResponse.ts
|
|
331
334
|
src/models/AssetResource.ts
|
|
332
335
|
src/models/AssetResourceArrayResponse.ts
|
|
336
|
+
src/models/AssetWithOverlayLinkResource.ts
|
|
337
|
+
src/models/AssetWithOverlayLinkResourceArrayResponse.ts
|
|
333
338
|
src/models/AttachAccessoriesProductChildRequest.ts
|
|
334
339
|
src/models/AttachAssetsOverlayTemplateRequest.ts
|
|
335
340
|
src/models/AttachAttributeProductTypeRequest.ts
|
|
@@ -400,6 +405,7 @@ src/models/GetAllProductRequest.ts
|
|
|
400
405
|
src/models/GetAllProductTypeRequest.ts
|
|
401
406
|
src/models/GetAllSupplierRequest.ts
|
|
402
407
|
src/models/GetHierarchyProductCategoryRequest.ts
|
|
408
|
+
src/models/GetProductChildrenOverlayTemplateRequest.ts
|
|
403
409
|
src/models/GlobalSearchCategoryResource.ts
|
|
404
410
|
src/models/GlobalSearchCategoryResourceArrayResponse.ts
|
|
405
411
|
src/models/GlobalSearchProductResource.ts
|
|
@@ -417,7 +423,6 @@ src/models/IndexDocumentRequest.ts
|
|
|
417
423
|
src/models/IndexExternalApiLogRequest.ts
|
|
418
424
|
src/models/IndexOverlayTemplateRequest.ts
|
|
419
425
|
src/models/IndexProductCategoryRequest.ts
|
|
420
|
-
src/models/IndexProductChildRequest.ts
|
|
421
426
|
src/models/IndexProductRequest.ts
|
|
422
427
|
src/models/IndexProductTypeRequest.ts
|
|
423
428
|
src/models/IndexSiteNotificationRequest.ts
|
|
@@ -535,6 +540,7 @@ src/models/ProductTypeResource.ts
|
|
|
535
540
|
src/models/ProductTypeResourceArrayResponse.ts
|
|
536
541
|
src/models/SEOResource.ts
|
|
537
542
|
src/models/SEOResourceArrayResponse.ts
|
|
543
|
+
src/models/ShowAssetsProductChildRequest.ts
|
|
538
544
|
src/models/SiteConfigResource.ts
|
|
539
545
|
src/models/SiteConfigResourceArrayResponse.ts
|
|
540
546
|
src/models/SiteListResource.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.1147
|
|
2
2
|
|
|
3
3
|
A TypeScript SDK client for the localhost API.
|
|
4
4
|
|
|
@@ -93,6 +93,7 @@ All URIs are relative to *http://localhost/api*
|
|
|
93
93
|
*OverlayTemplateApi* | [**detachAssetOverlayTemplate**](docs/OverlayTemplateApi.md#detachassetoverlaytemplate) | **POST** /admin-api/overlay-template/{overlayTemplate}/detach-asset/{asset} | Auto-generated: detachAssetOverlayTemplate
|
|
94
94
|
*OverlayTemplateApi* | [**detachAssetableOverlayTemplate**](docs/OverlayTemplateApi.md#detachassetableoverlaytemplateoperation) | **POST** /admin-api/overlay-template/{overlayTemplate}/detach-assetable | Auto-generated: detachAssetableOverlayTemplate
|
|
95
95
|
*OverlayTemplateApi* | [**getAllOverlayTemplate**](docs/OverlayTemplateApi.md#getalloverlaytemplateoperation) | **POST** /admin-api/overlay-template/all | Auto-generated: getAllOverlayTemplate
|
|
96
|
+
*OverlayTemplateApi* | [**getProductChildrenOverlayTemplate**](docs/OverlayTemplateApi.md#getproductchildrenoverlaytemplateoperation) | **POST** /admin-api/overlay-template/{overlayTemplate}/product-children | Auto-generated: getProductChildrenOverlayTemplate
|
|
96
97
|
*OverlayTemplateApi* | [**indexOverlayTemplate**](docs/OverlayTemplateApi.md#indexoverlaytemplateoperation) | **POST** /admin-api/overlay-template/list | Auto-generated: indexOverlayTemplate
|
|
97
98
|
*OverlayTemplateApi* | [**showOverlayTemplate**](docs/OverlayTemplateApi.md#showoverlaytemplate) | **GET** /admin-api/overlay-template/{overlayTemplate} | Auto-generated: showOverlayTemplate
|
|
98
99
|
*OverlayTemplateApi* | [**storeOverlayTemplate**](docs/OverlayTemplateApi.md#storeoverlaytemplateoperation) | **POST** /admin-api/overlay-template/create | Auto-generated: storeOverlayTemplate
|
|
@@ -112,8 +113,8 @@ All URIs are relative to *http://localhost/api*
|
|
|
112
113
|
*ProductApi* | [**getAllProductChild**](docs/ProductApi.md#getallproductchildoperation) | **POST** /admin-api/product/children/all | Auto-generated: getAllProductChild
|
|
113
114
|
*ProductApi* | [**getCompatibleProductsProductChild**](docs/ProductApi.md#getcompatibleproductsproductchild) | **POST** /admin-api/product/children/{productChild}/compatible-product/list | Auto-generated: getCompatibleProductsProductChild
|
|
114
115
|
*ProductApi* | [**indexProduct**](docs/ProductApi.md#indexproductoperation) | **POST** /admin-api/product/parent/list | Auto-generated: indexProduct
|
|
115
|
-
*ProductApi* | [**indexProductChild**](docs/ProductApi.md#
|
|
116
|
-
*ProductApi* | [**showAssetsProductChild**](docs/ProductApi.md#
|
|
116
|
+
*ProductApi* | [**indexProductChild**](docs/ProductApi.md#indexproductchild) | **POST** /admin-api/product/children/list | Auto-generated: indexProductChild
|
|
117
|
+
*ProductApi* | [**showAssetsProductChild**](docs/ProductApi.md#showassetsproductchildoperation) | **POST** /admin-api/product/children/{productChild}/assets | Auto-generated: showAssetsProductChild
|
|
117
118
|
*ProductApi* | [**showProduct**](docs/ProductApi.md#showproduct) | **GET** /admin-api/product/parent/{product} | Auto-generated: showProduct
|
|
118
119
|
*ProductApi* | [**showProductChild**](docs/ProductApi.md#showproductchild) | **GET** /admin-api/product/children/{productChild} | Auto-generated: showProductChild
|
|
119
120
|
*ProductApi* | [**storeProduct**](docs/ProductApi.md#storeproductoperation) | **POST** /admin-api/product/parent/create | Auto-generated: storeProduct
|
|
@@ -178,6 +179,8 @@ All URIs are relative to *http://localhost/api*
|
|
|
178
179
|
- [AssetLiteResourceArrayResponse](docs/AssetLiteResourceArrayResponse.md)
|
|
179
180
|
- [AssetResource](docs/AssetResource.md)
|
|
180
181
|
- [AssetResourceArrayResponse](docs/AssetResourceArrayResponse.md)
|
|
182
|
+
- [AssetWithOverlayLinkResource](docs/AssetWithOverlayLinkResource.md)
|
|
183
|
+
- [AssetWithOverlayLinkResourceArrayResponse](docs/AssetWithOverlayLinkResourceArrayResponse.md)
|
|
181
184
|
- [AttachAccessoriesProductChildRequest](docs/AttachAccessoriesProductChildRequest.md)
|
|
182
185
|
- [AttachAssetsOverlayTemplateRequest](docs/AttachAssetsOverlayTemplateRequest.md)
|
|
183
186
|
- [AttachAttributeProductTypeRequest](docs/AttachAttributeProductTypeRequest.md)
|
|
@@ -248,6 +251,7 @@ All URIs are relative to *http://localhost/api*
|
|
|
248
251
|
- [GetAllProductTypeRequest](docs/GetAllProductTypeRequest.md)
|
|
249
252
|
- [GetAllSupplierRequest](docs/GetAllSupplierRequest.md)
|
|
250
253
|
- [GetHierarchyProductCategoryRequest](docs/GetHierarchyProductCategoryRequest.md)
|
|
254
|
+
- [GetProductChildrenOverlayTemplateRequest](docs/GetProductChildrenOverlayTemplateRequest.md)
|
|
251
255
|
- [GlobalSearchCategoryResource](docs/GlobalSearchCategoryResource.md)
|
|
252
256
|
- [GlobalSearchCategoryResourceArrayResponse](docs/GlobalSearchCategoryResourceArrayResponse.md)
|
|
253
257
|
- [GlobalSearchProductResource](docs/GlobalSearchProductResource.md)
|
|
@@ -265,7 +269,6 @@ All URIs are relative to *http://localhost/api*
|
|
|
265
269
|
- [IndexExternalApiLogRequest](docs/IndexExternalApiLogRequest.md)
|
|
266
270
|
- [IndexOverlayTemplateRequest](docs/IndexOverlayTemplateRequest.md)
|
|
267
271
|
- [IndexProductCategoryRequest](docs/IndexProductCategoryRequest.md)
|
|
268
|
-
- [IndexProductChildRequest](docs/IndexProductChildRequest.md)
|
|
269
272
|
- [IndexProductRequest](docs/IndexProductRequest.md)
|
|
270
273
|
- [IndexProductTypeRequest](docs/IndexProductTypeRequest.md)
|
|
271
274
|
- [IndexSiteNotificationRequest](docs/IndexSiteNotificationRequest.md)
|
|
@@ -383,6 +386,7 @@ All URIs are relative to *http://localhost/api*
|
|
|
383
386
|
- [ProductTypeResourceArrayResponse](docs/ProductTypeResourceArrayResponse.md)
|
|
384
387
|
- [SEOResource](docs/SEOResource.md)
|
|
385
388
|
- [SEOResourceArrayResponse](docs/SEOResourceArrayResponse.md)
|
|
389
|
+
- [ShowAssetsProductChildRequest](docs/ShowAssetsProductChildRequest.md)
|
|
386
390
|
- [SiteConfigResource](docs/SiteConfigResource.md)
|
|
387
391
|
- [SiteConfigResourceArrayResponse](docs/SiteConfigResourceArrayResponse.md)
|
|
388
392
|
- [SiteListResource](docs/SiteListResource.md)
|
|
@@ -474,7 +478,7 @@ and is automatically generated by the
|
|
|
474
478
|
[OpenAPI Generator](https://openapi-generator.tech) project:
|
|
475
479
|
|
|
476
480
|
- API version: `1.0.0`
|
|
477
|
-
- Package version: `0.0.
|
|
481
|
+
- Package version: `0.0.1147`
|
|
478
482
|
- Generator version: `7.20.0`
|
|
479
483
|
- Build package: `org.openapitools.codegen.languages.TypeScriptFetchClientCodegen`
|
|
480
484
|
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import * as runtime from '../runtime';
|
|
13
|
-
import type { AttachAssetsOverlayTemplateRequest, DetachAssetableOverlayTemplateRequest, GenericResponse, GetAllOverlayTemplateRequest, IndexOverlayTemplateRequest, OverlayTemplateLiteResourceArrayResponse, OverlayTemplateResource, PaginatedOverlayTemplateListResourceResponse, StoreOverlayTemplateAssetRequest, StoreOverlayTemplateRequest, UpdateOverlayTemplateAssetRequest, UpdateOverlayTemplateRequest } from '../models/index';
|
|
13
|
+
import type { AttachAssetsOverlayTemplateRequest, DetachAssetableOverlayTemplateRequest, GenericResponse, GetAllOverlayTemplateRequest, GetProductChildrenOverlayTemplateRequest, IndexOverlayTemplateRequest, OverlayTemplateLiteResourceArrayResponse, OverlayTemplateResource, PaginatedOverlayTemplateListResourceResponse, PaginatedProductChildOverlayRelationResourceResponse, StoreOverlayTemplateAssetRequest, StoreOverlayTemplateRequest, UpdateOverlayTemplateAssetRequest, UpdateOverlayTemplateRequest } from '../models/index';
|
|
14
14
|
export interface AttachAssetsOverlayTemplateOperationRequest {
|
|
15
15
|
overlayTemplate: number;
|
|
16
16
|
attachAssetsOverlayTemplateRequest?: AttachAssetsOverlayTemplateRequest;
|
|
@@ -32,6 +32,10 @@ export interface DetachAssetableOverlayTemplateOperationRequest {
|
|
|
32
32
|
export interface GetAllOverlayTemplateOperationRequest {
|
|
33
33
|
getAllOverlayTemplateRequest?: GetAllOverlayTemplateRequest;
|
|
34
34
|
}
|
|
35
|
+
export interface GetProductChildrenOverlayTemplateOperationRequest {
|
|
36
|
+
overlayTemplate: number;
|
|
37
|
+
getProductChildrenOverlayTemplateRequest?: GetProductChildrenOverlayTemplateRequest;
|
|
38
|
+
}
|
|
35
39
|
export interface IndexOverlayTemplateOperationRequest {
|
|
36
40
|
indexOverlayTemplateRequest?: IndexOverlayTemplateRequest;
|
|
37
41
|
}
|
|
@@ -128,6 +132,18 @@ export declare class OverlayTemplateApi extends runtime.BaseAPI {
|
|
|
128
132
|
* Auto-generated: getAllOverlayTemplate
|
|
129
133
|
*/
|
|
130
134
|
getAllOverlayTemplate(requestParameters?: GetAllOverlayTemplateOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<OverlayTemplateLiteResourceArrayResponse>;
|
|
135
|
+
/**
|
|
136
|
+
* Creates request options for getProductChildrenOverlayTemplate without sending the request
|
|
137
|
+
*/
|
|
138
|
+
getProductChildrenOverlayTemplateRequestOpts(requestParameters: GetProductChildrenOverlayTemplateOperationRequest): Promise<runtime.RequestOpts>;
|
|
139
|
+
/**
|
|
140
|
+
* Auto-generated: getProductChildrenOverlayTemplate
|
|
141
|
+
*/
|
|
142
|
+
getProductChildrenOverlayTemplateRaw(requestParameters: GetProductChildrenOverlayTemplateOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<PaginatedProductChildOverlayRelationResourceResponse>>;
|
|
143
|
+
/**
|
|
144
|
+
* Auto-generated: getProductChildrenOverlayTemplate
|
|
145
|
+
*/
|
|
146
|
+
getProductChildrenOverlayTemplate(requestParameters: GetProductChildrenOverlayTemplateOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<PaginatedProductChildOverlayRelationResourceResponse>;
|
|
131
147
|
/**
|
|
132
148
|
* Creates request options for indexOverlayTemplate without sending the request
|
|
133
149
|
*/
|
|
@@ -436,6 +436,67 @@ var OverlayTemplateApi = /** @class */ (function (_super) {
|
|
|
436
436
|
});
|
|
437
437
|
});
|
|
438
438
|
};
|
|
439
|
+
/**
|
|
440
|
+
* Creates request options for getProductChildrenOverlayTemplate without sending the request
|
|
441
|
+
*/
|
|
442
|
+
OverlayTemplateApi.prototype.getProductChildrenOverlayTemplateRequestOpts = function (requestParameters) {
|
|
443
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
444
|
+
var queryParameters, headerParameters, urlPath;
|
|
445
|
+
return __generator(this, function (_a) {
|
|
446
|
+
if (requestParameters['overlayTemplate'] == null) {
|
|
447
|
+
throw new runtime.RequiredError('overlayTemplate', 'Required parameter "overlayTemplate" was null or undefined when calling getProductChildrenOverlayTemplate().');
|
|
448
|
+
}
|
|
449
|
+
queryParameters = {};
|
|
450
|
+
headerParameters = {};
|
|
451
|
+
headerParameters['Content-Type'] = 'application/json';
|
|
452
|
+
urlPath = "/admin-api/overlay-template/{overlayTemplate}/product-children";
|
|
453
|
+
urlPath = urlPath.replace("{".concat("overlayTemplate", "}"), encodeURIComponent(String(requestParameters['overlayTemplate'])));
|
|
454
|
+
return [2 /*return*/, {
|
|
455
|
+
path: urlPath,
|
|
456
|
+
method: 'POST',
|
|
457
|
+
headers: headerParameters,
|
|
458
|
+
query: queryParameters,
|
|
459
|
+
body: (0, index_1.GetProductChildrenOverlayTemplateRequestToJSON)(requestParameters['getProductChildrenOverlayTemplateRequest']),
|
|
460
|
+
}];
|
|
461
|
+
});
|
|
462
|
+
});
|
|
463
|
+
};
|
|
464
|
+
/**
|
|
465
|
+
* Auto-generated: getProductChildrenOverlayTemplate
|
|
466
|
+
*/
|
|
467
|
+
OverlayTemplateApi.prototype.getProductChildrenOverlayTemplateRaw = function (requestParameters, initOverrides) {
|
|
468
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
469
|
+
var requestOptions, response;
|
|
470
|
+
return __generator(this, function (_a) {
|
|
471
|
+
switch (_a.label) {
|
|
472
|
+
case 0: return [4 /*yield*/, this.getProductChildrenOverlayTemplateRequestOpts(requestParameters)];
|
|
473
|
+
case 1:
|
|
474
|
+
requestOptions = _a.sent();
|
|
475
|
+
return [4 /*yield*/, this.request(requestOptions, initOverrides)];
|
|
476
|
+
case 2:
|
|
477
|
+
response = _a.sent();
|
|
478
|
+
return [2 /*return*/, new runtime.JSONApiResponse(response, function (jsonValue) { return (0, index_1.PaginatedProductChildOverlayRelationResourceResponseFromJSON)(jsonValue); })];
|
|
479
|
+
}
|
|
480
|
+
});
|
|
481
|
+
});
|
|
482
|
+
};
|
|
483
|
+
/**
|
|
484
|
+
* Auto-generated: getProductChildrenOverlayTemplate
|
|
485
|
+
*/
|
|
486
|
+
OverlayTemplateApi.prototype.getProductChildrenOverlayTemplate = function (requestParameters, initOverrides) {
|
|
487
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
488
|
+
var response;
|
|
489
|
+
return __generator(this, function (_a) {
|
|
490
|
+
switch (_a.label) {
|
|
491
|
+
case 0: return [4 /*yield*/, this.getProductChildrenOverlayTemplateRaw(requestParameters, initOverrides)];
|
|
492
|
+
case 1:
|
|
493
|
+
response = _a.sent();
|
|
494
|
+
return [4 /*yield*/, response.value()];
|
|
495
|
+
case 2: return [2 /*return*/, _a.sent()];
|
|
496
|
+
}
|
|
497
|
+
});
|
|
498
|
+
});
|
|
499
|
+
};
|
|
439
500
|
/**
|
|
440
501
|
* Creates request options for indexOverlayTemplate without sending the request
|
|
441
502
|
*/
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import * as runtime from '../runtime';
|
|
13
|
-
import type {
|
|
13
|
+
import type { AssetWithOverlayLinkResourceArrayResponse, AttachAccessoriesProductChildRequest, AttachDocumentsProductChildRequest, DetachDocumentsProductChildRequest, GenericResponse, GetAllProductChildRequest, GetAllProductRequest, GetProductChildrenOverlayTemplateRequest, IndexProductRequest, PaginatedProductChildListResourceResponse, PaginatedProductListResourceResponse, ProductChildLiteResourceArrayResponse, ProductChildResource, ProductLiteResourceArrayResponse, ProductResource, ShowAssetsProductChildRequest, StoreProductChildRequest, StoreProductRequest, UpdateProductChildRequest, UpdateProductRequest } from '../models/index';
|
|
14
14
|
export interface AttachAccessoriesProductChildOperationRequest {
|
|
15
15
|
productChild: number;
|
|
16
16
|
attachAccessoriesProductChildRequest?: AttachAccessoriesProductChildRequest;
|
|
@@ -43,7 +43,7 @@ export interface DetachDocumentsProductChildOperationRequest {
|
|
|
43
43
|
}
|
|
44
44
|
export interface GetAccessoriesProductChildRequest {
|
|
45
45
|
productChild: number;
|
|
46
|
-
|
|
46
|
+
getProductChildrenOverlayTemplateRequest?: GetProductChildrenOverlayTemplateRequest;
|
|
47
47
|
}
|
|
48
48
|
export interface GetAllProductOperationRequest {
|
|
49
49
|
getAllProductRequest?: GetAllProductRequest;
|
|
@@ -53,16 +53,17 @@ export interface GetAllProductChildOperationRequest {
|
|
|
53
53
|
}
|
|
54
54
|
export interface GetCompatibleProductsProductChildRequest {
|
|
55
55
|
productChild: number;
|
|
56
|
-
|
|
56
|
+
getProductChildrenOverlayTemplateRequest?: GetProductChildrenOverlayTemplateRequest;
|
|
57
57
|
}
|
|
58
58
|
export interface IndexProductOperationRequest {
|
|
59
59
|
indexProductRequest?: IndexProductRequest;
|
|
60
60
|
}
|
|
61
|
-
export interface
|
|
62
|
-
|
|
61
|
+
export interface IndexProductChildRequest {
|
|
62
|
+
getProductChildrenOverlayTemplateRequest?: GetProductChildrenOverlayTemplateRequest;
|
|
63
63
|
}
|
|
64
|
-
export interface
|
|
64
|
+
export interface ShowAssetsProductChildOperationRequest {
|
|
65
65
|
productChild: number;
|
|
66
|
+
showAssetsProductChildRequest?: ShowAssetsProductChildRequest;
|
|
66
67
|
}
|
|
67
68
|
export interface ShowProductRequest {
|
|
68
69
|
product: number;
|
|
@@ -247,27 +248,27 @@ export declare class ProductApi extends runtime.BaseAPI {
|
|
|
247
248
|
/**
|
|
248
249
|
* Creates request options for indexProductChild without sending the request
|
|
249
250
|
*/
|
|
250
|
-
indexProductChildRequestOpts(requestParameters:
|
|
251
|
+
indexProductChildRequestOpts(requestParameters: IndexProductChildRequest): Promise<runtime.RequestOpts>;
|
|
251
252
|
/**
|
|
252
253
|
* Auto-generated: indexProductChild
|
|
253
254
|
*/
|
|
254
|
-
indexProductChildRaw(requestParameters:
|
|
255
|
+
indexProductChildRaw(requestParameters: IndexProductChildRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<PaginatedProductChildListResourceResponse>>;
|
|
255
256
|
/**
|
|
256
257
|
* Auto-generated: indexProductChild
|
|
257
258
|
*/
|
|
258
|
-
indexProductChild(requestParameters?:
|
|
259
|
+
indexProductChild(requestParameters?: IndexProductChildRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<PaginatedProductChildListResourceResponse>;
|
|
259
260
|
/**
|
|
260
261
|
* Creates request options for showAssetsProductChild without sending the request
|
|
261
262
|
*/
|
|
262
|
-
showAssetsProductChildRequestOpts(requestParameters:
|
|
263
|
+
showAssetsProductChildRequestOpts(requestParameters: ShowAssetsProductChildOperationRequest): Promise<runtime.RequestOpts>;
|
|
263
264
|
/**
|
|
264
265
|
* Auto-generated: showAssetsProductChild
|
|
265
266
|
*/
|
|
266
|
-
showAssetsProductChildRaw(requestParameters:
|
|
267
|
+
showAssetsProductChildRaw(requestParameters: ShowAssetsProductChildOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<AssetWithOverlayLinkResourceArrayResponse>>;
|
|
267
268
|
/**
|
|
268
269
|
* Auto-generated: showAssetsProductChild
|
|
269
270
|
*/
|
|
270
|
-
showAssetsProductChild(requestParameters:
|
|
271
|
+
showAssetsProductChild(requestParameters: ShowAssetsProductChildOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<AssetWithOverlayLinkResourceArrayResponse>;
|
|
271
272
|
/**
|
|
272
273
|
* Creates request options for showProduct without sending the request
|
|
273
274
|
*/
|
package/dist/apis/ProductApi.js
CHANGED
|
@@ -583,7 +583,7 @@ var ProductApi = /** @class */ (function (_super) {
|
|
|
583
583
|
method: 'POST',
|
|
584
584
|
headers: headerParameters,
|
|
585
585
|
query: queryParameters,
|
|
586
|
-
body: (0, index_1.
|
|
586
|
+
body: (0, index_1.GetProductChildrenOverlayTemplateRequestToJSON)(requestParameters['getProductChildrenOverlayTemplateRequest']),
|
|
587
587
|
}];
|
|
588
588
|
});
|
|
589
589
|
});
|
|
@@ -760,7 +760,7 @@ var ProductApi = /** @class */ (function (_super) {
|
|
|
760
760
|
method: 'POST',
|
|
761
761
|
headers: headerParameters,
|
|
762
762
|
query: queryParameters,
|
|
763
|
-
body: (0, index_1.
|
|
763
|
+
body: (0, index_1.GetProductChildrenOverlayTemplateRequestToJSON)(requestParameters['getProductChildrenOverlayTemplateRequest']),
|
|
764
764
|
}];
|
|
765
765
|
});
|
|
766
766
|
});
|
|
@@ -875,7 +875,7 @@ var ProductApi = /** @class */ (function (_super) {
|
|
|
875
875
|
method: 'POST',
|
|
876
876
|
headers: headerParameters,
|
|
877
877
|
query: queryParameters,
|
|
878
|
-
body: (0, index_1.
|
|
878
|
+
body: (0, index_1.GetProductChildrenOverlayTemplateRequestToJSON)(requestParameters['getProductChildrenOverlayTemplateRequest']),
|
|
879
879
|
}];
|
|
880
880
|
});
|
|
881
881
|
});
|
|
@@ -929,13 +929,15 @@ var ProductApi = /** @class */ (function (_super) {
|
|
|
929
929
|
}
|
|
930
930
|
queryParameters = {};
|
|
931
931
|
headerParameters = {};
|
|
932
|
+
headerParameters['Content-Type'] = 'application/json';
|
|
932
933
|
urlPath = "/admin-api/product/children/{productChild}/assets";
|
|
933
934
|
urlPath = urlPath.replace("{".concat("productChild", "}"), encodeURIComponent(String(requestParameters['productChild'])));
|
|
934
935
|
return [2 /*return*/, {
|
|
935
936
|
path: urlPath,
|
|
936
|
-
method: '
|
|
937
|
+
method: 'POST',
|
|
937
938
|
headers: headerParameters,
|
|
938
939
|
query: queryParameters,
|
|
940
|
+
body: (0, index_1.ShowAssetsProductChildRequestToJSON)(requestParameters['showAssetsProductChildRequest']),
|
|
939
941
|
}];
|
|
940
942
|
});
|
|
941
943
|
});
|
|
@@ -954,7 +956,7 @@ var ProductApi = /** @class */ (function (_super) {
|
|
|
954
956
|
return [4 /*yield*/, this.request(requestOptions, initOverrides)];
|
|
955
957
|
case 2:
|
|
956
958
|
response = _a.sent();
|
|
957
|
-
return [2 /*return*/, new runtime.JSONApiResponse(response, function (jsonValue) { return (0, index_1.
|
|
959
|
+
return [2 /*return*/, new runtime.JSONApiResponse(response, function (jsonValue) { return (0, index_1.AssetWithOverlayLinkResourceArrayResponseFromJSON)(jsonValue); })];
|
|
958
960
|
}
|
|
959
961
|
});
|
|
960
962
|
});
|
|
@@ -0,0 +1,93 @@
|
|
|
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 { OverlayTemplateLiteResource } from './OverlayTemplateLiteResource';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface AssetWithOverlayLinkResource
|
|
17
|
+
*/
|
|
18
|
+
export interface AssetWithOverlayLinkResource {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {number}
|
|
22
|
+
* @memberof AssetWithOverlayLinkResource
|
|
23
|
+
*/
|
|
24
|
+
id: number;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof AssetWithOverlayLinkResource
|
|
29
|
+
*/
|
|
30
|
+
filePath: string;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {string}
|
|
34
|
+
* @memberof AssetWithOverlayLinkResource
|
|
35
|
+
*/
|
|
36
|
+
fileName: string;
|
|
37
|
+
/**
|
|
38
|
+
*
|
|
39
|
+
* @type {string}
|
|
40
|
+
* @memberof AssetWithOverlayLinkResource
|
|
41
|
+
*/
|
|
42
|
+
mimeType: string;
|
|
43
|
+
/**
|
|
44
|
+
*
|
|
45
|
+
* @type {string}
|
|
46
|
+
* @memberof AssetWithOverlayLinkResource
|
|
47
|
+
*/
|
|
48
|
+
altText: string;
|
|
49
|
+
/**
|
|
50
|
+
*
|
|
51
|
+
* @type {number}
|
|
52
|
+
* @memberof AssetWithOverlayLinkResource
|
|
53
|
+
*/
|
|
54
|
+
index: number;
|
|
55
|
+
/**
|
|
56
|
+
*
|
|
57
|
+
* @type {string}
|
|
58
|
+
* @memberof AssetWithOverlayLinkResource
|
|
59
|
+
*/
|
|
60
|
+
fileId?: string | null;
|
|
61
|
+
/**
|
|
62
|
+
*
|
|
63
|
+
* @type {boolean}
|
|
64
|
+
* @memberof AssetWithOverlayLinkResource
|
|
65
|
+
*/
|
|
66
|
+
isThumbnail: boolean;
|
|
67
|
+
/**
|
|
68
|
+
*
|
|
69
|
+
* @type {boolean}
|
|
70
|
+
* @memberof AssetWithOverlayLinkResource
|
|
71
|
+
*/
|
|
72
|
+
isLifestyle: boolean;
|
|
73
|
+
/**
|
|
74
|
+
*
|
|
75
|
+
* @type {Array<OverlayTemplateLiteResource>}
|
|
76
|
+
* @memberof AssetWithOverlayLinkResource
|
|
77
|
+
*/
|
|
78
|
+
overlayTemplates: Array<OverlayTemplateLiteResource> | null;
|
|
79
|
+
/**
|
|
80
|
+
*
|
|
81
|
+
* @type {boolean}
|
|
82
|
+
* @memberof AssetWithOverlayLinkResource
|
|
83
|
+
*/
|
|
84
|
+
isLinkedToOverlayTemplate: boolean;
|
|
85
|
+
}
|
|
86
|
+
/**
|
|
87
|
+
* Check if a given object implements the AssetWithOverlayLinkResource interface.
|
|
88
|
+
*/
|
|
89
|
+
export declare function instanceOfAssetWithOverlayLinkResource(value: object): value is AssetWithOverlayLinkResource;
|
|
90
|
+
export declare function AssetWithOverlayLinkResourceFromJSON(json: any): AssetWithOverlayLinkResource;
|
|
91
|
+
export declare function AssetWithOverlayLinkResourceFromJSONTyped(json: any, ignoreDiscriminator: boolean): AssetWithOverlayLinkResource;
|
|
92
|
+
export declare function AssetWithOverlayLinkResourceToJSON(json: any): AssetWithOverlayLinkResource;
|
|
93
|
+
export declare function AssetWithOverlayLinkResourceToJSONTyped(value?: AssetWithOverlayLinkResource | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,90 @@
|
|
|
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.instanceOfAssetWithOverlayLinkResource = instanceOfAssetWithOverlayLinkResource;
|
|
17
|
+
exports.AssetWithOverlayLinkResourceFromJSON = AssetWithOverlayLinkResourceFromJSON;
|
|
18
|
+
exports.AssetWithOverlayLinkResourceFromJSONTyped = AssetWithOverlayLinkResourceFromJSONTyped;
|
|
19
|
+
exports.AssetWithOverlayLinkResourceToJSON = AssetWithOverlayLinkResourceToJSON;
|
|
20
|
+
exports.AssetWithOverlayLinkResourceToJSONTyped = AssetWithOverlayLinkResourceToJSONTyped;
|
|
21
|
+
var OverlayTemplateLiteResource_1 = require("./OverlayTemplateLiteResource");
|
|
22
|
+
/**
|
|
23
|
+
* Check if a given object implements the AssetWithOverlayLinkResource interface.
|
|
24
|
+
*/
|
|
25
|
+
function instanceOfAssetWithOverlayLinkResource(value) {
|
|
26
|
+
if (!('id' in value) || value['id'] === undefined)
|
|
27
|
+
return false;
|
|
28
|
+
if (!('filePath' in value) || value['filePath'] === undefined)
|
|
29
|
+
return false;
|
|
30
|
+
if (!('fileName' in value) || value['fileName'] === undefined)
|
|
31
|
+
return false;
|
|
32
|
+
if (!('mimeType' in value) || value['mimeType'] === undefined)
|
|
33
|
+
return false;
|
|
34
|
+
if (!('altText' in value) || value['altText'] === undefined)
|
|
35
|
+
return false;
|
|
36
|
+
if (!('index' in value) || value['index'] === undefined)
|
|
37
|
+
return false;
|
|
38
|
+
if (!('isThumbnail' in value) || value['isThumbnail'] === undefined)
|
|
39
|
+
return false;
|
|
40
|
+
if (!('isLifestyle' in value) || value['isLifestyle'] === undefined)
|
|
41
|
+
return false;
|
|
42
|
+
if (!('overlayTemplates' in value) || value['overlayTemplates'] === undefined)
|
|
43
|
+
return false;
|
|
44
|
+
if (!('isLinkedToOverlayTemplate' in value) || value['isLinkedToOverlayTemplate'] === undefined)
|
|
45
|
+
return false;
|
|
46
|
+
return true;
|
|
47
|
+
}
|
|
48
|
+
function AssetWithOverlayLinkResourceFromJSON(json) {
|
|
49
|
+
return AssetWithOverlayLinkResourceFromJSONTyped(json, false);
|
|
50
|
+
}
|
|
51
|
+
function AssetWithOverlayLinkResourceFromJSONTyped(json, ignoreDiscriminator) {
|
|
52
|
+
if (json == null) {
|
|
53
|
+
return json;
|
|
54
|
+
}
|
|
55
|
+
return {
|
|
56
|
+
'id': json['id'],
|
|
57
|
+
'filePath': json['filePath'],
|
|
58
|
+
'fileName': json['fileName'],
|
|
59
|
+
'mimeType': json['mimeType'],
|
|
60
|
+
'altText': json['altText'],
|
|
61
|
+
'index': json['index'],
|
|
62
|
+
'fileId': json['fileId'] == null ? undefined : json['fileId'],
|
|
63
|
+
'isThumbnail': json['isThumbnail'],
|
|
64
|
+
'isLifestyle': json['isLifestyle'],
|
|
65
|
+
'overlayTemplates': (json['overlayTemplates'] == null ? null : json['overlayTemplates'].map(OverlayTemplateLiteResource_1.OverlayTemplateLiteResourceFromJSON)),
|
|
66
|
+
'isLinkedToOverlayTemplate': json['isLinkedToOverlayTemplate'],
|
|
67
|
+
};
|
|
68
|
+
}
|
|
69
|
+
function AssetWithOverlayLinkResourceToJSON(json) {
|
|
70
|
+
return AssetWithOverlayLinkResourceToJSONTyped(json, false);
|
|
71
|
+
}
|
|
72
|
+
function AssetWithOverlayLinkResourceToJSONTyped(value, ignoreDiscriminator) {
|
|
73
|
+
if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
|
|
74
|
+
if (value == null) {
|
|
75
|
+
return value;
|
|
76
|
+
}
|
|
77
|
+
return {
|
|
78
|
+
'id': value['id'],
|
|
79
|
+
'filePath': value['filePath'],
|
|
80
|
+
'fileName': value['fileName'],
|
|
81
|
+
'mimeType': value['mimeType'],
|
|
82
|
+
'altText': value['altText'],
|
|
83
|
+
'index': value['index'],
|
|
84
|
+
'fileId': value['fileId'],
|
|
85
|
+
'isThumbnail': value['isThumbnail'],
|
|
86
|
+
'isLifestyle': value['isLifestyle'],
|
|
87
|
+
'overlayTemplates': (value['overlayTemplates'] == null ? null : value['overlayTemplates'].map(OverlayTemplateLiteResource_1.OverlayTemplateLiteResourceToJSON)),
|
|
88
|
+
'isLinkedToOverlayTemplate': value['isLinkedToOverlayTemplate'],
|
|
89
|
+
};
|
|
90
|
+
}
|
|
@@ -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 { AssetWithOverlayLinkResource } from './AssetWithOverlayLinkResource';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface AssetWithOverlayLinkResourceArrayResponse
|
|
17
|
+
*/
|
|
18
|
+
export interface AssetWithOverlayLinkResourceArrayResponse {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {Array<AssetWithOverlayLinkResource>}
|
|
22
|
+
* @memberof AssetWithOverlayLinkResourceArrayResponse
|
|
23
|
+
*/
|
|
24
|
+
data?: Array<AssetWithOverlayLinkResource>;
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* Check if a given object implements the AssetWithOverlayLinkResourceArrayResponse interface.
|
|
28
|
+
*/
|
|
29
|
+
export declare function instanceOfAssetWithOverlayLinkResourceArrayResponse(value: object): value is AssetWithOverlayLinkResourceArrayResponse;
|
|
30
|
+
export declare function AssetWithOverlayLinkResourceArrayResponseFromJSON(json: any): AssetWithOverlayLinkResourceArrayResponse;
|
|
31
|
+
export declare function AssetWithOverlayLinkResourceArrayResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): AssetWithOverlayLinkResourceArrayResponse;
|
|
32
|
+
export declare function AssetWithOverlayLinkResourceArrayResponseToJSON(json: any): AssetWithOverlayLinkResourceArrayResponse;
|
|
33
|
+
export declare function AssetWithOverlayLinkResourceArrayResponseToJSONTyped(value?: AssetWithOverlayLinkResourceArrayResponse | 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.instanceOfAssetWithOverlayLinkResourceArrayResponse = instanceOfAssetWithOverlayLinkResourceArrayResponse;
|
|
17
|
+
exports.AssetWithOverlayLinkResourceArrayResponseFromJSON = AssetWithOverlayLinkResourceArrayResponseFromJSON;
|
|
18
|
+
exports.AssetWithOverlayLinkResourceArrayResponseFromJSONTyped = AssetWithOverlayLinkResourceArrayResponseFromJSONTyped;
|
|
19
|
+
exports.AssetWithOverlayLinkResourceArrayResponseToJSON = AssetWithOverlayLinkResourceArrayResponseToJSON;
|
|
20
|
+
exports.AssetWithOverlayLinkResourceArrayResponseToJSONTyped = AssetWithOverlayLinkResourceArrayResponseToJSONTyped;
|
|
21
|
+
var AssetWithOverlayLinkResource_1 = require("./AssetWithOverlayLinkResource");
|
|
22
|
+
/**
|
|
23
|
+
* Check if a given object implements the AssetWithOverlayLinkResourceArrayResponse interface.
|
|
24
|
+
*/
|
|
25
|
+
function instanceOfAssetWithOverlayLinkResourceArrayResponse(value) {
|
|
26
|
+
return true;
|
|
27
|
+
}
|
|
28
|
+
function AssetWithOverlayLinkResourceArrayResponseFromJSON(json) {
|
|
29
|
+
return AssetWithOverlayLinkResourceArrayResponseFromJSONTyped(json, false);
|
|
30
|
+
}
|
|
31
|
+
function AssetWithOverlayLinkResourceArrayResponseFromJSONTyped(json, ignoreDiscriminator) {
|
|
32
|
+
if (json == null) {
|
|
33
|
+
return json;
|
|
34
|
+
}
|
|
35
|
+
return {
|
|
36
|
+
'data': json['data'] == null ? undefined : (json['data'].map(AssetWithOverlayLinkResource_1.AssetWithOverlayLinkResourceFromJSON)),
|
|
37
|
+
};
|
|
38
|
+
}
|
|
39
|
+
function AssetWithOverlayLinkResourceArrayResponseToJSON(json) {
|
|
40
|
+
return AssetWithOverlayLinkResourceArrayResponseToJSONTyped(json, false);
|
|
41
|
+
}
|
|
42
|
+
function AssetWithOverlayLinkResourceArrayResponseToJSONTyped(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(AssetWithOverlayLinkResource_1.AssetWithOverlayLinkResourceToJSON)),
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -21,6 +21,12 @@ export interface AttachAssetsOverlayTemplateRequest {
|
|
|
21
21
|
* @memberof AttachAssetsOverlayTemplateRequest
|
|
22
22
|
*/
|
|
23
23
|
assetIds: Array<number>;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {boolean}
|
|
27
|
+
* @memberof AttachAssetsOverlayTemplateRequest
|
|
28
|
+
*/
|
|
29
|
+
syncAssets?: boolean;
|
|
24
30
|
}
|
|
25
31
|
/**
|
|
26
32
|
* Check if a given object implements the AttachAssetsOverlayTemplateRequest interface.
|