test-entity-library-asm 2.2.1 → 2.2.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.
@@ -4,13 +4,13 @@ export declare class VerifyLocal {
4
4
  id: number;
5
5
  partner: Partner;
6
6
  assigned_master: Master;
7
- local_information: Object;
8
- basic_information: Object;
9
- settings: Object[];
10
- opening_hours: Object[];
11
- terminal_users: Object[];
12
- terminals: Object[];
13
- details: Object;
7
+ local_information: any;
8
+ basic_information: any;
9
+ settings: any;
10
+ opening_hours: any;
11
+ terminal_users: any;
12
+ terminals: any;
13
+ details: any;
14
14
  created: Date;
15
15
  verification_date: Date;
16
16
  update_partner: Date;
@@ -62,7 +62,7 @@ var VerifyLocal = /** @class */ (function () {
62
62
  transformer: jsonTransformer_1.jsonTransformer,
63
63
  comment: 'Estructura de paso configuración.',
64
64
  }),
65
- __metadata("design:type", Array)
65
+ __metadata("design:type", Object)
66
66
  ], VerifyLocal.prototype, "settings", void 0);
67
67
  __decorate([
68
68
  (0, typeorm_1.Column)({
@@ -70,7 +70,7 @@ var VerifyLocal = /** @class */ (function () {
70
70
  transformer: jsonTransformer_1.jsonTransformer,
71
71
  comment: 'Estructura de paso horarios de atención.',
72
72
  }),
73
- __metadata("design:type", Array)
73
+ __metadata("design:type", Object)
74
74
  ], VerifyLocal.prototype, "opening_hours", void 0);
75
75
  __decorate([
76
76
  (0, typeorm_1.Column)({
@@ -78,7 +78,7 @@ var VerifyLocal = /** @class */ (function () {
78
78
  transformer: jsonTransformer_1.jsonTransformer,
79
79
  comment: 'Estructura de paso terminales y usuarios.',
80
80
  }),
81
- __metadata("design:type", Array)
81
+ __metadata("design:type", Object)
82
82
  ], VerifyLocal.prototype, "terminal_users", void 0);
83
83
  __decorate([
84
84
  (0, typeorm_1.Column)({
@@ -86,7 +86,7 @@ var VerifyLocal = /** @class */ (function () {
86
86
  transformer: jsonTransformer_1.jsonTransformer,
87
87
  comment: 'Estructura de paso terminales y usuarios.',
88
88
  }),
89
- __metadata("design:type", Array)
89
+ __metadata("design:type", Object)
90
90
  ], VerifyLocal.prototype, "terminals", void 0);
91
91
  __decorate([
92
92
  (0, typeorm_1.Column)({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "test-entity-library-asm",
3
- "version": "2.2.1",
3
+ "version": "2.2.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",
@@ -40,42 +40,42 @@ export class VerifyLocal {
40
40
  transformer: jsonTransformer,
41
41
  comment: 'Campos que el usuario (partner) agrega al nuevo local.',
42
42
  })
43
- local_information: Object
43
+ local_information: any
44
44
 
45
45
  @Column({
46
46
  type: 'longtext',
47
47
  transformer: jsonTransformer,
48
48
  comment: 'Estructura de paso información básica.',
49
49
  })
50
- basic_information: Object
50
+ basic_information: any
51
51
 
52
52
  @Column({
53
53
  type: 'longtext',
54
54
  transformer: jsonTransformer,
55
55
  comment: 'Estructura de paso configuración.',
56
56
  })
57
- settings: Object[]
57
+ settings: any
58
58
 
59
59
  @Column({
60
60
  type: 'longtext',
61
61
  transformer: jsonTransformer,
62
62
  comment: 'Estructura de paso horarios de atención.',
63
63
  })
64
- opening_hours: Object[]
64
+ opening_hours: any
65
65
 
66
66
  @Column({
67
67
  type: 'longtext',
68
68
  transformer: jsonTransformer,
69
69
  comment: 'Estructura de paso terminales y usuarios.',
70
70
  })
71
- terminal_users: Object[]
71
+ terminal_users: any
72
72
 
73
73
  @Column({
74
74
  type: 'longtext',
75
75
  transformer: jsonTransformer,
76
76
  comment: 'Estructura de paso terminales y usuarios.',
77
77
  })
78
- terminals: Object[]
78
+ terminals: any
79
79
 
80
80
  @Column({
81
81
  type: 'text',
@@ -83,7 +83,7 @@ export class VerifyLocal {
83
83
  transformer: jsonTransformer,
84
84
  comment: 'Información adicional del local para su verificación.',
85
85
  })
86
- details: Object
86
+ details: any
87
87
 
88
88
  @Column({
89
89
  type: 'datetime',