sigesp 0.9.63-20230912 → 0.9.65-20230913

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.
@@ -125,6 +125,17 @@ export interface IConfiguracionSNO {
125
125
  regasiinc: string;
126
126
  manindmod: string;
127
127
  digcodcon: string;
128
+ codpai: string;
129
+ codest: string;
130
+ codmun: string;
131
+ codpar: string;
132
+ despai?: string;
133
+ desest?: string;
134
+ desmun?: string;
135
+ despar?: string;
136
+ segper: string;
137
+ regdesinc: string;
138
+ reglabinc: string;
128
139
  }
129
140
  export interface IIncidencia {
130
141
  valor: string;
@@ -458,16 +469,26 @@ export interface IBenefiaciario {
458
469
  tribunal: string;
459
470
  fecres: string;
460
471
  numres: string;
461
- cedpro?: string;
462
- nompro?: string;
463
- nomfam?: string;
472
+ cedpro: string;
473
+ nompro: string;
474
+ nomfam: string;
475
+ dirpro: string;
476
+ telpro: string;
477
+ codpai: string;
478
+ codest: string;
479
+ codmun: string;
480
+ codpar: string;
481
+ despai?: string;
482
+ desest?: string;
483
+ desmun?: string;
484
+ despar?: string;
485
+ nomtipcta?: string;
486
+ nomban?: string;
464
487
  apefam?: string;
465
488
  cedfam?: string;
466
489
  nexfam?: string;
467
490
  dirfam?: string;
468
491
  telfam?: string;
469
- nomtipcta?: string;
470
- nomban?: string;
471
492
  }
472
493
  export interface IVacacionesPersonal {
473
494
  id_enterprise: string;
@@ -1121,6 +1142,9 @@ export interface IPersonalJubilado {
1121
1142
  ultrem: string;
1122
1143
  fecvida: string;
1123
1144
  tipjub: string;
1145
+ fecres: string;
1146
+ numres: string;
1147
+ pordis: string;
1124
1148
  }
1125
1149
  export interface IFideicomisoInteres {
1126
1150
  id_enterprise: string;
@@ -29,6 +29,16 @@ export declare class MBeneficiario extends MBasicModel {
29
29
  tribunal: string;
30
30
  fechaResolucion: string;
31
31
  numeroResolucion: string;
32
+ direccionProveedor: string;
33
+ telelefonoProveedor: string;
34
+ codigoPais: string;
35
+ codigoEstado: string;
36
+ codigoMunicipio: string;
37
+ codigoParroquia: string;
38
+ descripcionPais: string;
39
+ descripcionEstado: string;
40
+ descripcionMunicipio: string;
41
+ descripcionParroquia: string;
32
42
  constructor(e?: IBenefiaciario);
33
43
  dataInterface(): IBenefiaciario;
34
44
  }
@@ -127,6 +127,17 @@ export declare class MConfiguracionSNO extends MBasicModel {
127
127
  manejoIndependienteModulo: number;
128
128
  digitosCodigoConcepto: number;
129
129
  segmentarPersonal: number;
130
+ codigoPais: string;
131
+ codigoEstado: string;
132
+ codigoMunicipio: string;
133
+ codigoParroquia: string;
134
+ descripcionPais: string;
135
+ descripcionEstado: string;
136
+ descripcionMunicipio: string;
137
+ descripcionParroquia: string;
138
+ registroDescansoIncidencia: string;
139
+ registroLaboralIncidencia: string;
140
+ codigoConceptoVaccaiones: string;
130
141
  constructor(I?: IConfiguracionSNO);
131
142
  dataInterface(): IConfiguracionSNO;
132
143
  }
@@ -12,6 +12,9 @@ export declare class MPersonalJubilado extends MBasicModel {
12
12
  ultimaRemuneracion: number;
13
13
  fechaFeVida: string;
14
14
  tipoJubilacion: number;
15
+ fechaResolucion: string;
16
+ numeroResolucion: string;
17
+ porcentajeDiscapacidad: string;
15
18
  constructor(e?: IPersonalJubilado);
16
19
  dataInterface(): IPersonalJubilado;
17
20
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sigesp",
3
- "version": "0.9.63-20230912",
3
+ "version": "0.9.65-20230913",
4
4
  "dependencies": {
5
5
  "tslib": "^2.0.0"
6
6
  },