Skip to content

Commit

Permalink
Merge pull request #318 from plivo/VT-6446
Browse files Browse the repository at this point in the history
VT-6446: Fix for "Unable to build TypeScript on Version"
  • Loading branch information
manjunath-plivo authored Sep 1, 2023
2 parents c65472d + 97dc6f3 commit 9688457
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 6 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
# Change Log

## [v4.56.2](https://github.com/plivo/plivo-node/tree/v4.56.2) (2023-09-01)
**Bug fix - Unable to build TypeScript on Version 4.56.0**
- Fix TypeScript build error

## [v4.56.1](https://github.com/plivo/plivo-node/tree/v4.56.1) (2023-09-01)
**Bug Fix - unrent powerpack number**
- Fix for Error: invalid powerpack number delete request (400) - Unrent Powerpack Number


## [v4.56.0](https://github.com/plivo/plivo-node/tree/v4.56.0) (2023-08-25)
**Feature - Added New Param 'carrier_fees', 'carrier_fees_rate', 'destination_network' in Get Message and List Message APIs**
- Added new params on message get and list response
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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.56.1",
"version": "4.56.2",
"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
8 changes: 6 additions & 2 deletions types/resources/maskingSession.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ export class MaskingSessionInterface extends PlivoResourceInterface {
* @returns {Promise<PlivoGenericResponse>} - Resolves to a PlivoGenericResponse object
* @throws {Error} - Throws an error if the list masking sessions request fails
*/
listMaskingSession(params ? : {}): Promise < ListMaskingSessionResponse > ;
listMaskingSession(params ? : {}): Promise < ListMaskingSessionResponse > ;

/**
* Get a masking session
Expand All @@ -159,4 +159,8 @@ export class MaskingSessionInterface extends PlivoResourceInterface {
* @fail {Error} returns Error
*/
deleteMaskingSession(sessionUuid: string): Promise < DeleteMaskingSessionResponse > ;
}
}
import {
PlivoResource,
PlivoResourceInterface
} from "../base";

0 comments on commit 9688457

Please sign in to comment.