test-entity-library-asm 3.8.9 → 3.9.0

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.
@@ -53,4 +53,15 @@ export declare class LocalsCompanyInformationForTheMap {
53
53
  country_legal_agent: string;
54
54
  country_details: any | null;
55
55
  country_status: number;
56
+ partner_document: string;
57
+ partner_name: string;
58
+ partner_surname: string;
59
+ partner_email: string;
60
+ partner_phone: string;
61
+ partner_city: string;
62
+ partner_address: string;
63
+ partner_profile: any | null;
64
+ partner_owner: number;
65
+ partner_status: number;
66
+ partner_visible: number;
56
67
  }
@@ -252,6 +252,50 @@ var LocalsCompanyInformationForTheMap = /** @class */ (function () {
252
252
  (0, typeorm_1.ViewColumn)(),
253
253
  __metadata("design:type", Number)
254
254
  ], LocalsCompanyInformationForTheMap.prototype, "country_status", void 0);
255
+ __decorate([
256
+ (0, typeorm_1.ViewColumn)(),
257
+ __metadata("design:type", String)
258
+ ], LocalsCompanyInformationForTheMap.prototype, "partner_document", void 0);
259
+ __decorate([
260
+ (0, typeorm_1.ViewColumn)(),
261
+ __metadata("design:type", String)
262
+ ], LocalsCompanyInformationForTheMap.prototype, "partner_name", void 0);
263
+ __decorate([
264
+ (0, typeorm_1.ViewColumn)(),
265
+ __metadata("design:type", String)
266
+ ], LocalsCompanyInformationForTheMap.prototype, "partner_surname", void 0);
267
+ __decorate([
268
+ (0, typeorm_1.ViewColumn)(),
269
+ __metadata("design:type", String)
270
+ ], LocalsCompanyInformationForTheMap.prototype, "partner_email", void 0);
271
+ __decorate([
272
+ (0, typeorm_1.ViewColumn)(),
273
+ __metadata("design:type", String)
274
+ ], LocalsCompanyInformationForTheMap.prototype, "partner_phone", void 0);
275
+ __decorate([
276
+ (0, typeorm_1.ViewColumn)(),
277
+ __metadata("design:type", String)
278
+ ], LocalsCompanyInformationForTheMap.prototype, "partner_city", void 0);
279
+ __decorate([
280
+ (0, typeorm_1.ViewColumn)(),
281
+ __metadata("design:type", String)
282
+ ], LocalsCompanyInformationForTheMap.prototype, "partner_address", void 0);
283
+ __decorate([
284
+ (0, typeorm_1.ViewColumn)({ transformer: jsonTransformer }),
285
+ __metadata("design:type", Object)
286
+ ], LocalsCompanyInformationForTheMap.prototype, "partner_profile", void 0);
287
+ __decorate([
288
+ (0, typeorm_1.ViewColumn)(),
289
+ __metadata("design:type", Number)
290
+ ], LocalsCompanyInformationForTheMap.prototype, "partner_owner", void 0);
291
+ __decorate([
292
+ (0, typeorm_1.ViewColumn)(),
293
+ __metadata("design:type", Number)
294
+ ], LocalsCompanyInformationForTheMap.prototype, "partner_status", void 0);
295
+ __decorate([
296
+ (0, typeorm_1.ViewColumn)(),
297
+ __metadata("design:type", Number)
298
+ ], LocalsCompanyInformationForTheMap.prototype, "partner_visible", void 0);
255
299
  LocalsCompanyInformationForTheMap = __decorate([
256
300
  (0, typeorm_1.ViewEntity)({
257
301
  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.9",
3
+ "version": "3.9.0",
4
4
  "description": "Entidades de ejemplo para una base de datos",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -188,4 +188,37 @@ export class LocalsCompanyInformationForTheMap {
188
188
 
189
189
  @ViewColumn()
190
190
  country_status: number;
191
+
192
+ @ViewColumn()
193
+ partner_document: string;
194
+
195
+ @ViewColumn()
196
+ partner_name: string;
197
+
198
+ @ViewColumn()
199
+ partner_surname: string;
200
+
201
+ @ViewColumn()
202
+ partner_email: string;
203
+
204
+ @ViewColumn()
205
+ partner_phone: string;
206
+
207
+ @ViewColumn()
208
+ partner_city: string;
209
+
210
+ @ViewColumn()
211
+ partner_address: string;
212
+
213
+ @ViewColumn({ transformer: jsonTransformer })
214
+ partner_profile: any | null;
215
+
216
+ @ViewColumn()
217
+ partner_owner: number;
218
+
219
+ @ViewColumn()
220
+ partner_status: number;
221
+
222
+ @ViewColumn()
223
+ partner_visible: number;
191
224
  }