new lib version [CI SKIP]

This commit is contained in:
2020-12-22 14:30:44 +00:00
parent 284f3303c3
commit 52ac2efc67
66 changed files with 799 additions and 122 deletions

View File

@@ -7,7 +7,7 @@ class AuthService {
* Login
* Create a new access token object
* @param requestBody CreateAuth
* @result any
* @returns any
* @throws ApiError
*/
static async authControllerLogin(requestBody) {
@@ -22,7 +22,7 @@ class AuthService {
* Logout
* Create a new access token object
* @param requestBody HandleLogout
* @result any
* @returns any
* @throws ApiError
*/
static async authControllerLogout(requestBody) {
@@ -37,7 +37,7 @@ class AuthService {
* Refresh
* refresh a access token
* @param requestBody RefreshAuth
* @result any
* @returns any
* @throws ApiError
*/
static async authControllerRefresh(requestBody) {