test-entity-library-asm 2.6.22 → 2.6.23

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.
@@ -7,12 +7,12 @@ export declare class DiscountsCodeUser {
7
7
  type: number;
8
8
  single_use: number;
9
9
  use_limit: number;
10
- created: string;
10
+ created: any;
11
11
  start: string;
12
12
  expiration: string;
13
13
  repeat_days: any;
14
14
  updated_by: number;
15
- updated: string;
15
+ updated: any;
16
16
  status: number;
17
17
  local_id: number;
18
18
  local_name: string;
@@ -71,7 +71,7 @@ var DiscountsCodeUser = /** @class */ (function () {
71
71
  ], DiscountsCodeUser.prototype, "use_limit", void 0);
72
72
  __decorate([
73
73
  (0, typeorm_1.ViewColumn)({ transformer: DateTransformer }),
74
- __metadata("design:type", String)
74
+ __metadata("design:type", Object)
75
75
  ], DiscountsCodeUser.prototype, "created", void 0);
76
76
  __decorate([
77
77
  (0, typeorm_1.ViewColumn)(),
@@ -91,7 +91,7 @@ var DiscountsCodeUser = /** @class */ (function () {
91
91
  ], DiscountsCodeUser.prototype, "updated_by", void 0);
92
92
  __decorate([
93
93
  (0, typeorm_1.ViewColumn)({ transformer: DateTransformer }),
94
- __metadata("design:type", String)
94
+ __metadata("design:type", Object)
95
95
  ], DiscountsCodeUser.prototype, "updated", void 0);
96
96
  __decorate([
97
97
  (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.22",
3
+ "version": "2.6.23",
4
4
  "description": "Entidades de ejemplo para una base de datos",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -54,7 +54,7 @@ export class DiscountsCodeUser {
54
54
  use_limit: number
55
55
 
56
56
  @ViewColumn({ transformer: DateTransformer })
57
- created: string
57
+ created: any
58
58
 
59
59
  @ViewColumn()
60
60
  start: string
@@ -69,7 +69,7 @@ export class DiscountsCodeUser {
69
69
  updated_by: number
70
70
 
71
71
  @ViewColumn({ transformer: DateTransformer })
72
- updated: string
72
+ updated: any
73
73
 
74
74
  @ViewColumn()
75
75
  status: number