test-entity-library-asm 2.2.1 → 2.2.2
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.
|
@@ -5,12 +5,12 @@ export declare class VerifyLocal {
|
|
|
5
5
|
partner: Partner;
|
|
6
6
|
assigned_master: Master;
|
|
7
7
|
local_information: Object;
|
|
8
|
-
basic_information:
|
|
9
|
-
settings:
|
|
10
|
-
opening_hours:
|
|
11
|
-
terminal_users:
|
|
12
|
-
terminals:
|
|
13
|
-
details:
|
|
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",
|
|
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",
|
|
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",
|
|
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",
|
|
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
|
@@ -47,35 +47,35 @@ export class VerifyLocal {
|
|
|
47
47
|
transformer: jsonTransformer,
|
|
48
48
|
comment: 'Estructura de paso información básica.',
|
|
49
49
|
})
|
|
50
|
-
basic_information:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
86
|
+
details: any
|
|
87
87
|
|
|
88
88
|
@Column({
|
|
89
89
|
type: 'datetime',
|