diff --git a/index.js b/index.js index 508eecf..3fbf29c 100644 --- a/index.js +++ b/index.js @@ -19,7 +19,6 @@ module.exports = class MovileMessaging { // GETs getStatus(id) { const query = qs.stringify({ id }); - console.warn(query); return this.instance.get('/sms-status?' + query); } @@ -29,7 +28,6 @@ module.exports = class MovileMessaging { searchReceived(start, end) { const query = qs.stringify({ start, end }); - console.warn(query); return this.instance.get('/sms/receive/search?' + query); } diff --git a/package.json b/package.json index eb40d2e..5e44556 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "movile-messaging", - "version": "1.1.0", + "version": "1.1.1", "description": "Simple node.js wrapper for Movile's Messaging API", "repository": "vspedr/movile-messaging", "main": "index.js",