@cbm-common/cbm-types 0.0.143 → 0.0.145
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/components/branch-card/branch-card.d.ts +1 -1
- package/lib/domain/models/module.domain.model.d.ts +1 -0
- package/lib/remotes/services/auth.service.d.ts +3 -0
- package/lib/remotes/services/web-socket.service.d.ts +4 -0
- package/lib/remotes/services.remote.d.ts +3 -0
- package/package.json +1 -1
- package/public-api.d.ts +13 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ActivatedRoute, Router } from '@angular/router';
|
|
2
2
|
import { CbmAuthReactiveService } from '../../domain/services/auth-reactive.domain.service';
|
|
3
3
|
export declare class CbmBranchCardComponent {
|
|
4
4
|
private readonly router;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { ApplicationRef } from "@angular/core";
|
|
2
|
+
import { Router } from "@angular/router";
|
|
3
|
+
import { CbmWebSocketService } from "../../domain/services/web-socket/web-socket.service";
|
|
4
|
+
export declare function webSocketFactory(appRef: ApplicationRef, router: Router): CbmWebSocketService;
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -479,4 +479,16 @@ export * from './lib/components/client-card/client-card.component';
|
|
|
479
479
|
|
|
480
480
|
//#region auth reactive service
|
|
481
481
|
export * from './lib/domain/services/auth-reactive.domain.service';
|
|
482
|
-
export * from './lib/domain/models/auth-reactive.domain.model';
|
|
482
|
+
export * from './lib/domain/models/auth-reactive.domain.model';
|
|
483
|
+
|
|
484
|
+
//#region forbiden
|
|
485
|
+
export * from './lib/components/forbidden/forbidden';
|
|
486
|
+
|
|
487
|
+
//#region not-found
|
|
488
|
+
export * from './lib/components/not-found/not-found';
|
|
489
|
+
|
|
490
|
+
//#region items detail
|
|
491
|
+
export * from './lib/components/item-details/item-details';
|
|
492
|
+
|
|
493
|
+
//#region service detail
|
|
494
|
+
export * from './lib/components/service-details/service-details';
|