test-entity-library-asm 2.6.14 → 2.6.15
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/DiscountCodeCompany.d.ts +1 -1
- package/dist/entities/DiscountCodeCompany.js +1 -1
- package/dist/entities/DiscountCodeUser.d.ts +1 -1
- package/dist/entities/DiscountCodeUser.js +1 -1
- package/package.json +1 -1
- package/src/entities/DiscountCodeCompany.ts +1 -1
- package/src/entities/DiscountCodeUser.ts +1 -1
|
@@ -79,7 +79,7 @@ var DiscountCodeCompany = /** @class */ (function () {
|
|
|
79
79
|
nullable: true,
|
|
80
80
|
comment: 'Columna de tipos JSON para agregar en un arreglo los días que se pueden repetir el descuento.',
|
|
81
81
|
}),
|
|
82
|
-
__metadata("design:type",
|
|
82
|
+
__metadata("design:type", Object)
|
|
83
83
|
], DiscountCodeCompany.prototype, "repeat_days", void 0);
|
|
84
84
|
__decorate([
|
|
85
85
|
(0, typeorm_1.Column)({ type: 'datetime', comment: 'Fecha de expiración del registro.' }),
|
|
@@ -99,7 +99,7 @@ var DiscountCodeUser = /** @class */ (function () {
|
|
|
99
99
|
nullable: true,
|
|
100
100
|
comment: 'Columna de tipos JSON para agregar en un arreglo los días que se pueden repetir el descuento.',
|
|
101
101
|
}),
|
|
102
|
-
__metadata("design:type",
|
|
102
|
+
__metadata("design:type", Object)
|
|
103
103
|
], DiscountCodeUser.prototype, "repeat_days", void 0);
|
|
104
104
|
__decorate([
|
|
105
105
|
(0, typeorm_1.ManyToOne)(function () { return Partner_1.Partner; }, function (partner) { return partner.discount_code_partners; }, {
|
package/package.json
CHANGED
|
@@ -71,7 +71,7 @@ export class DiscountCodeCompany {
|
|
|
71
71
|
comment:
|
|
72
72
|
'Columna de tipos JSON para agregar en un arreglo los días que se pueden repetir el descuento.',
|
|
73
73
|
})
|
|
74
|
-
repeat_days:
|
|
74
|
+
repeat_days: any
|
|
75
75
|
|
|
76
76
|
@Column({ type: 'datetime', comment: 'Fecha de expiración del registro.' })
|
|
77
77
|
updated: Date
|
|
@@ -88,7 +88,7 @@ export class DiscountCodeUser {
|
|
|
88
88
|
comment:
|
|
89
89
|
'Columna de tipos JSON para agregar en un arreglo los días que se pueden repetir el descuento.',
|
|
90
90
|
})
|
|
91
|
-
repeat_days:
|
|
91
|
+
repeat_days: any
|
|
92
92
|
|
|
93
93
|
@ManyToOne(() => Partner, (partner) => partner.discount_code_partners, {
|
|
94
94
|
onDelete: 'CASCADE',
|