test-entity-library-asm 2.6.0 → 2.6.1

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.
@@ -5,7 +5,7 @@ export declare class MasterNotifications {
5
5
  description: string;
6
6
  settings: any;
7
7
  type: number;
8
- created: string;
8
+ created: Date;
9
9
  status: number;
10
10
  master_document: string;
11
11
  master_name: string;
@@ -55,7 +55,7 @@ var MasterNotifications = /** @class */ (function () {
55
55
  ], MasterNotifications.prototype, "type", void 0);
56
56
  __decorate([
57
57
  (0, typeorm_1.ViewColumn)({ transformer: DateTransformer }),
58
- __metadata("design:type", String)
58
+ __metadata("design:type", Date)
59
59
  ], MasterNotifications.prototype, "created", void 0);
60
60
  __decorate([
61
61
  (0, typeorm_1.ViewColumn)(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "test-entity-library-asm",
3
- "version": "2.6.0",
3
+ "version": "2.6.1",
4
4
  "description": "Entidades de ejemplo para una base de datos",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -40,7 +40,7 @@ export class MasterNotifications {
40
40
  type: number
41
41
 
42
42
  @ViewColumn({ transformer: DateTransformer })
43
- created: string
43
+ created: Date
44
44
 
45
45
  @ViewColumn()
46
46
  status: number