oca-shared-model 1.0.83 → 1.0.87
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/published_learnings/entities/published_learning.entity.d.ts +2 -1
- package/dist/company/published_learnings/entities/published_learning.entity.js +2 -1
- package/dist/staff/temp_queues/entities/temp_queue.entity.d.ts +1 -0
- package/dist/staff/temp_queues/entities/temp_queue.entity.js +4 -0
- package/package.json +1 -1
|
@@ -11,7 +11,8 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
12
|
exports.PublishedLearning = void 0;
|
|
13
13
|
const typeorm_1 = require("typeorm");
|
|
14
|
-
|
|
14
|
+
const default_column_1 = require("../../../helper/default-column");
|
|
15
|
+
let PublishedLearning = class PublishedLearning extends default_column_1.DefaultColumn {
|
|
15
16
|
};
|
|
16
17
|
exports.PublishedLearning = PublishedLearning;
|
|
17
18
|
__decorate([
|
|
@@ -26,6 +26,10 @@ __decorate([
|
|
|
26
26
|
(0, typeorm_1.Column)(),
|
|
27
27
|
__metadata("design:type", Number)
|
|
28
28
|
], TempQueue.prototype, "ref_id", void 0);
|
|
29
|
+
__decorate([
|
|
30
|
+
(0, typeorm_1.Column)("jsonb"),
|
|
31
|
+
__metadata("design:type", Object)
|
|
32
|
+
], TempQueue.prototype, "meta_data", void 0);
|
|
29
33
|
exports.TempQueue = TempQueue = __decorate([
|
|
30
34
|
(0, typeorm_1.Entity)({
|
|
31
35
|
schema: "staff",
|