@digital8/lighting-illusions-ts-sdk 0.0.2347 → 0.0.2348
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 +14 -34
- package/README.md +9 -24
- package/dist/apis/ProductClassApi.d.ts +34 -0
- package/dist/apis/ProductClassApi.js +139 -0
- package/dist/apis/index.d.ts +1 -1
- package/dist/apis/index.js +1 -1
- package/dist/models/AddressResource.d.ts +1 -1
- package/dist/models/AddressResource.js +3 -1
- package/dist/models/AdminOrderResource.d.ts +2 -3
- package/dist/models/AdminOrderResource.js +2 -3
- package/dist/models/AppliedCouponResource.d.ts +50 -0
- package/dist/models/{CartCouponResource.js → AppliedCouponResource.js} +13 -13
- package/dist/models/AppliedCouponResourceArrayResponse.d.ts +33 -0
- package/dist/models/AppliedCouponResourceArrayResponse.js +50 -0
- 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/FrontendOrderResource.d.ts +3 -3
- package/dist/models/FrontendOrderResource.js +3 -3
- package/dist/models/OrderFulfillmentResource.d.ts +1 -1
- package/dist/models/OrderFulfillmentResource.js +3 -1
- 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/SearchCartsRequest.d.ts +0 -6
- package/dist/models/SearchCartsRequest.js +0 -2
- package/dist/models/SearchOrdersRequest.d.ts +6 -6
- package/dist/models/SearchOrdersRequest.js +2 -2
- package/dist/models/StoreResource.d.ts +2 -2
- package/dist/models/StoreResource.js +6 -2
- package/dist/models/StoreSpecialDateFrontendResource.d.ts +2 -2
- package/dist/models/StoreSpecialDateFrontendResource.js +3 -1
- package/dist/models/StoreSpecialDateResource.d.ts +2 -2
- package/dist/models/StoreSpecialDateResource.js +3 -1
- 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 +6 -16
- package/dist/models/index.js +6 -16
- package/docs/AdminOrderResource.md +1 -1
- package/docs/{CartCouponResource.md → AppliedCouponResource.md} +4 -4
- package/docs/{CouponLiteResourceArrayResponse.md → AppliedCouponResourceArrayResponse.md} +5 -5
- package/docs/CartListResource.md +2 -0
- package/docs/CreatePageComponentRequest.md +2 -2
- package/docs/CreateSupplierRequest.md +2 -0
- package/docs/FrontendCartResource.md +6 -0
- package/docs/FrontendOrderResource.md +1 -1
- package/docs/OrderStatusWithCountResource.md +4 -0
- package/docs/{PaginatedCouponListResourceResponse.md → PaginatedProductClassLiteResourceResponse.md} +5 -5
- package/docs/ProductClassApi.md +74 -0
- package/docs/{CouponLiteResource.md → ProductClassLiteResource.md} +6 -6
- package/docs/{CartCouponResourceArrayResponse.md → ProductClassLiteResourceArrayResponse.md} +5 -5
- package/docs/ProductClassResource.md +1 -1
- package/docs/SearchAllOrdersRequest.md +2 -0
- package/docs/{SearchAllCouponsRequest.md → SearchAllProductClassesRequest.md} +4 -10
- package/docs/SearchCartsRequest.md +0 -2
- package/docs/SearchOrdersRequest.md +2 -2
- package/docs/StoreSpecialDateFrontendResource.md +1 -1
- package/docs/StoreSpecialDateResource.md +1 -1
- 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 -1
- package/src/models/AddressResource.ts +3 -2
- package/src/models/AdminOrderResource.ts +4 -11
- package/src/models/{CartCouponResource.ts → AppliedCouponResource.ts} +14 -14
- package/src/models/AppliedCouponResourceArrayResponse.ts +73 -0
- 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/FrontendOrderResource.ts +11 -11
- package/src/models/OrderFulfillmentResource.ts +3 -2
- 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/SearchCartsRequest.ts +0 -8
- package/src/models/SearchOrdersRequest.ts +8 -8
- package/src/models/StoreResource.ts +6 -4
- package/src/models/StoreSpecialDateFrontendResource.ts +4 -3
- package/src/models/StoreSpecialDateResource.ts +4 -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 +6 -16
- package/dist/apis/CouponsApi.d.ts +0 -116
- package/dist/apis/CouponsApi.js +0 -440
- package/dist/models/CartCouponResource.d.ts +0 -50
- package/dist/models/CartCouponResourceArrayResponse.d.ts +0 -33
- package/dist/models/CartCouponResourceArrayResponse.js +0 -50
- package/dist/models/CouponListResource.d.ts +0 -99
- package/dist/models/CouponListResource.js +0 -90
- package/dist/models/CouponListResourceArrayResponse.d.ts +0 -33
- package/dist/models/CouponListResourceArrayResponse.js +0 -50
- package/dist/models/CouponLiteResource.d.ts +0 -44
- package/dist/models/CouponLiteResource.js +0 -57
- package/dist/models/CouponLiteResourceArrayResponse.d.ts +0 -33
- package/dist/models/CouponLiteResourceArrayResponse.js +0 -50
- package/dist/models/CouponResource.d.ts +0 -163
- package/dist/models/CouponResource.js +0 -134
- package/dist/models/CouponResourceArrayResponse.d.ts +0 -33
- package/dist/models/CouponResourceArrayResponse.js +0 -50
- package/dist/models/CouponType.d.ts +0 -26
- package/dist/models/CouponType.js +0 -52
- package/dist/models/CreateCouponRequest.d.ts +0 -134
- package/dist/models/CreateCouponRequest.js +0 -114
- package/dist/models/CreateCouponRequestCouponablesInner.d.ts +0 -48
- package/dist/models/CreateCouponRequestCouponablesInner.js +0 -61
- package/dist/models/PaginatedCouponListResourceResponse.d.ts +0 -40
- package/dist/models/PaginatedCouponListResourceResponse.js +0 -57
- package/dist/models/PaginatedCouponResourceResponse.d.ts +0 -40
- package/dist/models/PaginatedCouponResourceResponse.js +0 -57
- package/dist/models/SearchAllCouponsRequest.d.ts +0 -101
- package/dist/models/SearchAllCouponsRequest.js +0 -85
- package/dist/models/SearchCouponsRequest.d.ts +0 -137
- package/dist/models/SearchCouponsRequest.js +0 -97
- package/dist/models/UpdateCouponRequest.d.ts +0 -128
- package/dist/models/UpdateCouponRequest.js +0 -110
- package/docs/CouponListResource.md +0 -56
- package/docs/CouponListResourceArrayResponse.md +0 -34
- package/docs/CouponResource.md +0 -76
- package/docs/CouponResourceArrayResponse.md +0 -34
- package/docs/CouponType.md +0 -32
- package/docs/CouponsApi.md +0 -407
- package/docs/CreateCouponRequest.md +0 -62
- package/docs/CreateCouponRequestCouponablesInner.md +0 -36
- package/docs/PaginatedCouponResourceResponse.md +0 -36
- package/docs/SearchCouponsRequest.md +0 -62
- package/docs/UpdateCouponRequest.md +0 -60
- package/src/apis/CouponsApi.ts +0 -345
- package/src/models/CartCouponResourceArrayResponse.ts +0 -73
- package/src/models/CouponListResource.ts +0 -170
- package/src/models/CouponListResourceArrayResponse.ts +0 -73
- package/src/models/CouponLiteResource.ts +0 -83
- package/src/models/CouponLiteResourceArrayResponse.ts +0 -73
- package/src/models/CouponResource.ts +0 -288
- package/src/models/CouponResourceArrayResponse.ts +0 -73
- package/src/models/CouponType.ts +0 -54
- package/src/models/CreateCouponRequest.ts +0 -216
- package/src/models/CreateCouponRequestCouponablesInner.ts +0 -86
- package/src/models/PaginatedCouponListResourceResponse.ts +0 -90
- package/src/models/PaginatedCouponResourceResponse.ts +0 -90
- package/src/models/SearchAllCouponsRequest.ts +0 -154
- package/src/models/SearchCouponsRequest.ts +0 -202
- package/src/models/UpdateCouponRequest.ts +0 -207
|
@@ -0,0 +1,50 @@
|
|
|
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
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface AppliedCouponResource
|
|
16
|
+
*/
|
|
17
|
+
export interface AppliedCouponResource {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof AppliedCouponResource
|
|
22
|
+
*/
|
|
23
|
+
id: number;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof AppliedCouponResource
|
|
28
|
+
*/
|
|
29
|
+
code: string;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof AppliedCouponResource
|
|
34
|
+
*/
|
|
35
|
+
name: string;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {number}
|
|
39
|
+
* @memberof AppliedCouponResource
|
|
40
|
+
*/
|
|
41
|
+
discountTotal: number;
|
|
42
|
+
}
|
|
43
|
+
/**
|
|
44
|
+
* Check if a given object implements the AppliedCouponResource interface.
|
|
45
|
+
*/
|
|
46
|
+
export declare function instanceOfAppliedCouponResource(value: object): value is AppliedCouponResource;
|
|
47
|
+
export declare function AppliedCouponResourceFromJSON(json: any): AppliedCouponResource;
|
|
48
|
+
export declare function AppliedCouponResourceFromJSONTyped(json: any, ignoreDiscriminator: boolean): AppliedCouponResource;
|
|
49
|
+
export declare function AppliedCouponResourceToJSON(json: any): AppliedCouponResource;
|
|
50
|
+
export declare function AppliedCouponResourceToJSONTyped(value?: AppliedCouponResource | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -13,15 +13,15 @@
|
|
|
13
13
|
* Do not edit the class manually.
|
|
14
14
|
*/
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
-
exports.
|
|
17
|
-
exports.
|
|
18
|
-
exports.
|
|
19
|
-
exports.
|
|
20
|
-
exports.
|
|
16
|
+
exports.instanceOfAppliedCouponResource = instanceOfAppliedCouponResource;
|
|
17
|
+
exports.AppliedCouponResourceFromJSON = AppliedCouponResourceFromJSON;
|
|
18
|
+
exports.AppliedCouponResourceFromJSONTyped = AppliedCouponResourceFromJSONTyped;
|
|
19
|
+
exports.AppliedCouponResourceToJSON = AppliedCouponResourceToJSON;
|
|
20
|
+
exports.AppliedCouponResourceToJSONTyped = AppliedCouponResourceToJSONTyped;
|
|
21
21
|
/**
|
|
22
|
-
* Check if a given object implements the
|
|
22
|
+
* Check if a given object implements the AppliedCouponResource interface.
|
|
23
23
|
*/
|
|
24
|
-
function
|
|
24
|
+
function instanceOfAppliedCouponResource(value) {
|
|
25
25
|
if (!('id' in value) || value['id'] === undefined)
|
|
26
26
|
return false;
|
|
27
27
|
if (!('code' in value) || value['code'] === undefined)
|
|
@@ -32,10 +32,10 @@ function instanceOfCartCouponResource(value) {
|
|
|
32
32
|
return false;
|
|
33
33
|
return true;
|
|
34
34
|
}
|
|
35
|
-
function
|
|
36
|
-
return
|
|
35
|
+
function AppliedCouponResourceFromJSON(json) {
|
|
36
|
+
return AppliedCouponResourceFromJSONTyped(json, false);
|
|
37
37
|
}
|
|
38
|
-
function
|
|
38
|
+
function AppliedCouponResourceFromJSONTyped(json, ignoreDiscriminator) {
|
|
39
39
|
if (json == null) {
|
|
40
40
|
return json;
|
|
41
41
|
}
|
|
@@ -46,10 +46,10 @@ function CartCouponResourceFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
46
46
|
'discountTotal': json['discountTotal'],
|
|
47
47
|
};
|
|
48
48
|
}
|
|
49
|
-
function
|
|
50
|
-
return
|
|
49
|
+
function AppliedCouponResourceToJSON(json) {
|
|
50
|
+
return AppliedCouponResourceToJSONTyped(json, false);
|
|
51
51
|
}
|
|
52
|
-
function
|
|
52
|
+
function AppliedCouponResourceToJSONTyped(value, ignoreDiscriminator) {
|
|
53
53
|
if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
|
|
54
54
|
if (value == null) {
|
|
55
55
|
return value;
|
|
@@ -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 { AppliedCouponResource } from './AppliedCouponResource';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface AppliedCouponResourceArrayResponse
|
|
17
|
+
*/
|
|
18
|
+
export interface AppliedCouponResourceArrayResponse {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {Array<AppliedCouponResource>}
|
|
22
|
+
* @memberof AppliedCouponResourceArrayResponse
|
|
23
|
+
*/
|
|
24
|
+
data?: Array<AppliedCouponResource>;
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* Check if a given object implements the AppliedCouponResourceArrayResponse interface.
|
|
28
|
+
*/
|
|
29
|
+
export declare function instanceOfAppliedCouponResourceArrayResponse(value: object): value is AppliedCouponResourceArrayResponse;
|
|
30
|
+
export declare function AppliedCouponResourceArrayResponseFromJSON(json: any): AppliedCouponResourceArrayResponse;
|
|
31
|
+
export declare function AppliedCouponResourceArrayResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): AppliedCouponResourceArrayResponse;
|
|
32
|
+
export declare function AppliedCouponResourceArrayResponseToJSON(json: any): AppliedCouponResourceArrayResponse;
|
|
33
|
+
export declare function AppliedCouponResourceArrayResponseToJSONTyped(value?: AppliedCouponResourceArrayResponse | 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.instanceOfAppliedCouponResourceArrayResponse = instanceOfAppliedCouponResourceArrayResponse;
|
|
17
|
+
exports.AppliedCouponResourceArrayResponseFromJSON = AppliedCouponResourceArrayResponseFromJSON;
|
|
18
|
+
exports.AppliedCouponResourceArrayResponseFromJSONTyped = AppliedCouponResourceArrayResponseFromJSONTyped;
|
|
19
|
+
exports.AppliedCouponResourceArrayResponseToJSON = AppliedCouponResourceArrayResponseToJSON;
|
|
20
|
+
exports.AppliedCouponResourceArrayResponseToJSONTyped = AppliedCouponResourceArrayResponseToJSONTyped;
|
|
21
|
+
var AppliedCouponResource_1 = require("./AppliedCouponResource");
|
|
22
|
+
/**
|
|
23
|
+
* Check if a given object implements the AppliedCouponResourceArrayResponse interface.
|
|
24
|
+
*/
|
|
25
|
+
function instanceOfAppliedCouponResourceArrayResponse(value) {
|
|
26
|
+
return true;
|
|
27
|
+
}
|
|
28
|
+
function AppliedCouponResourceArrayResponseFromJSON(json) {
|
|
29
|
+
return AppliedCouponResourceArrayResponseFromJSONTyped(json, false);
|
|
30
|
+
}
|
|
31
|
+
function AppliedCouponResourceArrayResponseFromJSONTyped(json, ignoreDiscriminator) {
|
|
32
|
+
if (json == null) {
|
|
33
|
+
return json;
|
|
34
|
+
}
|
|
35
|
+
return {
|
|
36
|
+
'data': json['data'] == null ? undefined : (json['data'].map(AppliedCouponResource_1.AppliedCouponResourceFromJSON)),
|
|
37
|
+
};
|
|
38
|
+
}
|
|
39
|
+
function AppliedCouponResourceArrayResponseToJSON(json) {
|
|
40
|
+
return AppliedCouponResourceArrayResponseToJSONTyped(json, false);
|
|
41
|
+
}
|
|
42
|
+
function AppliedCouponResourceArrayResponseToJSONTyped(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(AppliedCouponResource_1.AppliedCouponResourceToJSON)),
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -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
|
};
|
|
@@ -10,8 +10,8 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import type { FrontendLineItemResource } from './FrontendLineItemResource';
|
|
13
|
-
import type { CartCouponLiteResource } from './CartCouponLiteResource';
|
|
14
13
|
import type { CustomerListResource } from './CustomerListResource';
|
|
14
|
+
import type { FrontendCartResourceCouponsInner } from './FrontendCartResourceCouponsInner';
|
|
15
15
|
import type { AddressResource } from './AddressResource';
|
|
16
16
|
/**
|
|
17
17
|
*
|
|
@@ -99,10 +99,10 @@ export interface FrontendOrderResource {
|
|
|
99
99
|
lineItems: Array<FrontendLineItemResource> | null;
|
|
100
100
|
/**
|
|
101
101
|
*
|
|
102
|
-
* @type {Array<
|
|
102
|
+
* @type {Array<FrontendCartResourceCouponsInner>}
|
|
103
103
|
* @memberof FrontendOrderResource
|
|
104
104
|
*/
|
|
105
|
-
coupons: Array<
|
|
105
|
+
coupons: Array<FrontendCartResourceCouponsInner>;
|
|
106
106
|
/**
|
|
107
107
|
*
|
|
108
108
|
* @type {number}
|
|
@@ -19,8 +19,8 @@ exports.FrontendOrderResourceFromJSONTyped = FrontendOrderResourceFromJSONTyped;
|
|
|
19
19
|
exports.FrontendOrderResourceToJSON = FrontendOrderResourceToJSON;
|
|
20
20
|
exports.FrontendOrderResourceToJSONTyped = FrontendOrderResourceToJSONTyped;
|
|
21
21
|
var FrontendLineItemResource_1 = require("./FrontendLineItemResource");
|
|
22
|
-
var CartCouponLiteResource_1 = require("./CartCouponLiteResource");
|
|
23
22
|
var CustomerListResource_1 = require("./CustomerListResource");
|
|
23
|
+
var FrontendCartResourceCouponsInner_1 = require("./FrontendCartResourceCouponsInner");
|
|
24
24
|
var AddressResource_1 = require("./AddressResource");
|
|
25
25
|
/**
|
|
26
26
|
* Check if a given object implements the FrontendOrderResource interface.
|
|
@@ -91,7 +91,7 @@ function FrontendOrderResourceFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
91
91
|
'shippingAddress': (0, AddressResource_1.AddressResourceFromJSON)(json['shippingAddress']),
|
|
92
92
|
'billingAddress': (0, AddressResource_1.AddressResourceFromJSON)(json['billingAddress']),
|
|
93
93
|
'lineItems': (json['lineItems'] == null ? null : json['lineItems'].map(FrontendLineItemResource_1.FrontendLineItemResourceFromJSON)),
|
|
94
|
-
'coupons': (json['coupons']
|
|
94
|
+
'coupons': (json['coupons'].map(FrontendCartResourceCouponsInner_1.FrontendCartResourceCouponsInnerFromJSON)),
|
|
95
95
|
'subtotal': json['subtotal'],
|
|
96
96
|
'promotionalDiscount': json['promotionalDiscount'],
|
|
97
97
|
'couponSubtotalDiscount': json['couponSubtotalDiscount'],
|
|
@@ -126,7 +126,7 @@ function FrontendOrderResourceToJSONTyped(value, ignoreDiscriminator) {
|
|
|
126
126
|
'shippingAddress': (0, AddressResource_1.AddressResourceToJSON)(value['shippingAddress']),
|
|
127
127
|
'billingAddress': (0, AddressResource_1.AddressResourceToJSON)(value['billingAddress']),
|
|
128
128
|
'lineItems': (value['lineItems'] == null ? null : value['lineItems'].map(FrontendLineItemResource_1.FrontendLineItemResourceToJSON)),
|
|
129
|
-
'coupons': (value['coupons']
|
|
129
|
+
'coupons': (value['coupons'].map(FrontendCartResourceCouponsInner_1.FrontendCartResourceCouponsInnerToJSON)),
|
|
130
130
|
'subtotal': value['subtotal'],
|
|
131
131
|
'promotionalDiscount': value['promotionalDiscount'],
|
|
132
132
|
'couponSubtotalDiscount': value['couponSubtotalDiscount'],
|
|
@@ -29,6 +29,8 @@ function instanceOfOrderFulfillmentResource(value) {
|
|
|
29
29
|
return false;
|
|
30
30
|
if (!('dateShipped' in value) || value['dateShipped'] === undefined)
|
|
31
31
|
return false;
|
|
32
|
+
if (!('trackingUrl' in value) || value['trackingUrl'] === undefined)
|
|
33
|
+
return false;
|
|
32
34
|
if (!('docnum' in value) || value['docnum'] === undefined)
|
|
33
35
|
return false;
|
|
34
36
|
if (!('netsuiteId' in value) || value['netsuiteId'] === undefined)
|
|
@@ -49,7 +51,7 @@ function OrderFulfillmentResourceFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
49
51
|
'orderId': json['orderId'],
|
|
50
52
|
'dateShipped': (new Date(json['dateShipped'])),
|
|
51
53
|
'trackingNumber': json['trackingNumber'] == null ? undefined : json['trackingNumber'],
|
|
52
|
-
'trackingUrl': json['trackingUrl']
|
|
54
|
+
'trackingUrl': json['trackingUrl'],
|
|
53
55
|
'trackingCompany': json['trackingCompany'] == null ? undefined : json['trackingCompany'],
|
|
54
56
|
'docnum': json['docnum'],
|
|
55
57
|
'netsuiteId': json['netsuiteId'],
|
|
@@ -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}
|
|
@@ -26,6 +26,10 @@ function instanceOfOrderStatusWithCountResource(value) {
|
|
|
26
26
|
return false;
|
|
27
27
|
if (!('name' in value) || value['name'] === undefined)
|
|
28
28
|
return false;
|
|
29
|
+
if (!('shortName' in value) || value['shortName'] === undefined)
|
|
30
|
+
return false;
|
|
31
|
+
if (!('displayOrder' in value) || value['displayOrder'] === undefined)
|
|
32
|
+
return false;
|
|
29
33
|
if (!('isOrderNetsuiteSyncable' in value) || value['isOrderNetsuiteSyncable'] === undefined)
|
|
30
34
|
return false;
|
|
31
35
|
if (!('ordersCount' in value) || value['ordersCount'] === undefined)
|
|
@@ -42,6 +46,8 @@ function OrderStatusWithCountResourceFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
42
46
|
return {
|
|
43
47
|
'id': json['id'],
|
|
44
48
|
'name': json['name'],
|
|
49
|
+
'shortName': json['shortName'],
|
|
50
|
+
'displayOrder': json['displayOrder'],
|
|
45
51
|
'isOrderNetsuiteSyncable': json['isOrderNetsuiteSyncable'],
|
|
46
52
|
'ordersCount': json['ordersCount'],
|
|
47
53
|
};
|
|
@@ -57,6 +63,8 @@ function OrderStatusWithCountResourceToJSONTyped(value, ignoreDiscriminator) {
|
|
|
57
63
|
return {
|
|
58
64
|
'id': value['id'],
|
|
59
65
|
'name': value['name'],
|
|
66
|
+
'shortName': value['shortName'],
|
|
67
|
+
'displayOrder': value['displayOrder'],
|
|
60
68
|
'isOrderNetsuiteSyncable': value['isOrderNetsuiteSyncable'],
|
|
61
69
|
'ordersCount': value['ordersCount'],
|
|
62
70
|
};
|
|
@@ -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 { ProductClassLiteResource } from './ProductClassLiteResource';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface PaginatedProductClassLiteResourceResponse
|
|
18
|
+
*/
|
|
19
|
+
export interface PaginatedProductClassLiteResourceResponse {
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @type {Array<ProductClassLiteResource>}
|
|
23
|
+
* @memberof PaginatedProductClassLiteResourceResponse
|
|
24
|
+
*/
|
|
25
|
+
data: Array<ProductClassLiteResource>;
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {PagingMetadata}
|
|
29
|
+
* @memberof PaginatedProductClassLiteResourceResponse
|
|
30
|
+
*/
|
|
31
|
+
meta: PagingMetadata;
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* Check if a given object implements the PaginatedProductClassLiteResourceResponse interface.
|
|
35
|
+
*/
|
|
36
|
+
export declare function instanceOfPaginatedProductClassLiteResourceResponse(value: object): value is PaginatedProductClassLiteResourceResponse;
|
|
37
|
+
export declare function PaginatedProductClassLiteResourceResponseFromJSON(json: any): PaginatedProductClassLiteResourceResponse;
|
|
38
|
+
export declare function PaginatedProductClassLiteResourceResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedProductClassLiteResourceResponse;
|
|
39
|
+
export declare function PaginatedProductClassLiteResourceResponseToJSON(json: any): PaginatedProductClassLiteResourceResponse;
|
|
40
|
+
export declare function PaginatedProductClassLiteResourceResponseToJSONTyped(value?: PaginatedProductClassLiteResourceResponse | null, ignoreDiscriminator?: boolean): any;
|