test-entity-library-asm 2.7.11 → 2.7.12

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.
@@ -16,4 +16,5 @@ export declare class ViewLocalsCompanies {
16
16
  address: string;
17
17
  visible: number;
18
18
  company: number;
19
+ prefix: string;
19
20
  }
@@ -97,6 +97,10 @@ var ViewLocalsCompanies = /** @class */ (function () {
97
97
  (0, typeorm_1.ViewColumn)(),
98
98
  __metadata("design:type", Number)
99
99
  ], ViewLocalsCompanies.prototype, "company", void 0);
100
+ __decorate([
101
+ (0, typeorm_1.ViewColumn)(),
102
+ __metadata("design:type", String)
103
+ ], ViewLocalsCompanies.prototype, "prefix", void 0);
100
104
  ViewLocalsCompanies = __decorate([
101
105
  (0, typeorm_1.ViewEntity)({
102
106
  name: 'view_locals_companies',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "test-entity-library-asm",
3
- "version": "2.7.11",
3
+ "version": "2.7.12",
4
4
  "description": "Entidades de ejemplo para una base de datos",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -69,4 +69,7 @@ export class ViewLocalsCompanies {
69
69
 
70
70
  @ViewColumn()
71
71
  company: number
72
+
73
+ @ViewColumn()
74
+ prefix: string
72
75
  }