test-entity-library-asm 2.6.9 → 2.6.10

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,5 @@ export declare class Partners {
33
33
  locals_asigned: any;
34
34
  roles_asigned: any;
35
35
  terminals_asigned: any;
36
+ count_locals_asigned: number;
36
37
  }
@@ -165,6 +165,10 @@ var Partners = /** @class */ (function () {
165
165
  (0, typeorm_1.ViewColumn)({ transformer: jsonTransformer }),
166
166
  __metadata("design:type", Object)
167
167
  ], Partners.prototype, "terminals_asigned", void 0);
168
+ __decorate([
169
+ (0, typeorm_1.ViewColumn)(),
170
+ __metadata("design:type", Number)
171
+ ], Partners.prototype, "count_locals_asigned", void 0);
168
172
  Partners = __decorate([
169
173
  (0, typeorm_1.ViewEntity)({
170
174
  name: "Partners",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "test-entity-library-asm",
3
- "version": "2.6.9",
3
+ "version": "2.6.10",
4
4
  "description": "Entidades de ejemplo para una base de datos",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -123,4 +123,6 @@ export class Partners {
123
123
  @ViewColumn({transformer: jsonTransformer})
124
124
  terminals_asigned: any
125
125
 
126
+ @ViewColumn()
127
+ count_locals_asigned: number
126
128
  }