test-entity-library-asm 1.5.2 → 1.5.3

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.
@@ -4,7 +4,7 @@ export declare class LocalsCompany {
4
4
  address: string;
5
5
  latitude: string;
6
6
  longitude: string;
7
- local_details: object;
7
+ details: object;
8
8
  created: string;
9
9
  updated: string;
10
10
  status: number;
@@ -42,7 +42,7 @@ var LocalsCompany = /** @class */ (function () {
42
42
  __decorate([
43
43
  (0, typeorm_1.ViewColumn)({ transformer: jsonTransformer }),
44
44
  __metadata("design:type", Object)
45
- ], LocalsCompany.prototype, "local_details", void 0);
45
+ ], LocalsCompany.prototype, "details", void 0);
46
46
  __decorate([
47
47
  (0, typeorm_1.ViewColumn)(),
48
48
  __metadata("design:type", String)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "test-entity-library-asm",
3
- "version": "1.5.2",
3
+ "version": "1.5.3",
4
4
  "description": "Entidades de ejemplo para una base de datos",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -25,7 +25,7 @@ export class LocalsCompany {
25
25
  longitude: string
26
26
 
27
27
  @ViewColumn({ transformer: jsonTransformer })
28
- local_details: object
28
+ details: object
29
29
 
30
30
  @ViewColumn()
31
31
  created: string