test-entity-library-asm 3.2.5 → 3.2.6

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.
@@ -7,5 +7,6 @@ export declare class RequestLocal {
7
7
  status: number;
8
8
  preparation_time: string;
9
9
  updated: Date;
10
+ is_notified: number;
10
11
  requests_local_history: RequestLocalHistory[];
11
12
  }
@@ -65,6 +65,13 @@ var RequestLocal = /** @class */ (function () {
65
65
  }),
66
66
  __metadata("design:type", Date)
67
67
  ], RequestLocal.prototype, "updated", void 0);
68
+ __decorate([
69
+ (0, typeorm_1.Column)({
70
+ default: 1,
71
+ comment: "Columna para saber sí se notificó vía mensaje desde la página web - aplicación de escritorio o/y correo electrónico:\r\n1. No notificado.\r\n2. Notificado.",
72
+ }),
73
+ __metadata("design:type", Number)
74
+ ], RequestLocal.prototype, "is_notified", void 0);
68
75
  __decorate([
69
76
  (0, typeorm_1.OneToMany)(function () { return __1.RequestLocalHistory; }, function (requestLocalHistory) { return requestLocalHistory.request_local; }),
70
77
  __metadata("design:type", Array)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "test-entity-library-asm",
3
- "version": "3.2.5",
3
+ "version": "3.2.6",
4
4
  "description": "Entidades de ejemplo para una base de datos",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -59,6 +59,13 @@ export class RequestLocal {
59
59
  })
60
60
  updated: Date;
61
61
 
62
+ @Column({
63
+ default: 1,
64
+ comment:
65
+ "Columna para saber sí se notificó vía mensaje desde la página web - aplicación de escritorio o/y correo electrónico:\r\n1. No notificado.\r\n2. Notificado.",
66
+ })
67
+ is_notified: number;
68
+
62
69
  @OneToMany(
63
70
  () => RequestLocalHistory,
64
71
  (requestLocalHistory) => requestLocalHistory.request_local