dat-registry
Advanced tools
Comparing version 4.0.0 to 4.0.1
var Township = require('township-client') | ||
var qs = require('querystring') | ||
var nets = require('nets') | ||
var xtend = require('xtend') | ||
var xtend = Object.assign | ||
@@ -44,9 +44,9 @@ module.exports = API | ||
resetPassword: function (input, cb) { | ||
nets({method: 'POST', uri: api + '/password-reset', body: input, json: true}, cb) | ||
nets({ method: 'POST', uri: api + '/password-reset', body: input, json: true }, cb) | ||
}, | ||
resetPasswordConfirmation: function (input, cb) { | ||
nets({method: 'POST', uri: api + '/password-reset-confirm', body: input, json: true}, cb) | ||
nets({ method: 'POST', uri: api + '/password-reset-confirm', body: input, json: true }, cb) | ||
}, | ||
suspend: function (input, cb) { | ||
nets({method: 'PUT', uri: api + '/users/suspend', body: input, json: true}, cb) | ||
nets({ method: 'PUT', uri: api + '/users/suspend', body: input, json: true }, cb) | ||
} | ||
@@ -53,0 +53,0 @@ }) |
{ | ||
"name": "dat-registry", | ||
"version": "4.0.0", | ||
"version": "4.0.1", | ||
"description": "dat registry api", | ||
@@ -30,9 +30,8 @@ "main": "index.js", | ||
"nets": "^3.2.0", | ||
"township-client": "^1.3.1", | ||
"xtend": "^4.0.1" | ||
"township-client": "^1.3.2" | ||
}, | ||
"devDependencies": { | ||
"dependency-check": "^2.9.1", | ||
"standard": "^10.0.3" | ||
"dependency-check": "^3.3.0", | ||
"standard": "^12.0.1" | ||
} | ||
} |
7769
2
5
- Removedxtend@^4.0.1
Updatedtownship-client@^1.3.2