test-entity-library-asm 3.9.2 → 3.9.4

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.
@@ -37,6 +37,7 @@ export declare class LocalsCompanyInformationForTheTable {
37
37
  region_status: number;
38
38
  country_id: number;
39
39
  country_code: string;
40
+ country_name: string;
40
41
  country_currency: string;
41
42
  country_details: any | null;
42
43
  country_legal_agent: string | null;
@@ -63,6 +64,7 @@ export declare class LocalsCompanyInformationForTheTable {
63
64
  square_id: number;
64
65
  square_details: any | null;
65
66
  square_email: string | null;
67
+ square_address: string;
66
68
  square_latitude: number | null;
67
69
  square_longitude: number | null;
68
70
  square_maximum_number_locals: number;
@@ -188,6 +188,10 @@ var LocalsCompanyInformationForTheTable = /** @class */ (function () {
188
188
  (0, typeorm_1.ViewColumn)(),
189
189
  __metadata("design:type", String)
190
190
  ], LocalsCompanyInformationForTheTable.prototype, "country_code", void 0);
191
+ __decorate([
192
+ (0, typeorm_1.ViewColumn)(),
193
+ __metadata("design:type", String)
194
+ ], LocalsCompanyInformationForTheTable.prototype, "country_name", void 0);
191
195
  __decorate([
192
196
  (0, typeorm_1.ViewColumn)(),
193
197
  __metadata("design:type", String)
@@ -292,6 +296,10 @@ var LocalsCompanyInformationForTheTable = /** @class */ (function () {
292
296
  (0, typeorm_1.ViewColumn)(),
293
297
  __metadata("design:type", Object)
294
298
  ], LocalsCompanyInformationForTheTable.prototype, "square_email", void 0);
299
+ __decorate([
300
+ (0, typeorm_1.ViewColumn)(),
301
+ __metadata("design:type", String)
302
+ ], LocalsCompanyInformationForTheTable.prototype, "square_address", void 0);
295
303
  __decorate([
296
304
  (0, typeorm_1.ViewColumn)(),
297
305
  __metadata("design:type", Object)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "test-entity-library-asm",
3
- "version": "3.9.2",
3
+ "version": "3.9.4",
4
4
  "description": "Entidades de ejemplo para una base de datos",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -141,6 +141,9 @@ export class LocalsCompanyInformationForTheTable {
141
141
  @ViewColumn()
142
142
  country_code: string;
143
143
 
144
+ @ViewColumn()
145
+ country_name: string;
146
+
144
147
  @ViewColumn()
145
148
  country_currency: string;
146
149
 
@@ -219,6 +222,9 @@ export class LocalsCompanyInformationForTheTable {
219
222
  @ViewColumn()
220
223
  square_email: string | null;
221
224
 
225
+ @ViewColumn()
226
+ square_address: string;
227
+
222
228
  @ViewColumn()
223
229
  square_latitude: number | null;
224
230