mirror of
https://github.com/donl/plivo-node.git
synced 2026-05-25 22:07:10 -06:00
fixed typings for send SMS & Make call api
This commit is contained in:
parent
7caef06b4b
commit
98da71de61
4 changed files with 7 additions and 3 deletions
|
|
@ -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.
|
||||
|
||||
|
|
|
|||
|
|
@ -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": [
|
||||
|
|
|
|||
2
types/resources/call.d.ts
vendored
2
types/resources/call.d.ts
vendored
|
|
@ -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);
|
||||
|
|
|
|||
2
types/resources/messages.d.ts
vendored
2
types/resources/messages.d.ts
vendored
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue