new-front-common-library 18.0.2-REF2 → 18.0.2-REF3
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/util/component/header/settings/settings.component.mjs +3 -3
- package/esm2022/lib/util/component/notification/notification-bar.component.mjs +3 -3
- package/esm2022/lib/util/services/auth/auth.service.mjs +1 -1
- package/esm2022/lib/util/services/notification/notification.service.mjs +4 -8
- package/fesm2022/new-front-common-library.mjs +7 -11
- package/fesm2022/new-front-common-library.mjs.map +1 -1
- package/lib/util/services/auth/auth.service.d.ts +1 -1
- package/lib/util/services/notification/notification.service.d.ts +0 -2
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Observable } from 'rxjs';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class AuthService {
|
|
4
|
-
private
|
|
4
|
+
private isAuthenticatedSubject;
|
|
5
5
|
isAuthenticated$: Observable<boolean>;
|
|
6
6
|
setAuthenticated(isAuthenticated: boolean): void;
|
|
7
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<AuthService, never>;
|
|
@@ -13,11 +13,9 @@ export declare class NotificationService {
|
|
|
13
13
|
private readonly localStorage;
|
|
14
14
|
readonly authService: AuthService;
|
|
15
15
|
user: UserModel;
|
|
16
|
-
apiUrl: string;
|
|
17
16
|
private stompClient;
|
|
18
17
|
private readonly notificationSubject;
|
|
19
18
|
notifications$: import("rxjs").Observable<NotificationModel>;
|
|
20
|
-
private readonly connectionSubject;
|
|
21
19
|
constructor(config: Config, notificationApiService: NotificationApiService, localStorage: LocalStorageService, authService: AuthService);
|
|
22
20
|
ackNotification(notification: NotificationModel): void;
|
|
23
21
|
private fetchLiveNotifications;
|