test-entity-library-asm 1.4.5 → 1.4.6

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.
@@ -8,6 +8,7 @@ export declare class Country {
8
8
  structure_phone: string;
9
9
  legal_information: string;
10
10
  legal_agent: string;
11
+ details: string;
11
12
  status: number;
12
13
  regions: Region[];
13
14
  }
@@ -61,6 +61,14 @@ var Country = /** @class */ (function () {
61
61
  }),
62
62
  __metadata("design:type", String)
63
63
  ], Country.prototype, "legal_agent", void 0);
64
+ __decorate([
65
+ (0, typeorm_1.Column)({
66
+ type: 'longtext',
67
+ nullable: true,
68
+ comment: 'Columna de tipo JSON para almacenar información adicional sobre el país.',
69
+ }),
70
+ __metadata("design:type", String)
71
+ ], Country.prototype, "details", void 0);
64
72
  __decorate([
65
73
  (0, typeorm_1.Column)({
66
74
  default: 1,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "test-entity-library-asm",
3
- "version": "1.4.5",
3
+ "version": "1.4.6",
4
4
  "description": "Entidades de ejemplo para una base de datos",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -44,6 +44,14 @@ export class Country {
44
44
  })
45
45
  legal_agent: string
46
46
 
47
+ @Column({
48
+ type: 'longtext',
49
+ nullable: true,
50
+ comment:
51
+ 'Columna de tipo JSON para almacenar información adicional sobre el país.',
52
+ })
53
+ details: string
54
+
47
55
  @Column({
48
56
  default: 1,
49
57
  comment: