sigo-entities 0.0.83 → 0.0.84
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 +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +6 -0
- package/dist/index.mjs +6 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -3632,6 +3632,7 @@ var FaseDTO = class {
|
|
|
3632
3632
|
Observacion = "";
|
|
3633
3633
|
Anexos = [];
|
|
3634
3634
|
NroDocumento = "";
|
|
3635
|
+
UltimoPeriodo = new PeriodoDTO();
|
|
3635
3636
|
};
|
|
3636
3637
|
__decorateClass([
|
|
3637
3638
|
(0, import_class_validator70.IsNumber)({}, { message: "debe ser un numero" }),
|
|
@@ -3684,6 +3685,11 @@ __decorateClass([
|
|
|
3684
3685
|
(0, import_class_validator70.Length)(0, 200, { message: "debe tener entre 0 y 200 caracteres" }),
|
|
3685
3686
|
(0, import_class_transformer70.Expose)()
|
|
3686
3687
|
], FaseDTO.prototype, "NroDocumento", 2);
|
|
3688
|
+
__decorateClass([
|
|
3689
|
+
(0, import_class_transformer70.Type)(() => PeriodoDTO),
|
|
3690
|
+
(0, import_class_transformer70.Expose)(),
|
|
3691
|
+
(0, import_class_validator70.ValidateNested)()
|
|
3692
|
+
], FaseDTO.prototype, "UltimoPeriodo", 2);
|
|
3687
3693
|
|
|
3688
3694
|
// src/programados/procesos/trabajo/alemania/dto/valorizacion-dto.ts
|
|
3689
3695
|
var ValorizacionAlemaniaDTO = class {
|
package/dist/index.mjs
CHANGED
|
@@ -3475,6 +3475,7 @@ var FaseDTO = class {
|
|
|
3475
3475
|
Observacion = "";
|
|
3476
3476
|
Anexos = [];
|
|
3477
3477
|
NroDocumento = "";
|
|
3478
|
+
UltimoPeriodo = new PeriodoDTO();
|
|
3478
3479
|
};
|
|
3479
3480
|
__decorateClass([
|
|
3480
3481
|
IsNumber42({}, { message: "debe ser un numero" }),
|
|
@@ -3527,6 +3528,11 @@ __decorateClass([
|
|
|
3527
3528
|
Length57(0, 200, { message: "debe tener entre 0 y 200 caracteres" }),
|
|
3528
3529
|
Expose69()
|
|
3529
3530
|
], FaseDTO.prototype, "NroDocumento", 2);
|
|
3531
|
+
__decorateClass([
|
|
3532
|
+
Type35(() => PeriodoDTO),
|
|
3533
|
+
Expose69(),
|
|
3534
|
+
ValidateNested35()
|
|
3535
|
+
], FaseDTO.prototype, "UltimoPeriodo", 2);
|
|
3530
3536
|
|
|
3531
3537
|
// src/programados/procesos/trabajo/alemania/dto/valorizacion-dto.ts
|
|
3532
3538
|
var ValorizacionAlemaniaDTO = class {
|