oca-shared-model 1.0.48 → 1.0.49
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.
|
@@ -9,11 +9,14 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
9
9
|
exports.JobVacancyCbtModule = void 0;
|
|
10
10
|
const common_1 = require("@nestjs/common");
|
|
11
11
|
const job_vacancy_cbt_service_1 = require("./job_vacancy_cbt.service");
|
|
12
|
+
const typeorm_1 = require("@nestjs/typeorm");
|
|
13
|
+
const job_vacancy_cbt_entity_1 = require("./entities/job_vacancy_cbt.entity");
|
|
12
14
|
let JobVacancyCbtModule = class JobVacancyCbtModule {
|
|
13
15
|
};
|
|
14
16
|
exports.JobVacancyCbtModule = JobVacancyCbtModule;
|
|
15
17
|
exports.JobVacancyCbtModule = JobVacancyCbtModule = __decorate([
|
|
16
18
|
(0, common_1.Module)({
|
|
19
|
+
imports: [typeorm_1.TypeOrmModule.forFeature([job_vacancy_cbt_entity_1.JobVacancyCbt])],
|
|
17
20
|
providers: [job_vacancy_cbt_service_1.JobVacancyCbtService],
|
|
18
21
|
exports: [job_vacancy_cbt_service_1.JobVacancyCbtService],
|
|
19
22
|
})
|
|
@@ -9,11 +9,14 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
9
9
|
exports.CrewCbtModule = void 0;
|
|
10
10
|
const common_1 = require("@nestjs/common");
|
|
11
11
|
const crew_cbt_service_1 = require("./crew_cbt.service");
|
|
12
|
+
const typeorm_1 = require("@nestjs/typeorm");
|
|
13
|
+
const crew_cbt_entity_1 = require("./entities/crew_cbt.entity");
|
|
12
14
|
let CrewCbtModule = class CrewCbtModule {
|
|
13
15
|
};
|
|
14
16
|
exports.CrewCbtModule = CrewCbtModule;
|
|
15
17
|
exports.CrewCbtModule = CrewCbtModule = __decorate([
|
|
16
18
|
(0, common_1.Module)({
|
|
19
|
+
imports: [typeorm_1.TypeOrmModule.forFeature([crew_cbt_entity_1.CrewCbt])],
|
|
17
20
|
providers: [crew_cbt_service_1.CrewCbtService],
|
|
18
21
|
exports: [crew_cbt_service_1.CrewCbtService],
|
|
19
22
|
})
|