mirror of
https://github.com/donl/plivo-node.git
synced 2026-06-30 06:12:08 -06:00
Merge pull request #189 from plivo/VT-3196
added stirVerification as part of get CDR / live call APIs response
This commit is contained in:
commit
9dad89509c
3 changed files with 7 additions and 1 deletions
|
|
@ -1,5 +1,8 @@
|
|||
# Change Log
|
||||
|
||||
## [4.18.0](https://github.com/plivo/plivo-node/releases/tag/v4.18.0)(2021-06-15)
|
||||
- Added stir verification param as part of Get CDR and live call APIs
|
||||
|
||||
## [4.17.1](https://github.com/plivo/plivo-node/releases/tag/v4.17.1)(2021-05-06)
|
||||
- Added Fix for Adaptive Powerpack Create & Update functions
|
||||
|
||||
|
|
|
|||
|
|
@ -75,6 +75,7 @@ export class GetLiveCallResponse {
|
|||
this.requestUuid = params.requestUuid;
|
||||
this.sessionStart = params.sessionStart;
|
||||
this.to = params.to;
|
||||
this.stirVerification = params.stirVerification;
|
||||
}
|
||||
}
|
||||
export class RetrieveCallResponse {
|
||||
|
|
@ -100,6 +101,7 @@ export class RetrieveCallResponse {
|
|||
this.toNumber = params.toNumber;
|
||||
this.totalAmount = params.totalAmount;
|
||||
this.totalRate = params.totalRate;
|
||||
this.stirVerification = params.stirVerification;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -125,6 +127,7 @@ export class ListAllCallsResponse {
|
|||
this.toNumber = params.toNumber;
|
||||
this.totalAmount = params.totalAmount;
|
||||
this.totalRate = params.totalRate;
|
||||
this.stirVerification = params.stirVerification;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "plivo",
|
||||
"version": "4.17.1",
|
||||
"version": "4.18.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": [
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue