test-entity-library-asm 3.3.2 → 3.3.4
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/RequestLocalPayment.js +2 -1
- package/dist/entities/UserPaymentMethod.js +2 -2
- package/package.json +1 -1
- package/src/entities/MasterNotification.ts +1 -1
- package/src/entities/RequestLocalPayment.ts +2 -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)
|
|
@@ -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
|
}),
|
|
@@ -152,6 +152,7 @@ var RequestLocalPayment = /** @class */ (function () {
|
|
|
152
152
|
], RequestLocalPayment.prototype, "partner", void 0);
|
|
153
153
|
__decorate([
|
|
154
154
|
(0, typeorm_1.Column)({
|
|
155
|
+
type: "varchar",
|
|
155
156
|
length: 45,
|
|
156
157
|
nullable: true,
|
|
157
158
|
comment: "Dirección ip donde se hace la solicitud del pago.",
|
|
@@ -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
|
@@ -115,7 +115,7 @@ export class RequestLocalPayment {
|
|
|
115
115
|
|
|
116
116
|
@Column({
|
|
117
117
|
type: "int",
|
|
118
|
-
|
|
118
|
+
width: 1,
|
|
119
119
|
comment:
|
|
120
120
|
"Estado del pago:\r\n1. Aprobado.\r\n2. Rechazado.\r\n3. Pendiente.",
|
|
121
121
|
default: 3,
|
|
@@ -147,6 +147,7 @@ export class RequestLocalPayment {
|
|
|
147
147
|
partner: Partner | null;
|
|
148
148
|
|
|
149
149
|
@Column({
|
|
150
|
+
type: "varchar",
|
|
150
151
|
length: 45,
|
|
151
152
|
nullable: true,
|
|
152
153
|
comment: "Dirección ip donde se hace la solicitud del pago.",
|
|
@@ -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
|
})
|