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.
@@ -1,4 +1,5 @@
1
- export declare class PublishedLearning {
1
+ import { DefaultColumn } from "../../../helper/default-column";
2
+ export declare class PublishedLearning extends DefaultColumn {
2
3
  id?: number;
3
4
  company_id?: number;
4
5
  learning_path_id?: number;
@@ -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
- let PublishedLearning = class PublishedLearning {
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([
@@ -2,4 +2,5 @@ export declare class TempQueue {
2
2
  id?: number;
3
3
  type?: string;
4
4
  ref_id?: number;
5
+ meta_data?: any;
5
6
  }
@@ -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",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oca-shared-model",
3
- "version": "1.0.83",
3
+ "version": "1.0.87",
4
4
  "description": "onboard shared model",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {