sigesp 0.9.58-20230906 → 0.9.60-20230910
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/bundles/sigesp.umd.js +17 -2
- package/bundles/sigesp.umd.js.map +1 -1
- package/bundles/sigesp.umd.min.js +1 -1
- package/bundles/sigesp.umd.min.js.map +1 -1
- package/esm2015/lib/core/interfaces/RecursosHumanos.js +1 -1
- package/esm2015/lib/core/models/SNO/MBeneficiario.model.js +7 -1
- package/esm2015/lib/core/models/SNO/MPersonal.model.js +10 -1
- package/esm2015/lib/sigesp.service.js +3 -3
- package/fesm2015/sigesp.js +17 -2
- package/fesm2015/sigesp.js.map +1 -1
- package/lib/core/interfaces/RecursosHumanos.d.ts +5 -0
- package/lib/core/models/SNO/MBeneficiario.model.d.ts +2 -0
- package/lib/core/models/SNO/MPersonal.model.d.ts +3 -0
- package/package.json +1 -1
|
@@ -233,6 +233,9 @@ export interface IPersonal {
|
|
|
233
233
|
despuetra?: string;
|
|
234
234
|
id_hora: string;
|
|
235
235
|
id_planhor: string;
|
|
236
|
+
fecdef: string;
|
|
237
|
+
fecactdef: string;
|
|
238
|
+
numactdef: string;
|
|
236
239
|
codpro?: string;
|
|
237
240
|
denpro?: string;
|
|
238
241
|
monpen?: string;
|
|
@@ -448,6 +451,8 @@ export interface IBenefiaciario {
|
|
|
448
451
|
numexpben: string;
|
|
449
452
|
medact: string;
|
|
450
453
|
tribunal: string;
|
|
454
|
+
fecres: string;
|
|
455
|
+
numres: string;
|
|
451
456
|
cedpro?: string;
|
|
452
457
|
nompro?: string;
|
|
453
458
|
nomfam?: string;
|
|
@@ -27,6 +27,8 @@ export declare class MBeneficiario extends MBasicModel {
|
|
|
27
27
|
denominacionTipoCuenta: string;
|
|
28
28
|
medidaActiva: boolean;
|
|
29
29
|
tribunal: string;
|
|
30
|
+
fechaResolucion: string;
|
|
31
|
+
numeroResolucion: string;
|
|
30
32
|
constructor(e?: IBenefiaciario);
|
|
31
33
|
dataInterface(): IBenefiaciario;
|
|
32
34
|
}
|
|
@@ -111,6 +111,9 @@ export declare class MPersonal extends MBasicModel {
|
|
|
111
111
|
descripcionPuestoTrabajo: string;
|
|
112
112
|
codigoPuestoTrabajo: string;
|
|
113
113
|
descripcionHorario: string;
|
|
114
|
+
fechaDefuncion: string;
|
|
115
|
+
fechaActaDefuncion: string;
|
|
116
|
+
numeroActaDefuncion: string;
|
|
114
117
|
constructor(p?: IPersonal);
|
|
115
118
|
dataInterface(): IPersonal;
|
|
116
119
|
}
|