confirmTimeout parameter added

This commit is contained in:
ajay-plivo 2022-03-03 18:14:30 +05:30
parent 343d0dbda1
commit 40d8a8c863
4 changed files with 7 additions and 1 deletions

View file

@ -1,5 +1,9 @@
# Change Log
## [v4.28.1](https://github.com/plivo/plivo-node/tree/v4.28.1) (2022-03-03)
**Features - DialElement**
- confirmTimeout parameter added in dial element
## [v4.28.0](https://github.com/plivo/plivo-node/tree/v4.28.0) (2022-02-23)
**Features - Numbers: Hosted Messaging API**
- Add support for Hosted Messaging APIs.

View file

@ -130,6 +130,7 @@ Response.prototype = {
* @param {string} [attributes.callerID]
* @param {string} [attributes.callerName]
* @param {string} [attributes.confirmSound]
* @param {string} [attributes.confirmTimeout]
* @param {string} [attributes.confirmKey]
* @param {string} [attributes.dialMusic]
* @param {string} [attributes.callbackUrl]

View file

@ -1,6 +1,6 @@
{
"name": "plivo",
"version": "4.28.0",
"version": "4.28.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": [

View file

@ -49,6 +49,7 @@ export class Response {
callerID?: string;
callerName?: string;
confirmSound?: string;
confirmTimeout?: string;
confirmKey?: string;
dialMusic?: string;
callbackUrl?: string;