new lib version [CI SKIP]
This commit is contained in:
10
dist/services/AuthService.d.ts
vendored
10
dist/services/AuthService.d.ts
vendored
@@ -15,23 +15,23 @@ export declare class AuthService {
|
||||
* Login
|
||||
* Create a new access token object
|
||||
* @param requestBody CreateAuth
|
||||
* @result any
|
||||
* @returns any
|
||||
* @throws ApiError
|
||||
*/
|
||||
static authControllerLogin(requestBody?: CreateAuth): Promise<(Auth | InvalidCredentialsError | UserNotFoundError | UsernameOrEmailNeededError | PasswordNeededError | InvalidCredentialsError)>;
|
||||
static authControllerLogin(requestBody?: CreateAuth): Promise<(Auth | InvalidCredentialsError | UserNotFoundError | UsernameOrEmailNeededError | PasswordNeededError)>;
|
||||
/**
|
||||
* Logout
|
||||
* Create a new access token object
|
||||
* @param requestBody HandleLogout
|
||||
* @result any
|
||||
* @returns any
|
||||
* @throws ApiError
|
||||
*/
|
||||
static authControllerLogout(requestBody?: HandleLogout): Promise<(Logout | InvalidCredentialsError | UserNotFoundError | UsernameOrEmailNeededError | PasswordNeededError | InvalidCredentialsError)>;
|
||||
static authControllerLogout(requestBody?: HandleLogout): Promise<(Logout | InvalidCredentialsError | UserNotFoundError | UsernameOrEmailNeededError | PasswordNeededError)>;
|
||||
/**
|
||||
* Refresh
|
||||
* refresh a access token
|
||||
* @param requestBody RefreshAuth
|
||||
* @result any
|
||||
* @returns any
|
||||
* @throws ApiError
|
||||
*/
|
||||
static authControllerRefresh(requestBody?: RefreshAuth): Promise<(Auth | JwtNotProvidedError | IllegalJWTError | UserNotFoundError | RefreshTokenCountInvalidError)>;
|
||||
|
||||
Reference in New Issue
Block a user