test-entity-library-asm 3.8.7 → 3.8.8

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.
@@ -29,4 +29,14 @@ export declare class LocalsCompanyInformationForTheMap {
29
29
  total_requests: number;
30
30
  total_ratings: number;
31
31
  average_rating: number;
32
+ square_id: number;
33
+ square_name: string;
34
+ square_address: string;
35
+ square_latitude: number;
36
+ square_longitude: number;
37
+ square_details: any | null;
38
+ square_maximum_number_locals: number;
39
+ square_email: string;
40
+ square_phone: string;
41
+ square_status: number;
32
42
  }
@@ -156,6 +156,46 @@ var LocalsCompanyInformationForTheMap = /** @class */ (function () {
156
156
  (0, typeorm_1.ViewColumn)(),
157
157
  __metadata("design:type", Number)
158
158
  ], LocalsCompanyInformationForTheMap.prototype, "average_rating", void 0);
159
+ __decorate([
160
+ (0, typeorm_1.ViewColumn)(),
161
+ __metadata("design:type", Number)
162
+ ], LocalsCompanyInformationForTheMap.prototype, "square_id", void 0);
163
+ __decorate([
164
+ (0, typeorm_1.ViewColumn)(),
165
+ __metadata("design:type", String)
166
+ ], LocalsCompanyInformationForTheMap.prototype, "square_name", void 0);
167
+ __decorate([
168
+ (0, typeorm_1.ViewColumn)(),
169
+ __metadata("design:type", String)
170
+ ], LocalsCompanyInformationForTheMap.prototype, "square_address", void 0);
171
+ __decorate([
172
+ (0, typeorm_1.ViewColumn)(),
173
+ __metadata("design:type", Number)
174
+ ], LocalsCompanyInformationForTheMap.prototype, "square_latitude", void 0);
175
+ __decorate([
176
+ (0, typeorm_1.ViewColumn)(),
177
+ __metadata("design:type", Number)
178
+ ], LocalsCompanyInformationForTheMap.prototype, "square_longitude", void 0);
179
+ __decorate([
180
+ (0, typeorm_1.ViewColumn)({ transformer: jsonTransformer }),
181
+ __metadata("design:type", Object)
182
+ ], LocalsCompanyInformationForTheMap.prototype, "square_details", void 0);
183
+ __decorate([
184
+ (0, typeorm_1.ViewColumn)(),
185
+ __metadata("design:type", Number)
186
+ ], LocalsCompanyInformationForTheMap.prototype, "square_maximum_number_locals", void 0);
187
+ __decorate([
188
+ (0, typeorm_1.ViewColumn)(),
189
+ __metadata("design:type", String)
190
+ ], LocalsCompanyInformationForTheMap.prototype, "square_email", void 0);
191
+ __decorate([
192
+ (0, typeorm_1.ViewColumn)(),
193
+ __metadata("design:type", String)
194
+ ], LocalsCompanyInformationForTheMap.prototype, "square_phone", void 0);
195
+ __decorate([
196
+ (0, typeorm_1.ViewColumn)(),
197
+ __metadata("design:type", Number)
198
+ ], LocalsCompanyInformationForTheMap.prototype, "square_status", void 0);
159
199
  LocalsCompanyInformationForTheMap = __decorate([
160
200
  (0, typeorm_1.ViewEntity)({
161
201
  name: "locals_company_information_for_the_map",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "test-entity-library-asm",
3
- "version": "3.8.7",
3
+ "version": "3.8.8",
4
4
  "description": "Entidades de ejemplo para una base de datos",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -116,4 +116,34 @@ export class LocalsCompanyInformationForTheMap {
116
116
 
117
117
  @ViewColumn()
118
118
  average_rating: number;
119
+
120
+ @ViewColumn()
121
+ square_id: number;
122
+
123
+ @ViewColumn()
124
+ square_name: string;
125
+
126
+ @ViewColumn()
127
+ square_address: string;
128
+
129
+ @ViewColumn()
130
+ square_latitude: number;
131
+
132
+ @ViewColumn()
133
+ square_longitude: number;
134
+
135
+ @ViewColumn({ transformer: jsonTransformer })
136
+ square_details: any | null;
137
+
138
+ @ViewColumn()
139
+ square_maximum_number_locals: number;
140
+
141
+ @ViewColumn()
142
+ square_email: string;
143
+
144
+ @ViewColumn()
145
+ square_phone: string;
146
+
147
+ @ViewColumn()
148
+ square_status: number;
119
149
  }