sigesp 0.9.64-20230913 → 0.9.66-20230914
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 +19 -1
- 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/interfaces/Tributos.js +1 -1
- package/esm2015/lib/core/models/SNO/MBeneficiario.model.js +4 -1
- package/esm2015/lib/core/models/SNO/MConfiguracionSNO.model.js +10 -1
- package/esm2015/lib/core/models/STB/deduction.model.js +8 -2
- package/fesm2015/sigesp.js +19 -1
- package/fesm2015/sigesp.js.map +1 -1
- package/lib/core/interfaces/RecursosHumanos.d.ts +4 -0
- package/lib/core/interfaces/Tributos.d.ts +2 -0
- package/lib/core/models/SNO/MBeneficiario.model.d.ts +1 -0
- package/lib/core/models/SNO/MConfiguracionSNO.model.d.ts +3 -0
- package/lib/core/models/STB/deduction.model.d.ts +2 -0
- package/package.json +1 -1
|
@@ -133,6 +133,9 @@ export interface IConfiguracionSNO {
|
|
|
133
133
|
desest?: string;
|
|
134
134
|
desmun?: string;
|
|
135
135
|
despar?: string;
|
|
136
|
+
segper: string;
|
|
137
|
+
regdesinc: string;
|
|
138
|
+
reglabinc: string;
|
|
136
139
|
}
|
|
137
140
|
export interface IIncidencia {
|
|
138
141
|
valor: string;
|
|
@@ -475,6 +478,7 @@ export interface IBenefiaciario {
|
|
|
475
478
|
codest: string;
|
|
476
479
|
codmun: string;
|
|
477
480
|
codpar: string;
|
|
481
|
+
id_dt_ben: string;
|
|
478
482
|
despai?: string;
|
|
479
483
|
desest?: string;
|
|
480
484
|
desmun?: string;
|
|
@@ -135,6 +135,9 @@ export declare class MConfiguracionSNO extends MBasicModel {
|
|
|
135
135
|
descripcionEstado: string;
|
|
136
136
|
descripcionMunicipio: string;
|
|
137
137
|
descripcionParroquia: string;
|
|
138
|
+
registroDescansoIncidencia: string;
|
|
139
|
+
registroLaboralIncidencia: string;
|
|
140
|
+
codigoConceptoVaccaiones: string;
|
|
138
141
|
constructor(I?: IConfiguracionSNO);
|
|
139
142
|
dataInterface(): IConfiguracionSNO;
|
|
140
143
|
}
|
|
@@ -13,6 +13,8 @@ export declare class MDeduction extends MBasicModel {
|
|
|
13
13
|
deducible: number;
|
|
14
14
|
tipopers: string;
|
|
15
15
|
id_conret: number;
|
|
16
|
+
customerRetentionAccount: string;
|
|
17
|
+
statusCommercial: number;
|
|
16
18
|
constructor(deduction?: IDeduction);
|
|
17
19
|
dataInterface(): IDeduction;
|
|
18
20
|
}
|