idosell 0.4.30 → 0.4.34
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/changelog.md +14 -1
- package/dist/enums.d.ts +426 -404
- package/dist/enums.js +9 -1
- package/dist/gates.js +1 -1
- package/dist/gateways.d.ts +8 -6
- package/dist/helpers.js +1 -1
- package/dist/methods/getProductsBrands.js +1 -1
- package/dist/methods/getProductsCategories.js +1 -1
- package/dist/methods/getRegulationsHistory.js +5 -0
- package/dist/methods/getReturns.js +1 -1
- package/dist/methods/getWarranties.js +1 -1
- package/dist/methods/getWmsStocksdocumentsProducts.js +1 -1
- package/dist/methods/searchClientsNewsletterEmail.js +1 -1
- package/dist/methods/searchClientsNewsletterSms.js +1 -1
- package/dist/reqparams.d.ts +1 -1
- package/dist/request.js +12 -13
- package/dist/responses.d.ts +316 -28
- package/dist/utils.d.ts +34 -41
- package/dist/utils.js +1 -1
- package/package.json +1 -1
- package/tests/utilMapAllProductCodes.test.js +0 -3
package/changelog.md
CHANGED
|
@@ -5,7 +5,20 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
-
## [0.4.
|
|
8
|
+
## [0.4.34] - 2025-05-27
|
|
9
|
+
### Fixed
|
|
10
|
+
- Reusing idosell object unintentionally copied some fields
|
|
11
|
+
- Requiremens check failed on falsy (0 or empty string), not only fails when undefined or null
|
|
12
|
+
|
|
13
|
+
### Changed
|
|
14
|
+
- Fixed missing types
|
|
15
|
+
|
|
16
|
+
## [0.4.32] - 2025-05-19
|
|
17
|
+
### Changed
|
|
18
|
+
- Fixed some latest types
|
|
19
|
+
- Fxied paging
|
|
20
|
+
|
|
21
|
+
## [0.4.30] - 2025-05-07
|
|
9
22
|
### Changed
|
|
10
23
|
- Updated to Idosell Rest API v8.1
|
|
11
24
|
- Some methods removed from api v8.1, still availible through v7 enpoints - version is enforced for those enpoints
|