Skip to content

Releases: Vonage/vonage-node-sdk

v2.0.2

17 Jul 15:13
Compare
Choose a tag to compare
  • Remove SDK check for valid phone number, instead leaving this to the API
  • Remove SDK check for valid application type, instead leaving this to the API

v2.0.1

21 Mar 13:49
Compare
Choose a tag to compare
  • FIXED: #116 - default setting of retry-after for 429 http status code responses

v2.0.0

20 Mar 23:56
Compare
Choose a tag to compare
  • FIXED: #110 - check the statusCode on the response
  • FIXED: #114 - handle 429 HTTP status codes
  • UPDATED: To allow errors to be programmatically useful the error callback objects has been updated to {statusCode: STATUS_CODE, body: JSON_BODY, headers: HEADERS}

v1.2.0

20 Mar 23:56
Compare
Choose a tag to compare
  • ADDED: Add File API to library. nexmo.files.get and nexmo.files.save.

v1.1.2

20 Mar 23:55
Compare
Choose a tag to compare
  • Fixed: Bug #104 - Fix JSON parsing error

v1.1.1

23 Jan 18:25
Compare
Choose a tag to compare
  • UPDATED: Changed User Agent format to match other libraries
  • FIXED: Bug #88 - Undefined method when missing method declaration

v1.1.0

14 Nov 13:27
Compare
Choose a tag to compare
  • ADDED: nexmo.generateJwt to generate JWT based on instance credentials
  • ADDED: Nexmo.generateJwt static function to generate JWT

v1.0.0

13 Sep 10:28
Compare
Choose a tag to compare
  • ADDED: applicationId and privateKey properties to first constructor parameter to support JWT generation.
  • ADDED: options.logger to constructor 2nd parameter to allow adding customer logger.
  • ADDED: options.appendToUserAgent to constructor 2nd paramater to append custom string to User-Agent header sent to Nexmo.
  • ADDED: nexmo.calls adding support to create, get, update and delete calls.
  • ADDED: nexmo.applications adding support to create, get, update and delete calls.
  • ADDED: Functionality is now namespaced:
    • nexmo.message
    • nexmo.calls
    • nexmo.number
    • nexmo.verify
    • nexmo.numberInsight
    • nexmo.account
    • nexmo.voice - legacy voice functionality
  • CHANGED: var Nexmo = require('nexmo'); returns a class definition which should be created using the new operator e.g. var nexmo = new Nexmo(args...);.
  • REMOVED: var nexmo = require('nexmo'); no longer exposes singleton functions offered by "easynexmo".