@cbm-common/cbm-types 0.0.121 → 0.0.122

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cbm-common/cbm-types",
3
- "version": "0.0.121",
3
+ "version": "0.0.122",
4
4
  "main": "index.js",
5
5
  "types": "public-api.d.ts",
6
6
  "exports": {
package/public-api.d.ts CHANGED
@@ -469,4 +469,7 @@ export * from './lib/domain/repositories/down-payment.domain.repository';
469
469
  export * from './lib/domain/models/down-payment.domain.model';
470
470
 
471
471
  //#region global state service
472
- export * from './lib/domain/services/global-state.domain.service';
472
+ export * from './lib/domain/services/global-state.domain.service';
473
+
474
+ //#region pms add charge component
475
+ export * from './lib/components/pms-add-charge/pms-add-charge';
@@ -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";