test-entity-library-asm 2.2.0 → 2.2.1

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: string;
8
- basic_information: string;
9
- settings: string;
10
- opening_hours: string;
11
- terminal_users: string;
12
- terminals: string;
13
- details: string;
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;
14
14
  created: Date;
15
15
  verification_date: Date;
16
16
  update_partner: Date;
@@ -46,7 +46,7 @@ var VerifyLocal = /** @class */ (function () {
46
46
  transformer: jsonTransformer_1.jsonTransformer,
47
47
  comment: 'Campos que el usuario (partner) agrega al nuevo local.',
48
48
  }),
49
- __metadata("design:type", String)
49
+ __metadata("design:type", Object)
50
50
  ], VerifyLocal.prototype, "local_information", void 0);
51
51
  __decorate([
52
52
  (0, typeorm_1.Column)({
@@ -54,7 +54,7 @@ var VerifyLocal = /** @class */ (function () {
54
54
  transformer: jsonTransformer_1.jsonTransformer,
55
55
  comment: 'Estructura de paso información básica.',
56
56
  }),
57
- __metadata("design:type", String)
57
+ __metadata("design:type", Object)
58
58
  ], VerifyLocal.prototype, "basic_information", void 0);
59
59
  __decorate([
60
60
  (0, typeorm_1.Column)({
@@ -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", String)
65
+ __metadata("design:type", Array)
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", String)
73
+ __metadata("design:type", Array)
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", String)
81
+ __metadata("design:type", Array)
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", String)
89
+ __metadata("design:type", Array)
90
90
  ], VerifyLocal.prototype, "terminals", void 0);
91
91
  __decorate([
92
92
  (0, typeorm_1.Column)({
@@ -95,7 +95,7 @@ var VerifyLocal = /** @class */ (function () {
95
95
  transformer: jsonTransformer_1.jsonTransformer,
96
96
  comment: 'Información adicional del local para su verificación.',
97
97
  }),
98
- __metadata("design:type", String)
98
+ __metadata("design:type", Object)
99
99
  ], VerifyLocal.prototype, "details", void 0);
100
100
  __decorate([
101
101
  (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.0",
3
+ "version": "2.2.1",
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: string
43
+ local_information: Object
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: string
50
+ basic_information: Object
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: string
57
+ settings: Object[]
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: string
64
+ opening_hours: Object[]
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: string
71
+ terminal_users: Object[]
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: string
78
+ terminals: Object[]
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: string
86
+ details: Object
87
87
 
88
88
  @Column({
89
89
  type: 'datetime',