sigesp 0.9.65-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.
@@ -478,6 +478,7 @@ export interface IBenefiaciario {
478
478
  codest: string;
479
479
  codmun: string;
480
480
  codpar: string;
481
+ id_dt_ben: string;
481
482
  despai?: string;
482
483
  desest?: string;
483
484
  desmun?: string;
@@ -35,6 +35,8 @@ export interface IDeduction {
35
35
  deducible: string;
36
36
  tipopers: string;
37
37
  id_conret: string;
38
+ estdedaplcom: string;
39
+ sc_cuenta_retcli: string;
38
40
  }
39
41
  export interface IConceptoRetencion {
40
42
  id_empresa: string;
@@ -3,6 +3,7 @@ import { IBenefiaciario } from "../../interfaces/RecursosHumanos";
3
3
  export declare class MBeneficiario extends MBasicModel {
4
4
  idEnterprise: number;
5
5
  idEmpresa: number;
6
+ idDtBeneficiario: number;
6
7
  idPersonal: number;
7
8
  idFamiliar: number;
8
9
  idProveedor: number;
@@ -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
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sigesp",
3
- "version": "0.9.65-20230913",
3
+ "version": "0.9.66-20230914",
4
4
  "dependencies": {
5
5
  "tslib": "^2.0.0"
6
6
  },