sigo-entities 1.0.32 → 1.0.34
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 +4 -4
- package/dist/index.d.ts +4 -4
- package/dist/index.js +9 -8
- package/dist/index.mjs +252 -251
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1106,8 +1106,8 @@ declare class ParteDiarioDTO$1 {
|
|
|
1106
1106
|
UsuarioEdicion: UsuarioDTO;
|
|
1107
1107
|
UsuarioAprobacion: UsuarioDTO;
|
|
1108
1108
|
Novedad: string;
|
|
1109
|
-
UltimoEstadoInterno:
|
|
1110
|
-
EstadosInternos:
|
|
1109
|
+
UltimoEstadoInterno: EstadoInternoWithoutSubstateDTO;
|
|
1110
|
+
EstadosInternos: EstadoInternoWithoutSubstateDTO[];
|
|
1111
1111
|
}
|
|
1112
1112
|
|
|
1113
1113
|
declare class SubManoObraDTO$1 {
|
|
@@ -1218,8 +1218,8 @@ declare class TrabajoENTITY {
|
|
|
1218
1218
|
Ubicacion: UbicacionDTO$1;
|
|
1219
1219
|
Ultima_PreLiquidacion: Ultima_PreLiquidacionDTO;
|
|
1220
1220
|
Ultima_asignacion: Ultima_asignacionDTO$1;
|
|
1221
|
-
Ultimo_Estado_Interno:
|
|
1222
|
-
Estados_Internos:
|
|
1221
|
+
Ultimo_Estado_Interno: EstadoInternoWithoutSubstateDTO;
|
|
1222
|
+
Estados_Internos: EstadoInternoWithoutSubstateDTO[];
|
|
1223
1223
|
PartesDiarios: ParteDiarioDTO$1[];
|
|
1224
1224
|
}
|
|
1225
1225
|
|
package/dist/index.d.ts
CHANGED
|
@@ -1106,8 +1106,8 @@ declare class ParteDiarioDTO$1 {
|
|
|
1106
1106
|
UsuarioEdicion: UsuarioDTO;
|
|
1107
1107
|
UsuarioAprobacion: UsuarioDTO;
|
|
1108
1108
|
Novedad: string;
|
|
1109
|
-
UltimoEstadoInterno:
|
|
1110
|
-
EstadosInternos:
|
|
1109
|
+
UltimoEstadoInterno: EstadoInternoWithoutSubstateDTO;
|
|
1110
|
+
EstadosInternos: EstadoInternoWithoutSubstateDTO[];
|
|
1111
1111
|
}
|
|
1112
1112
|
|
|
1113
1113
|
declare class SubManoObraDTO$1 {
|
|
@@ -1218,8 +1218,8 @@ declare class TrabajoENTITY {
|
|
|
1218
1218
|
Ubicacion: UbicacionDTO$1;
|
|
1219
1219
|
Ultima_PreLiquidacion: Ultima_PreLiquidacionDTO;
|
|
1220
1220
|
Ultima_asignacion: Ultima_asignacionDTO$1;
|
|
1221
|
-
Ultimo_Estado_Interno:
|
|
1222
|
-
Estados_Internos:
|
|
1221
|
+
Ultimo_Estado_Interno: EstadoInternoWithoutSubstateDTO;
|
|
1222
|
+
Estados_Internos: EstadoInternoWithoutSubstateDTO[];
|
|
1223
1223
|
PartesDiarios: ParteDiarioDTO$1[];
|
|
1224
1224
|
}
|
|
1225
1225
|
|
package/dist/index.js
CHANGED
|
@@ -2388,7 +2388,7 @@ __decorateClass([
|
|
|
2388
2388
|
__decorateClass([
|
|
2389
2389
|
(0, import_class_validator54.IsString)({ message: "debe ser un texto" }),
|
|
2390
2390
|
(0, import_class_validator54.IsNotEmpty)({ message: "es requerido" }),
|
|
2391
|
-
(0, import_class_validator54.
|
|
2391
|
+
(0, import_class_validator54.MinLength)(0, { message: "debe tener al menos 0 caracteres" }),
|
|
2392
2392
|
(0, import_class_transformer53.Expose)()
|
|
2393
2393
|
], EstadoInternoDTO.prototype, "Icono", 2);
|
|
2394
2394
|
__decorateClass([
|
|
@@ -2460,8 +2460,9 @@ __decorateClass([
|
|
|
2460
2460
|
(0, import_class_transformer54.Expose)()
|
|
2461
2461
|
], EstadoInternoWithoutSubstateDTO.prototype, "ID_EstadoInterno", 2);
|
|
2462
2462
|
__decorateClass([
|
|
2463
|
+
(0, import_class_validator55.IsDefined)(),
|
|
2464
|
+
(0, import_class_transformer54.Type)(() => Date),
|
|
2463
2465
|
(0, import_class_validator55.IsDate)({ message: "debe ser una fecha" }),
|
|
2464
|
-
(0, import_class_validator55.IsNotEmpty)({ message: "es requerido" }),
|
|
2465
2466
|
(0, import_class_transformer54.Expose)()
|
|
2466
2467
|
], EstadoInternoWithoutSubstateDTO.prototype, "Fecha", 2);
|
|
2467
2468
|
__decorateClass([
|
|
@@ -6111,7 +6112,7 @@ var ParteDiarioDTO = class {
|
|
|
6111
6112
|
UsuarioEdicion = new UsuarioDTO();
|
|
6112
6113
|
UsuarioAprobacion = new UsuarioDTO();
|
|
6113
6114
|
Novedad = "";
|
|
6114
|
-
UltimoEstadoInterno = new
|
|
6115
|
+
UltimoEstadoInterno = new EstadoInternoWithoutSubstateDTO();
|
|
6115
6116
|
EstadosInternos = [];
|
|
6116
6117
|
};
|
|
6117
6118
|
__decorateClass([
|
|
@@ -6170,13 +6171,13 @@ __decorateClass([
|
|
|
6170
6171
|
(0, import_class_transformer120.Expose)()
|
|
6171
6172
|
], ParteDiarioDTO.prototype, "Novedad", 2);
|
|
6172
6173
|
__decorateClass([
|
|
6173
|
-
(0, import_class_transformer120.Type)(() =>
|
|
6174
|
+
(0, import_class_transformer120.Type)(() => EstadoInternoWithoutSubstateDTO),
|
|
6174
6175
|
(0, import_class_validator121.IsNotEmpty)({ message: "es requerido" }),
|
|
6175
6176
|
(0, import_class_transformer120.Expose)(),
|
|
6176
6177
|
(0, import_class_validator121.ValidateNested)()
|
|
6177
6178
|
], ParteDiarioDTO.prototype, "UltimoEstadoInterno", 2);
|
|
6178
6179
|
__decorateClass([
|
|
6179
|
-
(0, import_class_transformer120.Type)(() =>
|
|
6180
|
+
(0, import_class_transformer120.Type)(() => EstadoInternoWithoutSubstateDTO),
|
|
6180
6181
|
(0, import_class_validator121.IsNotEmpty)({ message: "es requerido" }),
|
|
6181
6182
|
(0, import_class_transformer120.Expose)(),
|
|
6182
6183
|
(0, import_class_validator121.IsArray)(),
|
|
@@ -6753,7 +6754,7 @@ var TrabajoENTITY = class {
|
|
|
6753
6754
|
Ubicacion = new UbicacionDTO();
|
|
6754
6755
|
Ultima_PreLiquidacion = new Ultima_PreLiquidacionDTO();
|
|
6755
6756
|
Ultima_asignacion = new Ultima_asignacionDTO();
|
|
6756
|
-
Ultimo_Estado_Interno = new
|
|
6757
|
+
Ultimo_Estado_Interno = new EstadoInternoWithoutSubstateDTO();
|
|
6757
6758
|
Estados_Internos = [];
|
|
6758
6759
|
PartesDiarios = [];
|
|
6759
6760
|
};
|
|
@@ -6824,13 +6825,13 @@ __decorateClass([
|
|
|
6824
6825
|
(0, import_class_validator129.ValidateNested)()
|
|
6825
6826
|
], TrabajoENTITY.prototype, "Ultima_asignacion", 2);
|
|
6826
6827
|
__decorateClass([
|
|
6827
|
-
(0, import_class_transformer128.Type)(() =>
|
|
6828
|
+
(0, import_class_transformer128.Type)(() => EstadoInternoWithoutSubstateDTO),
|
|
6828
6829
|
(0, import_class_validator129.IsNotEmpty)({ message: "es requerido" }),
|
|
6829
6830
|
(0, import_class_transformer128.Expose)(),
|
|
6830
6831
|
(0, import_class_validator129.ValidateNested)()
|
|
6831
6832
|
], TrabajoENTITY.prototype, "Ultimo_Estado_Interno", 2);
|
|
6832
6833
|
__decorateClass([
|
|
6833
|
-
(0, import_class_transformer128.Type)(() =>
|
|
6834
|
+
(0, import_class_transformer128.Type)(() => EstadoInternoWithoutSubstateDTO),
|
|
6834
6835
|
(0, import_class_validator129.IsNotEmpty)({ message: "es requerido" }),
|
|
6835
6836
|
(0, import_class_transformer128.Expose)(),
|
|
6836
6837
|
(0, import_class_validator129.IsArray)(),
|