@andes/fhir 1.13.0-beta.4 → 1.13.0-beta.5

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.
@@ -124,8 +124,8 @@ function encode(practitioner) {
124
124
  unaMatricula.code = {
125
125
  coding: [{
126
126
  system: 'http://www.saludneuquen.gob.ar/fiscalizacion.html',
127
- code: String(datosPosgrado.especialidad.codigo ?? ''),
128
- display: String(datosPosgrado.especialidad.tipo ?? '')
127
+ code: String(datosPosgrado.especialidad.codigo.sisa ?? ''),
128
+ display: String(datosPosgrado.especialidad.nombre ?? '')
129
129
  }],
130
130
  text: String(ultima.matriculaNumero ?? '')
131
131
  };
@@ -43,8 +43,9 @@ export interface AndesProfesion {
43
43
  }
44
44
  export interface AndesEspecialidad {
45
45
  nombre?: string;
46
- codigo?: string;
47
- tipo?: string;
46
+ codigo: {
47
+ sisa: string;
48
+ };
48
49
  }
49
50
  export interface AndesFormacionGrado {
50
51
  profesion: AndesProfesion;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@andes/fhir",
3
- "version": "1.13.0-beta.4",
3
+ "version": "1.13.0-beta.5",
4
4
  "engines": {
5
5
  "node": ">=18.0.0"
6
6
  },