oca-shared-model 1.0.80 → 1.0.82
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/company/crew_database/entities/crew_database.entity.d.ts +1 -0
- package/dist/company/crew_database/entities/crew_database.entity.js +4 -0
- package/dist/company/manual_appraisals/entities/manual_appraisal.entity.d.ts +1 -0
- package/dist/company/manual_appraisals/entities/manual_appraisal.entity.js +4 -0
- package/dist/company/published_learnings/entities/published_learning.entity.d.ts +2 -0
- package/dist/company/published_learnings/entities/published_learning.entity.js +8 -0
- package/dist/crew/enrollments/entities/enrollment.entity.d.ts +3 -1
- package/dist/crew/enrollments/entities/enrollment.entity.js +9 -1
- package/package.json +1 -1
|
@@ -75,6 +75,10 @@ __decorate([
|
|
|
75
75
|
(0, typeorm_1.Column)(),
|
|
76
76
|
__metadata("design:type", String)
|
|
77
77
|
], CrewDatabase.prototype, "boiler_suit_size", void 0);
|
|
78
|
+
__decorate([
|
|
79
|
+
(0, typeorm_1.Column)(),
|
|
80
|
+
__metadata("design:type", Date)
|
|
81
|
+
], CrewDatabase.prototype, "join_date", void 0);
|
|
78
82
|
exports.CrewDatabase = CrewDatabase = __decorate([
|
|
79
83
|
(0, typeorm_1.Entity)({
|
|
80
84
|
schema: "company",
|
|
@@ -43,6 +43,10 @@ __decorate([
|
|
|
43
43
|
(0, typeorm_1.Column)(),
|
|
44
44
|
__metadata("design:type", Date)
|
|
45
45
|
], ManualAppraisal.prototype, "expired_date", void 0);
|
|
46
|
+
__decorate([
|
|
47
|
+
(0, typeorm_1.Column)(),
|
|
48
|
+
__metadata("design:type", Number)
|
|
49
|
+
], ManualAppraisal.prototype, "company_id", void 0);
|
|
46
50
|
exports.ManualAppraisal = ManualAppraisal = __decorate([
|
|
47
51
|
(0, typeorm_1.Entity)({
|
|
48
52
|
schema: "company",
|
|
@@ -66,6 +66,14 @@ __decorate([
|
|
|
66
66
|
(0, typeorm_1.Column)("jsonb"),
|
|
67
67
|
__metadata("design:type", Object)
|
|
68
68
|
], PublishedLearning.prototype, "meta_data", void 0);
|
|
69
|
+
__decorate([
|
|
70
|
+
(0, typeorm_1.Column)(),
|
|
71
|
+
__metadata("design:type", Boolean)
|
|
72
|
+
], PublishedLearning.prototype, "repeat", void 0);
|
|
73
|
+
__decorate([
|
|
74
|
+
(0, typeorm_1.Column)(),
|
|
75
|
+
__metadata("design:type", Number)
|
|
76
|
+
], PublishedLearning.prototype, "repeat_duration", void 0);
|
|
69
77
|
exports.PublishedLearning = PublishedLearning = __decorate([
|
|
70
78
|
(0, typeorm_1.Entity)({
|
|
71
79
|
schema: "company",
|
|
@@ -58,11 +58,19 @@ __decorate([
|
|
|
58
58
|
__decorate([
|
|
59
59
|
(0, typeorm_1.Column)("jsonb"),
|
|
60
60
|
__metadata("design:type", Object)
|
|
61
|
-
], Enrollment.prototype, "
|
|
61
|
+
], Enrollment.prototype, "reference", void 0);
|
|
62
62
|
__decorate([
|
|
63
63
|
(0, typeorm_1.Column)("jsonb"),
|
|
64
64
|
__metadata("design:type", Object)
|
|
65
65
|
], Enrollment.prototype, "crew_data", void 0);
|
|
66
|
+
__decorate([
|
|
67
|
+
(0, typeorm_1.Column)(),
|
|
68
|
+
__metadata("design:type", Boolean)
|
|
69
|
+
], Enrollment.prototype, "repeat", void 0);
|
|
70
|
+
__decorate([
|
|
71
|
+
(0, typeorm_1.Column)(),
|
|
72
|
+
__metadata("design:type", Number)
|
|
73
|
+
], Enrollment.prototype, "repeat_duration", void 0);
|
|
66
74
|
exports.Enrollment = Enrollment = __decorate([
|
|
67
75
|
(0, typeorm_1.Entity)({
|
|
68
76
|
schema: "crew",
|