Comparing version 4.33.0 to 4.34.0
# Change Log | ||
## [v4.34.0](https://github.com/plivo/plivo-go/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) | ||
@@ -4,0 +8,0 @@ **Feature - STIR Attestation** |
export class Client { | ||
constructor(authid: string, authToken: string, proxy: string); | ||
calls: CallInterface; | ||
token: TokenInterface; | ||
accounts: AccountInterface; | ||
@@ -29,2 +30,3 @@ subAccounts: SubaccountInterface; | ||
import { CallInterface } from "../resources/call.js"; | ||
import { TokenInterface } from "../resources/token.js"; | ||
import { AccountInterface } from "../resources/accounts.js"; | ||
@@ -31,0 +33,0 @@ import { SubaccountInterface } from "../resources/accounts.js"; |
@@ -12,2 +12,4 @@ 'use strict'; | ||
var _token = require('../resources/token.js'); | ||
var _package = require('../../package.json'); | ||
@@ -95,2 +97,3 @@ | ||
this.calls = new _call.CallInterface(client); | ||
this.token = new _token.TokenInterface(client); | ||
this.accounts = new _accounts.AccountInterface(client); | ||
@@ -97,0 +100,0 @@ this.subAccounts = new _accounts.SubaccountInterface(client); |
@@ -12,2 +12,3 @@ export function Response(): any; | ||
calls: CallInterface; | ||
token: TokenInterface; | ||
accounts: AccountInterface; | ||
@@ -46,2 +47,3 @@ subaccounts: SubaccountInterface; | ||
import { CallInterface } from "../resources/call.js"; | ||
import { TokenInterface } from "../resources/token.js"; | ||
import { AccountInterface } from "../resources/accounts.js"; | ||
@@ -48,0 +50,0 @@ import { SubaccountInterface } from "../resources/accounts.js"; |
@@ -20,2 +20,4 @@ "use strict"; | ||
var _token = require("../resources/token.js"); | ||
var _accounts = require("../resources/accounts"); | ||
@@ -130,2 +132,3 @@ | ||
this.calls = new _call.CallInterface(client); | ||
this.token = new _token.TokenInterface(client); | ||
this.accounts = new _accounts.AccountInterface(client); | ||
@@ -132,0 +135,0 @@ this.subaccounts = this.subAccounts = new _accounts.SubaccountInterface(client); |
{ | ||
"name": "plivo", | ||
"version": "4.33.0", | ||
"version": "4.34.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", |
740190
86
16336