5.0.0-beta.2
Pre-release
Pre-release
·
268 commits
to master
since this release
Fixed
-
OrderCloudError was not serializing errors correctly (breaking change). There was a bug where ordercloud errors were incorrectly nested under an additional
Errorsproperty. This has been fixed to match the typescript typeBefore:
catch(exception) { const ordercloudErrors = exception.errors.Errors; }
After:
catch(exception) { const ordercloudErrors = exception.errors; }