A simple module which uses swagger and swagger-js to build an SDK for Westfield APIs
npm install https://github.com/alecraeside/westfield-js-sdk.git --save
var westfield = require("westfield-js-sdk");
westfield.ready(function(api) {
api.get_centres({country:"au"}, function(response) {
console.log("Westfield centres in Australia", response.obj.data);
});
})
- 0.1.0 Initial release