This repository has been archived by the owner on Jun 24, 2024. It is now read-only.
v1.0.0
02-28-2019 06:27 PST
This release has breaking changes. The underlying transport library was changed from request to gaxios. Any response
objects returned via the API will now return a GaxiosResponse
object.
Old Code
.on('response', function (resp, metadata) {
console.log(resp.statusCode);
})
New Code
.on('response', function (resp) {
console.log(resp.status);
});
Implementation Changes
- fix: replace request with gaxios (#174)