@cbm-common/cbm-types 0.0.287 → 0.0.288
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.
|
@@ -19,6 +19,7 @@ export declare class RefreshSchedulesDomainService implements OnDestroy {
|
|
|
19
19
|
private userModel;
|
|
20
20
|
private router;
|
|
21
21
|
private authService;
|
|
22
|
+
constructor(userModel: UserCalendarDomainRepository, router: Router, authService: CbmAuthReactiveService);
|
|
22
23
|
private readonly STORAGE_KEY;
|
|
23
24
|
private readonly LAST_CHECK_KEY;
|
|
24
25
|
private readonly CHECK_INTERVAL_MS;
|
|
@@ -31,7 +32,6 @@ export declare class RefreshSchedulesDomainService implements OnDestroy {
|
|
|
31
32
|
onAccessGranted: (() => void) | null;
|
|
32
33
|
onAccessStatusChange: ((result: AccessControlResult) => void) | null;
|
|
33
34
|
get scheduleExpiryWarning$(): Observable<ScheduleExpiryWarning>;
|
|
34
|
-
constructor(userModel: UserCalendarDomainRepository, router: Router, authService: CbmAuthReactiveService);
|
|
35
35
|
ngOnDestroy(): void;
|
|
36
36
|
initUsershecudles(): void;
|
|
37
37
|
/**
|
|
@@ -14,6 +14,8 @@ export declare class CbmWebSocketService {
|
|
|
14
14
|
joinReport(): void;
|
|
15
15
|
refreshSri(): Observable<any>;
|
|
16
16
|
joinSri(): void;
|
|
17
|
+
refresOrderVehicleInformation(): Observable<any>;
|
|
18
|
+
joinOrderVehicleInformation(): void;
|
|
17
19
|
refreshImportExcel(): Observable<any>;
|
|
18
20
|
joinImportExcel(): void;
|
|
19
21
|
logoutAuth<T = CbmWebSocketModel.LogoutAuth>(): Observable<T>;
|