test-entity-library-asm 2.9.1 → 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.
@@ -24,4 +24,8 @@ export declare class MasterNotifications {
24
24
  verify_local_local_information: any;
25
25
  verify_local_assigned_master: number;
26
26
  verify_local_status: number;
27
+ master_assigned_notification: number;
28
+ company_name: string;
29
+ company_profile: any;
30
+ company_status: number;
27
31
  }
@@ -129,6 +129,22 @@ var MasterNotifications = /** @class */ (function () {
129
129
  (0, typeorm_1.ViewColumn)(),
130
130
  __metadata("design:type", Number)
131
131
  ], MasterNotifications.prototype, "verify_local_status", void 0);
132
+ __decorate([
133
+ (0, typeorm_1.ViewColumn)(),
134
+ __metadata("design:type", Number)
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);
132
148
  MasterNotifications = __decorate([
133
149
  (0, typeorm_1.ViewEntity)({
134
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.1",
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
 
@@ -98,4 +95,16 @@ export class MasterNotifications {
98
95
 
99
96
  @ViewColumn()
100
97
  verify_local_status: number;
98
+
99
+ @ViewColumn()
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;
101
110
  }