Releases: kinimodmeyer/tradebyte-sdk-php
Releases · kinimodmeyer/tradebyte-sdk-php
Tradebyte SDK 0.4.0
- Deprecation of method Tradebyte\Stock\Handler::updateStockFromStockList
- Deprecation of using Tradebyte\Stock\Model\Stock as parameter object-array with method Tradebyte\Stock\Handler::updateStock
- Added stock update support for several warehouses #13
$stockHandler->updateStock([
(new Tradebyte\Stock\Model\StockUpdate())
->setArticleNumber('12345')
->setStock(6)
]);
or
$stockHandler->updateStock([
(new Tradebyte\Stock\Model\StockUpdate())
->setArticleNumber('12345')
->addStockForWarehouse('zentrallager', 10)
->addStockForWarehouse('aussenlager', 5)
]);
Tradebyte SDK 0.3.3
- PHP8.2 & PHP8.3 compatibility
Tradebyte SDK 0.3.2
- fix stock handler to avoid type error - #11
Tradebyte SDK 0.3.1
- Implement PHP strict_types
- Upgrade PHPUnit to 9
- Change Message Deduction to float
Tradebyte SDK 0.3.0
- PHP8 compatibility
- Remove php7.3 support
- Use a more specific user agent for SDK
Tradebyte SDK 0.2.1
Changes
#5 - add order item field channelSku by @sbaumeister
Tradebyte SDK 0.2.0
v0.2.0 change examples to PSR12
Tradebyte SDK 0.1.0
v0.1.0 adding phpcs file and squiz.commenting.variablecomment