test-entity-library-asm 2.9.1 → 2.9.2

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.
@@ -24,4 +24,5 @@ export declare class MasterNotifications {
24
24
  verify_local_local_information: any;
25
25
  verify_local_assigned_master: number;
26
26
  verify_local_status: number;
27
+ master_assigned_notification: number;
27
28
  }
@@ -129,6 +129,10 @@ var MasterNotifications = /** @class */ (function () {
129
129
  (0, typeorm_1.ViewColumn)(),
130
130
  __metadata("design:type", Number)
131
131
  ], MasterNotifications.prototype, "verify_local_status", void 0);
132
+ __decorate([
133
+ (0, typeorm_1.ViewColumn)(),
134
+ __metadata("design:type", Number)
135
+ ], MasterNotifications.prototype, "master_assigned_notification", void 0);
132
136
  MasterNotifications = __decorate([
133
137
  (0, typeorm_1.ViewEntity)({
134
138
  name: "master_notifications",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "test-entity-library-asm",
3
- "version": "2.9.1",
3
+ "version": "2.9.2",
4
4
  "description": "Entidades de ejemplo para una base de datos",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -98,4 +98,7 @@ export class MasterNotifications {
98
98
 
99
99
  @ViewColumn()
100
100
  verify_local_status: number;
101
+
102
+ @ViewColumn()
103
+ master_assigned_notification: number;
101
104
  }