@digital8/lighting-illusions-ts-sdk 0.0.487 → 0.0.488
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 +22 -2
- package/README.md +15 -7
- package/dist/apis/DocumentApi.d.ts +1 -24
- package/dist/apis/DocumentApi.js +2 -96
- package/dist/models/ExternalApiLogResource.d.ts +1 -1
- package/dist/models/ExternalApiLogResource.js +1 -3
- package/dist/models/GetAllDocumentRequest.d.ts +0 -26
- package/dist/models/GetAllDocumentRequest.js +1 -14
- package/dist/models/GetAllProductChildRequest.d.ts +0 -1
- package/dist/models/GetAllProductChildRequest.js +1 -2
- package/dist/models/IndexDocumentRequest.d.ts +0 -26
- package/dist/models/IndexDocumentRequest.js +1 -14
- package/dist/models/IndexExternalApiLogRequest.d.ts +6 -0
- package/dist/models/IndexExternalApiLogRequest.js +2 -0
- package/dist/models/IndexProductChildRequest.d.ts +0 -1
- package/dist/models/IndexProductChildRequest.js +0 -1
- package/dist/models/PaginatedProductSearchResultResourceResponse.d.ts +40 -0
- package/dist/models/PaginatedProductSearchResultResourceResponse.js +57 -0
- package/dist/models/ProductAggregationResource.d.ts +50 -0
- package/dist/models/ProductAggregationResource.js +63 -0
- package/dist/models/ProductAggregationResourceArrayResponse.d.ts +33 -0
- package/dist/models/ProductAggregationResourceArrayResponse.js +50 -0
- package/dist/models/ProductChildSiteDetailResource.d.ts +8 -2
- package/dist/models/ProductChildSiteDetailResource.js +4 -4
- package/dist/models/ProductRating.d.ts +26 -0
- package/dist/models/ProductRating.js +52 -0
- package/dist/models/ProductSearchResponseResource.d.ts +54 -0
- package/dist/models/ProductSearchResponseResource.js +67 -0
- package/dist/models/ProductSearchResponseResourceArrayResponse.d.ts +33 -0
- package/dist/models/ProductSearchResponseResourceArrayResponse.js +50 -0
- package/dist/models/ProductSearchResponseResourceMeta.d.ts +50 -0
- package/dist/models/ProductSearchResponseResourceMeta.js +63 -0
- package/dist/models/ProductSearchResponseResourcePriceInfo.d.ts +50 -0
- package/dist/models/ProductSearchResponseResourcePriceInfo.js +63 -0
- package/dist/models/ProductSearchResultResource.d.ts +116 -0
- package/dist/models/ProductSearchResultResource.js +105 -0
- package/dist/models/ProductSearchResultResourceArrayResponse.d.ts +33 -0
- package/dist/models/ProductSearchResultResourceArrayResponse.js +50 -0
- package/dist/models/ProductSortBy.d.ts +32 -0
- package/dist/models/ProductSortBy.js +58 -0
- package/dist/models/index.d.ts +11 -1
- package/dist/models/index.js +11 -1
- package/docs/DocumentApi.md +2 -137
- package/docs/GetAllDocumentRequest.md +0 -6
- package/docs/IndexDocumentRequest.md +0 -6
- package/docs/IndexExternalApiLogRequest.md +2 -0
- package/docs/PaginatedProductSearchResultResourceResponse.md +36 -0
- package/docs/ProductAggregationResource.md +40 -0
- package/docs/ProductAggregationResourceArrayResponse.md +34 -0
- package/docs/ProductChildSiteDetailResource.md +4 -2
- package/docs/{UpdateDocumentRequest.md → ProductRating.md} +4 -10
- package/docs/ProductSearchResponseResource.md +40 -0
- package/docs/ProductSearchResponseResourceArrayResponse.md +34 -0
- package/docs/ProductSearchResponseResourceMeta.md +40 -0
- package/docs/ProductSearchResponseResourcePriceInfo.md +40 -0
- package/docs/ProductSearchResultResource.md +62 -0
- package/docs/ProductSearchResultResourceArrayResponse.md +34 -0
- package/docs/ProductSortBy.md +32 -0
- package/package.json +1 -1
- package/src/apis/DocumentApi.ts +2 -91
- package/src/models/ExternalApiLogResource.ts +2 -3
- package/src/models/GetAllDocumentRequest.ts +0 -33
- package/src/models/GetAllProductChildRequest.ts +1 -2
- package/src/models/IndexDocumentRequest.ts +0 -33
- package/src/models/IndexExternalApiLogRequest.ts +8 -0
- package/src/models/IndexProductChildRequest.ts +0 -1
- package/src/models/PaginatedProductSearchResultResourceResponse.ts +90 -0
- package/src/models/ProductAggregationResource.ts +93 -0
- package/src/models/ProductAggregationResourceArrayResponse.ts +73 -0
- package/src/models/ProductChildSiteDetailResource.ts +12 -5
- package/src/models/ProductRating.ts +54 -0
- package/src/models/ProductSearchResponseResource.ts +122 -0
- package/src/models/ProductSearchResponseResourceArrayResponse.ts +73 -0
- package/src/models/ProductSearchResponseResourceMeta.ts +93 -0
- package/src/models/ProductSearchResponseResourcePriceInfo.ts +93 -0
- package/src/models/ProductSearchResultResource.ts +191 -0
- package/src/models/ProductSearchResultResourceArrayResponse.ts +73 -0
- package/src/models/ProductSortBy.ts +60 -0
- package/src/models/index.ts +11 -1
- package/dist/models/UpdateDocumentRequest.d.ts +0 -44
- package/dist/models/UpdateDocumentRequest.js +0 -57
- package/src/models/UpdateDocumentRequest.ts +0 -83
package/.openapi-generator/FILES
CHANGED
|
@@ -99,6 +99,7 @@ docs/PaginatedProductChildResourceResponse.md
|
|
|
99
99
|
docs/PaginatedProductListResourceResponse.md
|
|
100
100
|
docs/PaginatedProductLiteResourceResponse.md
|
|
101
101
|
docs/PaginatedProductResourceResponse.md
|
|
102
|
+
docs/PaginatedProductSearchResultResourceResponse.md
|
|
102
103
|
docs/PaginatedProductTypeListResourceResponse.md
|
|
103
104
|
docs/PaginatedProductTypeLiteResourceResponse.md
|
|
104
105
|
docs/PaginatedProductTypeResourceResponse.md
|
|
@@ -115,6 +116,8 @@ docs/PaginatedTagListResourceResponse.md
|
|
|
115
116
|
docs/PaginatedTagLiteResourceResponse.md
|
|
116
117
|
docs/PaginatedTagResourceResponse.md
|
|
117
118
|
docs/PagingMetadata.md
|
|
119
|
+
docs/ProductAggregationResource.md
|
|
120
|
+
docs/ProductAggregationResourceArrayResponse.md
|
|
118
121
|
docs/ProductApi.md
|
|
119
122
|
docs/ProductChildListResource.md
|
|
120
123
|
docs/ProductChildListResourceArrayResponse.md
|
|
@@ -135,8 +138,16 @@ docs/ProductListResource.md
|
|
|
135
138
|
docs/ProductListResourceArrayResponse.md
|
|
136
139
|
docs/ProductLiteResource.md
|
|
137
140
|
docs/ProductLiteResourceArrayResponse.md
|
|
141
|
+
docs/ProductRating.md
|
|
138
142
|
docs/ProductResource.md
|
|
139
143
|
docs/ProductResourceArrayResponse.md
|
|
144
|
+
docs/ProductSearchResponseResource.md
|
|
145
|
+
docs/ProductSearchResponseResourceArrayResponse.md
|
|
146
|
+
docs/ProductSearchResponseResourceMeta.md
|
|
147
|
+
docs/ProductSearchResponseResourcePriceInfo.md
|
|
148
|
+
docs/ProductSearchResultResource.md
|
|
149
|
+
docs/ProductSearchResultResourceArrayResponse.md
|
|
150
|
+
docs/ProductSortBy.md
|
|
140
151
|
docs/ProductTypeApi.md
|
|
141
152
|
docs/ProductTypeListResource.md
|
|
142
153
|
docs/ProductTypeListResourceArrayResponse.md
|
|
@@ -198,7 +209,6 @@ docs/TagResourceArrayResponse.md
|
|
|
198
209
|
docs/TagType.md
|
|
199
210
|
docs/UpdateAttributeRequest.md
|
|
200
211
|
docs/UpdateAttributeValueRequest.md
|
|
201
|
-
docs/UpdateDocumentRequest.md
|
|
202
212
|
docs/UpdateFilterOrderAttributeRequest.md
|
|
203
213
|
docs/UpdateFilterOrderAttributeRequestValuesInner.md
|
|
204
214
|
docs/UpdateModelAttributeRequest.md
|
|
@@ -319,6 +329,7 @@ src/models/PaginatedProductChildResourceResponse.ts
|
|
|
319
329
|
src/models/PaginatedProductListResourceResponse.ts
|
|
320
330
|
src/models/PaginatedProductLiteResourceResponse.ts
|
|
321
331
|
src/models/PaginatedProductResourceResponse.ts
|
|
332
|
+
src/models/PaginatedProductSearchResultResourceResponse.ts
|
|
322
333
|
src/models/PaginatedProductTypeListResourceResponse.ts
|
|
323
334
|
src/models/PaginatedProductTypeLiteResourceResponse.ts
|
|
324
335
|
src/models/PaginatedProductTypeResourceResponse.ts
|
|
@@ -335,6 +346,8 @@ src/models/PaginatedTagListResourceResponse.ts
|
|
|
335
346
|
src/models/PaginatedTagLiteResourceResponse.ts
|
|
336
347
|
src/models/PaginatedTagResourceResponse.ts
|
|
337
348
|
src/models/PagingMetadata.ts
|
|
349
|
+
src/models/ProductAggregationResource.ts
|
|
350
|
+
src/models/ProductAggregationResourceArrayResponse.ts
|
|
338
351
|
src/models/ProductChildListResource.ts
|
|
339
352
|
src/models/ProductChildListResourceArrayResponse.ts
|
|
340
353
|
src/models/ProductChildLiteResource.ts
|
|
@@ -353,8 +366,16 @@ src/models/ProductListResource.ts
|
|
|
353
366
|
src/models/ProductListResourceArrayResponse.ts
|
|
354
367
|
src/models/ProductLiteResource.ts
|
|
355
368
|
src/models/ProductLiteResourceArrayResponse.ts
|
|
369
|
+
src/models/ProductRating.ts
|
|
356
370
|
src/models/ProductResource.ts
|
|
357
371
|
src/models/ProductResourceArrayResponse.ts
|
|
372
|
+
src/models/ProductSearchResponseResource.ts
|
|
373
|
+
src/models/ProductSearchResponseResourceArrayResponse.ts
|
|
374
|
+
src/models/ProductSearchResponseResourceMeta.ts
|
|
375
|
+
src/models/ProductSearchResponseResourcePriceInfo.ts
|
|
376
|
+
src/models/ProductSearchResultResource.ts
|
|
377
|
+
src/models/ProductSearchResultResourceArrayResponse.ts
|
|
378
|
+
src/models/ProductSortBy.ts
|
|
358
379
|
src/models/ProductTypeListResource.ts
|
|
359
380
|
src/models/ProductTypeListResourceArrayResponse.ts
|
|
360
381
|
src/models/ProductTypeLiteResource.ts
|
|
@@ -412,7 +433,6 @@ src/models/TagResourceArrayResponse.ts
|
|
|
412
433
|
src/models/TagType.ts
|
|
413
434
|
src/models/UpdateAttributeRequest.ts
|
|
414
435
|
src/models/UpdateAttributeValueRequest.ts
|
|
415
|
-
src/models/UpdateDocumentRequest.ts
|
|
416
436
|
src/models/UpdateFilterOrderAttributeRequest.ts
|
|
417
437
|
src/models/UpdateFilterOrderAttributeRequestValuesInner.ts
|
|
418
438
|
src/models/UpdateModelAttributeRequest.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.488
|
|
2
2
|
|
|
3
3
|
A TypeScript SDK client for the localhost API.
|
|
4
4
|
|
|
@@ -66,14 +66,12 @@ All URIs are relative to *http://localhost/api*
|
|
|
66
66
|
*AttributeApi* | [**updateFilterOrderAttribute**](docs/AttributeApi.md#updatefilterorderattributeoperation) | **PUT** /admin-api/attribute/update-filter-order | Auto-generated: updateFilterOrderAttribute
|
|
67
67
|
*AttributeApi* | [**updateModelAttribute**](docs/AttributeApi.md#updatemodelattributeoperation) | **PUT** /admin-api/attribute/model-attribute/{modelAttribute}/update | Auto-generated: updateModelAttribute
|
|
68
68
|
*DocumentApi* | [**attachDocumentablesDocument**](docs/DocumentApi.md#attachdocumentablesdocumentoperation) | **POST** /admin-api/document/{document}/attach-documentables | Auto-generated: attachDocumentablesDocument
|
|
69
|
-
*DocumentApi* | [**destroyDocument**](docs/DocumentApi.md#destroydocument) | **DELETE** /admin-api/document/{document}
|
|
69
|
+
*DocumentApi* | [**destroyDocument**](docs/DocumentApi.md#destroydocument) | **DELETE** /admin-api/document/{document} | Auto-generated: destroyDocument
|
|
70
70
|
*DocumentApi* | [**detachDocumentablesDocument**](docs/DocumentApi.md#detachdocumentablesdocumentoperation) | **POST** /admin-api/document/{document}/detach-documentables | Auto-generated: detachDocumentablesDocument
|
|
71
71
|
*DocumentApi* | [**getAllDocument**](docs/DocumentApi.md#getalldocumentoperation) | **POST** /admin-api/document/all | Auto-generated: getAllDocument
|
|
72
72
|
*DocumentApi* | [**indexDocument**](docs/DocumentApi.md#indexdocumentoperation) | **POST** /admin-api/document/list | Auto-generated: indexDocument
|
|
73
|
-
*DocumentApi* | [**
|
|
74
|
-
*DocumentApi* | [**storeDocument**](docs/DocumentApi.md#storedocumentoperation) | **POST** /admin-api/document/create | Auto-generated: storeDocument
|
|
73
|
+
*DocumentApi* | [**storeDocument**](docs/DocumentApi.md#storedocumentoperation) | **POST** /admin-api/document | Auto-generated: storeDocument
|
|
75
74
|
*DocumentApi* | [**storeDocumentFile**](docs/DocumentApi.md#storedocumentfileoperation) | **POST** /admin-api/document/files | Auto-generated: storeDocumentFile
|
|
76
|
-
*DocumentApi* | [**updateDocument**](docs/DocumentApi.md#updatedocumentoperation) | **PUT** /admin-api/document/{document}/update | Auto-generated: updateDocument
|
|
77
75
|
*ExternalApiLogApi* | [**indexExternalApiLog**](docs/ExternalApiLogApi.md#indexexternalapilogoperation) | **POST** /admin-api/external-api-log/list | Auto-generated: indexExternalApiLog
|
|
78
76
|
*OverlayTemplateApi* | [**attachAssetsOverlayTemplate**](docs/OverlayTemplateApi.md#attachassetsoverlaytemplateoperation) | **POST** /admin-api/overlay-template/{overlayTemplate}/attach-assets | Auto-generated: attachAssetsOverlayTemplate
|
|
79
77
|
*OverlayTemplateApi* | [**destroyOverlayTemplate**](docs/OverlayTemplateApi.md#destroyoverlaytemplate) | **DELETE** /admin-api/overlay-template/{overlayTemplate}/delete | Auto-generated: destroyOverlayTemplate
|
|
@@ -237,6 +235,7 @@ All URIs are relative to *http://localhost/api*
|
|
|
237
235
|
- [PaginatedProductListResourceResponse](docs/PaginatedProductListResourceResponse.md)
|
|
238
236
|
- [PaginatedProductLiteResourceResponse](docs/PaginatedProductLiteResourceResponse.md)
|
|
239
237
|
- [PaginatedProductResourceResponse](docs/PaginatedProductResourceResponse.md)
|
|
238
|
+
- [PaginatedProductSearchResultResourceResponse](docs/PaginatedProductSearchResultResourceResponse.md)
|
|
240
239
|
- [PaginatedProductTypeListResourceResponse](docs/PaginatedProductTypeListResourceResponse.md)
|
|
241
240
|
- [PaginatedProductTypeLiteResourceResponse](docs/PaginatedProductTypeLiteResourceResponse.md)
|
|
242
241
|
- [PaginatedProductTypeResourceResponse](docs/PaginatedProductTypeResourceResponse.md)
|
|
@@ -253,6 +252,8 @@ All URIs are relative to *http://localhost/api*
|
|
|
253
252
|
- [PaginatedTagLiteResourceResponse](docs/PaginatedTagLiteResourceResponse.md)
|
|
254
253
|
- [PaginatedTagResourceResponse](docs/PaginatedTagResourceResponse.md)
|
|
255
254
|
- [PagingMetadata](docs/PagingMetadata.md)
|
|
255
|
+
- [ProductAggregationResource](docs/ProductAggregationResource.md)
|
|
256
|
+
- [ProductAggregationResourceArrayResponse](docs/ProductAggregationResourceArrayResponse.md)
|
|
256
257
|
- [ProductChildListResource](docs/ProductChildListResource.md)
|
|
257
258
|
- [ProductChildListResourceArrayResponse](docs/ProductChildListResourceArrayResponse.md)
|
|
258
259
|
- [ProductChildLiteResource](docs/ProductChildLiteResource.md)
|
|
@@ -271,8 +272,16 @@ All URIs are relative to *http://localhost/api*
|
|
|
271
272
|
- [ProductListResourceArrayResponse](docs/ProductListResourceArrayResponse.md)
|
|
272
273
|
- [ProductLiteResource](docs/ProductLiteResource.md)
|
|
273
274
|
- [ProductLiteResourceArrayResponse](docs/ProductLiteResourceArrayResponse.md)
|
|
275
|
+
- [ProductRating](docs/ProductRating.md)
|
|
274
276
|
- [ProductResource](docs/ProductResource.md)
|
|
275
277
|
- [ProductResourceArrayResponse](docs/ProductResourceArrayResponse.md)
|
|
278
|
+
- [ProductSearchResponseResource](docs/ProductSearchResponseResource.md)
|
|
279
|
+
- [ProductSearchResponseResourceArrayResponse](docs/ProductSearchResponseResourceArrayResponse.md)
|
|
280
|
+
- [ProductSearchResponseResourceMeta](docs/ProductSearchResponseResourceMeta.md)
|
|
281
|
+
- [ProductSearchResponseResourcePriceInfo](docs/ProductSearchResponseResourcePriceInfo.md)
|
|
282
|
+
- [ProductSearchResultResource](docs/ProductSearchResultResource.md)
|
|
283
|
+
- [ProductSearchResultResourceArrayResponse](docs/ProductSearchResultResourceArrayResponse.md)
|
|
284
|
+
- [ProductSortBy](docs/ProductSortBy.md)
|
|
276
285
|
- [ProductTypeListResource](docs/ProductTypeListResource.md)
|
|
277
286
|
- [ProductTypeListResourceArrayResponse](docs/ProductTypeListResourceArrayResponse.md)
|
|
278
287
|
- [ProductTypeLiteResource](docs/ProductTypeLiteResource.md)
|
|
@@ -330,7 +339,6 @@ All URIs are relative to *http://localhost/api*
|
|
|
330
339
|
- [TagType](docs/TagType.md)
|
|
331
340
|
- [UpdateAttributeRequest](docs/UpdateAttributeRequest.md)
|
|
332
341
|
- [UpdateAttributeValueRequest](docs/UpdateAttributeValueRequest.md)
|
|
333
|
-
- [UpdateDocumentRequest](docs/UpdateDocumentRequest.md)
|
|
334
342
|
- [UpdateFilterOrderAttributeRequest](docs/UpdateFilterOrderAttributeRequest.md)
|
|
335
343
|
- [UpdateFilterOrderAttributeRequestValuesInner](docs/UpdateFilterOrderAttributeRequestValuesInner.md)
|
|
336
344
|
- [UpdateModelAttributeRequest](docs/UpdateModelAttributeRequest.md)
|
|
@@ -358,7 +366,7 @@ and is automatically generated by the
|
|
|
358
366
|
[OpenAPI Generator](https://openapi-generator.tech) project:
|
|
359
367
|
|
|
360
368
|
- API version: `1.0.0`
|
|
361
|
-
- Package version: `0.0.
|
|
369
|
+
- Package version: `0.0.488`
|
|
362
370
|
- Generator version: `7.17.0`
|
|
363
371
|
- Build package: `org.openapitools.codegen.languages.TypeScriptFetchClientCodegen`
|
|
364
372
|
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import * as runtime from '../runtime';
|
|
13
|
-
import type { AttachDocumentablesDocumentRequest, DetachDocumentablesDocumentRequest, DocumentFileForUploadResource, DocumentResource, DocumentResourceArrayResponse, GenericResponse, GetAllDocumentRequest, IndexDocumentRequest, PaginatedDocumentResourceResponse, StoreDocumentFileRequest, StoreDocumentRequest
|
|
13
|
+
import type { AttachDocumentablesDocumentRequest, DetachDocumentablesDocumentRequest, DocumentFileForUploadResource, DocumentResource, DocumentResourceArrayResponse, GenericResponse, GetAllDocumentRequest, IndexDocumentRequest, PaginatedDocumentResourceResponse, StoreDocumentFileRequest, StoreDocumentRequest } from '../models/index';
|
|
14
14
|
export interface AttachDocumentablesDocumentOperationRequest {
|
|
15
15
|
document: number;
|
|
16
16
|
attachDocumentablesDocumentRequest?: AttachDocumentablesDocumentRequest;
|
|
@@ -28,19 +28,12 @@ export interface GetAllDocumentOperationRequest {
|
|
|
28
28
|
export interface IndexDocumentOperationRequest {
|
|
29
29
|
indexDocumentRequest?: IndexDocumentRequest;
|
|
30
30
|
}
|
|
31
|
-
export interface ShowDocumentRequest {
|
|
32
|
-
document: number;
|
|
33
|
-
}
|
|
34
31
|
export interface StoreDocumentOperationRequest {
|
|
35
32
|
storeDocumentRequest?: StoreDocumentRequest;
|
|
36
33
|
}
|
|
37
34
|
export interface StoreDocumentFileOperationRequest {
|
|
38
35
|
storeDocumentFileRequest?: StoreDocumentFileRequest;
|
|
39
36
|
}
|
|
40
|
-
export interface UpdateDocumentOperationRequest {
|
|
41
|
-
document: number;
|
|
42
|
-
updateDocumentRequest?: UpdateDocumentRequest;
|
|
43
|
-
}
|
|
44
37
|
/**
|
|
45
38
|
*
|
|
46
39
|
*/
|
|
@@ -85,14 +78,6 @@ export declare class DocumentApi extends runtime.BaseAPI {
|
|
|
85
78
|
* Auto-generated: indexDocument
|
|
86
79
|
*/
|
|
87
80
|
indexDocument(requestParameters?: IndexDocumentOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<PaginatedDocumentResourceResponse>;
|
|
88
|
-
/**
|
|
89
|
-
* Auto-generated: showDocument
|
|
90
|
-
*/
|
|
91
|
-
showDocumentRaw(requestParameters: ShowDocumentRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<DocumentResource>>;
|
|
92
|
-
/**
|
|
93
|
-
* Auto-generated: showDocument
|
|
94
|
-
*/
|
|
95
|
-
showDocument(requestParameters: ShowDocumentRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<DocumentResource>;
|
|
96
81
|
/**
|
|
97
82
|
* Auto-generated: storeDocument
|
|
98
83
|
*/
|
|
@@ -109,12 +94,4 @@ export declare class DocumentApi extends runtime.BaseAPI {
|
|
|
109
94
|
* Auto-generated: storeDocumentFile
|
|
110
95
|
*/
|
|
111
96
|
storeDocumentFile(requestParameters?: StoreDocumentFileOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<DocumentFileForUploadResource>;
|
|
112
|
-
/**
|
|
113
|
-
* Auto-generated: updateDocument
|
|
114
|
-
*/
|
|
115
|
-
updateDocumentRaw(requestParameters: UpdateDocumentOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<DocumentResource>>;
|
|
116
|
-
/**
|
|
117
|
-
* Auto-generated: updateDocument
|
|
118
|
-
*/
|
|
119
|
-
updateDocument(requestParameters: UpdateDocumentOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<DocumentResource>;
|
|
120
97
|
}
|
package/dist/apis/DocumentApi.js
CHANGED
|
@@ -137,7 +137,7 @@ var DocumentApi = /** @class */ (function (_super) {
|
|
|
137
137
|
}
|
|
138
138
|
queryParameters = {};
|
|
139
139
|
headerParameters = {};
|
|
140
|
-
urlPath = "/admin-api/document/{document}
|
|
140
|
+
urlPath = "/admin-api/document/{document}";
|
|
141
141
|
urlPath = urlPath.replace("{".concat("document", "}"), encodeURIComponent(String(requestParameters['document'])));
|
|
142
142
|
return [4 /*yield*/, this.request({
|
|
143
143
|
path: urlPath,
|
|
@@ -307,52 +307,6 @@ var DocumentApi = /** @class */ (function (_super) {
|
|
|
307
307
|
});
|
|
308
308
|
});
|
|
309
309
|
};
|
|
310
|
-
/**
|
|
311
|
-
* Auto-generated: showDocument
|
|
312
|
-
*/
|
|
313
|
-
DocumentApi.prototype.showDocumentRaw = function (requestParameters, initOverrides) {
|
|
314
|
-
return __awaiter(this, void 0, void 0, function () {
|
|
315
|
-
var queryParameters, headerParameters, urlPath, response;
|
|
316
|
-
return __generator(this, function (_a) {
|
|
317
|
-
switch (_a.label) {
|
|
318
|
-
case 0:
|
|
319
|
-
if (requestParameters['document'] == null) {
|
|
320
|
-
throw new runtime.RequiredError('document', 'Required parameter "document" was null or undefined when calling showDocument().');
|
|
321
|
-
}
|
|
322
|
-
queryParameters = {};
|
|
323
|
-
headerParameters = {};
|
|
324
|
-
urlPath = "/admin-api/document/{document}";
|
|
325
|
-
urlPath = urlPath.replace("{".concat("document", "}"), encodeURIComponent(String(requestParameters['document'])));
|
|
326
|
-
return [4 /*yield*/, this.request({
|
|
327
|
-
path: urlPath,
|
|
328
|
-
method: 'GET',
|
|
329
|
-
headers: headerParameters,
|
|
330
|
-
query: queryParameters,
|
|
331
|
-
}, initOverrides)];
|
|
332
|
-
case 1:
|
|
333
|
-
response = _a.sent();
|
|
334
|
-
return [2 /*return*/, new runtime.JSONApiResponse(response, function (jsonValue) { return (0, index_1.DocumentResourceFromJSON)(jsonValue); })];
|
|
335
|
-
}
|
|
336
|
-
});
|
|
337
|
-
});
|
|
338
|
-
};
|
|
339
|
-
/**
|
|
340
|
-
* Auto-generated: showDocument
|
|
341
|
-
*/
|
|
342
|
-
DocumentApi.prototype.showDocument = function (requestParameters, initOverrides) {
|
|
343
|
-
return __awaiter(this, void 0, void 0, function () {
|
|
344
|
-
var response;
|
|
345
|
-
return __generator(this, function (_a) {
|
|
346
|
-
switch (_a.label) {
|
|
347
|
-
case 0: return [4 /*yield*/, this.showDocumentRaw(requestParameters, initOverrides)];
|
|
348
|
-
case 1:
|
|
349
|
-
response = _a.sent();
|
|
350
|
-
return [4 /*yield*/, response.value()];
|
|
351
|
-
case 2: return [2 /*return*/, _a.sent()];
|
|
352
|
-
}
|
|
353
|
-
});
|
|
354
|
-
});
|
|
355
|
-
};
|
|
356
310
|
/**
|
|
357
311
|
* Auto-generated: storeDocument
|
|
358
312
|
*/
|
|
@@ -365,7 +319,7 @@ var DocumentApi = /** @class */ (function (_super) {
|
|
|
365
319
|
queryParameters = {};
|
|
366
320
|
headerParameters = {};
|
|
367
321
|
headerParameters['Content-Type'] = 'application/json';
|
|
368
|
-
urlPath = "/admin-api/document
|
|
322
|
+
urlPath = "/admin-api/document";
|
|
369
323
|
return [4 /*yield*/, this.request({
|
|
370
324
|
path: urlPath,
|
|
371
325
|
method: 'POST',
|
|
@@ -443,54 +397,6 @@ var DocumentApi = /** @class */ (function (_super) {
|
|
|
443
397
|
});
|
|
444
398
|
});
|
|
445
399
|
};
|
|
446
|
-
/**
|
|
447
|
-
* Auto-generated: updateDocument
|
|
448
|
-
*/
|
|
449
|
-
DocumentApi.prototype.updateDocumentRaw = function (requestParameters, initOverrides) {
|
|
450
|
-
return __awaiter(this, void 0, void 0, function () {
|
|
451
|
-
var queryParameters, headerParameters, urlPath, response;
|
|
452
|
-
return __generator(this, function (_a) {
|
|
453
|
-
switch (_a.label) {
|
|
454
|
-
case 0:
|
|
455
|
-
if (requestParameters['document'] == null) {
|
|
456
|
-
throw new runtime.RequiredError('document', 'Required parameter "document" was null or undefined when calling updateDocument().');
|
|
457
|
-
}
|
|
458
|
-
queryParameters = {};
|
|
459
|
-
headerParameters = {};
|
|
460
|
-
headerParameters['Content-Type'] = 'application/json';
|
|
461
|
-
urlPath = "/admin-api/document/{document}/update";
|
|
462
|
-
urlPath = urlPath.replace("{".concat("document", "}"), encodeURIComponent(String(requestParameters['document'])));
|
|
463
|
-
return [4 /*yield*/, this.request({
|
|
464
|
-
path: urlPath,
|
|
465
|
-
method: 'PUT',
|
|
466
|
-
headers: headerParameters,
|
|
467
|
-
query: queryParameters,
|
|
468
|
-
body: (0, index_1.UpdateDocumentRequestToJSON)(requestParameters['updateDocumentRequest']),
|
|
469
|
-
}, initOverrides)];
|
|
470
|
-
case 1:
|
|
471
|
-
response = _a.sent();
|
|
472
|
-
return [2 /*return*/, new runtime.JSONApiResponse(response, function (jsonValue) { return (0, index_1.DocumentResourceFromJSON)(jsonValue); })];
|
|
473
|
-
}
|
|
474
|
-
});
|
|
475
|
-
});
|
|
476
|
-
};
|
|
477
|
-
/**
|
|
478
|
-
* Auto-generated: updateDocument
|
|
479
|
-
*/
|
|
480
|
-
DocumentApi.prototype.updateDocument = function (requestParameters, initOverrides) {
|
|
481
|
-
return __awaiter(this, void 0, void 0, function () {
|
|
482
|
-
var response;
|
|
483
|
-
return __generator(this, function (_a) {
|
|
484
|
-
switch (_a.label) {
|
|
485
|
-
case 0: return [4 /*yield*/, this.updateDocumentRaw(requestParameters, initOverrides)];
|
|
486
|
-
case 1:
|
|
487
|
-
response = _a.sent();
|
|
488
|
-
return [4 /*yield*/, response.value()];
|
|
489
|
-
case 2: return [2 /*return*/, _a.sent()];
|
|
490
|
-
}
|
|
491
|
-
});
|
|
492
|
-
});
|
|
493
|
-
};
|
|
494
400
|
return DocumentApi;
|
|
495
401
|
}(runtime.BaseAPI));
|
|
496
402
|
exports.DocumentApi = DocumentApi;
|
|
@@ -37,8 +37,6 @@ function instanceOfExternalApiLogResource(value) {
|
|
|
37
37
|
return false;
|
|
38
38
|
if (!('responseCode' in value) || value['responseCode'] === undefined)
|
|
39
39
|
return false;
|
|
40
|
-
if (!('requestPayload' in value) || value['requestPayload'] === undefined)
|
|
41
|
-
return false;
|
|
42
40
|
if (!('responsePayload' in value) || value['responsePayload'] === undefined)
|
|
43
41
|
return false;
|
|
44
42
|
if (!('site' in value) || value['site'] === undefined)
|
|
@@ -60,7 +58,7 @@ function ExternalApiLogResourceFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
60
58
|
'exteranlApiLoggableId': json['exteranlApiLoggableId'],
|
|
61
59
|
'endpoint': json['endpoint'],
|
|
62
60
|
'responseCode': json['responseCode'],
|
|
63
|
-
'requestPayload': json['requestPayload'],
|
|
61
|
+
'requestPayload': json['requestPayload'] == null ? undefined : json['requestPayload'],
|
|
64
62
|
'responsePayload': json['responsePayload'],
|
|
65
63
|
'createdAt': json['createdAt'] == null ? undefined : json['createdAt'],
|
|
66
64
|
'site': (0, SiteLiteResource_1.SiteLiteResourceFromJSON)(json['site']),
|
|
@@ -33,24 +33,6 @@ export interface GetAllDocumentRequest {
|
|
|
33
33
|
* @memberof GetAllDocumentRequest
|
|
34
34
|
*/
|
|
35
35
|
sortDirection?: GetAllDocumentRequestSortDirectionEnum;
|
|
36
|
-
/**
|
|
37
|
-
*
|
|
38
|
-
* @type {number}
|
|
39
|
-
* @memberof GetAllDocumentRequest
|
|
40
|
-
*/
|
|
41
|
-
relatedId?: number;
|
|
42
|
-
/**
|
|
43
|
-
*
|
|
44
|
-
* @type {string}
|
|
45
|
-
* @memberof GetAllDocumentRequest
|
|
46
|
-
*/
|
|
47
|
-
relatedType?: GetAllDocumentRequestRelatedTypeEnum;
|
|
48
|
-
/**
|
|
49
|
-
*
|
|
50
|
-
* @type {boolean}
|
|
51
|
-
* @memberof GetAllDocumentRequest
|
|
52
|
-
*/
|
|
53
|
-
includesRelations?: boolean;
|
|
54
36
|
}
|
|
55
37
|
/**
|
|
56
38
|
* @export
|
|
@@ -70,14 +52,6 @@ export declare const GetAllDocumentRequestSortDirectionEnum: {
|
|
|
70
52
|
readonly Desc: "desc";
|
|
71
53
|
};
|
|
72
54
|
export type GetAllDocumentRequestSortDirectionEnum = typeof GetAllDocumentRequestSortDirectionEnum[keyof typeof GetAllDocumentRequestSortDirectionEnum];
|
|
73
|
-
/**
|
|
74
|
-
* @export
|
|
75
|
-
*/
|
|
76
|
-
export declare const GetAllDocumentRequestRelatedTypeEnum: {
|
|
77
|
-
readonly ProductChild: "productChild";
|
|
78
|
-
readonly ProductRangeSite: "productRangeSite";
|
|
79
|
-
};
|
|
80
|
-
export type GetAllDocumentRequestRelatedTypeEnum = typeof GetAllDocumentRequestRelatedTypeEnum[keyof typeof GetAllDocumentRequestRelatedTypeEnum];
|
|
81
55
|
/**
|
|
82
56
|
* Check if a given object implements the GetAllDocumentRequest interface.
|
|
83
57
|
*/
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
* Do not edit the class manually.
|
|
14
14
|
*/
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
-
exports.
|
|
16
|
+
exports.GetAllDocumentRequestSortDirectionEnum = exports.GetAllDocumentRequestSortByEnum = void 0;
|
|
17
17
|
exports.instanceOfGetAllDocumentRequest = instanceOfGetAllDocumentRequest;
|
|
18
18
|
exports.GetAllDocumentRequestFromJSON = GetAllDocumentRequestFromJSON;
|
|
19
19
|
exports.GetAllDocumentRequestFromJSONTyped = GetAllDocumentRequestFromJSONTyped;
|
|
@@ -35,13 +35,6 @@ exports.GetAllDocumentRequestSortDirectionEnum = {
|
|
|
35
35
|
Asc: 'asc',
|
|
36
36
|
Desc: 'desc'
|
|
37
37
|
};
|
|
38
|
-
/**
|
|
39
|
-
* @export
|
|
40
|
-
*/
|
|
41
|
-
exports.GetAllDocumentRequestRelatedTypeEnum = {
|
|
42
|
-
ProductChild: 'productChild',
|
|
43
|
-
ProductRangeSite: 'productRangeSite'
|
|
44
|
-
};
|
|
45
38
|
/**
|
|
46
39
|
* Check if a given object implements the GetAllDocumentRequest interface.
|
|
47
40
|
*/
|
|
@@ -59,9 +52,6 @@ function GetAllDocumentRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
59
52
|
'search': json['search'] == null ? undefined : json['search'],
|
|
60
53
|
'sortBy': json['sortBy'] == null ? undefined : json['sortBy'],
|
|
61
54
|
'sortDirection': json['sortDirection'] == null ? undefined : json['sortDirection'],
|
|
62
|
-
'relatedId': json['related_id'] == null ? undefined : json['related_id'],
|
|
63
|
-
'relatedType': json['related_type'] == null ? undefined : json['related_type'],
|
|
64
|
-
'includesRelations': json['includes_relations'] == null ? undefined : json['includes_relations'],
|
|
65
55
|
};
|
|
66
56
|
}
|
|
67
57
|
function GetAllDocumentRequestToJSON(json) {
|
|
@@ -76,8 +66,5 @@ function GetAllDocumentRequestToJSONTyped(value, ignoreDiscriminator) {
|
|
|
76
66
|
'search': value['search'],
|
|
77
67
|
'sortBy': value['sortBy'],
|
|
78
68
|
'sortDirection': value['sortDirection'],
|
|
79
|
-
'related_id': value['relatedId'],
|
|
80
|
-
'related_type': value['relatedType'],
|
|
81
|
-
'includes_relations': value['includesRelations'],
|
|
82
69
|
};
|
|
83
70
|
}
|
|
@@ -116,7 +116,6 @@ export declare const GetAllProductChildRequestRelatedTypeEnum: {
|
|
|
116
116
|
readonly OverlayTemplate: "overlayTemplate";
|
|
117
117
|
readonly Supplier: "supplier";
|
|
118
118
|
readonly Tag: "tag";
|
|
119
|
-
readonly Document: "document";
|
|
120
119
|
};
|
|
121
120
|
export type GetAllProductChildRequestRelatedTypeEnum = typeof GetAllProductChildRequestRelatedTypeEnum[keyof typeof GetAllProductChildRequestRelatedTypeEnum];
|
|
122
121
|
/**
|
|
@@ -50,8 +50,7 @@ exports.GetAllProductChildRequestSortDirectionEnum = {
|
|
|
50
50
|
exports.GetAllProductChildRequestRelatedTypeEnum = {
|
|
51
51
|
OverlayTemplate: 'overlayTemplate',
|
|
52
52
|
Supplier: 'supplier',
|
|
53
|
-
Tag: 'tag'
|
|
54
|
-
Document: 'document'
|
|
53
|
+
Tag: 'tag'
|
|
55
54
|
};
|
|
56
55
|
/**
|
|
57
56
|
* Check if a given object implements the GetAllProductChildRequest interface.
|
|
@@ -45,24 +45,6 @@ export interface IndexDocumentRequest {
|
|
|
45
45
|
* @memberof IndexDocumentRequest
|
|
46
46
|
*/
|
|
47
47
|
page?: number;
|
|
48
|
-
/**
|
|
49
|
-
*
|
|
50
|
-
* @type {number}
|
|
51
|
-
* @memberof IndexDocumentRequest
|
|
52
|
-
*/
|
|
53
|
-
relatedId?: number;
|
|
54
|
-
/**
|
|
55
|
-
*
|
|
56
|
-
* @type {string}
|
|
57
|
-
* @memberof IndexDocumentRequest
|
|
58
|
-
*/
|
|
59
|
-
relatedType?: IndexDocumentRequestRelatedTypeEnum;
|
|
60
|
-
/**
|
|
61
|
-
*
|
|
62
|
-
* @type {boolean}
|
|
63
|
-
* @memberof IndexDocumentRequest
|
|
64
|
-
*/
|
|
65
|
-
includesRelations?: boolean;
|
|
66
48
|
}
|
|
67
49
|
/**
|
|
68
50
|
* @export
|
|
@@ -82,14 +64,6 @@ export declare const IndexDocumentRequestSortDirectionEnum: {
|
|
|
82
64
|
readonly Desc: "desc";
|
|
83
65
|
};
|
|
84
66
|
export type IndexDocumentRequestSortDirectionEnum = typeof IndexDocumentRequestSortDirectionEnum[keyof typeof IndexDocumentRequestSortDirectionEnum];
|
|
85
|
-
/**
|
|
86
|
-
* @export
|
|
87
|
-
*/
|
|
88
|
-
export declare const IndexDocumentRequestRelatedTypeEnum: {
|
|
89
|
-
readonly ProductChild: "productChild";
|
|
90
|
-
readonly ProductRangeSite: "productRangeSite";
|
|
91
|
-
};
|
|
92
|
-
export type IndexDocumentRequestRelatedTypeEnum = typeof IndexDocumentRequestRelatedTypeEnum[keyof typeof IndexDocumentRequestRelatedTypeEnum];
|
|
93
67
|
/**
|
|
94
68
|
* Check if a given object implements the IndexDocumentRequest interface.
|
|
95
69
|
*/
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
* Do not edit the class manually.
|
|
14
14
|
*/
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
-
exports.
|
|
16
|
+
exports.IndexDocumentRequestSortDirectionEnum = exports.IndexDocumentRequestSortByEnum = void 0;
|
|
17
17
|
exports.instanceOfIndexDocumentRequest = instanceOfIndexDocumentRequest;
|
|
18
18
|
exports.IndexDocumentRequestFromJSON = IndexDocumentRequestFromJSON;
|
|
19
19
|
exports.IndexDocumentRequestFromJSONTyped = IndexDocumentRequestFromJSONTyped;
|
|
@@ -35,13 +35,6 @@ exports.IndexDocumentRequestSortDirectionEnum = {
|
|
|
35
35
|
Asc: 'asc',
|
|
36
36
|
Desc: 'desc'
|
|
37
37
|
};
|
|
38
|
-
/**
|
|
39
|
-
* @export
|
|
40
|
-
*/
|
|
41
|
-
exports.IndexDocumentRequestRelatedTypeEnum = {
|
|
42
|
-
ProductChild: 'productChild',
|
|
43
|
-
ProductRangeSite: 'productRangeSite'
|
|
44
|
-
};
|
|
45
38
|
/**
|
|
46
39
|
* Check if a given object implements the IndexDocumentRequest interface.
|
|
47
40
|
*/
|
|
@@ -61,9 +54,6 @@ function IndexDocumentRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
61
54
|
'sortDirection': json['sortDirection'] == null ? undefined : json['sortDirection'],
|
|
62
55
|
'perPage': json['per_page'] == null ? undefined : json['per_page'],
|
|
63
56
|
'page': json['page'] == null ? undefined : json['page'],
|
|
64
|
-
'relatedId': json['related_id'] == null ? undefined : json['related_id'],
|
|
65
|
-
'relatedType': json['related_type'] == null ? undefined : json['related_type'],
|
|
66
|
-
'includesRelations': json['includes_relations'] == null ? undefined : json['includes_relations'],
|
|
67
57
|
};
|
|
68
58
|
}
|
|
69
59
|
function IndexDocumentRequestToJSON(json) {
|
|
@@ -80,8 +70,5 @@ function IndexDocumentRequestToJSONTyped(value, ignoreDiscriminator) {
|
|
|
80
70
|
'sortDirection': value['sortDirection'],
|
|
81
71
|
'per_page': value['perPage'],
|
|
82
72
|
'page': value['page'],
|
|
83
|
-
'related_id': value['relatedId'],
|
|
84
|
-
'related_type': value['relatedType'],
|
|
85
|
-
'includes_relations': value['includesRelations'],
|
|
86
73
|
};
|
|
87
74
|
}
|
|
@@ -81,6 +81,12 @@ export interface IndexExternalApiLogRequest {
|
|
|
81
81
|
* @memberof IndexExternalApiLogRequest
|
|
82
82
|
*/
|
|
83
83
|
siteId?: Array<string>;
|
|
84
|
+
/**
|
|
85
|
+
*
|
|
86
|
+
* @type {Array<string>}
|
|
87
|
+
* @memberof IndexExternalApiLogRequest
|
|
88
|
+
*/
|
|
89
|
+
productChildId?: Array<string>;
|
|
84
90
|
/**
|
|
85
91
|
*
|
|
86
92
|
* @type {number}
|
|
@@ -63,6 +63,7 @@ function IndexExternalApiLogRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
63
63
|
'externalApiLoggableType': json['external_api_loggable_type'] == null ? undefined : json['external_api_loggable_type'],
|
|
64
64
|
'externalApiLoggableId': json['external_api_loggable_id'] == null ? undefined : json['external_api_loggable_id'],
|
|
65
65
|
'siteId': json['site_id'] == null ? undefined : json['site_id'],
|
|
66
|
+
'productChildId': json['product_child_id'] == null ? undefined : json['product_child_id'],
|
|
66
67
|
'relatedId': json['related_id'] == null ? undefined : json['related_id'],
|
|
67
68
|
'relatedType': json['related_type'] == null ? undefined : json['related_type'],
|
|
68
69
|
'includesRelations': json['includes_relations'] == null ? undefined : json['includes_relations'],
|
|
@@ -88,6 +89,7 @@ function IndexExternalApiLogRequestToJSONTyped(value, ignoreDiscriminator) {
|
|
|
88
89
|
'external_api_loggable_type': value['externalApiLoggableType'],
|
|
89
90
|
'external_api_loggable_id': value['externalApiLoggableId'],
|
|
90
91
|
'site_id': value['siteId'],
|
|
92
|
+
'product_child_id': value['productChildId'],
|
|
91
93
|
'related_id': value['relatedId'],
|
|
92
94
|
'related_type': value['relatedType'],
|
|
93
95
|
'includes_relations': value['includesRelations'],
|
|
@@ -128,7 +128,6 @@ export declare const IndexProductChildRequestRelatedTypeEnum: {
|
|
|
128
128
|
readonly OverlayTemplate: "overlayTemplate";
|
|
129
129
|
readonly Supplier: "supplier";
|
|
130
130
|
readonly Tag: "tag";
|
|
131
|
-
readonly Document: "document";
|
|
132
131
|
readonly Attribute: "attribute";
|
|
133
132
|
readonly AttributeValue: "attributeValue";
|
|
134
133
|
};
|
|
@@ -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 { ProductSearchResultResource } from './ProductSearchResultResource';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface PaginatedProductSearchResultResourceResponse
|
|
18
|
+
*/
|
|
19
|
+
export interface PaginatedProductSearchResultResourceResponse {
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @type {Array<ProductSearchResultResource>}
|
|
23
|
+
* @memberof PaginatedProductSearchResultResourceResponse
|
|
24
|
+
*/
|
|
25
|
+
data: Array<ProductSearchResultResource>;
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {PagingMetadata}
|
|
29
|
+
* @memberof PaginatedProductSearchResultResourceResponse
|
|
30
|
+
*/
|
|
31
|
+
meta: PagingMetadata;
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* Check if a given object implements the PaginatedProductSearchResultResourceResponse interface.
|
|
35
|
+
*/
|
|
36
|
+
export declare function instanceOfPaginatedProductSearchResultResourceResponse(value: object): value is PaginatedProductSearchResultResourceResponse;
|
|
37
|
+
export declare function PaginatedProductSearchResultResourceResponseFromJSON(json: any): PaginatedProductSearchResultResourceResponse;
|
|
38
|
+
export declare function PaginatedProductSearchResultResourceResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedProductSearchResultResourceResponse;
|
|
39
|
+
export declare function PaginatedProductSearchResultResourceResponseToJSON(json: any): PaginatedProductSearchResultResourceResponse;
|
|
40
|
+
export declare function PaginatedProductSearchResultResourceResponseToJSONTyped(value?: PaginatedProductSearchResultResourceResponse | null, ignoreDiscriminator?: boolean): any;
|