test-entity-library-asm 3.9.3 → 3.9.4

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,6 +64,7 @@ export declare class LocalsCompanyInformationForTheTable {
64
64
  square_id: number;
65
65
  square_details: any | null;
66
66
  square_email: string | null;
67
+ square_address: string;
67
68
  square_latitude: number | null;
68
69
  square_longitude: number | null;
69
70
  square_maximum_number_locals: number;
@@ -296,6 +296,10 @@ var LocalsCompanyInformationForTheTable = /** @class */ (function () {
296
296
  (0, typeorm_1.ViewColumn)(),
297
297
  __metadata("design:type", Object)
298
298
  ], LocalsCompanyInformationForTheTable.prototype, "square_email", void 0);
299
+ __decorate([
300
+ (0, typeorm_1.ViewColumn)(),
301
+ __metadata("design:type", String)
302
+ ], LocalsCompanyInformationForTheTable.prototype, "square_address", void 0);
299
303
  __decorate([
300
304
  (0, typeorm_1.ViewColumn)(),
301
305
  __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.4",
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,6 +222,9 @@ export class LocalsCompanyInformationForTheTable {
222
222
  @ViewColumn()
223
223
  square_email: string | null;
224
224
 
225
+ @ViewColumn()
226
+ square_address: string;
227
+
225
228
  @ViewColumn()
226
229
  square_latitude: number | null;
227
230