diff --git a/CHANGELOG.md b/CHANGELOG.md index b7a387d4..5e9021c7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,10 @@ # Change Log + +# Change Log +## [v4.44.0](https://github.com/plivo/plivo-node/tree/v4.44.0) (2023-04-11) +**Feature - Added New Param 'source_ip' in GetCall and ListCalls** +- Add `source_ip` to the response for the [retrieve a call details API](https://www.plivo.com/docs/voice/api/call#retrieve-a-call) and the [retreive all call details API](https://www.plivo.com/docs/voice/api/call#retrieve-all-calls) + ## [4.43.0](https://github.com/plivo/plivo-node/tree/v4.43.0) (2023-03-14) **Adding new status code - Hosted Messaging order** - Added new status code for create hosted messaging order. @@ -16,7 +22,8 @@ **Feature - Enhance MDR filtering capabilities ** - Added new fields on MDR object response -## [4.39.0](https://github.com/plivo/plivo-node/tree/v4.39.0) (2022-01-25) + +## [v4.39.0](https://github.com/plivo/plivo-node/tree/v4.39.0) (2022-01-25) **Feature - Added New Param(requesterIP) in Get Message and List Mssage APIs** - Add `requesterIP` to the response for the [list all messages API](https://www.plivo.com/docs/sms/api/message/list-all-messages/) and the [get message details API](https://www.plivo.com/docs/sms/api/message#retrieve-a-message) diff --git a/lib/resources/call.js b/lib/resources/call.js index 4bc181bb..9702ff33 100644 --- a/lib/resources/call.js +++ b/lib/resources/call.js @@ -103,7 +103,8 @@ export class RetrieveCallResponse { this.totalAmount = params.totalAmount; this.totalRate = params.totalRate; this.stirVerification = params.stirVerification; - this.stirAttestation = params.stirAttestation + this.stirAttestation = params.stirAttestation; + this.sourceIp = params.sourceIp } } @@ -130,7 +131,8 @@ export class ListAllCallsResponse { this.totalAmount = params.totalAmount; this.totalRate = params.totalRate; this.stirVerification = params.stirVerification; - this.stirAttestation = params.stirAttestation + this.stirAttestation = params.stirAttestation; + this.sourceIp = params.sourceIp } } diff --git a/package.json b/package.json index fb2e275d..823cf57b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "plivo", - "version": "4.43.0", + "version": "4.44.0", "description": "A Node.js SDK to make voice calls and send SMS using Plivo and to generate Plivo XML", "homepage": "https://github.com/plivo/plivo-node", "files": [