tt-entities 0.0.40 → 0.0.41
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/dist/libs/tatayab-entities-library/entities/app-config.entity.d.ts +5 -0
- package/dist/libs/tatayab-entities-library/entities/app-config.entity.js +28 -0
- package/dist/libs/tatayab-entities-library/entities/app-config.entity.js.map +1 -0
- package/dist/libs/tatayab-entities-library/index.d.ts +1 -0
- package/dist/libs/tatayab-entities-library/index.js +6 -2
- package/dist/libs/tatayab-entities-library/index.js.map +1 -1
- package/dist/src/main.js +45 -3
- package/libs/tatayab-entities-library/src/entities/app-config.entity.ts +9 -0
- package/libs/tatayab-entities-library/src/index.ts +4 -0
- package/package.json +1 -1
|
@@ -12,6 +12,7 @@ import { UserAddress } from './entities/user-address.entity';
|
|
|
12
12
|
import { UserFavorite } from './entities/user-favorite.entity';
|
|
13
13
|
import { UserFavoriteCatalog } from './entities/user-favorite-catalog.entity';
|
|
14
14
|
import { Banner } from './entities/banner.entity';
|
|
15
|
+
import { AppConfig } from './entities/app-config.entity';
|
|
15
16
|
|
|
16
17
|
// ─── Catalogue ────────────────────────────────────────────────────────────────
|
|
17
18
|
import { Category } from './entities/category.entity';
|
|
@@ -99,6 +100,7 @@ export {
|
|
|
99
100
|
BannerStatus,
|
|
100
101
|
BannerFilters,
|
|
101
102
|
} from './entities/banner.entity';
|
|
103
|
+
export { AppConfig } from './entities/app-config.entity';
|
|
102
104
|
|
|
103
105
|
// ─── Catalogue ────────────────────────────────────────────────────────────────
|
|
104
106
|
export { Category } from './entities/category.entity';
|
|
@@ -277,5 +279,7 @@ export function getDbModels(): ModelCtor[] {
|
|
|
277
279
|
|
|
278
280
|
// Banners
|
|
279
281
|
Banner,
|
|
282
|
+
|
|
283
|
+
AppConfig,
|
|
280
284
|
];
|
|
281
285
|
}
|