diff --git a/lib/rest/rest-entity.js b/lib/rest/rest-entity.js index 6a05a78..d0b9aa1 100644 --- a/lib/rest/rest-entity.js +++ b/lib/rest/rest-entity.js @@ -17,7 +17,6 @@ class RestEntity { async update(sid, opts) { if (this.validators.update) this.validators.update(opts); - console.log({sid, opts}); const res = await this.put(`Accounts/${this.accountSid}/${this.name}/${sid}`, opts); if (res.statusCode === 404) throw new Error(`${this.name}.update: sid ${sid} not found`); if (![202, 204].includes(res.statusCode)) { diff --git a/package.json b/package.json index 6f6b082..c0fdff5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@jambonz/node-client", - "version": "0.2.3", + "version": "0.2.4", "description": "", "main": "lib/index.js", "scripts": {