test-entity-library-asm 3.3.1 → 3.3.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.
- package/dist/entities/MasterNotification.js +1 -1
- package/dist/entities/PartnerNotification.js +1 -1
- package/dist/entities/RequestLocalPayment.js +1 -1
- package/dist/entities/UserPaymentMethod.js +2 -2
- package/package.json +1 -1
- package/src/entities/MasterNotification.ts +1 -1
- package/src/entities/PartnerNotification.ts +1 -1
- package/src/entities/RequestLocalPayment.ts +1 -1
- package/src/entities/UserPaymentMethod.ts +2 -2
|
@@ -74,7 +74,7 @@ var MasterNotification = /** @class */ (function () {
|
|
|
74
74
|
(0, typeorm_1.Column)({
|
|
75
75
|
default: 1,
|
|
76
76
|
type: "int",
|
|
77
|
-
|
|
77
|
+
width: 1,
|
|
78
78
|
comment: "Estado de la notificación: \r\n0. Inactiva. \r\n1. Activa.\r\n2. Reasignada.",
|
|
79
79
|
}),
|
|
80
80
|
__metadata("design:type", Number)
|
|
@@ -75,7 +75,7 @@ var PartnerNotification = /** @class */ (function () {
|
|
|
75
75
|
(0, typeorm_1.Column)({
|
|
76
76
|
default: 1,
|
|
77
77
|
type: "int",
|
|
78
|
-
|
|
78
|
+
width: 1,
|
|
79
79
|
comment: "Estado del registro, es decir:\r\n1. Activo: Es visible en la plataforma.\r\n0. Inactivo: No será visible en la plataforma.",
|
|
80
80
|
}),
|
|
81
81
|
__metadata("design:type", Number)
|
|
@@ -117,7 +117,7 @@ var RequestLocalPayment = /** @class */ (function () {
|
|
|
117
117
|
__decorate([
|
|
118
118
|
(0, typeorm_1.Column)({
|
|
119
119
|
type: "int",
|
|
120
|
-
|
|
120
|
+
width: 1,
|
|
121
121
|
comment: "Estado del pago:\r\n1. Aprobado.\r\n2. Rechazado.\r\n3. Pendiente.",
|
|
122
122
|
default: 3,
|
|
123
123
|
}),
|
|
@@ -84,7 +84,7 @@ var UserPaymentMethod = /** @class */ (function () {
|
|
|
84
84
|
(0, typeorm_1.Column)({
|
|
85
85
|
default: 1,
|
|
86
86
|
type: "int",
|
|
87
|
-
|
|
87
|
+
width: 1,
|
|
88
88
|
comment: "Me indica sí la tarjeta/método de pago está o no activa.\r\n1: Activa.\r\n0: Inactiva.",
|
|
89
89
|
}),
|
|
90
90
|
__metadata("design:type", Number)
|
|
@@ -93,7 +93,7 @@ var UserPaymentMethod = /** @class */ (function () {
|
|
|
93
93
|
(0, typeorm_1.Column)({
|
|
94
94
|
default: 0,
|
|
95
95
|
type: "int",
|
|
96
|
-
|
|
96
|
+
width: 1,
|
|
97
97
|
comment: "Me indica sí la tarjeta/método de pago está o no eliminada.\r\n0: No eliminado.\r\n1: Eliminado.",
|
|
98
98
|
}),
|
|
99
99
|
__metadata("design:type", Number)
|
package/package.json
CHANGED
|
@@ -72,7 +72,7 @@ export class UserPaymentMethod {
|
|
|
72
72
|
@Column({
|
|
73
73
|
default: 1,
|
|
74
74
|
type: "int",
|
|
75
|
-
|
|
75
|
+
width: 1,
|
|
76
76
|
comment:
|
|
77
77
|
"Me indica sí la tarjeta/método de pago está o no activa.\r\n1: Activa.\r\n0: Inactiva.",
|
|
78
78
|
})
|
|
@@ -81,7 +81,7 @@ export class UserPaymentMethod {
|
|
|
81
81
|
@Column({
|
|
82
82
|
default: 0,
|
|
83
83
|
type: "int",
|
|
84
|
-
|
|
84
|
+
width: 1,
|
|
85
85
|
comment:
|
|
86
86
|
"Me indica sí la tarjeta/método de pago está o no eliminada.\r\n0: No eliminado.\r\n1: Eliminado.",
|
|
87
87
|
})
|