sigo-entities 0.0.164 → 0.0.166
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/index.d.mts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +16 -11
- package/dist/index.mjs +16 -11
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -688,6 +688,8 @@ declare class EmpresaProduccionDTO {
|
|
|
688
688
|
CantidadProduccion: number;
|
|
689
689
|
Precio: number;
|
|
690
690
|
Total: number;
|
|
691
|
+
PrecioContrata: number;
|
|
692
|
+
TotalContrata: number;
|
|
691
693
|
ID_Trabajo: number;
|
|
692
694
|
}
|
|
693
695
|
|
|
@@ -696,7 +698,6 @@ declare class ValorizacionManoObraRegularizacionDTO {
|
|
|
696
698
|
Amap: number;
|
|
697
699
|
Cantidad: number;
|
|
698
700
|
CantidadProduccion: number;
|
|
699
|
-
Total: number;
|
|
700
701
|
EmpresaProduccion: EmpresaProduccionDTO[];
|
|
701
702
|
Linea: string;
|
|
702
703
|
Especialidad: CodigoNombreDTO;
|
package/dist/index.d.ts
CHANGED
|
@@ -688,6 +688,8 @@ declare class EmpresaProduccionDTO {
|
|
|
688
688
|
CantidadProduccion: number;
|
|
689
689
|
Precio: number;
|
|
690
690
|
Total: number;
|
|
691
|
+
PrecioContrata: number;
|
|
692
|
+
TotalContrata: number;
|
|
691
693
|
ID_Trabajo: number;
|
|
692
694
|
}
|
|
693
695
|
|
|
@@ -696,7 +698,6 @@ declare class ValorizacionManoObraRegularizacionDTO {
|
|
|
696
698
|
Amap: number;
|
|
697
699
|
Cantidad: number;
|
|
698
700
|
CantidadProduccion: number;
|
|
699
|
-
Total: number;
|
|
700
701
|
EmpresaProduccion: EmpresaProduccionDTO[];
|
|
701
702
|
Linea: string;
|
|
702
703
|
Especialidad: CodigoNombreDTO;
|
package/dist/index.js
CHANGED
|
@@ -3286,6 +3286,8 @@ var EmpresaProduccionDTO = class {
|
|
|
3286
3286
|
CantidadProduccion = 0;
|
|
3287
3287
|
Precio = 0;
|
|
3288
3288
|
Total = 0;
|
|
3289
|
+
PrecioContrata = 0;
|
|
3290
|
+
TotalContrata = 0;
|
|
3289
3291
|
ID_Trabajo = 0;
|
|
3290
3292
|
};
|
|
3291
3293
|
__decorateClass([
|
|
@@ -3316,6 +3318,16 @@ __decorateClass([
|
|
|
3316
3318
|
(0, import_class_transformer68.Expose)(),
|
|
3317
3319
|
(0, import_class_validator68.Min)(1)
|
|
3318
3320
|
], EmpresaProduccionDTO.prototype, "Total", 2);
|
|
3321
|
+
__decorateClass([
|
|
3322
|
+
(0, import_class_validator68.IsNumber)({}, { message: "debe ser un numero" }),
|
|
3323
|
+
(0, import_class_validator68.IsNotEmpty)({ message: "es requerido" }),
|
|
3324
|
+
(0, import_class_transformer68.Expose)()
|
|
3325
|
+
], EmpresaProduccionDTO.prototype, "PrecioContrata", 2);
|
|
3326
|
+
__decorateClass([
|
|
3327
|
+
(0, import_class_validator68.IsNumber)({}, { message: "debe ser un numero" }),
|
|
3328
|
+
(0, import_class_validator68.IsNotEmpty)({ message: "es requerido" }),
|
|
3329
|
+
(0, import_class_transformer68.Expose)()
|
|
3330
|
+
], EmpresaProduccionDTO.prototype, "TotalContrata", 2);
|
|
3319
3331
|
__decorateClass([
|
|
3320
3332
|
(0, import_class_validator68.IsNumber)({}, { message: "debe ser un numero" }),
|
|
3321
3333
|
(0, import_class_validator68.IsNotEmpty)({ message: "es requerido" }),
|
|
@@ -3330,7 +3342,6 @@ var ValorizacionManoObraRegularizacionDTO = class {
|
|
|
3330
3342
|
Amap = 0;
|
|
3331
3343
|
Cantidad = 0;
|
|
3332
3344
|
CantidadProduccion = 0;
|
|
3333
|
-
Total = 0;
|
|
3334
3345
|
EmpresaProduccion = [];
|
|
3335
3346
|
Linea = "";
|
|
3336
3347
|
Especialidad = new CodigoNombreDTO();
|
|
@@ -3361,12 +3372,6 @@ __decorateClass([
|
|
|
3361
3372
|
(0, import_class_transformer69.Expose)(),
|
|
3362
3373
|
(0, import_class_validator69.Min)(1)
|
|
3363
3374
|
], ValorizacionManoObraRegularizacionDTO.prototype, "CantidadProduccion", 2);
|
|
3364
|
-
__decorateClass([
|
|
3365
|
-
(0, import_class_validator69.IsNumber)({}, { message: "debe ser un numero" }),
|
|
3366
|
-
(0, import_class_validator69.IsNotEmpty)({ message: "es requerido" }),
|
|
3367
|
-
(0, import_class_transformer69.Expose)(),
|
|
3368
|
-
(0, import_class_validator69.Min)(1)
|
|
3369
|
-
], ValorizacionManoObraRegularizacionDTO.prototype, "Total", 2);
|
|
3370
3375
|
__decorateClass([
|
|
3371
3376
|
(0, import_class_validator69.IsArray)({ message: "debe ser un arreglo" }),
|
|
3372
3377
|
(0, import_class_transformer69.Type)(() => EmpresaProduccionDTO),
|
|
@@ -11414,17 +11419,17 @@ var NotificacionesENTITY = class {
|
|
|
11414
11419
|
};
|
|
11415
11420
|
__decorateClass([
|
|
11416
11421
|
(0, import_class_validator195.IsString)({ message: "debe ser un texto" }),
|
|
11417
|
-
(0, import_class_validator195.Length)(1,
|
|
11422
|
+
(0, import_class_validator195.Length)(1, 30, { message: "debe tener entre 1 y 30 caracteres" }),
|
|
11418
11423
|
(0, import_class_transformer195.Expose)()
|
|
11419
11424
|
], NotificacionesENTITY.prototype, "usuarioId", 2);
|
|
11420
11425
|
__decorateClass([
|
|
11421
11426
|
(0, import_class_validator195.IsString)({ message: "debe ser un texto" }),
|
|
11422
|
-
(0, import_class_validator195.Length)(1,
|
|
11427
|
+
(0, import_class_validator195.Length)(1, 100, { message: "debe tener entre 1 y 100 caracteres" }),
|
|
11423
11428
|
(0, import_class_transformer195.Expose)()
|
|
11424
11429
|
], NotificacionesENTITY.prototype, "titulo", 2);
|
|
11425
11430
|
__decorateClass([
|
|
11426
11431
|
(0, import_class_validator195.IsString)({ message: "debe ser un texto" }),
|
|
11427
|
-
(0, import_class_validator195.Length)(1,
|
|
11432
|
+
(0, import_class_validator195.Length)(1, 300, { message: "debe tener entre 1 y 300 caracteres" }),
|
|
11428
11433
|
(0, import_class_transformer195.Expose)()
|
|
11429
11434
|
], NotificacionesENTITY.prototype, "mensaje", 2);
|
|
11430
11435
|
__decorateClass([
|
|
@@ -11460,7 +11465,7 @@ __decorateClass([
|
|
|
11460
11465
|
], NotificacionesENTITY.prototype, "prioridad", 2);
|
|
11461
11466
|
__decorateClass([
|
|
11462
11467
|
(0, import_class_validator195.IsString)({ message: "debe ser un texto" }),
|
|
11463
|
-
(0, import_class_validator195.Length)(0,
|
|
11468
|
+
(0, import_class_validator195.Length)(0, 200, { message: "debe tener entre 0 y 200 caracteres" }),
|
|
11464
11469
|
(0, import_class_transformer195.Expose)()
|
|
11465
11470
|
], NotificacionesENTITY.prototype, "urlDestino", 2);
|
|
11466
11471
|
|
package/dist/index.mjs
CHANGED
|
@@ -3065,6 +3065,8 @@ var EmpresaProduccionDTO = class {
|
|
|
3065
3065
|
CantidadProduccion = 0;
|
|
3066
3066
|
Precio = 0;
|
|
3067
3067
|
Total = 0;
|
|
3068
|
+
PrecioContrata = 0;
|
|
3069
|
+
TotalContrata = 0;
|
|
3068
3070
|
ID_Trabajo = 0;
|
|
3069
3071
|
};
|
|
3070
3072
|
__decorateClass([
|
|
@@ -3095,6 +3097,16 @@ __decorateClass([
|
|
|
3095
3097
|
Expose67(),
|
|
3096
3098
|
Min36(1)
|
|
3097
3099
|
], EmpresaProduccionDTO.prototype, "Total", 2);
|
|
3100
|
+
__decorateClass([
|
|
3101
|
+
IsNumber42({}, { message: "debe ser un numero" }),
|
|
3102
|
+
IsNotEmpty66({ message: "es requerido" }),
|
|
3103
|
+
Expose67()
|
|
3104
|
+
], EmpresaProduccionDTO.prototype, "PrecioContrata", 2);
|
|
3105
|
+
__decorateClass([
|
|
3106
|
+
IsNumber42({}, { message: "debe ser un numero" }),
|
|
3107
|
+
IsNotEmpty66({ message: "es requerido" }),
|
|
3108
|
+
Expose67()
|
|
3109
|
+
], EmpresaProduccionDTO.prototype, "TotalContrata", 2);
|
|
3098
3110
|
__decorateClass([
|
|
3099
3111
|
IsNumber42({}, { message: "debe ser un numero" }),
|
|
3100
3112
|
IsNotEmpty66({ message: "es requerido" }),
|
|
@@ -3109,7 +3121,6 @@ var ValorizacionManoObraRegularizacionDTO = class {
|
|
|
3109
3121
|
Amap = 0;
|
|
3110
3122
|
Cantidad = 0;
|
|
3111
3123
|
CantidadProduccion = 0;
|
|
3112
|
-
Total = 0;
|
|
3113
3124
|
EmpresaProduccion = [];
|
|
3114
3125
|
Linea = "";
|
|
3115
3126
|
Especialidad = new CodigoNombreDTO();
|
|
@@ -3140,12 +3151,6 @@ __decorateClass([
|
|
|
3140
3151
|
Expose68(),
|
|
3141
3152
|
Min37(1)
|
|
3142
3153
|
], ValorizacionManoObraRegularizacionDTO.prototype, "CantidadProduccion", 2);
|
|
3143
|
-
__decorateClass([
|
|
3144
|
-
IsNumber43({}, { message: "debe ser un numero" }),
|
|
3145
|
-
IsNotEmpty67({ message: "es requerido" }),
|
|
3146
|
-
Expose68(),
|
|
3147
|
-
Min37(1)
|
|
3148
|
-
], ValorizacionManoObraRegularizacionDTO.prototype, "Total", 2);
|
|
3149
3154
|
__decorateClass([
|
|
3150
3155
|
IsArray16({ message: "debe ser un arreglo" }),
|
|
3151
3156
|
Type36(() => EmpresaProduccionDTO),
|
|
@@ -11215,17 +11220,17 @@ var NotificacionesENTITY = class {
|
|
|
11215
11220
|
};
|
|
11216
11221
|
__decorateClass([
|
|
11217
11222
|
IsString170({ message: "debe ser un texto" }),
|
|
11218
|
-
Length153(1,
|
|
11223
|
+
Length153(1, 30, { message: "debe tener entre 1 y 30 caracteres" }),
|
|
11219
11224
|
Expose194()
|
|
11220
11225
|
], NotificacionesENTITY.prototype, "usuarioId", 2);
|
|
11221
11226
|
__decorateClass([
|
|
11222
11227
|
IsString170({ message: "debe ser un texto" }),
|
|
11223
|
-
Length153(1,
|
|
11228
|
+
Length153(1, 100, { message: "debe tener entre 1 y 100 caracteres" }),
|
|
11224
11229
|
Expose194()
|
|
11225
11230
|
], NotificacionesENTITY.prototype, "titulo", 2);
|
|
11226
11231
|
__decorateClass([
|
|
11227
11232
|
IsString170({ message: "debe ser un texto" }),
|
|
11228
|
-
Length153(1,
|
|
11233
|
+
Length153(1, 300, { message: "debe tener entre 1 y 300 caracteres" }),
|
|
11229
11234
|
Expose194()
|
|
11230
11235
|
], NotificacionesENTITY.prototype, "mensaje", 2);
|
|
11231
11236
|
__decorateClass([
|
|
@@ -11261,7 +11266,7 @@ __decorateClass([
|
|
|
11261
11266
|
], NotificacionesENTITY.prototype, "prioridad", 2);
|
|
11262
11267
|
__decorateClass([
|
|
11263
11268
|
IsString170({ message: "debe ser un texto" }),
|
|
11264
|
-
Length153(0,
|
|
11269
|
+
Length153(0, 200, { message: "debe tener entre 0 y 200 caracteres" }),
|
|
11265
11270
|
Expose194()
|
|
11266
11271
|
], NotificacionesENTITY.prototype, "urlDestino", 2);
|
|
11267
11272
|
|