Skip to content

Commit

Permalink
Merge pull request #282 from plivo/VT-5183
Browse files Browse the repository at this point in the history
Vt 5183
  • Loading branch information
eniyavan-muruganantham-plivo authored Apr 11, 2023
2 parents 0de6790 + 357374e commit 26db545
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand All @@ -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)

Expand Down
6 changes: 4 additions & 2 deletions lib/resources/call.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
}

Expand All @@ -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
}
}

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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": [
Expand Down

0 comments on commit 26db545

Please sign in to comment.