@cbm-common/cbm-types 0.0.11 → 0.0.12
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 +20 -0
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -6,6 +6,26 @@ export * from './lib/domain/services/auth/auth.service';
|
|
|
6
6
|
export * from './lib/domain/repositories/company.domain.repository';
|
|
7
7
|
export * from './lib/domain/models/company.domain.model';
|
|
8
8
|
|
|
9
|
+
//#region service repository
|
|
10
|
+
export * from './lib/domain/repositories/service.domain.repository';
|
|
11
|
+
export * from './lib/domain/models/service.domain.model';
|
|
12
|
+
|
|
13
|
+
//#region service outsourcing repository
|
|
14
|
+
export * from './lib/domain/repositories/service-outsourcing.domain.repository';
|
|
15
|
+
export * from './lib/domain/models/service-outsourcing.domain.model';
|
|
16
|
+
|
|
17
|
+
//#region sri history repository
|
|
18
|
+
export * from './lib/domain/repositories/sri-history.domain.repository';
|
|
19
|
+
export * from './lib/domain/models/sri-history.domain.model';
|
|
20
|
+
|
|
21
|
+
//#region history repository
|
|
22
|
+
export * from './lib/domain/repositories/history.domain.repository';
|
|
23
|
+
export * from './lib/domain/models/history.domain.model';
|
|
24
|
+
|
|
25
|
+
//#region email settings repository
|
|
26
|
+
export * from './lib/domain/repositories/email-settings.domain.repository';
|
|
27
|
+
export * from './lib/domain/models/email-settings.domain.model';
|
|
28
|
+
|
|
9
29
|
//#region modal confirm
|
|
10
30
|
export * from './lib/components/modal-confirm/modal-confirm';
|
|
11
31
|
export * from './lib/components/modal-confirm/types';
|