mirror of
https://github.com/donl/plivo-node.git
synced 2026-05-25 22:07:10 -06:00
confirmTimeout parameter added
This commit is contained in:
parent
343d0dbda1
commit
40d8a8c863
4 changed files with 7 additions and 1 deletions
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -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]
|
||||
|
|
|
|||
|
|
@ -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": [
|
||||
|
|
|
|||
1
types/utils/plivoxml.d.ts
vendored
1
types/utils/plivoxml.d.ts
vendored
|
|
@ -49,6 +49,7 @@ export class Response {
|
|||
callerID?: string;
|
||||
callerName?: string;
|
||||
confirmSound?: string;
|
||||
confirmTimeout?: string;
|
||||
confirmKey?: string;
|
||||
dialMusic?: string;
|
||||
callbackUrl?: string;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue