ngx-sp-auth 4.20.7 → 4.20.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/auth.service.d.ts
CHANGED
|
@@ -23,9 +23,10 @@ export declare class AuthService {
|
|
|
23
23
|
private _customEnvironmentService;
|
|
24
24
|
private _indexedDBService;
|
|
25
25
|
private _pendingWarning;
|
|
26
|
-
private readonly _BASE_URL;
|
|
27
26
|
private readonly _AUTH_BASE_URL;
|
|
27
|
+
private readonly _BASE_URL;
|
|
28
28
|
private readonly _BASE_OS_URL;
|
|
29
|
+
private readonly _LOGOUT_BASE_URL;
|
|
29
30
|
private readonly _HTTP_HEADERS;
|
|
30
31
|
private ip;
|
|
31
32
|
private city;
|
|
@@ -59,7 +60,7 @@ export declare class AuthService {
|
|
|
59
60
|
* @returns Observable com os dados do login realizado, seja erro ou sucesso
|
|
60
61
|
*/
|
|
61
62
|
loginOS(parmsLogin: LoginForm, serialV6: string): Observable<RetLogin>;
|
|
62
|
-
/** Realiza o logout do sistema,
|
|
63
|
+
/** Realiza o logout do sistema, consumindo o endpoint de logout para remover os cookies e limpando as informações de autenticação armazenadas no localStorage. */
|
|
63
64
|
logout(): void;
|
|
64
65
|
validateAuthentication2Fa(code: string): Observable<RetLogin>;
|
|
65
66
|
GetNewCode2Fa(): Observable<RetError>;
|