sigesp 0.9.63-20230912 → 0.9.64-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,14 @@ 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;
128
136
  }
129
137
  export interface IIncidencia {
130
138
  valor: string;
@@ -458,16 +466,26 @@ export interface IBenefiaciario {
458
466
  tribunal: string;
459
467
  fecres: string;
460
468
  numres: string;
461
- cedpro?: string;
462
- nompro?: string;
463
- nomfam?: string;
469
+ cedpro: string;
470
+ nompro: string;
471
+ nomfam: string;
472
+ dirpro: string;
473
+ telpro: string;
474
+ codpai: string;
475
+ codest: string;
476
+ codmun: string;
477
+ codpar: string;
478
+ despai?: string;
479
+ desest?: string;
480
+ desmun?: string;
481
+ despar?: string;
482
+ nomtipcta?: string;
483
+ nomban?: string;
464
484
  apefam?: string;
465
485
  cedfam?: string;
466
486
  nexfam?: string;
467
487
  dirfam?: string;
468
488
  telfam?: string;
469
- nomtipcta?: string;
470
- nomban?: string;
471
489
  }
472
490
  export interface IVacacionesPersonal {
473
491
  id_enterprise: string;
@@ -1121,6 +1139,9 @@ export interface IPersonalJubilado {
1121
1139
  ultrem: string;
1122
1140
  fecvida: string;
1123
1141
  tipjub: string;
1142
+ fecres: string;
1143
+ numres: string;
1144
+ pordis: string;
1124
1145
  }
1125
1146
  export interface IFideicomisoInteres {
1126
1147
  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,14 @@ 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;
130
138
  constructor(I?: IConfiguracionSNO);
131
139
  dataInterface(): IConfiguracionSNO;
132
140
  }
@@ -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.64-20230913",
4
4
  "dependencies": {
5
5
  "tslib": "^2.0.0"
6
6
  },