test-entity-library-asm 3.9.4 → 3.9.5

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.
@@ -17,6 +17,7 @@ export declare class LocalsCompanyInformationForTheTable {
17
17
  visible: number;
18
18
  contact_details: any | null;
19
19
  type_local: string;
20
+ address_local: string;
20
21
  company_id: number;
21
22
  company_code: string;
22
23
  company_name: string;
@@ -108,6 +108,10 @@ var LocalsCompanyInformationForTheTable = /** @class */ (function () {
108
108
  (0, typeorm_1.ViewColumn)(),
109
109
  __metadata("design:type", String)
110
110
  ], LocalsCompanyInformationForTheTable.prototype, "type_local", void 0);
111
+ __decorate([
112
+ (0, typeorm_1.ViewColumn)(),
113
+ __metadata("design:type", String)
114
+ ], LocalsCompanyInformationForTheTable.prototype, "address_local", void 0);
111
115
  __decorate([
112
116
  (0, typeorm_1.ViewColumn)(),
113
117
  __metadata("design:type", Number)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "test-entity-library-asm",
3
- "version": "3.9.4",
3
+ "version": "3.9.5",
4
4
  "description": "Entidades de ejemplo para una base de datos",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -81,6 +81,9 @@ export class LocalsCompanyInformationForTheTable {
81
81
  @ViewColumn()
82
82
  type_local: string;
83
83
 
84
+ @ViewColumn()
85
+ address_local: string;
86
+
84
87
  @ViewColumn()
85
88
  company_id: number;
86
89