test-entity-library-asm 2.5.5 → 2.5.6

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.
@@ -17,4 +17,6 @@ export declare class VerifyLocals {
17
17
  master_notification_settings: any;
18
18
  partner_notification_id: number;
19
19
  partner_notification_settings: any;
20
+ reassign_review_id: number;
21
+ reassign_review_settings: any;
20
22
  }
@@ -101,6 +101,14 @@ var VerifyLocals = /** @class */ (function () {
101
101
  (0, typeorm_1.ViewColumn)({ transformer: jsonTransformer }),
102
102
  __metadata("design:type", Object)
103
103
  ], VerifyLocals.prototype, "partner_notification_settings", void 0);
104
+ __decorate([
105
+ (0, typeorm_1.ViewColumn)(),
106
+ __metadata("design:type", Number)
107
+ ], VerifyLocals.prototype, "reassign_review_id", void 0);
108
+ __decorate([
109
+ (0, typeorm_1.ViewColumn)({ transformer: jsonTransformer }),
110
+ __metadata("design:type", Object)
111
+ ], VerifyLocals.prototype, "reassign_review_settings", void 0);
104
112
  VerifyLocals = __decorate([
105
113
  (0, typeorm_1.ViewEntity)({
106
114
  name: 'verify_locals',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "test-entity-library-asm",
3
- "version": "2.5.5",
3
+ "version": "2.5.6",
4
4
  "description": "Entidades de ejemplo para una base de datos",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -74,4 +74,10 @@ export class VerifyLocals {
74
74
 
75
75
  @ViewColumn({ transformer: jsonTransformer })
76
76
  partner_notification_settings: any
77
+
78
+ @ViewColumn()
79
+ reassign_review_id: number
80
+
81
+ @ViewColumn({ transformer: jsonTransformer })
82
+ reassign_review_settings: any
77
83
  }