test-entity-library-asm 2.6.1 → 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.
@@ -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
  }
@@ -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.1",
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",
@@ -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
  }