From 15a1232737ed7227f56bde89e95a00b7ecf648b4 Mon Sep 17 00:00:00 2001 From: Phara0h Date: Wed, 5 May 2021 15:10:10 -0400 Subject: [PATCH] 2.5.2 --- CHANGELOG.md | 8 ++++++++ README.md | 23 ++++++++++++++++++----- package.json | 2 +- 3 files changed, 27 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2f679284..76bae3b8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,15 @@ +#### [v2.5.2](https://github.com/Phara0h/travelling/compare/v2.5.1...v2.5.2) + +- Updated to ignore /health and /metrics logs outs [`e530288`](https://github.com/Phara0h/travelling/commit/e5302887065b9c3c4aaa6bc6ac27f8e8a88b7420) +- Updated SDK [`d52feec`](https://github.com/Phara0h/travelling/commit/d52feec090bd96ccfdd16df1c8f318c7a66bd10f) +- Update Travelling.postman_collection.json [`1435319`](https://github.com/Phara0h/travelling/commit/1435319c14771389a15ed0d4b5939b9d9b7e7dea) + #### [v2.5.1](https://github.com/Phara0h/travelling/compare/v2.5.0...v2.5.1) +> 3 May 2021 + - Update index.js [`12d527f`](https://github.com/Phara0h/travelling/commit/12d527f12609ea9cb90b7c526f0265c3e2fe84f1) #### [v2.5.0](https://github.com/Phara0h/travelling/compare/v2.4.2...v2.5.0) diff --git a/README.md b/README.md index 55ca89d0..2e2bdde3 100644 --- a/README.md +++ b/README.md @@ -2253,7 +2253,7 @@ body * [Users](#Users) * [.byGroupRequest(group_request, authorization_bearer)](#Users.byGroupRequest) - * [.get(authorization_bearer)](#Users.get) + * [.get(sort, limit, filter, sortdir, authorization_bearer)](#Users.get) @@ -2290,7 +2290,7 @@ Path: api/v1/users/group/request/:group_request -### Users.get(authorization_bearer) +### Users.get(sort, limit, filter, sortdir, authorization_bearer) get - Gets all the users ##### Optional Query Params @@ -2318,6 +2318,10 @@ Path: api/v1/users | Param | Type | Description | | --- | --- | --- | +| sort | any | (example: created_on) | +| limit | any | (example: 200) | +| filter | any | (example: locked=false) | +| sortdir | any | (example: ASC) | | authorization_bearer | string | The client_credentials generated OAUth2 access token. | @@ -2326,7 +2330,7 @@ Path: api/v1/users **Kind**: global class -### UsersDomain.get(domain, sort, limit, filter, authorization_bearer) +### UsersDomain.get(domain, sort, limit, filter, sortdir, authorization_bearer) get - Gets all the users ##### Optional Query Params @@ -2354,10 +2358,11 @@ Path: api/v1/users/domain/:domain | Param | Type | Description | | --- | --- | --- | -| domain | any | (example: test) | +| domain | any | (example: dragohmventures.com) | | sort | any | (example: created_on) | -| limit | any | (example: 2) | +| limit | any | (example: 200) | | filter | any | (example: locked=false) | +| sortdir | any | (example: ASC) | | authorization_bearer | string | The client_credentials generated OAUth2 access token. | @@ -3033,8 +3038,16 @@ const { Travelling } = require('./sdk.js')('http://127.0.0.1'); +#### [v2.5.2](https://github.com/Phara0h/travelling/compare/v2.5.1...v2.5.2) + +- Updated to ignore /health and /metrics logs outs [`e530288`](https://github.com/Phara0h/travelling/commit/e5302887065b9c3c4aaa6bc6ac27f8e8a88b7420) +- Updated SDK [`d52feec`](https://github.com/Phara0h/travelling/commit/d52feec090bd96ccfdd16df1c8f318c7a66bd10f) +- Update Travelling.postman_collection.json [`1435319`](https://github.com/Phara0h/travelling/commit/1435319c14771389a15ed0d4b5939b9d9b7e7dea) + #### [v2.5.1](https://github.com/Phara0h/travelling/compare/v2.5.0...v2.5.1) +> 3 May 2021 + - Update index.js [`12d527f`](https://github.com/Phara0h/travelling/commit/12d527f12609ea9cb90b7c526f0265c3e2fe84f1) #### [v2.5.0](https://github.com/Phara0h/travelling/compare/v2.4.2...v2.5.0) diff --git a/package.json b/package.json index 7cb3c188..69a9be75 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "travelling", - "version": "2.5.1", + "version": "2.5.2", "description": "A dynamic route level groups permissions middleman service", "main": "index.js", "scripts": {