@cbm-common/cbm-types 0.0.129 → 0.0.131

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.
@@ -7,4 +7,5 @@ export declare class CbmAuthReactiveService {
7
7
  init(): Promise<void>;
8
8
  private subObservers;
9
9
  private refreshTokensFromStorage;
10
+ private loadTokensFromStorage;
10
11
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cbm-common/cbm-types",
3
- "version": "0.0.129",
3
+ "version": "0.0.131",
4
4
  "main": "index.js",
5
5
  "types": "public-api.d.ts",
6
6
  "exports": {
package/public-api.d.ts CHANGED
@@ -475,4 +475,8 @@ export * from './lib/domain/services/global-state.domain.service';
475
475
  export * from './lib/components/pms-add-charge/pms-add-charge';
476
476
 
477
477
  //#region client card component
478
- export * from './lib/components/client-card/client-card.component';
478
+ export * from './lib/components/client-card/client-card.component';
479
+
480
+ //#region auth reactive service
481
+ export * from './lib/domain/services/auth-reactive.domain.service';
482
+ export * from './lib/domain/models/auth-reactive.domain.model';
@@ -1,3 +0,0 @@
1
- import { Router } from "@angular/router";
2
- import { CbmAuthService } from "../../domain/services/auth/auth.service";
3
- export declare function authFactory(router: Router): CbmAuthService;
@@ -1,4 +0,0 @@
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;
@@ -1,3 +0,0 @@
1
- export * from "../domain/services/notification/notification.service";
2
- export * from "./services/auth.service";
3
- export * from "./services/web-socket.service";