fixed typings for send SMS & Make call api

This commit is contained in:
huzaif-plivo 2021-09-21 21:47:06 +05:30
parent 7caef06b4b
commit 98da71de61
4 changed files with 7 additions and 3 deletions

View file

@ -1,5 +1,9 @@
# Change Log
## [v4.22.3](https://github.com/plivo/plivo-node/tree/v4.22.3) (2021-09-22)
**Bug Fix**
- Fix Typings for `Make call` & `Send SMS` API response.
## [v4.22.2](https://github.com/plivo/plivo-node/tree/v4.22.2) (2021-09-16)
- Typescript import fix.

View file

@ -1,6 +1,6 @@
{
"name": "plivo",
"version": "4.22.2",
"version": "4.22.3",
"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

@ -18,7 +18,7 @@ export class CreateCallResponse {
constructor(params: object);
apiId: string;
message: string;
requestUuid: string;
requestUuid: Array<string>;
}
export class GetQueuedCallResponse {
constructor(params: object);

View file

@ -2,7 +2,7 @@ export class MessageResponse {
constructor(params: object);
apiId: string;
message: string;
messageUuid: string;
messageUuid: Array<string>;
}
export class MessageGetResponse {
constructor(params: object);