tango-app-ui-shared 3.6.0-cookie-2 → 3.6.0-plano-3
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/esm2022/lib/interceptors/http-auth-interceptor.mjs +67 -144
- package/esm2022/lib/modules/layout/sidebar/sidebar-menu/sidebar-menu.component.mjs +3 -3
- package/esm2022/lib/services/auth.service.mjs +2 -30
- package/fesm2022/tango-app-ui-shared.mjs +70 -175
- package/fesm2022/tango-app-ui-shared.mjs.map +1 -1
- package/lib/interceptors/http-auth-interceptor.d.ts +0 -1
- package/lib/services/auth.service.d.ts +0 -5
- package/package.json +1 -1
|
@@ -14,7 +14,6 @@ export declare class HttpAuthInterceptor implements HttpInterceptor {
|
|
|
14
14
|
constructor(gs: GlobalStateService, authService: AuthService, router: Router);
|
|
15
15
|
intercept(request: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>>;
|
|
16
16
|
private handle401Error;
|
|
17
|
-
private forceLogout;
|
|
18
17
|
static ɵfac: i0.ɵɵFactoryDeclaration<HttpAuthInterceptor, never>;
|
|
19
18
|
static ɵprov: i0.ɵɵInjectableDeclaration<HttpAuthInterceptor>;
|
|
20
19
|
}
|
|
@@ -44,11 +44,6 @@ export declare class AuthService {
|
|
|
44
44
|
getCountry(data: any): Observable<any>;
|
|
45
45
|
getPlanoUsers(): Observable<Object>;
|
|
46
46
|
getHeaderZone(data: any): Observable<any>;
|
|
47
|
-
private base64Encode;
|
|
48
|
-
private base64Decode;
|
|
49
|
-
setCookie(name: string, value: string, days?: number): void;
|
|
50
|
-
getCookie(name: string): string | null;
|
|
51
|
-
deleteCookie(name: string): void;
|
|
52
47
|
static ɵfac: i0.ɵɵFactoryDeclaration<AuthService, never>;
|
|
53
48
|
static ɵprov: i0.ɵɵInjectableDeclaration<AuthService>;
|
|
54
49
|
}
|