Releases: myparcelnl/sdk
Releases · myparcelnl/sdk
v2.0.7
v2.0.5
v2.0.4
v2.1.0-beta.4
Features
- Implement multi collo (only for flespakket.nl and not for myparcel.nl)
v2.0.3
v2.0.2
v2.0.1-beta.1
v1.5.1
v2.0.0
Features
- Implement Laravel collections and helpers
Improvements
- #78 fix reference ids having to be unique
- Performance boost for multiple shipments (up to 3 times faster)
Things that no longer work
- Set consignment by reference.
Example:
$myParcelCollection->addConsignment($consignment);
$myParcelCollection->createConcepts()->setLatestData();
$consignment->getStatus();
Now you need to re-collect the consignment
$myParcelCollection->addConsignment($consignment);
$consignment = $myParcelCollection->createConcepts()->setLatestData()->first();
$consignment->getStatus();