softdinlibreriajs 1.0.10 → 1.0.11
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/package.json
CHANGED
|
@@ -6,7 +6,7 @@ class EnumTipoServicioSeguridadSocial {
|
|
|
6
6
|
static SENA = 5;
|
|
7
7
|
static ICBF = 6;
|
|
8
8
|
static ESAP = 7;
|
|
9
|
-
static
|
|
9
|
+
static MIED = 8;
|
|
10
10
|
static FONDO_CESANTIAS = 9;
|
|
11
11
|
|
|
12
12
|
static descriptions = [
|
|
@@ -17,7 +17,7 @@ class EnumTipoServicioSeguridadSocial {
|
|
|
17
17
|
{ id: EnumTipoServicioSeguridadSocial.SENA, code: 'SENA', description: 'SENA' },
|
|
18
18
|
{ id: EnumTipoServicioSeguridadSocial.ICBF, code: 'ICBF', description: 'ICBF' },
|
|
19
19
|
{ id: EnumTipoServicioSeguridadSocial.ESAP, code: 'ESAP', description: 'ESAP' },
|
|
20
|
-
{ id: EnumTipoServicioSeguridadSocial.
|
|
20
|
+
{ id: EnumTipoServicioSeguridadSocial.MIED, code: 'MIED', description: 'Ministerio de Educación' },
|
|
21
21
|
{ id: EnumTipoServicioSeguridadSocial.FONDO_CESANTIAS, code: 'FONDO_CESANTIAS', description: 'Fondo de Cesantías' }
|
|
22
22
|
];
|
|
23
23
|
|