@asumano/worklip-typeorm-db 1.1.25 → 1.1.26

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.
@@ -61,7 +61,7 @@ __decorate([
61
61
  type: "json",
62
62
  nullable: true,
63
63
  default: null,
64
- comment: "Columna de tipo JSON para almacenar información adicional sobre el país.",
64
+ comment: "Campo de tipo JSON para guardar la información que se necesite.",
65
65
  }),
66
66
  __metadata("design:type", Object)
67
67
  ], Country.prototype, "details", void 0);
@@ -4,6 +4,7 @@ export declare class Region {
4
4
  id: number;
5
5
  country: Country;
6
6
  name: string;
7
+ details: any | null;
7
8
  status: number;
8
9
  cities: City[];
9
10
  }
@@ -39,6 +39,15 @@ __decorate([
39
39
  }),
40
40
  __metadata("design:type", String)
41
41
  ], Region.prototype, "name", void 0);
42
+ __decorate([
43
+ (0, typeorm_1.Column)({
44
+ type: "json",
45
+ nullable: true,
46
+ default: null,
47
+ comment: "Campo de tipo JSON para guardar la información que se necesite.",
48
+ }),
49
+ __metadata("design:type", Object)
50
+ ], Region.prototype, "details", void 0);
42
51
  __decorate([
43
52
  (0, typeorm_1.Column)({
44
53
  default: 1,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@asumano/worklip-typeorm-db",
3
- "version": "1.1.25",
3
+ "version": "1.1.26",
4
4
  "publishConfig": {
5
5
  "access": "restricted"
6
6
  },