test-entity-library-asm 2.9.2 → 2.9.3

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.
@@ -25,4 +25,7 @@ export declare class MasterNotifications {
25
25
  verify_local_assigned_master: number;
26
26
  verify_local_status: number;
27
27
  master_assigned_notification: number;
28
+ company_name: string;
29
+ company_profile: any;
30
+ company_status: number;
28
31
  }
@@ -133,6 +133,18 @@ var MasterNotifications = /** @class */ (function () {
133
133
  (0, typeorm_1.ViewColumn)(),
134
134
  __metadata("design:type", Number)
135
135
  ], MasterNotifications.prototype, "master_assigned_notification", void 0);
136
+ __decorate([
137
+ (0, typeorm_1.ViewColumn)(),
138
+ __metadata("design:type", String)
139
+ ], MasterNotifications.prototype, "company_name", void 0);
140
+ __decorate([
141
+ (0, typeorm_1.ViewColumn)({ transformer: jsonTransformer }),
142
+ __metadata("design:type", Object)
143
+ ], MasterNotifications.prototype, "company_profile", void 0);
144
+ __decorate([
145
+ (0, typeorm_1.ViewColumn)(),
146
+ __metadata("design:type", Number)
147
+ ], MasterNotifications.prototype, "company_status", void 0);
136
148
  MasterNotifications = __decorate([
137
149
  (0, typeorm_1.ViewEntity)({
138
150
  name: "master_notifications",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "test-entity-library-asm",
3
- "version": "2.9.2",
3
+ "version": "2.9.3",
4
4
  "description": "Entidades de ejemplo para una base de datos",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -45,7 +45,6 @@ export class MasterNotifications {
45
45
  @ViewColumn()
46
46
  status: number;
47
47
 
48
- // Partner columns
49
48
  @ViewColumn()
50
49
  partner_name: string;
51
50
 
@@ -62,9 +61,8 @@ export class MasterNotifications {
62
61
  partner_phone: string;
63
62
 
64
63
  @ViewColumn()
65
- partner_status: number; // Added missing partner_status column
64
+ partner_status: number;
66
65
 
67
- // Master columns
68
66
  @ViewColumn()
69
67
  master_document: string;
70
68
 
@@ -86,7 +84,6 @@ export class MasterNotifications {
86
84
  @ViewColumn()
87
85
  master_status: number;
88
86
 
89
- // Verify local columns
90
87
  @ViewColumn()
91
88
  verify_local_id: number;
92
89
 
@@ -101,4 +98,13 @@ export class MasterNotifications {
101
98
 
102
99
  @ViewColumn()
103
100
  master_assigned_notification: number;
101
+
102
+ @ViewColumn()
103
+ company_name: string;
104
+
105
+ @ViewColumn({ transformer: jsonTransformer })
106
+ company_profile: any;
107
+
108
+ @ViewColumn()
109
+ company_status: number;
104
110
  }