sigo-entities 1.0.86 → 1.0.88
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 +5 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js +35 -3
- package/dist/index.mjs +32 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -4576,6 +4576,11 @@ declare class ToaClaroENTITY {
|
|
|
4576
4576
|
Extensor_2: number;
|
|
4577
4577
|
REPA_2: number;
|
|
4578
4578
|
RGU_Total: number;
|
|
4579
|
+
Tecnico: TecnicoValDTO;
|
|
4580
|
+
EECC: EECC_DTO;
|
|
4581
|
+
Anio: number;
|
|
4582
|
+
Mes: number;
|
|
4583
|
+
Dia: number;
|
|
4579
4584
|
}
|
|
4580
4585
|
|
|
4581
4586
|
declare class peru9112TOAENTITY {
|
package/dist/index.d.ts
CHANGED
|
@@ -4576,6 +4576,11 @@ declare class ToaClaroENTITY {
|
|
|
4576
4576
|
Extensor_2: number;
|
|
4577
4577
|
REPA_2: number;
|
|
4578
4578
|
RGU_Total: number;
|
|
4579
|
+
Tecnico: TecnicoValDTO;
|
|
4580
|
+
EECC: EECC_DTO;
|
|
4581
|
+
Anio: number;
|
|
4582
|
+
Mes: number;
|
|
4583
|
+
Dia: number;
|
|
4579
4584
|
}
|
|
4580
4585
|
|
|
4581
4586
|
declare class peru9112TOAENTITY {
|
package/dist/index.js
CHANGED
|
@@ -26,8 +26,8 @@ var __decorateClass = (decorators, target, key, kind) => {
|
|
|
26
26
|
};
|
|
27
27
|
|
|
28
28
|
// src/index.ts
|
|
29
|
-
var
|
|
30
|
-
__export(
|
|
29
|
+
var src_exports = {};
|
|
30
|
+
__export(src_exports, {
|
|
31
31
|
ActaFinalCubicacionDTO: () => ActaFinalCubicacionDTO,
|
|
32
32
|
ActaFinalCubicacionSharedDTO: () => ActaFinalCubicacionSharedDTO,
|
|
33
33
|
ActividadZonasActividadDTO: () => ActividadZonasActividadDTO,
|
|
@@ -426,7 +426,7 @@ __export(index_exports, {
|
|
|
426
426
|
validateAndFormatData: () => validateAndFormatData,
|
|
427
427
|
validateArrayBody: () => validateArrayBody
|
|
428
428
|
});
|
|
429
|
-
module.exports = __toCommonJS(
|
|
429
|
+
module.exports = __toCommonJS(src_exports);
|
|
430
430
|
var import_reflect_metadata = require("reflect-metadata");
|
|
431
431
|
|
|
432
432
|
// src/administracion/mail structure/shared/dto/destinatario-dto.ts
|
|
@@ -23900,6 +23900,11 @@ var ToaClaroENTITY = class {
|
|
|
23900
23900
|
Extensor_2 = 0;
|
|
23901
23901
|
REPA_2 = 0;
|
|
23902
23902
|
RGU_Total = 0;
|
|
23903
|
+
Tecnico = new TecnicoValDTO();
|
|
23904
|
+
EECC = new EECC_DTO();
|
|
23905
|
+
Anio = 0;
|
|
23906
|
+
Mes = 0;
|
|
23907
|
+
Dia = 0;
|
|
23903
23908
|
};
|
|
23904
23909
|
__decorateClass([
|
|
23905
23910
|
(0, import_class_validator411.IsString)({ message: "debe ser un texto" }),
|
|
@@ -24184,6 +24189,33 @@ __decorateClass([
|
|
|
24184
24189
|
(0, import_class_validator411.IsNumber)({}, { message: "debe ser un numero" }),
|
|
24185
24190
|
(0, import_class_validator411.Min)(0, { message: "el valor m\xEDnimo es 0" })
|
|
24186
24191
|
], ToaClaroENTITY.prototype, "RGU_Total", 2);
|
|
24192
|
+
__decorateClass([
|
|
24193
|
+
(0, import_class_transformer410.Type)(() => TecnicoValDTO),
|
|
24194
|
+
(0, import_class_validator411.IsNotEmpty)({ message: "es requerido" }),
|
|
24195
|
+
(0, import_class_transformer410.Expose)(),
|
|
24196
|
+
(0, import_class_validator411.ValidateNested)()
|
|
24197
|
+
], ToaClaroENTITY.prototype, "Tecnico", 2);
|
|
24198
|
+
__decorateClass([
|
|
24199
|
+
(0, import_class_transformer410.Type)(() => EECC_DTO),
|
|
24200
|
+
(0, import_class_validator411.IsNotEmpty)({ message: "es requerido" }),
|
|
24201
|
+
(0, import_class_transformer410.Expose)(),
|
|
24202
|
+
(0, import_class_validator411.ValidateNested)()
|
|
24203
|
+
], ToaClaroENTITY.prototype, "EECC", 2);
|
|
24204
|
+
__decorateClass([
|
|
24205
|
+
(0, import_class_validator411.IsNumber)({}, { message: "debe ser un numero" }),
|
|
24206
|
+
(0, import_class_validator411.Min)(0, { message: "el valor m\xEDnimo es 0" }),
|
|
24207
|
+
(0, import_class_transformer410.Expose)()
|
|
24208
|
+
], ToaClaroENTITY.prototype, "Anio", 2);
|
|
24209
|
+
__decorateClass([
|
|
24210
|
+
(0, import_class_validator411.IsNumber)({}, { message: "debe ser un numero" }),
|
|
24211
|
+
(0, import_class_validator411.Min)(0, { message: "el valor m\xEDnimo es 0" }),
|
|
24212
|
+
(0, import_class_transformer410.Expose)()
|
|
24213
|
+
], ToaClaroENTITY.prototype, "Mes", 2);
|
|
24214
|
+
__decorateClass([
|
|
24215
|
+
(0, import_class_validator411.IsNumber)({}, { message: "debe ser un numero" }),
|
|
24216
|
+
(0, import_class_validator411.Min)(0, { message: "el valor m\xEDnimo es 0" }),
|
|
24217
|
+
(0, import_class_transformer410.Expose)()
|
|
24218
|
+
], ToaClaroENTITY.prototype, "Dia", 2);
|
|
24187
24219
|
|
|
24188
24220
|
// src/operativa/procesos/toa_movistar/shared/index.ts
|
|
24189
24221
|
var import_class_transformer411 = require("class-transformer");
|
package/dist/index.mjs
CHANGED
|
@@ -23562,6 +23562,11 @@ var ToaClaroENTITY = class {
|
|
|
23562
23562
|
Extensor_2 = 0;
|
|
23563
23563
|
REPA_2 = 0;
|
|
23564
23564
|
RGU_Total = 0;
|
|
23565
|
+
Tecnico = new TecnicoValDTO();
|
|
23566
|
+
EECC = new EECC_DTO();
|
|
23567
|
+
Anio = 0;
|
|
23568
|
+
Mes = 0;
|
|
23569
|
+
Dia = 0;
|
|
23565
23570
|
};
|
|
23566
23571
|
__decorateClass([
|
|
23567
23572
|
IsString340({ message: "debe ser un texto" }),
|
|
@@ -23846,6 +23851,33 @@ __decorateClass([
|
|
|
23846
23851
|
IsNumber264({}, { message: "debe ser un numero" }),
|
|
23847
23852
|
Min216(0, { message: "el valor m\xEDnimo es 0" })
|
|
23848
23853
|
], ToaClaroENTITY.prototype, "RGU_Total", 2);
|
|
23854
|
+
__decorateClass([
|
|
23855
|
+
Type259(() => TecnicoValDTO),
|
|
23856
|
+
IsNotEmpty338({ message: "es requerido" }),
|
|
23857
|
+
Expose408(),
|
|
23858
|
+
ValidateNested229()
|
|
23859
|
+
], ToaClaroENTITY.prototype, "Tecnico", 2);
|
|
23860
|
+
__decorateClass([
|
|
23861
|
+
Type259(() => EECC_DTO),
|
|
23862
|
+
IsNotEmpty338({ message: "es requerido" }),
|
|
23863
|
+
Expose408(),
|
|
23864
|
+
ValidateNested229()
|
|
23865
|
+
], ToaClaroENTITY.prototype, "EECC", 2);
|
|
23866
|
+
__decorateClass([
|
|
23867
|
+
IsNumber264({}, { message: "debe ser un numero" }),
|
|
23868
|
+
Min216(0, { message: "el valor m\xEDnimo es 0" }),
|
|
23869
|
+
Expose408()
|
|
23870
|
+
], ToaClaroENTITY.prototype, "Anio", 2);
|
|
23871
|
+
__decorateClass([
|
|
23872
|
+
IsNumber264({}, { message: "debe ser un numero" }),
|
|
23873
|
+
Min216(0, { message: "el valor m\xEDnimo es 0" }),
|
|
23874
|
+
Expose408()
|
|
23875
|
+
], ToaClaroENTITY.prototype, "Mes", 2);
|
|
23876
|
+
__decorateClass([
|
|
23877
|
+
IsNumber264({}, { message: "debe ser un numero" }),
|
|
23878
|
+
Min216(0, { message: "el valor m\xEDnimo es 0" }),
|
|
23879
|
+
Expose408()
|
|
23880
|
+
], ToaClaroENTITY.prototype, "Dia", 2);
|
|
23849
23881
|
|
|
23850
23882
|
// src/operativa/procesos/toa_movistar/shared/index.ts
|
|
23851
23883
|
import { Expose as Expose409 } from "class-transformer";
|