From e743937c4480da04414713ffa62fea02c25e1295 Mon Sep 17 00:00:00 2001 From: puneet Agrawal Date: Mon, 6 Feb 2023 15:51:01 +0530 Subject: [PATCH 1/5] added the new source ip to get call request --- CHANGELOG.md | 3 +++ lib/resources/call.js | 6 ++++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 09abdfdc..88d62d0c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,7 @@ # Change Log +## [4.39.1](https://github.com/plivo/plivo-node/tree/v4.39.1) (2023-02-06) +**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.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** 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 } } From 8f4643ed95b73251317acdbb2d6d5a1b8385e215 Mon Sep 17 00:00:00 2001 From: puneet Agrawal Date: Mon, 6 Feb 2023 15:51:30 +0530 Subject: [PATCH 2/5] updated the package version --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 384ba559..eeae3156 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "plivo", - "version": "4.39.0", + "version": "4.39.1", "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": [ From 1d60293a72c81d47b1d7633e86207a41a009caa8 Mon Sep 17 00:00:00 2001 From: puneet Agrawal Date: Mon, 6 Feb 2023 17:07:18 +0530 Subject: [PATCH 3/5] fixed the change log --- CHANGELOG.md | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 88d62d0c..128bc51e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,5 @@ # Change Log -## [4.39.1](https://github.com/plivo/plivo-node/tree/v4.39.1) (2023-02-06) +## [4.40.0](https://github.com/plivo/plivo-node/tree/v4.40.0) (2023-02-06) **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) diff --git a/package.json b/package.json index eeae3156..b5271071 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "plivo", - "version": "4.39.1", + "version": "4.40.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": [ From 4d6f1c4bc1822ed1a2851edbfd1868e5e10b207b Mon Sep 17 00:00:00 2001 From: puneet Agrawal Date: Mon, 6 Feb 2023 18:17:07 +0530 Subject: [PATCH 4/5] fixed change log --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 128bc51e..9fbb9b1b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,9 @@ # Change Log -## [4.40.0](https://github.com/plivo/plivo-node/tree/v4.40.0) (2023-02-06) +## [v4.40.0](https://github.com/plivo/plivo-node/tree/v4.40.0) (2023-02-06) **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.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) From 9cec12d3cec1d017df0a4403467c4f7ebbc2e58c Mon Sep 17 00:00:00 2001 From: eniyavan Date: Tue, 11 Apr 2023 15:26:14 +0530 Subject: [PATCH 5/5] added version changes --- CHANGELOG.md | 5 +++++ package.json | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b7a387d4..b129d9e1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,9 @@ # 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. 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": [