@cbm-common/cbm-types 0.0.8 → 0.0.9
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 +1 -1
- package/public-api.d.ts +12 -18
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -1,29 +1,23 @@
|
|
|
1
1
|
//#region auth service
|
|
2
|
-
export
|
|
3
|
-
export
|
|
2
|
+
export { LOCAL_STORAGE_KEY } from './lib/domain/services/auth/auth.model';
|
|
3
|
+
export type { CbmAuthService } from './lib/domain/services/auth/auth.service';
|
|
4
4
|
|
|
5
5
|
//#region company repository
|
|
6
|
-
export
|
|
7
|
-
export
|
|
6
|
+
export type { CbmCompanyDomainRepository } from './lib/domain/repositories/company.domain.repository';
|
|
7
|
+
export { CbmCompanyModel } from './lib/domain/models/company.domain.model';
|
|
8
8
|
|
|
9
9
|
//#region modal confirm
|
|
10
|
-
export
|
|
11
|
-
export
|
|
10
|
+
export type { CbmModalConfirmComponent } from './lib/components/modal-confirm/modal-confirm';
|
|
11
|
+
export { CbmModalConfirmModel } from './lib/components/modal-confirm/types';
|
|
12
12
|
|
|
13
13
|
//#region notification service
|
|
14
|
-
export
|
|
15
|
-
export
|
|
14
|
+
export { CbmAlertData } from './lib/domain/services/notification/notification.model';
|
|
15
|
+
export type { CbmNotificationService } from './lib/domain/services/notification/notification.service';
|
|
16
16
|
|
|
17
17
|
//#region web socket service
|
|
18
|
-
export
|
|
19
|
-
export
|
|
20
|
-
|
|
21
|
-
//#region tooltip directive
|
|
22
|
-
export * from './lib/directives/tooltip/tooltip.directive';
|
|
23
|
-
|
|
24
|
-
//#region error translate directive
|
|
25
|
-
export * from './lib/pipes/error-translate-pipe/error-translate-pipe';
|
|
18
|
+
export { CbmWebSocketModel } from './lib/domain/services/web-socket/web-socket.model';
|
|
19
|
+
export type { CbmWebSocketService } from './lib/domain/services/web-socket/web-socket.service';
|
|
26
20
|
|
|
27
21
|
//#region user repository
|
|
28
|
-
export
|
|
29
|
-
export
|
|
22
|
+
export type { CbmUserDomainRepository } from './lib/domain/repositories/user.domain.repository';
|
|
23
|
+
export { CbmUserModel } from './lib/domain/models/user.domain.model';
|