@djust-b2b/djust-front-sdk 1.18.4 → 1.18.6
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.
|
@@ -246,7 +246,7 @@ async function createOrderLogisticLineIncident({ logisticOrderId, idType, custom
|
|
|
246
246
|
* @returns {Promise<createOrderLogisticLineIncidentResponse>} A promise resolving to the response containing the created thread's details.
|
|
247
247
|
*/
|
|
248
248
|
async function createOrderLogisticIncidentThread({ logisticOrderId, incidentId, idType, customField, message, name, reasonCode, }) {
|
|
249
|
-
(0, parameters_validation_1.required)({ logisticOrderId, incidentId, reasonCode, message
|
|
249
|
+
(0, parameters_validation_1.required)({ logisticOrderId, incidentId, reasonCode, message });
|
|
250
250
|
const { data } = await (0, fetch_instance_1.enhancedFetch)({
|
|
251
251
|
method: "POST",
|
|
252
252
|
path: `/v2/shop/logistic-orders/${logisticOrderId}/incidents/${incidentId}/threads`,
|
|
@@ -99,6 +99,7 @@ async function getProductsList({ locale, filters, pageable, }) {
|
|
|
99
99
|
locale,
|
|
100
100
|
page: pageable === null || pageable === void 0 ? void 0 : pageable.page,
|
|
101
101
|
size: pageable === null || pageable === void 0 ? void 0 : pageable.size,
|
|
102
|
+
sort: pageable === null || pageable === void 0 ? void 0 : pageable.sort,
|
|
102
103
|
},
|
|
103
104
|
});
|
|
104
105
|
return data;
|