test-entity-library-asm 2.7.10 → 2.7.12

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.
@@ -3,7 +3,7 @@ export declare class ViewLocalsCompanies {
3
3
  name_local: string;
4
4
  created_local: string;
5
5
  updated_local: string;
6
- status_local: number;
6
+ status: number;
7
7
  has_square: string;
8
8
  pos_system_name: string;
9
9
  city_name: string;
@@ -14,4 +14,7 @@ export declare class ViewLocalsCompanies {
14
14
  total_partners: number;
15
15
  local_contact_details: any;
16
16
  address: string;
17
+ visible: number;
18
+ company: number;
19
+ prefix: string;
17
20
  }
@@ -48,7 +48,7 @@ var ViewLocalsCompanies = /** @class */ (function () {
48
48
  __decorate([
49
49
  (0, typeorm_1.ViewColumn)(),
50
50
  __metadata("design:type", Number)
51
- ], ViewLocalsCompanies.prototype, "status_local", void 0);
51
+ ], ViewLocalsCompanies.prototype, "status", void 0);
52
52
  __decorate([
53
53
  (0, typeorm_1.ViewColumn)(),
54
54
  __metadata("design:type", String)
@@ -89,6 +89,18 @@ var ViewLocalsCompanies = /** @class */ (function () {
89
89
  (0, typeorm_1.ViewColumn)(),
90
90
  __metadata("design:type", String)
91
91
  ], ViewLocalsCompanies.prototype, "address", void 0);
92
+ __decorate([
93
+ (0, typeorm_1.ViewColumn)(),
94
+ __metadata("design:type", Number)
95
+ ], ViewLocalsCompanies.prototype, "visible", void 0);
96
+ __decorate([
97
+ (0, typeorm_1.ViewColumn)(),
98
+ __metadata("design:type", Number)
99
+ ], ViewLocalsCompanies.prototype, "company", void 0);
100
+ __decorate([
101
+ (0, typeorm_1.ViewColumn)(),
102
+ __metadata("design:type", String)
103
+ ], ViewLocalsCompanies.prototype, "prefix", void 0);
92
104
  ViewLocalsCompanies = __decorate([
93
105
  (0, typeorm_1.ViewEntity)({
94
106
  name: 'view_locals_companies',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "test-entity-library-asm",
3
- "version": "2.7.10",
3
+ "version": "2.7.12",
4
4
  "description": "Entidades de ejemplo para una base de datos",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -32,7 +32,7 @@ export class ViewLocalsCompanies {
32
32
  updated_local: string
33
33
 
34
34
  @ViewColumn()
35
- status_local: number
35
+ status: number
36
36
 
37
37
  @ViewColumn()
38
38
  has_square: string
@@ -63,4 +63,13 @@ export class ViewLocalsCompanies {
63
63
 
64
64
  @ViewColumn()
65
65
  address: string
66
+
67
+ @ViewColumn()
68
+ visible: number
69
+
70
+ @ViewColumn()
71
+ company: number
72
+
73
+ @ViewColumn()
74
+ prefix: string
66
75
  }