sigesp 1.1.43-20250318 → 1.1.44-20250319
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/esm2020/lib/core/interfaces/Nomina.mjs +1 -1
- package/esm2020/lib/core/interfaces/RecursosHumanos.mjs +1 -1
- package/esm2020/lib/core/models/SNO/MAsignacionCargo.model.mjs +4 -1
- package/esm2020/lib/core/models/SNO/MCargosPersonal.model.mjs +7 -1
- package/fesm2015/sigesp.mjs +9 -0
- package/fesm2015/sigesp.mjs.map +1 -1
- package/fesm2020/sigesp.mjs +9 -0
- package/fesm2020/sigesp.mjs.map +1 -1
- package/lib/core/interfaces/Nomina.d.ts +1 -0
- package/lib/core/interfaces/RecursosHumanos.d.ts +3 -0
- package/lib/core/models/SNO/MAsignacionCargo.model.d.ts +1 -0
- package/lib/core/models/SNO/MCargosPersonal.model.d.ts +3 -0
- package/package.json +1 -1
|
@@ -305,6 +305,7 @@ export interface ICargosPersonal {
|
|
|
305
305
|
codtipper?: string;
|
|
306
306
|
id_dedicacion: string;
|
|
307
307
|
id_tipopersonal: string;
|
|
308
|
+
id_puetra: string;
|
|
308
309
|
estatus: string;
|
|
309
310
|
fecasi: string;
|
|
310
311
|
fecces: string;
|
|
@@ -325,6 +326,8 @@ export interface ICargosPersonal {
|
|
|
325
326
|
denclaper?: string;
|
|
326
327
|
codestorg?: string;
|
|
327
328
|
denestorg?: string;
|
|
329
|
+
despuetra?: string;
|
|
330
|
+
codpuetra?: string;
|
|
328
331
|
}
|
|
329
332
|
export interface IFamiliares {
|
|
330
333
|
id_enterprise: string;
|
|
@@ -40,6 +40,9 @@ export declare class MCargosPersonal extends MBasicModel {
|
|
|
40
40
|
fechaCese: string;
|
|
41
41
|
estatus: boolean;
|
|
42
42
|
denominacionEstatus: string;
|
|
43
|
+
idPuestoTrabajo: number;
|
|
44
|
+
codigoPuestoTrabajo: string;
|
|
45
|
+
descripcionPuestoTrabajo: string;
|
|
43
46
|
constructor(p?: ICargosPersonal);
|
|
44
47
|
dataInterface(): ICargosPersonal;
|
|
45
48
|
}
|