v3.0.0
3.0.0 (2019-11-20)
Bug Fixes
- linter: Fix Arrow function should not return assignment (a73d689)
- package: update cheerio to version 1.0.0-rc.1 (574c6d4)
Features
- migrate to puppeteer (2709bd7)
BREAKING CHANGES
- new output data
Before:
chilexpress('111111111111').then(console.log)
/*
{
orderId: '111111111111',
product: 'Encomienda',
service: 'Dia Habil Siguiente',
status: 'En Proceso De Despacho',
isDeliveried: false,
history: [
{
datetime: Mon Dec 28 2015 11:31:00 GMT+0000 (UTC),
activity: 'En Proceso De Despacho'
}
]
}
*/After:
chilexpress('111111111111').then(console.log);
/*
{
status: 'En Proceso De Despacho',
delivery: {
name: 'XXX XXX',
rut: '0',
date: Mon Dec 28 2015 11:31:00 GMT+0000 (UTC),
signature: ''
},
history: [
{
date: Mon Dec 28 2015 11:31:00 GMT+0000 (UTC),
activity: 'En Proceso De Despacho'
}
],
shipping: {
product: 'Encomienda',
service: 'Dia Habil Siguiente',
date: Mon Dec 28 2015 11:31:00 GMT+0000 (UTC)
}
}
*/