Merge branch 'master' into SMS-4444-Brand-Usecase

This commit is contained in:
NirmitiJain 2022-11-09 16:02:13 +05:30 committed by GitHub
commit 42380401ab
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 3 deletions

View file

@ -13,7 +13,7 @@ jobs:
strategy:
matrix:
node-version: [6.x, 7.x, 8.x, 9.x, 10.x, 11.x, 12.x, 13.x, 14.x, 15.x]
node-version: [8.x, 9.x, 10.x, 11.x, 12.x, 13.x, 14.x, 15.x, 16.x]
steps:
- uses: actions/checkout@v2
@ -29,7 +29,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [15.x]
node-version: [16.x]
steps:
- uses: actions/checkout@v2

View file

@ -4,6 +4,10 @@
**Brand Usecase Request**
- Brand Usecase Request endpoint added
## [v4.34.3](https://github.com/plivo/plivo-go/tree/v4.34.3) (2022-11-07)
**Bug fix - List all Endpoint**
- Removed duplicate responses
## [v4.34.2](https://github.com/plivo/plivo-go/tree/v4.34.2) (2022-10-17)
**List Endpoint query param support**
- Adding limit and offset to fetch list of endpoints.

View file

@ -198,7 +198,6 @@ export class EndpointInterface extends PlivoResourceInterface {
response.body.objects.forEach(item => {
objects.push(new ListAllEndpointResponse(item, client));
});
console.log(objects)
resolve(objects);
})
.catch(error => {