oca-shared-model 1.0.101 → 1.0.103
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/crew/course_enrollments/entities/course_enrollment.entity.d.ts +1 -0
- package/dist/crew/course_enrollments/entities/course_enrollment.entity.js +4 -0
- package/dist/crew/course_section_enrollments/entities/course_section_enrollment.entity.d.ts +3 -1
- package/dist/crew/course_section_enrollments/entities/course_section_enrollment.entity.js +6 -1
- package/package.json +1 -1
|
@@ -55,6 +55,10 @@ __decorate([
|
|
|
55
55
|
(0, typeorm_1.Column)("jsonb"),
|
|
56
56
|
__metadata("design:type", Object)
|
|
57
57
|
], CourseEnrollment.prototype, "meta_data", void 0);
|
|
58
|
+
__decorate([
|
|
59
|
+
(0, typeorm_1.Column)({ array: true }),
|
|
60
|
+
__metadata("design:type", String)
|
|
61
|
+
], CourseEnrollment.prototype, "version", void 0);
|
|
58
62
|
exports.CourseEnrollment = CourseEnrollment = __decorate([
|
|
59
63
|
(0, typeorm_1.Entity)({
|
|
60
64
|
schema: "crew",
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
|
|
1
|
+
import { DefaultColumn } from "../../../helper/default-column";
|
|
2
|
+
export declare class CourseSectionEnrollment extends DefaultColumn {
|
|
2
3
|
id?: number;
|
|
3
4
|
course_enrollment_id?: number;
|
|
4
5
|
enrollment_id?: number;
|
|
@@ -15,4 +16,5 @@ export declare class CourseSectionEnrollment {
|
|
|
15
16
|
chapter_title?: string;
|
|
16
17
|
chapter_order?: number;
|
|
17
18
|
response?: any;
|
|
19
|
+
version?: string;
|
|
18
20
|
}
|
|
@@ -11,7 +11,8 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
12
|
exports.CourseSectionEnrollment = void 0;
|
|
13
13
|
const typeorm_1 = require("typeorm");
|
|
14
|
-
|
|
14
|
+
const default_column_1 = require("../../../helper/default-column");
|
|
15
|
+
let CourseSectionEnrollment = class CourseSectionEnrollment extends default_column_1.DefaultColumn {
|
|
15
16
|
};
|
|
16
17
|
exports.CourseSectionEnrollment = CourseSectionEnrollment;
|
|
17
18
|
__decorate([
|
|
@@ -78,6 +79,10 @@ __decorate([
|
|
|
78
79
|
(0, typeorm_1.Column)("jsonb"),
|
|
79
80
|
__metadata("design:type", Object)
|
|
80
81
|
], CourseSectionEnrollment.prototype, "response", void 0);
|
|
82
|
+
__decorate([
|
|
83
|
+
(0, typeorm_1.Column)(),
|
|
84
|
+
__metadata("design:type", String)
|
|
85
|
+
], CourseSectionEnrollment.prototype, "version", void 0);
|
|
81
86
|
exports.CourseSectionEnrollment = CourseSectionEnrollment = __decorate([
|
|
82
87
|
(0, typeorm_1.Entity)({
|
|
83
88
|
schema: "crew",
|