app.request.put({
});
Because there is no such method. Use just:
app.request({
url: ...
method: 'PUT',
...
})
app.request.put({
});
Because there is no such method. Use just:
app.request({
url: ...
method: 'PUT',
...
})