test-entity-library-asm 3.9.2 → 3.9.3

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;
@@ -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)
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.3",
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