Changelog
3.0.0
This is only a major version bump because we are not longer returning promises when using the callback interface.
xml2js
from 0.4.16
to 0.4.17
Changelog
2.0.0
NOTE: In v2.0.0, we changed the default for xml2js to set explicitArray to false. Before v.2.0.0, you would get a response like this instead (note the extra arrays you have to drill into):
{
ItemSearchResponse: {
OperationRequest: [ [Object] ],
Items: [ [Object] ]
}
}
You can change back to the old behavior by setting explitArray to true like this:
var opHelper = new OperationHelper({
awsId: '[YOUR AWS ID HERE]',
awsSecret: '[YOUR AWS SECRET HERE]',
assocId: '[YOUR ASSOCIATE TAG HERE]',
xml2jsOptions: { explicitArray: true }
});