test-entity-library-asm 2.7.13 → 2.7.14

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.
@@ -14,6 +14,8 @@ export declare class ViewLocalsCompanies {
14
14
  total_partners: number;
15
15
  cellphone: string;
16
16
  email: string;
17
+ isVerifyPhone: number;
18
+ isVerifyEmail: number;
17
19
  address: string;
18
20
  visible: number;
19
21
  company: number;
@@ -89,6 +89,14 @@ var ViewLocalsCompanies = /** @class */ (function () {
89
89
  (0, typeorm_1.ViewColumn)(),
90
90
  __metadata("design:type", String)
91
91
  ], ViewLocalsCompanies.prototype, "email", void 0);
92
+ __decorate([
93
+ (0, typeorm_1.ViewColumn)(),
94
+ __metadata("design:type", Number)
95
+ ], ViewLocalsCompanies.prototype, "isVerifyPhone", void 0);
96
+ __decorate([
97
+ (0, typeorm_1.ViewColumn)(),
98
+ __metadata("design:type", Number)
99
+ ], ViewLocalsCompanies.prototype, "isVerifyEmail", void 0);
92
100
  __decorate([
93
101
  (0, typeorm_1.ViewColumn)(),
94
102
  __metadata("design:type", String)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "test-entity-library-asm",
3
- "version": "2.7.13",
3
+ "version": "2.7.14",
4
4
  "description": "Entidades de ejemplo para una base de datos",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -66,6 +66,12 @@ export class ViewLocalsCompanies {
66
66
  @ViewColumn()
67
67
  email: string
68
68
 
69
+ @ViewColumn()
70
+ isVerifyPhone: number
71
+
72
+ @ViewColumn()
73
+ isVerifyEmail: number
74
+
69
75
  @ViewColumn()
70
76
  address: string
71
77
 
@@ -74,5 +80,4 @@ export class ViewLocalsCompanies {
74
80
 
75
81
  @ViewColumn()
76
82
  company: number
77
-
78
83
  }