Skip to content

Commit

Permalink
Merge pull request #253 from plivo/issue-252
Browse files Browse the repository at this point in the history
fix response type for make call
  • Loading branch information
huzaif-plivo authored Jun 9, 2022
2 parents 2571942 + 0ac077a commit d0c5254
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## [v4.32.1](https://github.com/plivo/plivo-node/tree/v4.32.1) (2022-06-09)
**Bug fix - Typescript**
- Make a call [API](https://www.plivo.com/docs/voice/api/call/#make-a-call) response to support the parameter `requestUuid` of data types `Array<string>` and `string`.

## [v4.32.0](https://github.com/plivo/plivo-node/tree/v4.32.0) (2022-05-05)
**Features - List all recordings**
- `fromNumber` and `toNumber` added in filtering params [List all recordings](https://www.plivo.com/docs/voice/api/recording#list-all-recordings)
Expand Down
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.32.0",
"version": "4.32.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": [
Expand Down
2 changes: 1 addition & 1 deletion types/resources/call.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export class CreateCallResponse {
constructor(params: object);
apiId: string;
message: string;
requestUuid: Array<string>;
requestUuid: Array<string> | string;
}
export class GetQueuedCallResponse {
constructor(params: object);
Expand Down

0 comments on commit d0c5254

Please sign in to comment.