@digital8/lighting-illusions-ts-sdk 0.0.2357 → 0.0.2359
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 +10 -0
- package/README.md +7 -2
- package/dist/apis/ProductClassApi.d.ts +34 -0
- package/dist/apis/ProductClassApi.js +139 -0
- package/dist/apis/index.d.ts +1 -0
- package/dist/apis/index.js +1 -0
- package/dist/models/AddressFrontendResource.d.ts +1 -1
- package/dist/models/AddressFrontendResource.js +1 -3
- package/dist/models/CartListResource.d.ts +6 -0
- package/dist/models/CartListResource.js +4 -0
- package/dist/models/CategoryAutomationFieldType.d.ts +2 -0
- package/dist/models/CategoryAutomationFieldType.js +3 -1
- package/dist/models/CreatePageComponentRequest.d.ts +4 -4
- package/dist/models/CreatePageComponentRequest.js +4 -4
- package/dist/models/CreateProductCategoryRequestAutomationRulesInner.d.ts +2 -0
- package/dist/models/CreateProductCategoryRequestAutomationRulesInner.js +3 -1
- package/dist/models/CreateSupplierRequest.d.ts +6 -0
- package/dist/models/CreateSupplierRequest.js +2 -0
- package/dist/models/FrontendCartResource.d.ts +18 -0
- package/dist/models/FrontendCartResource.js +12 -0
- package/dist/models/OrderFulfillmentResource.d.ts +2 -2
- package/dist/models/OrderFulfillmentResource.js +6 -2
- package/dist/models/OrderStatusWithCountResource.d.ts +12 -0
- package/dist/models/OrderStatusWithCountResource.js +8 -0
- package/dist/models/PaginatedProductClassLiteResourceResponse.d.ts +40 -0
- package/dist/models/PaginatedProductClassLiteResourceResponse.js +57 -0
- package/dist/models/ProductClassLiteResource.d.ts +44 -0
- package/dist/models/ProductClassLiteResource.js +57 -0
- package/dist/models/ProductClassLiteResourceArrayResponse.d.ts +33 -0
- package/dist/models/ProductClassLiteResourceArrayResponse.js +50 -0
- package/dist/models/ProductClassResource.d.ts +2 -2
- package/dist/models/SearchAllOrdersRequest.d.ts +6 -0
- package/dist/models/SearchAllOrdersRequest.js +2 -0
- package/dist/models/SearchAllProductClassesRequest.d.ts +78 -0
- package/dist/models/SearchAllProductClassesRequest.js +74 -0
- package/dist/models/SearchOrdersRequest.d.ts +6 -0
- package/dist/models/SearchOrdersRequest.js +2 -0
- package/dist/models/StoreFrontendResource.d.ts +2 -2
- package/dist/models/StoreFrontendResource.js +4 -4
- package/dist/models/StoreListResource.d.ts +1 -1
- package/dist/models/StoreListResource.js +3 -1
- package/dist/models/StoreResource.d.ts +1 -1
- package/dist/models/StoreResource.js +1 -3
- package/dist/models/SupplierFrontendResource.d.ts +6 -0
- package/dist/models/SupplierFrontendResource.js +4 -0
- package/dist/models/SupplierResource.d.ts +6 -0
- package/dist/models/SupplierResource.js +4 -0
- package/dist/models/UpdatePageComponentRequest.d.ts +4 -4
- package/dist/models/UpdatePageComponentRequest.js +4 -4
- package/dist/models/UpdateSupplierRequest.d.ts +6 -0
- package/dist/models/UpdateSupplierRequest.js +2 -0
- package/dist/models/index.d.ts +4 -0
- package/dist/models/index.js +4 -0
- package/docs/CartListResource.md +2 -0
- package/docs/CreatePageComponentRequest.md +2 -2
- package/docs/CreateSupplierRequest.md +2 -0
- package/docs/CustomersApi.md +1 -1
- package/docs/FrontendCartResource.md +6 -0
- package/docs/OrderStatusWithCountResource.md +4 -0
- package/docs/PaginatedProductClassLiteResourceResponse.md +36 -0
- package/docs/ProductClassApi.md +74 -0
- package/docs/ProductClassLiteResource.md +38 -0
- package/docs/ProductClassLiteResourceArrayResponse.md +34 -0
- package/docs/ProductClassResource.md +1 -1
- package/docs/SearchAllOrdersRequest.md +2 -0
- package/docs/SearchAllProductClassesRequest.md +44 -0
- package/docs/SearchOrdersRequest.md +2 -0
- package/docs/SupplierFrontendResource.md +2 -0
- package/docs/SupplierResource.md +2 -0
- package/docs/UpdatePageComponentRequest.md +2 -2
- package/docs/UpdateSupplierRequest.md +2 -0
- package/package.json +1 -1
- package/src/apis/ProductClassApi.ts +76 -0
- package/src/apis/index.ts +1 -0
- package/src/models/AddressFrontendResource.ts +2 -3
- package/src/models/CartListResource.ts +9 -0
- package/src/models/CategoryAutomationFieldType.ts +3 -1
- package/src/models/CreatePageComponentRequest.ts +8 -8
- package/src/models/CreateProductCategoryRequestAutomationRulesInner.ts +3 -1
- package/src/models/CreateSupplierRequest.ts +8 -0
- package/src/models/FrontendCartResource.ts +27 -0
- package/src/models/OrderFulfillmentResource.ts +6 -4
- package/src/models/OrderStatusWithCountResource.ts +18 -0
- package/src/models/PaginatedProductClassLiteResourceResponse.ts +90 -0
- package/src/models/ProductClassLiteResource.ts +83 -0
- package/src/models/ProductClassLiteResourceArrayResponse.ts +73 -0
- package/src/models/ProductClassResource.ts +2 -2
- package/src/models/SearchAllOrdersRequest.ts +8 -0
- package/src/models/SearchAllProductClassesRequest.ts +125 -0
- package/src/models/SearchOrdersRequest.ts +8 -0
- package/src/models/StoreFrontendResource.ts +5 -5
- package/src/models/StoreListResource.ts +3 -2
- package/src/models/StoreResource.ts +2 -3
- package/src/models/SupplierFrontendResource.ts +9 -0
- package/src/models/SupplierResource.ts +9 -0
- package/src/models/UpdatePageComponentRequest.ts +8 -8
- package/src/models/UpdateSupplierRequest.ts +8 -0
- package/src/models/index.ts +4 -0
package/.openapi-generator/FILES
CHANGED
|
@@ -365,6 +365,7 @@ docs/PaginatedProductChildLiteResourceResponse.md
|
|
|
365
365
|
docs/PaginatedProductChildOverlayRelationResourceResponse.md
|
|
366
366
|
docs/PaginatedProductChildRelationResourceResponse.md
|
|
367
367
|
docs/PaginatedProductChildResourceResponse.md
|
|
368
|
+
docs/PaginatedProductClassLiteResourceResponse.md
|
|
368
369
|
docs/PaginatedProductListResourceResponse.md
|
|
369
370
|
docs/PaginatedProductLiteResourceResponse.md
|
|
370
371
|
docs/PaginatedProductRangeFrontendListResourceResponse.md
|
|
@@ -452,6 +453,9 @@ docs/ProductChildSiteDetailLiteResource.md
|
|
|
452
453
|
docs/ProductChildSiteDetailLiteResourceArrayResponse.md
|
|
453
454
|
docs/ProductChildSiteDetailResource.md
|
|
454
455
|
docs/ProductChildSiteDetailResourceArrayResponse.md
|
|
456
|
+
docs/ProductClassApi.md
|
|
457
|
+
docs/ProductClassLiteResource.md
|
|
458
|
+
docs/ProductClassLiteResourceArrayResponse.md
|
|
455
459
|
docs/ProductClassResource.md
|
|
456
460
|
docs/ProductClassResourceArrayResponse.md
|
|
457
461
|
docs/ProductCompareResource.md
|
|
@@ -572,6 +576,7 @@ docs/SearchAllPagesRequest.md
|
|
|
572
576
|
docs/SearchAllPermissionsRequest.md
|
|
573
577
|
docs/SearchAllProductCategoriesRequest.md
|
|
574
578
|
docs/SearchAllProductChildrenRequest.md
|
|
579
|
+
docs/SearchAllProductClassesRequest.md
|
|
575
580
|
docs/SearchAllProductRangesRequest.md
|
|
576
581
|
docs/SearchAllProductRegistrationsRequest.md
|
|
577
582
|
docs/SearchAllProductTypesRequest.md
|
|
@@ -753,6 +758,7 @@ src/apis/PageComponentApi.ts
|
|
|
753
758
|
src/apis/PermissionsApi.ts
|
|
754
759
|
src/apis/ProductApi.ts
|
|
755
760
|
src/apis/ProductCategoryApi.ts
|
|
761
|
+
src/apis/ProductClassApi.ts
|
|
756
762
|
src/apis/ProductRangeApi.ts
|
|
757
763
|
src/apis/ProductRegistrationApi.ts
|
|
758
764
|
src/apis/ProductTypeApi.ts
|
|
@@ -1109,6 +1115,7 @@ src/models/PaginatedProductChildLiteResourceResponse.ts
|
|
|
1109
1115
|
src/models/PaginatedProductChildOverlayRelationResourceResponse.ts
|
|
1110
1116
|
src/models/PaginatedProductChildRelationResourceResponse.ts
|
|
1111
1117
|
src/models/PaginatedProductChildResourceResponse.ts
|
|
1118
|
+
src/models/PaginatedProductClassLiteResourceResponse.ts
|
|
1112
1119
|
src/models/PaginatedProductListResourceResponse.ts
|
|
1113
1120
|
src/models/PaginatedProductLiteResourceResponse.ts
|
|
1114
1121
|
src/models/PaginatedProductRangeFrontendListResourceResponse.ts
|
|
@@ -1193,6 +1200,8 @@ src/models/ProductChildSiteDetailLiteResource.ts
|
|
|
1193
1200
|
src/models/ProductChildSiteDetailLiteResourceArrayResponse.ts
|
|
1194
1201
|
src/models/ProductChildSiteDetailResource.ts
|
|
1195
1202
|
src/models/ProductChildSiteDetailResourceArrayResponse.ts
|
|
1203
|
+
src/models/ProductClassLiteResource.ts
|
|
1204
|
+
src/models/ProductClassLiteResourceArrayResponse.ts
|
|
1196
1205
|
src/models/ProductClassResource.ts
|
|
1197
1206
|
src/models/ProductClassResourceArrayResponse.ts
|
|
1198
1207
|
src/models/ProductCompareResource.ts
|
|
@@ -1307,6 +1316,7 @@ src/models/SearchAllPagesRequest.ts
|
|
|
1307
1316
|
src/models/SearchAllPermissionsRequest.ts
|
|
1308
1317
|
src/models/SearchAllProductCategoriesRequest.ts
|
|
1309
1318
|
src/models/SearchAllProductChildrenRequest.ts
|
|
1319
|
+
src/models/SearchAllProductClassesRequest.ts
|
|
1310
1320
|
src/models/SearchAllProductRangesRequest.ts
|
|
1311
1321
|
src/models/SearchAllProductRegistrationsRequest.ts
|
|
1312
1322
|
src/models/SearchAllProductTypesRequest.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.2359
|
|
2
2
|
|
|
3
3
|
A TypeScript SDK client for the localhost API.
|
|
4
4
|
|
|
@@ -230,6 +230,7 @@ All URIs are relative to *http://localhost/api*
|
|
|
230
230
|
*ProductCategoryApi* | [**showProductCategory**](docs/ProductCategoryApi.md#showproductcategory) | **GET** /admin-api/product-category/{productCategory} | Auto-generated: showProductCategory
|
|
231
231
|
*ProductCategoryApi* | [**storeProductCategory**](docs/ProductCategoryApi.md#storeproductcategory) | **POST** /admin-api/product-category/create | Auto-generated: storeProductCategory
|
|
232
232
|
*ProductCategoryApi* | [**updateProductCategory**](docs/ProductCategoryApi.md#updateproductcategoryoperation) | **PUT** /admin-api/product-category/{productCategory}/update | Auto-generated: updateProductCategory
|
|
233
|
+
*ProductClassApi* | [**getAllProductClass**](docs/ProductClassApi.md#getallproductclass) | **POST** /admin-api/product-class/all | Auto-generated: getAllProductClass
|
|
233
234
|
*ProductRangeApi* | [**attachAccessoriesProductRange**](docs/ProductRangeApi.md#attachaccessoriesproductrange) | **POST** /admin-api/product-range/{productRange}/attach-accessories | Auto-generated: attachAccessoriesProductRange
|
|
234
235
|
*ProductRangeApi* | [**attachAttributesProductRange**](docs/ProductRangeApi.md#attachattributesproductrange) | **POST** /admin-api/product-range/{productRange}/attach-attributes | Auto-generated: attachAttributesProductRange
|
|
235
236
|
*ProductRangeApi* | [**attachDocumentsProductRange**](docs/ProductRangeApi.md#attachdocumentsproductrange) | **POST** /admin-api/product-range/{productRange}/attach-documents | Auto-generated: attachDocumentsProductRange
|
|
@@ -668,6 +669,7 @@ All URIs are relative to *http://localhost/api*
|
|
|
668
669
|
- [PaginatedProductChildOverlayRelationResourceResponse](docs/PaginatedProductChildOverlayRelationResourceResponse.md)
|
|
669
670
|
- [PaginatedProductChildRelationResourceResponse](docs/PaginatedProductChildRelationResourceResponse.md)
|
|
670
671
|
- [PaginatedProductChildResourceResponse](docs/PaginatedProductChildResourceResponse.md)
|
|
672
|
+
- [PaginatedProductClassLiteResourceResponse](docs/PaginatedProductClassLiteResourceResponse.md)
|
|
671
673
|
- [PaginatedProductListResourceResponse](docs/PaginatedProductListResourceResponse.md)
|
|
672
674
|
- [PaginatedProductLiteResourceResponse](docs/PaginatedProductLiteResourceResponse.md)
|
|
673
675
|
- [PaginatedProductRangeFrontendListResourceResponse](docs/PaginatedProductRangeFrontendListResourceResponse.md)
|
|
@@ -752,6 +754,8 @@ All URIs are relative to *http://localhost/api*
|
|
|
752
754
|
- [ProductChildSiteDetailLiteResourceArrayResponse](docs/ProductChildSiteDetailLiteResourceArrayResponse.md)
|
|
753
755
|
- [ProductChildSiteDetailResource](docs/ProductChildSiteDetailResource.md)
|
|
754
756
|
- [ProductChildSiteDetailResourceArrayResponse](docs/ProductChildSiteDetailResourceArrayResponse.md)
|
|
757
|
+
- [ProductClassLiteResource](docs/ProductClassLiteResource.md)
|
|
758
|
+
- [ProductClassLiteResourceArrayResponse](docs/ProductClassLiteResourceArrayResponse.md)
|
|
755
759
|
- [ProductClassResource](docs/ProductClassResource.md)
|
|
756
760
|
- [ProductClassResourceArrayResponse](docs/ProductClassResourceArrayResponse.md)
|
|
757
761
|
- [ProductCompareResource](docs/ProductCompareResource.md)
|
|
@@ -866,6 +870,7 @@ All URIs are relative to *http://localhost/api*
|
|
|
866
870
|
- [SearchAllPermissionsRequest](docs/SearchAllPermissionsRequest.md)
|
|
867
871
|
- [SearchAllProductCategoriesRequest](docs/SearchAllProductCategoriesRequest.md)
|
|
868
872
|
- [SearchAllProductChildrenRequest](docs/SearchAllProductChildrenRequest.md)
|
|
873
|
+
- [SearchAllProductClassesRequest](docs/SearchAllProductClassesRequest.md)
|
|
869
874
|
- [SearchAllProductRangesRequest](docs/SearchAllProductRangesRequest.md)
|
|
870
875
|
- [SearchAllProductRegistrationsRequest](docs/SearchAllProductRegistrationsRequest.md)
|
|
871
876
|
- [SearchAllProductTypesRequest](docs/SearchAllProductTypesRequest.md)
|
|
@@ -1031,7 +1036,7 @@ and is automatically generated by the
|
|
|
1031
1036
|
[OpenAPI Generator](https://openapi-generator.tech) project:
|
|
1032
1037
|
|
|
1033
1038
|
- API version: `1.0.0`
|
|
1034
|
-
- Package version: `0.0.
|
|
1039
|
+
- Package version: `0.0.2359`
|
|
1035
1040
|
- Generator version: `7.22.0`
|
|
1036
1041
|
- Build package: `org.openapitools.codegen.languages.TypeScriptFetchClientCodegen`
|
|
1037
1042
|
|
|
@@ -0,0 +1,34 @@
|
|
|
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 * as runtime from '../runtime';
|
|
13
|
+
import { type ProductClassLiteResourceArrayResponse } from '../models/ProductClassLiteResourceArrayResponse';
|
|
14
|
+
import { type SearchAllProductClassesRequest } from '../models/SearchAllProductClassesRequest';
|
|
15
|
+
export interface GetAllProductClassRequest {
|
|
16
|
+
searchAllProductClassesRequest?: SearchAllProductClassesRequest;
|
|
17
|
+
}
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
*/
|
|
21
|
+
export declare class ProductClassApi extends runtime.BaseAPI {
|
|
22
|
+
/**
|
|
23
|
+
* Creates request options for getAllProductClass without sending the request
|
|
24
|
+
*/
|
|
25
|
+
getAllProductClassRequestOpts(requestParameters: GetAllProductClassRequest): Promise<runtime.RequestOpts>;
|
|
26
|
+
/**
|
|
27
|
+
* Auto-generated: getAllProductClass
|
|
28
|
+
*/
|
|
29
|
+
getAllProductClassRaw(requestParameters: GetAllProductClassRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ProductClassLiteResourceArrayResponse>>;
|
|
30
|
+
/**
|
|
31
|
+
* Auto-generated: getAllProductClass
|
|
32
|
+
*/
|
|
33
|
+
getAllProductClass(requestParameters?: GetAllProductClassRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ProductClassLiteResourceArrayResponse>;
|
|
34
|
+
}
|
|
@@ -0,0 +1,139 @@
|
|
|
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
|
+
var __extends = (this && this.__extends) || (function () {
|
|
16
|
+
var extendStatics = function (d, b) {
|
|
17
|
+
extendStatics = Object.setPrototypeOf ||
|
|
18
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
19
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
20
|
+
return extendStatics(d, b);
|
|
21
|
+
};
|
|
22
|
+
return function (d, b) {
|
|
23
|
+
if (typeof b !== "function" && b !== null)
|
|
24
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
25
|
+
extendStatics(d, b);
|
|
26
|
+
function __() { this.constructor = d; }
|
|
27
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
28
|
+
};
|
|
29
|
+
})();
|
|
30
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
31
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
32
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
33
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
34
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
35
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
36
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
37
|
+
});
|
|
38
|
+
};
|
|
39
|
+
var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
40
|
+
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g = Object.create((typeof Iterator === "function" ? Iterator : Object).prototype);
|
|
41
|
+
return g.next = verb(0), g["throw"] = verb(1), g["return"] = verb(2), typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
|
42
|
+
function verb(n) { return function (v) { return step([n, v]); }; }
|
|
43
|
+
function step(op) {
|
|
44
|
+
if (f) throw new TypeError("Generator is already executing.");
|
|
45
|
+
while (g && (g = 0, op[0] && (_ = 0)), _) try {
|
|
46
|
+
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
47
|
+
if (y = 0, t) op = [op[0] & 2, t.value];
|
|
48
|
+
switch (op[0]) {
|
|
49
|
+
case 0: case 1: t = op; break;
|
|
50
|
+
case 4: _.label++; return { value: op[1], done: false };
|
|
51
|
+
case 5: _.label++; y = op[1]; op = [0]; continue;
|
|
52
|
+
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
|
53
|
+
default:
|
|
54
|
+
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
|
55
|
+
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
|
56
|
+
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
|
57
|
+
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
|
58
|
+
if (t[2]) _.ops.pop();
|
|
59
|
+
_.trys.pop(); continue;
|
|
60
|
+
}
|
|
61
|
+
op = body.call(thisArg, _);
|
|
62
|
+
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
|
63
|
+
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
64
|
+
}
|
|
65
|
+
};
|
|
66
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
67
|
+
exports.ProductClassApi = void 0;
|
|
68
|
+
var runtime = require("../runtime");
|
|
69
|
+
var ProductClassLiteResourceArrayResponse_1 = require("../models/ProductClassLiteResourceArrayResponse");
|
|
70
|
+
var SearchAllProductClassesRequest_1 = require("../models/SearchAllProductClassesRequest");
|
|
71
|
+
/**
|
|
72
|
+
*
|
|
73
|
+
*/
|
|
74
|
+
var ProductClassApi = /** @class */ (function (_super) {
|
|
75
|
+
__extends(ProductClassApi, _super);
|
|
76
|
+
function ProductClassApi() {
|
|
77
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
78
|
+
}
|
|
79
|
+
/**
|
|
80
|
+
* Creates request options for getAllProductClass without sending the request
|
|
81
|
+
*/
|
|
82
|
+
ProductClassApi.prototype.getAllProductClassRequestOpts = function (requestParameters) {
|
|
83
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
84
|
+
var queryParameters, headerParameters, urlPath;
|
|
85
|
+
return __generator(this, function (_a) {
|
|
86
|
+
queryParameters = {};
|
|
87
|
+
headerParameters = {};
|
|
88
|
+
headerParameters['Content-Type'] = 'application/json';
|
|
89
|
+
urlPath = "/admin-api/product-class/all";
|
|
90
|
+
return [2 /*return*/, {
|
|
91
|
+
path: urlPath,
|
|
92
|
+
method: 'POST',
|
|
93
|
+
headers: headerParameters,
|
|
94
|
+
query: queryParameters,
|
|
95
|
+
body: (0, SearchAllProductClassesRequest_1.SearchAllProductClassesRequestToJSON)(requestParameters['searchAllProductClassesRequest']),
|
|
96
|
+
}];
|
|
97
|
+
});
|
|
98
|
+
});
|
|
99
|
+
};
|
|
100
|
+
/**
|
|
101
|
+
* Auto-generated: getAllProductClass
|
|
102
|
+
*/
|
|
103
|
+
ProductClassApi.prototype.getAllProductClassRaw = function (requestParameters, initOverrides) {
|
|
104
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
105
|
+
var requestOptions, response;
|
|
106
|
+
return __generator(this, function (_a) {
|
|
107
|
+
switch (_a.label) {
|
|
108
|
+
case 0: return [4 /*yield*/, this.getAllProductClassRequestOpts(requestParameters)];
|
|
109
|
+
case 1:
|
|
110
|
+
requestOptions = _a.sent();
|
|
111
|
+
return [4 /*yield*/, this.request(requestOptions, initOverrides)];
|
|
112
|
+
case 2:
|
|
113
|
+
response = _a.sent();
|
|
114
|
+
return [2 /*return*/, new runtime.JSONApiResponse(response, function (jsonValue) { return (0, ProductClassLiteResourceArrayResponse_1.ProductClassLiteResourceArrayResponseFromJSON)(jsonValue); })];
|
|
115
|
+
}
|
|
116
|
+
});
|
|
117
|
+
});
|
|
118
|
+
};
|
|
119
|
+
/**
|
|
120
|
+
* Auto-generated: getAllProductClass
|
|
121
|
+
*/
|
|
122
|
+
ProductClassApi.prototype.getAllProductClass = function () {
|
|
123
|
+
return __awaiter(this, arguments, void 0, function (requestParameters, initOverrides) {
|
|
124
|
+
var response;
|
|
125
|
+
if (requestParameters === void 0) { requestParameters = {}; }
|
|
126
|
+
return __generator(this, function (_a) {
|
|
127
|
+
switch (_a.label) {
|
|
128
|
+
case 0: return [4 /*yield*/, this.getAllProductClassRaw(requestParameters, initOverrides)];
|
|
129
|
+
case 1:
|
|
130
|
+
response = _a.sent();
|
|
131
|
+
return [4 /*yield*/, response.value()];
|
|
132
|
+
case 2: return [2 /*return*/, _a.sent()];
|
|
133
|
+
}
|
|
134
|
+
});
|
|
135
|
+
});
|
|
136
|
+
};
|
|
137
|
+
return ProductClassApi;
|
|
138
|
+
}(runtime.BaseAPI));
|
|
139
|
+
exports.ProductClassApi = ProductClassApi;
|
package/dist/apis/index.d.ts
CHANGED
|
@@ -21,6 +21,7 @@ export * from './PageComponentApi';
|
|
|
21
21
|
export * from './PermissionsApi';
|
|
22
22
|
export * from './ProductApi';
|
|
23
23
|
export * from './ProductCategoryApi';
|
|
24
|
+
export * from './ProductClassApi';
|
|
24
25
|
export * from './ProductRangeApi';
|
|
25
26
|
export * from './ProductRegistrationApi';
|
|
26
27
|
export * from './ProductTypeApi';
|
package/dist/apis/index.js
CHANGED
|
@@ -39,6 +39,7 @@ __exportStar(require("./PageComponentApi"), exports);
|
|
|
39
39
|
__exportStar(require("./PermissionsApi"), exports);
|
|
40
40
|
__exportStar(require("./ProductApi"), exports);
|
|
41
41
|
__exportStar(require("./ProductCategoryApi"), exports);
|
|
42
|
+
__exportStar(require("./ProductClassApi"), exports);
|
|
42
43
|
__exportStar(require("./ProductRangeApi"), exports);
|
|
43
44
|
__exportStar(require("./ProductRegistrationApi"), exports);
|
|
44
45
|
__exportStar(require("./ProductTypeApi"), exports);
|
|
@@ -22,8 +22,6 @@ exports.AddressFrontendResourceToJSONTyped = AddressFrontendResourceToJSONTyped;
|
|
|
22
22
|
* Check if a given object implements the AddressFrontendResource interface.
|
|
23
23
|
*/
|
|
24
24
|
function instanceOfAddressFrontendResource(value) {
|
|
25
|
-
if (!('company' in value) || value['company'] === undefined)
|
|
26
|
-
return false;
|
|
27
25
|
if (!('line1' in value) || value['line1'] === undefined)
|
|
28
26
|
return false;
|
|
29
27
|
if (!('line2' in value) || value['line2'] === undefined)
|
|
@@ -48,7 +46,7 @@ function AddressFrontendResourceFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
48
46
|
return json;
|
|
49
47
|
}
|
|
50
48
|
return {
|
|
51
|
-
'company': json['company'],
|
|
49
|
+
'company': json['company'] == null ? undefined : json['company'],
|
|
52
50
|
'line1': json['line1'],
|
|
53
51
|
'line2': json['line2'],
|
|
54
52
|
'postcode': json['postcode'],
|
|
@@ -27,6 +27,8 @@ var CustomerListResource_1 = require("./CustomerListResource");
|
|
|
27
27
|
function instanceOfCartListResource(value) {
|
|
28
28
|
if (!('source' in value) || value['source'] === undefined)
|
|
29
29
|
return false;
|
|
30
|
+
if (!('expiryDate' in value) || value['expiryDate'] === undefined)
|
|
31
|
+
return false;
|
|
30
32
|
if (!('site' in value) || value['site'] === undefined)
|
|
31
33
|
return false;
|
|
32
34
|
if (!('customer' in value) || value['customer'] === undefined)
|
|
@@ -52,6 +54,7 @@ function CartListResourceFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
52
54
|
'source': json['source'],
|
|
53
55
|
'checkoutCompletedAt': json['checkoutCompletedAt'] == null ? undefined : (new Date(json['checkoutCompletedAt'])),
|
|
54
56
|
'createdAt': json['createdAt'] == null ? undefined : (new Date(json['createdAt'])),
|
|
57
|
+
'expiryDate': (new Date(json['expiryDate'])),
|
|
55
58
|
'site': (0, SiteLiteResource_1.SiteLiteResourceFromJSON)(json['site']),
|
|
56
59
|
'customer': (0, CustomerListResource_1.CustomerListResourceFromJSON)(json['customer']),
|
|
57
60
|
'lineItems': (json['lineItems'] == null ? null : json['lineItems'].map(LineItemListResource_1.LineItemListResourceFromJSON)),
|
|
@@ -73,6 +76,7 @@ function CartListResourceToJSONTyped(value, ignoreDiscriminator) {
|
|
|
73
76
|
'source': value['source'],
|
|
74
77
|
'checkoutCompletedAt': value['checkoutCompletedAt'] == null ? value['checkoutCompletedAt'] : value['checkoutCompletedAt'].toISOString(),
|
|
75
78
|
'createdAt': value['createdAt'] == null ? value['createdAt'] : value['createdAt'].toISOString(),
|
|
79
|
+
'expiryDate': value['expiryDate'].toISOString(),
|
|
76
80
|
'site': (0, SiteLiteResource_1.SiteLiteResourceToJSON)(value['site']),
|
|
77
81
|
'customer': (0, CustomerListResource_1.CustomerListResourceToJSON)(value['customer']),
|
|
78
82
|
'lineItems': (value['lineItems'] == null ? null : value['lineItems'].map(LineItemListResource_1.LineItemListResourceToJSON)),
|
|
@@ -21,6 +21,8 @@ export declare const CategoryAutomationFieldType: {
|
|
|
21
21
|
readonly Tag: "tag";
|
|
22
22
|
readonly Supplier: "supplier";
|
|
23
23
|
readonly Label: "label";
|
|
24
|
+
readonly ProductType: "product_type";
|
|
25
|
+
readonly ProductClass: "product_class";
|
|
24
26
|
};
|
|
25
27
|
export type CategoryAutomationFieldType = typeof CategoryAutomationFieldType[keyof typeof CategoryAutomationFieldType];
|
|
26
28
|
export declare function instanceOfCategoryAutomationFieldType(value: any): boolean;
|
|
@@ -30,7 +30,9 @@ exports.CategoryAutomationFieldType = {
|
|
|
30
30
|
Attribute: 'attribute',
|
|
31
31
|
Tag: 'tag',
|
|
32
32
|
Supplier: 'supplier',
|
|
33
|
-
Label: 'label'
|
|
33
|
+
Label: 'label',
|
|
34
|
+
ProductType: 'product_type',
|
|
35
|
+
ProductClass: 'product_class'
|
|
34
36
|
};
|
|
35
37
|
function instanceOfCategoryAutomationFieldType(value) {
|
|
36
38
|
for (var key in exports.CategoryAutomationFieldType) {
|
|
@@ -48,16 +48,16 @@ export interface CreatePageComponentRequest {
|
|
|
48
48
|
order?: number;
|
|
49
49
|
/**
|
|
50
50
|
*
|
|
51
|
-
* @type {
|
|
51
|
+
* @type {string}
|
|
52
52
|
* @memberof CreatePageComponentRequest
|
|
53
53
|
*/
|
|
54
|
-
startDate?:
|
|
54
|
+
startDate?: string | null;
|
|
55
55
|
/**
|
|
56
56
|
*
|
|
57
|
-
* @type {
|
|
57
|
+
* @type {string}
|
|
58
58
|
* @memberof CreatePageComponentRequest
|
|
59
59
|
*/
|
|
60
|
-
endDate?:
|
|
60
|
+
endDate?: string | null;
|
|
61
61
|
/**
|
|
62
62
|
*
|
|
63
63
|
* @type {object}
|
|
@@ -44,8 +44,8 @@ function CreatePageComponentRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
44
44
|
'type': json['type'],
|
|
45
45
|
'disabled': json['disabled'] == null ? undefined : json['disabled'],
|
|
46
46
|
'order': json['order'] == null ? undefined : json['order'],
|
|
47
|
-
'startDate': json['start_date'] == null ? undefined :
|
|
48
|
-
'endDate': json['end_date'] == null ? undefined :
|
|
47
|
+
'startDate': json['start_date'] == null ? undefined : json['start_date'],
|
|
48
|
+
'endDate': json['end_date'] == null ? undefined : json['end_date'],
|
|
49
49
|
'componentData': json['component_data'] == null ? undefined : json['component_data'],
|
|
50
50
|
'relations': json['relations'] == null ? undefined : (json['relations'].map(CreatePageComponentRequestRelationsInner_1.CreatePageComponentRequestRelationsInnerFromJSON)),
|
|
51
51
|
};
|
|
@@ -64,8 +64,8 @@ function CreatePageComponentRequestToJSONTyped(value, ignoreDiscriminator) {
|
|
|
64
64
|
'type': value['type'],
|
|
65
65
|
'disabled': value['disabled'],
|
|
66
66
|
'order': value['order'],
|
|
67
|
-
'start_date': value['startDate']
|
|
68
|
-
'end_date': value['endDate']
|
|
67
|
+
'start_date': value['startDate'],
|
|
68
|
+
'end_date': value['endDate'],
|
|
69
69
|
'component_data': value['componentData'],
|
|
70
70
|
'relations': value['relations'] == null ? undefined : (value['relations'].map(CreatePageComponentRequestRelationsInner_1.CreatePageComponentRequestRelationsInnerToJSON)),
|
|
71
71
|
};
|
|
@@ -63,6 +63,8 @@ export declare const CreateProductCategoryRequestAutomationRulesInnerFieldTypeEn
|
|
|
63
63
|
readonly Tag: "tag";
|
|
64
64
|
readonly Supplier: "supplier";
|
|
65
65
|
readonly Label: "label";
|
|
66
|
+
readonly ProductType: "product_type";
|
|
67
|
+
readonly ProductClass: "product_class";
|
|
66
68
|
};
|
|
67
69
|
export type CreateProductCategoryRequestAutomationRulesInnerFieldTypeEnum = typeof CreateProductCategoryRequestAutomationRulesInnerFieldTypeEnum[keyof typeof CreateProductCategoryRequestAutomationRulesInnerFieldTypeEnum];
|
|
68
70
|
/**
|
|
@@ -29,7 +29,9 @@ exports.CreateProductCategoryRequestAutomationRulesInnerFieldTypeEnum = {
|
|
|
29
29
|
Attribute: 'attribute',
|
|
30
30
|
Tag: 'tag',
|
|
31
31
|
Supplier: 'supplier',
|
|
32
|
-
Label: 'label'
|
|
32
|
+
Label: 'label',
|
|
33
|
+
ProductType: 'product_type',
|
|
34
|
+
ProductClass: 'product_class'
|
|
33
35
|
};
|
|
34
36
|
/**
|
|
35
37
|
* @export
|
|
@@ -35,6 +35,12 @@ export interface CreateSupplierRequest {
|
|
|
35
35
|
* @memberof CreateSupplierRequest
|
|
36
36
|
*/
|
|
37
37
|
supplierEta: number;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {boolean}
|
|
41
|
+
* @memberof CreateSupplierRequest
|
|
42
|
+
*/
|
|
43
|
+
productEnquiriesOnly?: boolean;
|
|
38
44
|
/**
|
|
39
45
|
*
|
|
40
46
|
* @type {Array<CreateBlogCategoryRequestSeoInner>}
|
|
@@ -47,6 +47,7 @@ function CreateSupplierRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
47
47
|
'name': json['name'],
|
|
48
48
|
'slug': json['slug'],
|
|
49
49
|
'supplierEta': json['supplier_eta'],
|
|
50
|
+
'productEnquiriesOnly': json['product_enquiries_only'] == null ? undefined : json['product_enquiries_only'],
|
|
50
51
|
'seo': (json['seo'].map(CreateBlogCategoryRequestSeoInner_1.CreateBlogCategoryRequestSeoInnerFromJSON)),
|
|
51
52
|
'altText': json['alt_text'] == null ? undefined : json['alt_text'],
|
|
52
53
|
'mimeType': json['mime_type'] == null ? undefined : json['mime_type'],
|
|
@@ -68,6 +69,7 @@ function CreateSupplierRequestToJSONTyped(value, ignoreDiscriminator) {
|
|
|
68
69
|
'name': value['name'],
|
|
69
70
|
'slug': value['slug'],
|
|
70
71
|
'supplier_eta': value['supplierEta'],
|
|
72
|
+
'product_enquiries_only': value['productEnquiriesOnly'],
|
|
71
73
|
'seo': (value['seo'].map(CreateBlogCategoryRequestSeoInner_1.CreateBlogCategoryRequestSeoInnerToJSON)),
|
|
72
74
|
'alt_text': value['altText'],
|
|
73
75
|
'mime_type': value['mimeType'],
|
|
@@ -91,6 +91,12 @@ export interface FrontendCartResource {
|
|
|
91
91
|
* @memberof FrontendCartResource
|
|
92
92
|
*/
|
|
93
93
|
subtotal: number;
|
|
94
|
+
/**
|
|
95
|
+
*
|
|
96
|
+
* @type {number}
|
|
97
|
+
* @memberof FrontendCartResource
|
|
98
|
+
*/
|
|
99
|
+
subtotalAfterDiscounts: number;
|
|
94
100
|
/**
|
|
95
101
|
*
|
|
96
102
|
* @type {number}
|
|
@@ -121,6 +127,18 @@ export interface FrontendCartResource {
|
|
|
121
127
|
* @memberof FrontendCartResource
|
|
122
128
|
*/
|
|
123
129
|
transitInsurance: number;
|
|
130
|
+
/**
|
|
131
|
+
*
|
|
132
|
+
* @type {number}
|
|
133
|
+
* @memberof FrontendCartResource
|
|
134
|
+
*/
|
|
135
|
+
deliveryShippingQuote: number;
|
|
136
|
+
/**
|
|
137
|
+
*
|
|
138
|
+
* @type {number}
|
|
139
|
+
* @memberof FrontendCartResource
|
|
140
|
+
*/
|
|
141
|
+
transitInsuranceQuote: number;
|
|
124
142
|
/**
|
|
125
143
|
*
|
|
126
144
|
* @type {number}
|
|
@@ -44,6 +44,8 @@ function instanceOfFrontendCartResource(value) {
|
|
|
44
44
|
return false;
|
|
45
45
|
if (!('subtotal' in value) || value['subtotal'] === undefined)
|
|
46
46
|
return false;
|
|
47
|
+
if (!('subtotalAfterDiscounts' in value) || value['subtotalAfterDiscounts'] === undefined)
|
|
48
|
+
return false;
|
|
47
49
|
if (!('promotionalDiscount' in value) || value['promotionalDiscount'] === undefined)
|
|
48
50
|
return false;
|
|
49
51
|
if (!('couponSubtotalDiscount' in value) || value['couponSubtotalDiscount'] === undefined)
|
|
@@ -54,6 +56,10 @@ function instanceOfFrontendCartResource(value) {
|
|
|
54
56
|
return false;
|
|
55
57
|
if (!('transitInsurance' in value) || value['transitInsurance'] === undefined)
|
|
56
58
|
return false;
|
|
59
|
+
if (!('deliveryShippingQuote' in value) || value['deliveryShippingQuote'] === undefined)
|
|
60
|
+
return false;
|
|
61
|
+
if (!('transitInsuranceQuote' in value) || value['transitInsuranceQuote'] === undefined)
|
|
62
|
+
return false;
|
|
57
63
|
if (!('gst' in value) || value['gst'] === undefined)
|
|
58
64
|
return false;
|
|
59
65
|
if (!('grandTotal' in value) || value['grandTotal'] === undefined)
|
|
@@ -80,11 +86,14 @@ function FrontendCartResourceFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
80
86
|
'lineItems': (json['lineItems'] == null ? null : json['lineItems'].map(FrontendLineItemResource_1.FrontendLineItemResourceFromJSON)),
|
|
81
87
|
'coupons': (json['coupons'].map(FrontendCartResourceCouponsInner_1.FrontendCartResourceCouponsInnerFromJSON)),
|
|
82
88
|
'subtotal': json['subtotal'],
|
|
89
|
+
'subtotalAfterDiscounts': json['subtotalAfterDiscounts'],
|
|
83
90
|
'promotionalDiscount': json['promotionalDiscount'],
|
|
84
91
|
'couponSubtotalDiscount': json['couponSubtotalDiscount'],
|
|
85
92
|
'couponShippingDiscount': json['couponShippingDiscount'],
|
|
86
93
|
'shipping': json['shipping'],
|
|
87
94
|
'transitInsurance': json['transitInsurance'],
|
|
95
|
+
'deliveryShippingQuote': json['deliveryShippingQuote'],
|
|
96
|
+
'transitInsuranceQuote': json['transitInsuranceQuote'],
|
|
88
97
|
'gst': json['gst'],
|
|
89
98
|
'grandTotal': json['grandTotal'],
|
|
90
99
|
};
|
|
@@ -110,11 +119,14 @@ function FrontendCartResourceToJSONTyped(value, ignoreDiscriminator) {
|
|
|
110
119
|
'lineItems': (value['lineItems'] == null ? null : value['lineItems'].map(FrontendLineItemResource_1.FrontendLineItemResourceToJSON)),
|
|
111
120
|
'coupons': (value['coupons'].map(FrontendCartResourceCouponsInner_1.FrontendCartResourceCouponsInnerToJSON)),
|
|
112
121
|
'subtotal': value['subtotal'],
|
|
122
|
+
'subtotalAfterDiscounts': value['subtotalAfterDiscounts'],
|
|
113
123
|
'promotionalDiscount': value['promotionalDiscount'],
|
|
114
124
|
'couponSubtotalDiscount': value['couponSubtotalDiscount'],
|
|
115
125
|
'couponShippingDiscount': value['couponShippingDiscount'],
|
|
116
126
|
'shipping': value['shipping'],
|
|
117
127
|
'transitInsurance': value['transitInsurance'],
|
|
128
|
+
'deliveryShippingQuote': value['deliveryShippingQuote'],
|
|
129
|
+
'transitInsuranceQuote': value['transitInsuranceQuote'],
|
|
118
130
|
'gst': value['gst'],
|
|
119
131
|
'grandTotal': value['grandTotal'],
|
|
120
132
|
};
|
|
@@ -45,13 +45,13 @@ export interface OrderFulfillmentResource {
|
|
|
45
45
|
* @type {string}
|
|
46
46
|
* @memberof OrderFulfillmentResource
|
|
47
47
|
*/
|
|
48
|
-
trackingUrl
|
|
48
|
+
trackingUrl: string;
|
|
49
49
|
/**
|
|
50
50
|
*
|
|
51
51
|
* @type {string}
|
|
52
52
|
* @memberof OrderFulfillmentResource
|
|
53
53
|
*/
|
|
54
|
-
trackingCompany
|
|
54
|
+
trackingCompany: string;
|
|
55
55
|
/**
|
|
56
56
|
*
|
|
57
57
|
* @type {string}
|
|
@@ -31,6 +31,10 @@ function instanceOfOrderFulfillmentResource(value) {
|
|
|
31
31
|
return false;
|
|
32
32
|
if (!('trackingNumber' in value) || value['trackingNumber'] === undefined)
|
|
33
33
|
return false;
|
|
34
|
+
if (!('trackingUrl' in value) || value['trackingUrl'] === undefined)
|
|
35
|
+
return false;
|
|
36
|
+
if (!('trackingCompany' in value) || value['trackingCompany'] === undefined)
|
|
37
|
+
return false;
|
|
34
38
|
if (!('docnum' in value) || value['docnum'] === undefined)
|
|
35
39
|
return false;
|
|
36
40
|
if (!('netsuiteId' in value) || value['netsuiteId'] === undefined)
|
|
@@ -51,8 +55,8 @@ function OrderFulfillmentResourceFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
51
55
|
'orderId': json['orderId'],
|
|
52
56
|
'dateShipped': (new Date(json['dateShipped'])),
|
|
53
57
|
'trackingNumber': json['trackingNumber'],
|
|
54
|
-
'trackingUrl': json['trackingUrl']
|
|
55
|
-
'trackingCompany': json['trackingCompany']
|
|
58
|
+
'trackingUrl': json['trackingUrl'],
|
|
59
|
+
'trackingCompany': json['trackingCompany'],
|
|
56
60
|
'docnum': json['docnum'],
|
|
57
61
|
'netsuiteId': json['netsuiteId'],
|
|
58
62
|
'createdAt': json['createdAt'] == null ? undefined : (new Date(json['createdAt'])),
|
|
@@ -27,6 +27,18 @@ export interface OrderStatusWithCountResource {
|
|
|
27
27
|
* @memberof OrderStatusWithCountResource
|
|
28
28
|
*/
|
|
29
29
|
name: string;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof OrderStatusWithCountResource
|
|
34
|
+
*/
|
|
35
|
+
shortName: string;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {number}
|
|
39
|
+
* @memberof OrderStatusWithCountResource
|
|
40
|
+
*/
|
|
41
|
+
displayOrder: number;
|
|
30
42
|
/**
|
|
31
43
|
*
|
|
32
44
|
* @type {boolean}
|