test-entity-library-asm 3.9.3 → 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;
@@ -64,6 +65,7 @@ export declare class LocalsCompanyInformationForTheTable {
64
65
  square_id: number;
65
66
  square_details: any | null;
66
67
  square_email: string | null;
68
+ square_address: string;
67
69
  square_latitude: number | null;
68
70
  square_longitude: number | null;
69
71
  square_maximum_number_locals: number;
@@ -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)
@@ -296,6 +300,10 @@ var LocalsCompanyInformationForTheTable = /** @class */ (function () {
296
300
  (0, typeorm_1.ViewColumn)(),
297
301
  __metadata("design:type", Object)
298
302
  ], LocalsCompanyInformationForTheTable.prototype, "square_email", void 0);
303
+ __decorate([
304
+ (0, typeorm_1.ViewColumn)(),
305
+ __metadata("design:type", String)
306
+ ], LocalsCompanyInformationForTheTable.prototype, "square_address", void 0);
299
307
  __decorate([
300
308
  (0, typeorm_1.ViewColumn)(),
301
309
  __metadata("design:type", Object)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "test-entity-library-asm",
3
- "version": "3.9.3",
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
 
@@ -222,6 +225,9 @@ export class LocalsCompanyInformationForTheTable {
222
225
  @ViewColumn()
223
226
  square_email: string | null;
224
227
 
228
+ @ViewColumn()
229
+ square_address: string;
230
+
225
231
  @ViewColumn()
226
232
  square_latitude: number | null;
227
233