test-entity-library-asm 2.6.0 → 2.6.2

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;
@@ -16,4 +16,6 @@ export declare class MasterNotifications {
16
16
  master_status: number;
17
17
  verify_local_local_information: any;
18
18
  verify_local_status: number;
19
+ company_name: string;
20
+ company_profile: any;
19
21
  }
@@ -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)(),
@@ -97,6 +97,14 @@ var MasterNotifications = /** @class */ (function () {
97
97
  (0, typeorm_1.ViewColumn)(),
98
98
  __metadata("design:type", Number)
99
99
  ], MasterNotifications.prototype, "verify_local_status", void 0);
100
+ __decorate([
101
+ (0, typeorm_1.ViewColumn)(),
102
+ __metadata("design:type", String)
103
+ ], MasterNotifications.prototype, "company_name", void 0);
104
+ __decorate([
105
+ (0, typeorm_1.ViewColumn)({ transformer: jsonTransformer }),
106
+ __metadata("design:type", Object)
107
+ ], MasterNotifications.prototype, "company_profile", void 0);
100
108
  MasterNotifications = __decorate([
101
109
  (0, typeorm_1.ViewEntity)({
102
110
  name: 'master_notifications',
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.2",
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
@@ -71,4 +71,10 @@ export class MasterNotifications {
71
71
 
72
72
  @ViewColumn()
73
73
  verify_local_status: number
74
+
75
+ @ViewColumn()
76
+ company_name: string
77
+
78
+ @ViewColumn({ transformer: jsonTransformer })
79
+ company_profile: any
74
80
  }