test-entity-library-asm 3.2.11 → 3.2.12
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.
|
@@ -33,6 +33,7 @@ var BusinessTypeProduct = /** @class */ (function () {
|
|
|
33
33
|
], BusinessTypeProduct.prototype, "business_type", void 0);
|
|
34
34
|
__decorate([
|
|
35
35
|
(0, typeorm_1.Column)({
|
|
36
|
+
type: "string",
|
|
36
37
|
length: 40,
|
|
37
38
|
comment: "ID de la variable que se encuentra en los archivos `locales` para el multilenguaje.",
|
|
38
39
|
}),
|
|
@@ -40,6 +41,7 @@ var BusinessTypeProduct = /** @class */ (function () {
|
|
|
40
41
|
], BusinessTypeProduct.prototype, "name", void 0);
|
|
41
42
|
__decorate([
|
|
42
43
|
(0, typeorm_1.Column)({
|
|
44
|
+
type: "string",
|
|
43
45
|
length: 500,
|
|
44
46
|
nullable: true,
|
|
45
47
|
comment: "Imagen para el tipo de comida.",
|
|
@@ -48,6 +50,7 @@ var BusinessTypeProduct = /** @class */ (function () {
|
|
|
48
50
|
], BusinessTypeProduct.prototype, "photo", void 0);
|
|
49
51
|
__decorate([
|
|
50
52
|
(0, typeorm_1.Column)({
|
|
53
|
+
type: "number",
|
|
51
54
|
default: 1,
|
|
52
55
|
comment: "Estado del registro, es decir:\r\n1. Activo: Es visible en la plataforma.\r\n0. Inactivo: No será visible en la plataforma.",
|
|
53
56
|
}),
|
package/package.json
CHANGED
|
@@ -33,6 +33,7 @@ export class BusinessTypeProduct {
|
|
|
33
33
|
business_type: BusinessType | null;
|
|
34
34
|
|
|
35
35
|
@Column({
|
|
36
|
+
type: "string",
|
|
36
37
|
length: 40,
|
|
37
38
|
comment:
|
|
38
39
|
"ID de la variable que se encuentra en los archivos `locales` para el multilenguaje.",
|
|
@@ -40,6 +41,7 @@ export class BusinessTypeProduct {
|
|
|
40
41
|
name: string;
|
|
41
42
|
|
|
42
43
|
@Column({
|
|
44
|
+
type: "string",
|
|
43
45
|
length: 500,
|
|
44
46
|
nullable: true,
|
|
45
47
|
comment: "Imagen para el tipo de comida.",
|
|
@@ -47,6 +49,7 @@ export class BusinessTypeProduct {
|
|
|
47
49
|
photo: string | null;
|
|
48
50
|
|
|
49
51
|
@Column({
|
|
52
|
+
type: "number",
|
|
50
53
|
default: 1,
|
|
51
54
|
comment:
|
|
52
55
|
"Estado del registro, es decir:\r\n1. Activo: Es visible en la plataforma.\r\n0. Inactivo: No será visible en la plataforma.",
|