test-entity-library-asm 3.6.5 → 3.6.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.
@@ -64,4 +64,5 @@ export declare class LocalReserves {
64
64
  user_table_phone: string | null;
65
65
  user_table_profile: any | null;
66
66
  user_table_status: number | null;
67
+ reserved_tables_count: number;
67
68
  }
@@ -297,6 +297,10 @@ var LocalReserves = /** @class */ (function () {
297
297
  (0, typeorm_1.ViewColumn)(),
298
298
  __metadata("design:type", Object)
299
299
  ], LocalReserves.prototype, "user_table_status", void 0);
300
+ __decorate([
301
+ (0, typeorm_1.ViewColumn)(),
302
+ __metadata("design:type", Number)
303
+ ], LocalReserves.prototype, "reserved_tables_count", void 0);
300
304
  LocalReserves = __decorate([
301
305
  (0, typeorm_1.ViewEntity)({
302
306
  name: "local_reserves",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "test-entity-library-asm",
3
- "version": "3.6.5",
3
+ "version": "3.6.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",
@@ -222,4 +222,7 @@ export class LocalReserves {
222
222
 
223
223
  @ViewColumn()
224
224
  user_table_status: number | null;
225
+
226
+ @ViewColumn()
227
+ reserved_tables_count: number;
225
228
  }