test-entity-library-asm 3.9.67 → 3.9.69

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.
@@ -10,7 +10,6 @@ export declare class Partners {
10
10
  phone: string;
11
11
  city: number;
12
12
  address: string;
13
- password: string;
14
13
  profile: any;
15
14
  owner: number;
16
15
  created: Date;
@@ -23,6 +22,7 @@ export declare class Partners {
23
22
  region_country: number;
24
23
  region_name: string;
25
24
  region_status: number;
25
+ country_id: number;
26
26
  country_code: string;
27
27
  country_name: string;
28
28
  country_currency: string;
@@ -58,10 +58,6 @@ __decorate([
58
58
  (0, typeorm_1.ViewColumn)(),
59
59
  __metadata("design:type", String)
60
60
  ], Partners.prototype, "address", void 0);
61
- __decorate([
62
- (0, typeorm_1.ViewColumn)(),
63
- __metadata("design:type", String)
64
- ], Partners.prototype, "password", void 0);
65
61
  __decorate([
66
62
  (0, typeorm_1.ViewColumn)(),
67
63
  __metadata("design:type", Object)
@@ -110,6 +106,10 @@ __decorate([
110
106
  (0, typeorm_1.ViewColumn)(),
111
107
  __metadata("design:type", Number)
112
108
  ], Partners.prototype, "region_status", void 0);
109
+ __decorate([
110
+ (0, typeorm_1.ViewColumn)(),
111
+ __metadata("design:type", Number)
112
+ ], Partners.prototype, "country_id", void 0);
113
113
  __decorate([
114
114
  (0, typeorm_1.ViewColumn)(),
115
115
  __metadata("design:type", String)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "test-entity-library-asm",
3
- "version": "3.9.67",
3
+ "version": "3.9.69",
4
4
  "description": "Entidades de ejemplo para una base de datos",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -37,9 +37,6 @@ export class Partners {
37
37
  @ViewColumn()
38
38
  address: string;
39
39
 
40
- @ViewColumn()
41
- password: string;
42
-
43
40
  @ViewColumn()
44
41
  profile: any;
45
42
 
@@ -76,6 +73,9 @@ export class Partners {
76
73
  @ViewColumn()
77
74
  region_status: number;
78
75
 
76
+ @ViewColumn()
77
+ country_id: number;
78
+
79
79
  @ViewColumn()
80
80
  country_code: string;
81
81