Comparing version 4.52.0 to 4.53.0
# Change Log | ||
## [4.52.0](https://github.com/plivo/plivo-python/tree/v4.52.0) (2023-07-31) | ||
## [4.53.0](https://github.com/plivo/plivo-node/tree/v4.53.0) (2023-08-03) | ||
**Feature - DLT parameters** | ||
- Added new params `DLTEntityID`, `DLTTemplateID`, `DLTTemplateCategory` to the [send message API](https://www.plivo.com/docs/sms/api/message/send-a-message/) | ||
- Added new params `DLTEntityID`, `DLTTemplateID`, `DLTTemplateCategory` 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) | ||
## [4.52.0](https://github.com/plivo/plivo-node/tree/v4.52.0) (2023-07-31) | ||
**Feature - Number Masking** | ||
- Added Create, Delete, Update, Get and List Masking Session API | ||
## [v4.51.0](https://github.com/plivo/plivo-go/tree/v4.51.0) (2023-07-07) | ||
## [v4.51.0](https://github.com/plivo/plivo-node/tree/v4.51.0) (2023-07-07) | ||
**Fix Intermediate GET request failure** | ||
- GET API request body removed | ||
## [v4.50.0](https://github.com/plivo/plivo-go/tree/v4.50.0) (2023-06-28) | ||
## [v4.50.0](https://github.com/plivo/plivo-node/tree/v4.50.0) (2023-06-28) | ||
**Feature - Audio Streaming** | ||
@@ -85,19 +90,19 @@ - `Audio Stream over Call` added API to start and stop streaming on a live call and get details of running or stopped streams. Also implemented the ability to generate stream XML. | ||
## [v4.34.3](https://github.com/plivo/plivo-go/tree/v4.34.3) (2022-11-07) | ||
## [v4.34.3](https://github.com/plivo/plivo-node/tree/v4.34.3) (2022-11-07) | ||
**Bug fix - List all Endpoint** | ||
- Removed duplicate responses | ||
## [v4.34.2](https://github.com/plivo/plivo-go/tree/v4.34.2) (2022-10-17) | ||
## [v4.34.2](https://github.com/plivo/plivo-node/tree/v4.34.2) (2022-10-17) | ||
**List Endpoint query param support** | ||
- Adding limit and offset to fetch list of endpoints. | ||
## [v4.34.1](https://github.com/plivo/plivo-go/tree/v4.34.1) (2022-09-28) | ||
## [v4.34.1](https://github.com/plivo/plivo-node/tree/v4.34.1) (2022-09-28) | ||
**10DLC campaign creation** | ||
- Adding more attributes to campaign creation request. | ||
## [v4.34.0](https://github.com/plivo/plivo-go/tree/v4.34.0) (2022-08-07) | ||
## [v4.34.0](https://github.com/plivo/plivo-node/tree/v4.34.0) (2022-08-07) | ||
**Feature - Token Creation** | ||
- `JWT Token Creation API` added API to create a new JWT token. | ||
## [v4.33.0](https://github.com/plivo/plivo-go/tree/v4.33.0) (2022-07-11) | ||
## [v4.33.0](https://github.com/plivo/plivo-node/tree/v4.33.0) (2022-07-11) | ||
**Feature - STIR Attestation** | ||
@@ -104,0 +109,0 @@ - Add stir attestation param as part of Get CDR and Get live call APIs Response |
@@ -69,2 +69,5 @@ 'use strict'; | ||
this.replacedSender = params.replacedSender; | ||
this.dltEntityID = params.dltEntityId; | ||
this.dltTemplateID = params.dltTemplateId; | ||
this.dltTemplateCategory = params.dltTemplateCategory; | ||
}; | ||
@@ -95,2 +98,5 @@ | ||
this.replacedSender = params.replacedSender; | ||
this.dltEntityID = params.dltEntityId; | ||
this.dltTemplateID = params.dltTemplateId; | ||
this.dltTemplateCategory = params.dltTemplateCategory; | ||
}; | ||
@@ -211,2 +217,5 @@ | ||
* @param {boolean} [optionalParams.log] If set to false, the content of this message will not be logged on the Plivo infrastructure and the dst value will be masked (e.g., 141XXXXX528). Default is set to true. | ||
* @param {string} [optionalParams.dlt_entity_id] This is the DLT entity id passed in the message request. | ||
* @param {string} [optionalParams.dlt_template_id] This is the DLT template id passed in the message request. | ||
* @param {string} [optionalParams.dlt_template_category] This is the DLT template category passed in the message request. | ||
* @promise {object} return {@link PlivoGenericMessage} object if success | ||
@@ -234,2 +243,5 @@ * @fail {Error} return Error | ||
* @param {Array} [optionalParams.media_urls] For sending mms, specify the media urls in list of string | ||
* @param {string} [optionalParams.dlt_entity_id] This is the DLT entity id passed in the message request. | ||
* @param {string} [optionalParams.dlt_template_id] This is the DLT template id passed in the message request. | ||
* @param {string} [optionalParams.dlt_template_category] This is the DLT template category passed in the message request. | ||
* @promise {object} return {@link PlivoGenericMessage} object if success | ||
@@ -255,2 +267,5 @@ * @fail {Error} return Error | ||
var messageExpiry = src.messageExpiry; | ||
var dlt_entity_id = src.dlt_entity_id; | ||
var dlt_template_id = src.dlt_template_id; | ||
var dlt_template_category = src.dlt_template_category; | ||
var src = src.src; | ||
@@ -310,2 +325,11 @@ } | ||
} | ||
if (dlt_entity_id) { | ||
params.dlt_entity_id = dlt_entity_id; | ||
} | ||
if (dlt_template_id) { | ||
params.dlt_template_id = dlt_template_id; | ||
} | ||
if (dlt_template_category) { | ||
params.dlt_template_category = dlt_template_category; | ||
} | ||
} | ||
@@ -312,0 +336,0 @@ |
{ | ||
"name": "plivo", | ||
"version": "4.52.0", | ||
"version": "4.53.0", | ||
"description": "A Node.js SDK to make voice calls and send SMS using Plivo and to generate Plivo XML", | ||
@@ -5,0 +5,0 @@ "homepage": "https://github.com/plivo/plivo-node", |
Sorry, the diff of this file is too big to display
811336
17481