test-entity-library-asm 2.5.7 → 2.5.8

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.
@@ -33,4 +33,7 @@ export declare class VerifyLocals {
33
33
  partner_email: string;
34
34
  partner_phone: string;
35
35
  partner_profile: any;
36
+ company_id: number;
37
+ company_name: string;
38
+ company_profile: any;
36
39
  }
@@ -165,6 +165,18 @@ var VerifyLocals = /** @class */ (function () {
165
165
  (0, typeorm_1.ViewColumn)({ transformer: jsonTransformer }),
166
166
  __metadata("design:type", Object)
167
167
  ], VerifyLocals.prototype, "partner_profile", void 0);
168
+ __decorate([
169
+ (0, typeorm_1.ViewColumn)(),
170
+ __metadata("design:type", Number)
171
+ ], VerifyLocals.prototype, "company_id", void 0);
172
+ __decorate([
173
+ (0, typeorm_1.ViewColumn)(),
174
+ __metadata("design:type", String)
175
+ ], VerifyLocals.prototype, "company_name", void 0);
176
+ __decorate([
177
+ (0, typeorm_1.ViewColumn)({ transformer: jsonTransformer }),
178
+ __metadata("design:type", Object)
179
+ ], VerifyLocals.prototype, "company_profile", void 0);
168
180
  VerifyLocals = __decorate([
169
181
  (0, typeorm_1.ViewEntity)({
170
182
  name: 'verify_locals',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "test-entity-library-asm",
3
- "version": "2.5.7",
3
+ "version": "2.5.8",
4
4
  "description": "Entidades de ejemplo para una base de datos",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -122,4 +122,13 @@ export class VerifyLocals {
122
122
 
123
123
  @ViewColumn({ transformer: jsonTransformer })
124
124
  partner_profile: any
125
+
126
+ @ViewColumn()
127
+ company_id: number
128
+
129
+ @ViewColumn()
130
+ company_name: string
131
+
132
+ @ViewColumn({ transformer: jsonTransformer })
133
+ company_profile: any
125
134
  }