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.
|
@@ -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
|
@@ -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
|