test-entity-library-asm 2.6.24 → 2.6.25

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.
@@ -19,7 +19,7 @@ export declare class Local {
19
19
  address: string;
20
20
  latitude: number;
21
21
  longitude: number;
22
- details: string;
22
+ details: any;
23
23
  created: Date;
24
24
  updated: Date;
25
25
  updated_by: Partner;
@@ -73,7 +73,7 @@ var Local = /** @class */ (function () {
73
73
  transformer: jsonTransformer_1.jsonTransformer,
74
74
  comment: 'Campo de tipo JSON por si es necesario agregar información adicional',
75
75
  }),
76
- __metadata("design:type", String)
76
+ __metadata("design:type", Object)
77
77
  ], Local.prototype, "details", void 0);
78
78
  __decorate([
79
79
  (0, typeorm_1.Column)({ type: 'datetime' }),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "test-entity-library-asm",
3
- "version": "2.6.24",
3
+ "version": "2.6.25",
4
4
  "description": "Entidades de ejemplo para una base de datos",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -63,7 +63,7 @@ export class Local {
63
63
  comment:
64
64
  'Campo de tipo JSON por si es necesario agregar información adicional',
65
65
  })
66
- details: string
66
+ details: any
67
67
 
68
68
  @Column({ type: 'datetime' })
69
69
  created: Date