sigo-entities 1.2.218 → 1.2.219
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 +13 -0
- package/dist/index.d.ts +13 -0
- package/dist/index.js +723 -653
- package/dist/index.mjs +671 -601
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -7254,6 +7254,18 @@ declare class STB_DTH_ToaENTITY {
|
|
|
7254
7254
|
EECC: EECCDBTOADTO;
|
|
7255
7255
|
}
|
|
7256
7256
|
|
|
7257
|
+
declare class MateterialesTuvesDTO {
|
|
7258
|
+
codigo: string;
|
|
7259
|
+
descripcion: string;
|
|
7260
|
+
lote: string;
|
|
7261
|
+
cantidad: number;
|
|
7262
|
+
invsn: string;
|
|
7263
|
+
invtype: string;
|
|
7264
|
+
invpool: string;
|
|
7265
|
+
identificacion: string;
|
|
7266
|
+
documento: string;
|
|
7267
|
+
}
|
|
7268
|
+
|
|
7257
7269
|
declare class TuvesENTITY {
|
|
7258
7270
|
_id: string;
|
|
7259
7271
|
tecnico: string;
|
|
@@ -7304,6 +7316,7 @@ declare class TuvesENTITY {
|
|
|
7304
7316
|
averia_por_mxa: string;
|
|
7305
7317
|
pedido_recuperado: string;
|
|
7306
7318
|
reprogramado_por_prioridad: string;
|
|
7319
|
+
materiales: MateterialesTuvesDTO[];
|
|
7307
7320
|
inventory: MaterialestoaDBDTO[];
|
|
7308
7321
|
productos_servicios_contratado: ProductosServiciosContratadoDBDTO[];
|
|
7309
7322
|
PB: number;
|
package/dist/index.d.ts
CHANGED
|
@@ -7254,6 +7254,18 @@ declare class STB_DTH_ToaENTITY {
|
|
|
7254
7254
|
EECC: EECCDBTOADTO;
|
|
7255
7255
|
}
|
|
7256
7256
|
|
|
7257
|
+
declare class MateterialesTuvesDTO {
|
|
7258
|
+
codigo: string;
|
|
7259
|
+
descripcion: string;
|
|
7260
|
+
lote: string;
|
|
7261
|
+
cantidad: number;
|
|
7262
|
+
invsn: string;
|
|
7263
|
+
invtype: string;
|
|
7264
|
+
invpool: string;
|
|
7265
|
+
identificacion: string;
|
|
7266
|
+
documento: string;
|
|
7267
|
+
}
|
|
7268
|
+
|
|
7257
7269
|
declare class TuvesENTITY {
|
|
7258
7270
|
_id: string;
|
|
7259
7271
|
tecnico: string;
|
|
@@ -7304,6 +7316,7 @@ declare class TuvesENTITY {
|
|
|
7304
7316
|
averia_por_mxa: string;
|
|
7305
7317
|
pedido_recuperado: string;
|
|
7306
7318
|
reprogramado_por_prioridad: string;
|
|
7319
|
+
materiales: MateterialesTuvesDTO[];
|
|
7307
7320
|
inventory: MaterialestoaDBDTO[];
|
|
7308
7321
|
productos_servicios_contratado: ProductosServiciosContratadoDBDTO[];
|
|
7309
7322
|
PB: number;
|