Skip to content

Commit

Permalink
Merge pull request #269 from plivo/endpoint-response
Browse files Browse the repository at this point in the history
removed duplicate response
  • Loading branch information
manjunath-plivo authored Nov 7, 2022
2 parents 84fb9fa + 43b2832 commit c6350fa
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/unitTests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -29,7 +29,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [15.x]
node-version: [16.x]

steps:
- uses: actions/checkout@v2
Expand Down
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.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.
Expand Down
1 change: 0 additions & 1 deletion lib/resources/endpoints.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 => {
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.34.2",
"version": "4.34.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": [
Expand Down

0 comments on commit c6350fa

Please sign in to comment.