@djust-b2b/djust-front-sdk 1.20.1 → 1.20.3
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.
|
@@ -78,7 +78,8 @@ async function getCarts(params) {
|
|
|
78
78
|
path: `/v2/shop/carts`,
|
|
79
79
|
params: {
|
|
80
80
|
currency,
|
|
81
|
-
pageable,
|
|
81
|
+
page: pageable === null || pageable === void 0 ? void 0 : pageable.page,
|
|
82
|
+
size: pageable === null || pageable === void 0 ? void 0 : pageable.size,
|
|
82
83
|
status,
|
|
83
84
|
type,
|
|
84
85
|
},
|
|
@@ -18,7 +18,7 @@ export interface UpdateProductReviewParameters {
|
|
|
18
18
|
message: string;
|
|
19
19
|
rating: number;
|
|
20
20
|
}
|
|
21
|
-
declare enum AggregationType {
|
|
21
|
+
export declare enum AggregationType {
|
|
22
22
|
PRODUCT = "PRODUCT",
|
|
23
23
|
VARIANT = "VARIANT"
|
|
24
24
|
}
|
|
@@ -142,4 +142,3 @@ export interface GetProductPaginatedOffersResponse {
|
|
|
142
142
|
totalElements: number;
|
|
143
143
|
totalPages: number;
|
|
144
144
|
}
|
|
145
|
-
export {};
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.AggregationType = void 0;
|
|
3
4
|
var AggregationType;
|
|
4
5
|
(function (AggregationType) {
|
|
5
6
|
AggregationType["PRODUCT"] = "PRODUCT";
|
|
6
7
|
AggregationType["VARIANT"] = "VARIANT";
|
|
7
|
-
})(AggregationType || (AggregationType = {}));
|
|
8
|
+
})(AggregationType || (exports.AggregationType = AggregationType = {}));
|