@andes/fhir 1.11.1 → 1.12.0-beta.2
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/.circleci/config.yml +71 -68
- package/.editorconfig +13 -13
- package/.env.example +2 -0
- package/.github/labeler.yml +10 -10
- package/.github/pull_request_template.md +28 -28
- package/.github/workflows/build_test.yml +14 -14
- package/.github/workflows/has_conflicts.yml +13 -13
- package/.vscode/settings.json +2 -0
- package/CHANGELOG.md +312 -291
- package/LICENSE +674 -674
- package/README.md +2 -2
- package/coverage/clover.xml +198 -0
- package/coverage/coverage-final.json +5 -0
- package/coverage/lcov-report/base.css +224 -0
- package/coverage/lcov-report/block-navigation.js +87 -0
- package/coverage/lcov-report/config.ts.html +136 -0
- package/coverage/lcov-report/device.ts.html +193 -0
- package/coverage/lcov-report/favicon.png +0 -0
- package/coverage/lcov-report/helpers/index.html +116 -0
- package/coverage/lcov-report/helpers/patientFactory.ts.html +124 -0
- package/coverage/lcov-report/index.html +131 -0
- package/coverage/lcov-report/lib/config.ts.html +136 -0
- package/coverage/lcov-report/lib/device.ts.html +193 -0
- package/coverage/lcov-report/lib/index.html +146 -0
- package/coverage/lcov-report/lib/patient.ts.html +1267 -0
- package/coverage/lcov-report/patient.ts.html +1207 -0
- package/coverage/lcov-report/prettify.css +1 -0
- package/coverage/lcov-report/prettify.js +2 -0
- package/coverage/lcov-report/sort-arrow-sprite.png +0 -0
- package/coverage/lcov-report/sorter.js +210 -0
- package/coverage/lcov.info +410 -0
- package/dist/index.js +51 -32
- package/dist/index.js.map +1 -1
- package/dist/src/data/patient.json +191 -185
- package/dist/src/helpers/patientFactory.js +31 -0
- package/dist/src/helpers/patientFactory.js.map +1 -0
- package/dist/src/lib/allergyIntolerance.js +39 -39
- package/dist/src/lib/allergyIntolerance.js.map +1 -1
- package/dist/src/lib/bundle.js +25 -22
- package/dist/src/lib/bundle.js.map +1 -1
- package/dist/src/lib/composition.js +151 -150
- package/dist/src/lib/composition.js.map +1 -1
- package/dist/src/lib/condition.js +79 -79
- package/dist/src/lib/condition.js.map +1 -1
- package/dist/src/lib/config.js +20 -22
- package/dist/src/lib/config.js.map +1 -1
- package/dist/src/lib/config.test.js +12 -12
- package/dist/src/lib/config.test.js.map +1 -1
- package/dist/src/lib/device.js +38 -38
- package/dist/src/lib/device.js.map +1 -1
- package/dist/src/lib/device.test.js +9 -9
- package/dist/src/lib/device.test.js.map +1 -1
- package/dist/src/lib/document-reference.js +106 -103
- package/dist/src/lib/document-reference.js.map +1 -1
- package/dist/src/lib/immunization.js +67 -67
- package/dist/src/lib/medication.js +64 -64
- package/dist/src/lib/medication.js.map +1 -1
- package/dist/src/lib/medicationRequest.js +102 -99
- package/dist/src/lib/medicationRequest.js.map +1 -1
- package/dist/src/lib/medicationStatement.js +55 -55
- package/dist/src/lib/medicationStatement.js.map +1 -1
- package/dist/src/lib/organization.js +90 -90
- package/dist/src/lib/organization.js.map +1 -1
- package/dist/src/lib/patient.js +378 -360
- package/dist/src/lib/patient.js.map +1 -1
- package/dist/src/lib/patient.test.js +78 -39
- package/dist/src/lib/patient.test.js.map +1 -1
- package/dist/src/lib/practitioner.js +160 -160
- package/dist/src/lib/practitioner.js.map +1 -1
- package/index.ts +31 -31
- package/jest.config.js +11 -11
- package/package.json +45 -54
- package/release.config.js +74 -0
- package/src/data/patient.json +190 -184
- package/src/helpers/patientFactory.ts +13 -0
- package/src/lib/allergyIntolerance.ts +36 -36
- package/src/lib/bundle.ts +19 -19
- package/src/lib/composition.ts +153 -153
- package/src/lib/condition.ts +80 -80
- package/src/lib/config.test.ts +13 -13
- package/src/lib/config.ts +17 -17
- package/src/lib/device.test.ts +9 -9
- package/src/lib/device.ts +36 -36
- package/src/lib/document-reference.ts +102 -102
- package/src/lib/immunization.ts +64 -64
- package/src/lib/medication.ts +61 -61
- package/src/lib/medicationRequest.ts +100 -100
- package/src/lib/medicationStatement.ts +52 -52
- package/src/lib/organization.ts +89 -89
- package/src/lib/patient.test.ts +62 -38
- package/src/lib/patient.ts +394 -374
- package/src/lib/practitioner.ts +157 -157
- package/tsconfig.test.json +17 -17
- package/tslint.json +138 -138
package/CHANGELOG.md
CHANGED
|
@@ -1,306 +1,327 @@
|
|
|
1
|
-
|
|
1
|
+
# Changelog
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
### Bug Fixes
|
|
5
|
-
|
|
6
|
-
* **document-reference:** ajustes author ([429d86c](https://github.com/andes/fhir/commit/429d86c7dffd7b7562450746e75352b5d65cf478))
|
|
7
|
-
|
|
8
|
-
# [1.11.0](https://github.com/andes/fhir/compare/v1.10.0...v1.11.0) (2021-08-31)
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
### Features
|
|
12
|
-
|
|
13
|
-
* add organization to document reference ([51cbd96](https://github.com/andes/fhir/commit/51cbd962d207479812298704a9d221d3f210b32c))
|
|
14
|
-
|
|
15
|
-
# [1.10.0](https://github.com/andes/fhir/compare/v1.9.0...v1.10.0) (2021-08-25)
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
### Features
|
|
19
|
-
|
|
20
|
-
* **composition:** ajuste de custodian ([2069e81](https://github.com/andes/fhir/commit/2069e8120e64c5f59d47ce2cfa97644b54d3e6c7))
|
|
21
|
-
|
|
22
|
-
# [1.9.0](https://github.com/andes/fhir/compare/v1.8.3...v1.9.0) (2021-08-23)
|
|
3
|
+
# [1.12.0-beta.2](https://github.com/andes/fhir/compare/v1.12.0-beta.1...v1.12.0-beta.2) (2025-11-06)
|
|
23
4
|
|
|
24
5
|
|
|
25
6
|
### Features
|
|
26
7
|
|
|
27
|
-
*
|
|
28
|
-
|
|
29
|
-
## [1.8.3](https://github.com/andes/fhir/compare/v1.8.2...v1.8.3) (2021-07-26)
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
### Bug Fixes
|
|
33
|
-
|
|
34
|
-
* ajusta moment ([7e11c76](https://github.com/andes/fhir/commit/7e11c761823a74074c47c5534b4f1329ccc04c12))
|
|
35
|
-
|
|
36
|
-
## [1.8.2](https://github.com/andes/fhir/compare/v1.8.1...v1.8.2) (2021-07-26)
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
### Bug Fixes
|
|
40
|
-
|
|
41
|
-
* error en relaciones nulas ([0976888](https://github.com/andes/fhir/commit/09768885f87385bad2af3c23e61630958290a834))
|
|
42
|
-
|
|
43
|
-
## [1.8.1](https://github.com/andes/fhir/compare/v1.8.0...v1.8.1) (2021-04-15)
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
### Bug Fixes
|
|
47
|
-
|
|
48
|
-
* **moment:** Correct moment sintax ([0624910](https://github.com/andes/fhir/commit/062491018912e01dee9ef6d69e54d940c9213e33))
|
|
49
|
-
|
|
50
|
-
# [1.8.0](https://github.com/andes/fhir/compare/v1.7.0...v1.8.0) (2021-04-14)
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
### Features
|
|
54
|
-
|
|
55
|
-
* **patient:** add some test ([#17](https://github.com/andes/fhir/issues/17)) ([80bc576](https://github.com/andes/fhir/commit/80bc576e58bdbb0a5a028fb073b31d6c0b431bc6))
|
|
56
|
-
|
|
57
|
-
# [1.7.0](https://github.com/andes/fhir/compare/v1.6.0...v1.7.0) (2021-04-06)
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
### Features
|
|
61
|
-
|
|
62
|
-
* **unitTesting:** First steps unit testing ([#15](https://github.com/andes/fhir/issues/15)) ([d65d0fa](https://github.com/andes/fhir/commit/d65d0fa77d38a87daae6b16fd443d2ddbfbc52e3))
|
|
63
|
-
|
|
64
|
-
# [1.6.0](https://github.com/andes/fhir/compare/v1.5.0...v1.6.0) (2021-02-26)
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
### Features
|
|
68
|
-
|
|
69
|
-
* **medicationRequest:** Add path medication request ([a6ca080](https://github.com/andes/fhir/commit/a6ca080c474b9f0c5cb6b8598f168ca5d2ad6779))
|
|
70
|
-
|
|
71
|
-
# [1.5.0](https://github.com/andes/fhir/compare/v1.4.3...v1.5.0) (2021-02-26)
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
### Features
|
|
75
|
-
|
|
76
|
-
* **medicationRequest:** create and add some properties to this fhir resource ([#14](https://github.com/andes/fhir/issues/14)) ([9d4bb01](https://github.com/andes/fhir/commit/9d4bb01a271bb2e1a36c3ee8ae76f1553d1b2ec3))
|
|
77
|
-
|
|
78
|
-
## [1.4.3](https://github.com/andes/fhir/compare/v1.4.2...v1.4.3) (2020-11-27)
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
### Bug Fixes
|
|
82
|
-
|
|
83
|
-
* **patient:** fix en fecha de nacimiento y de fallecimiento ([#13](https://github.com/andes/fhir/issues/13)) ([6bac05a](https://github.com/andes/fhir/commit/6bac05a982b5c0990eab2d2420b96ee0ba1d564a))
|
|
84
|
-
|
|
85
|
-
## [1.4.2](https://github.com/andes/fhir/compare/v1.4.1...v1.4.2) (2020-11-02)
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
### Bug Fixes
|
|
89
|
-
|
|
90
|
-
* **patient:** verificar si el paciente no tiene fecha nacimiento ([#12](https://github.com/andes/fhir/issues/12)) ([3b39e05](https://github.com/andes/fhir/commit/3b39e056b98a7ad79985e31bb4efe75d5e700a71))
|
|
91
|
-
|
|
92
|
-
## [1.4.1](https://github.com/andes/fhir/compare/v1.4.0...v1.4.1) (2020-10-29)
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
### Bug Fixes
|
|
96
|
-
|
|
97
|
-
* **patient:** se resuleve problema en decode ([#11](https://github.com/andes/fhir/issues/11)) ([241e906](https://github.com/andes/fhir/commit/241e9060bd4eacf65bd75c55124111dd6764bb09))
|
|
98
|
-
|
|
99
|
-
# [1.4.0](https://github.com/andes/fhir/compare/v1.3.0...v1.4.0) (2020-10-29)
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
### Features
|
|
103
|
-
|
|
104
|
-
* **resources:** mejoras varias y agregado de alleryIntolerance ([#10](https://github.com/andes/fhir/issues/10)) ([f9085d6](https://github.com/andes/fhir/commit/f9085d6d5f51d60f5d1cf1cac5b03fa041b5f0f5))
|
|
105
|
-
|
|
106
|
-
# [1.3.0](https://github.com/andes/fhir/compare/v1.2.0...v1.3.0) (2020-08-05)
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
### Features
|
|
110
|
-
|
|
111
|
-
* **fhir:** agregamos la feature de medication y medicationStatement ([#8](https://github.com/andes/fhir/issues/8)) ([65771a2](https://github.com/andes/fhir/commit/65771a2052108f93f1ca819a49cd60408619e90c))
|
|
112
|
-
|
|
113
|
-
# [1.2.0](https://github.com/andes/fhir/compare/v1.1.0...v1.2.0) (2020-05-12)
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
### Features
|
|
117
|
-
|
|
118
|
-
* **inmunization:** modificamos la informacion del recurso vacunas ([b9a3443](https://github.com/andes/fhir/commit/b9a34439b049fc75f30e0419dbcd748d1b806d57))
|
|
119
|
-
|
|
120
|
-
# [1.1.0](https://github.com/andes/fhir/compare/v1.0.1...v1.1.0) (2020-02-14)
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
### Features
|
|
124
|
-
|
|
125
|
-
* **patient:** It's a lie ([4dc1748](https://github.com/andes/fhir/commit/4dc17484de9bcd21b985c8379d429749aa9332b2))
|
|
126
|
-
|
|
127
|
-
## [1.0.1](https://github.com/andes/fhir/compare/v1.0.0...v1.0.1) (2020-02-14)
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
### Bug Fixes
|
|
131
|
-
|
|
132
|
-
* **demo:** add some elemts to demo ([3bd926c](https://github.com/andes/fhir/commit/3bd926c1433ca67555aa3ef83c6145754745a201))
|
|
133
|
-
|
|
134
|
-
# 1.0.0 (2020-02-14)
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
### Bug Fixes
|
|
138
|
-
|
|
139
|
-
* **circle:** remove start ([32247c0](https://github.com/andes/fhir/commit/32247c048e366db878d0be29f31fbd9775c834b0))
|
|
140
|
-
* **circle:** working_dir ([dd2bc5d](https://github.com/andes/fhir/commit/dd2bc5dd682fd9a84c44bce9467a891265c5b584))
|
|
141
|
-
* **circle:** working_dir ([aacc1bd](https://github.com/andes/fhir/commit/aacc1bddc1eb2e09a74c3a402ce172ab1fc346e1))
|
|
142
|
-
* **circle_file:** more fixes ([7227c79](https://github.com/andes/fhir/commit/7227c79b5b1f85d6fcfb1058f6d9d6c94161ae4c))
|
|
143
|
-
* **circle_file:** more fixes ([b4120fc](https://github.com/andes/fhir/commit/b4120fc36621e94f90e9dcf324b2b5db6b39cc18))
|
|
144
|
-
* **circleci:** Delete backup configuration file ([077f4f0](https://github.com/andes/fhir/commit/077f4f0fccf80a14c605a0427fef5094a09f8b90))
|
|
145
|
-
* **circleci:** Delete backup configuration file ([66afcc7](https://github.com/andes/fhir/commit/66afcc7e5e11f36f9e14150a730ee3c4c0398cbf))
|
|
146
|
-
* **circleci:** remove npm start line ([5ca4773](https://github.com/andes/fhir/commit/5ca4773be8d50246e1250614c73201913a5eb9ea))
|
|
147
|
-
* **circleci:** remove string error ([52fe53b](https://github.com/andes/fhir/commit/52fe53b93bdc3fac5c2a6f5510313a17ad5363c2))
|
|
148
|
-
* **circleci:** remove string error ([e2297bc](https://github.com/andes/fhir/commit/e2297bc647e289db5d95167fef005a193c459475))
|
|
149
|
-
* **circleci:** semantic-release ([ed265ac](https://github.com/andes/fhir/commit/ed265ac3e2cf9afca6896c71d44125bcc4c067be))
|
|
150
|
-
* **circleci:** semantic-release ([e0c5eb2](https://github.com/andes/fhir/commit/e0c5eb21044761e373f9d797158a45a00c5741a8))
|
|
151
|
-
* **circlici:** More changes ([16d6cad](https://github.com/andes/fhir/commit/16d6cad33cae2e1aa5e16c839c1050d311b8a955))
|
|
152
|
-
* **circlici:** More changes ([402af6d](https://github.com/andes/fhir/commit/402af6d4ab30b1dee0218e5a3c8a2ee8a8e05003))
|
|
153
|
-
* **config:** add root directory ([67cc97a](https://github.com/andes/fhir/commit/67cc97a7db2ea35a5edc4585dcdb7b1b30209d8f))
|
|
154
|
-
* **config:** add root directory ([a510f26](https://github.com/andes/fhir/commit/a510f26f3fccf6c2d0ea3b14dbd60630ec41ab15))
|
|
155
|
-
* **config:** change name into the pipeline ([e3f61ff](https://github.com/andes/fhir/commit/e3f61ff170162fe94aa363cb363d238f352f7c01))
|
|
156
|
-
* **config:** change semnatic relaese call ([43533c8](https://github.com/andes/fhir/commit/43533c8f2aee7e4b7d1088494e96a0804b017884))
|
|
157
|
-
* **config:** change semnatic relaese call ([43df0d9](https://github.com/andes/fhir/commit/43df0d9bb907b6e58a5271a39faecdda12cfcb55))
|
|
158
|
-
* **config:** Fix install label ([740c449](https://github.com/andes/fhir/commit/740c4492e7a6ad4e14a734d108d53a90148dd5f3))
|
|
159
|
-
* **config:** Fix install label ([b146d86](https://github.com/andes/fhir/commit/b146d86ba2c44f245cc109720afb592c79d602f5))
|
|
160
|
-
* **config:** Indentation problems ([549acc8](https://github.com/andes/fhir/commit/549acc80699dc079387dc8e9274887f233b73be6))
|
|
161
|
-
* **config:** Indentation problems ([e949968](https://github.com/andes/fhir/commit/e949968da3378c355c2fab41d7acc5eff210eca0))
|
|
162
|
-
* **config:** remove working directory ([6dac7fc](https://github.com/andes/fhir/commit/6dac7fcf6c09834ae5b71ad3965b745dd01895fd))
|
|
163
|
-
* **config:** remove working directory ([e924595](https://github.com/andes/fhir/commit/e924595145e9251d378fe89fad3c618a61997ddd))
|
|
164
|
-
* **fhir:** Resilvemos el problema del formato fhir para family y given ([57dd4c7](https://github.com/andes/fhir/commit/57dd4c7e52bcdbc1b3362777e9a1534ae1eed2a8))
|
|
165
|
-
* **fhir:** Resilvemos el problema del formato fhir para family y given ([219cc97](https://github.com/andes/fhir/commit/219cc9756205a1f87b69e9786353d50f715a1a75))
|
|
166
|
-
* **fhir:** Resolve _family problem federador ([dd68521](https://github.com/andes/fhir/commit/dd68521ff04a9dfff5e5c115758af2a24ed2260a))
|
|
167
|
-
* **fhir:** Resolve _family problem federador ([b25fb61](https://github.com/andes/fhir/commit/b25fb6199f8fdb171f6567b3ee45aa35dc1b2f45))
|
|
168
|
-
* **fhir:** Separa el los nombres y los apellidos ([062ea0d](https://github.com/andes/fhir/commit/062ea0dc9bec0f20bee37a4fe995b1255ac125fa))
|
|
169
|
-
* **practitioner:** Resolvemos problema de la especialidad y la matricula. ([e8a35cd](https://github.com/andes/fhir/commit/e8a35cd6b57e408b1f9f723a6fe301b5aa5e42fa))
|
|
170
|
-
* **practitioner:** Resolvemos problema de la especialidad y la matricula. ([00d7346](https://github.com/andes/fhir/commit/00d73465d9fcaebc1eaf2210182239e9b00d2bf2))
|
|
171
|
-
* **practitioner:** Se agrega control de matriculas ([e0279ad](https://github.com/andes/fhir/commit/e0279ada09692b8b62b707aedbac3e20f6256da5))
|
|
172
|
-
* **practitioner:** Se solucionan los problemas de parsing en el decode. Además se agregan las matriculas de grado y especialidad. ([1f2f8df](https://github.com/andes/fhir/commit/1f2f8df9cc5321fdaf01430de62f99505824aa9a))
|
|
173
|
-
* **practitioner:** Se solucionan los problemas de parsing en el decode. Además se agregan las matriculas de grado y especialidad. ([b4a7e87](https://github.com/andes/fhir/commit/b4a7e878e678d7f601b6b5ea012cff0c595155fc))
|
|
174
|
-
* **release:** remove condition circle ([e1cfb08](https://github.com/andes/fhir/commit/e1cfb0820afa13f4f0e6ab67dc9a481a549c7933))
|
|
175
|
-
* **release:** remove condition circle ([b2cfd1e](https://github.com/andes/fhir/commit/b2cfd1e2aa28f977ff0e8e217ce9c7d19ca6506b))
|
|
176
|
-
* **resources:** Typo fixes ([e1ae4c2](https://github.com/andes/fhir/commit/e1ae4c2b6ec2476be70e8f5f239f5a9c4388b910))
|
|
177
|
-
* **resources:** Typo fixes ([5f2961f](https://github.com/andes/fhir/commit/5f2961f6cc84e5d5a10684042557ce61c9c5acae))
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
### Features
|
|
181
|
-
|
|
182
|
-
* **circleci:** Add circleci file into the project ([45fb5fb](https://github.com/andes/fhir/commit/45fb5fbe7ff15faf8f982abc272e763a5342a3ae))
|
|
183
|
-
* **circleci:** Add config file ([762ec2e](https://github.com/andes/fhir/commit/762ec2ec576fee05d43d738e83cebe4cae343793))
|
|
184
|
-
* **circleci:** add some workflow behaivor ([1444daa](https://github.com/andes/fhir/commit/1444daa03781be4c9c1b0157a1604ced0809cee7))
|
|
185
|
-
* **circleci:** add some workflow behaivor ([139f4d2](https://github.com/andes/fhir/commit/139f4d2cf7c73eb4201837a0100b8ec04fa1efb7))
|
|
186
|
-
* **continups integration:** Some improvements ([1d719fd](https://github.com/andes/fhir/commit/1d719fd5b2ed4bfeb8fb5b0a53a476feee9c48f9))
|
|
187
|
-
* **continups integration:** Some improvements ([7d40033](https://github.com/andes/fhir/commit/7d40033e33438f18ec4b855fcde576be575c92bd))
|
|
188
|
-
* **patient:** add cuil data ([c3ddd9a](https://github.com/andes/fhir/commit/c3ddd9ac7d1bdbcbd0b54c36e08f7cc2cb20053d))
|
|
189
|
-
* new patient schema ([2e57f59](https://github.com/andes/fhir/commit/2e57f5938433d56a79278c563453633f6ecaf6dd))
|
|
190
|
-
* new patient schema ([a83b51e](https://github.com/andes/fhir/commit/a83b51e79259dd5b5e64d47ef8bbe0d0c450bca5))
|
|
191
|
-
|
|
192
|
-
# 1.0.0 (2020-02-14)
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
### Bug Fixes
|
|
196
|
-
|
|
197
|
-
* **circle:** remove start ([32247c0](https://github.com/andes/fhir/commit/32247c048e366db878d0be29f31fbd9775c834b0))
|
|
198
|
-
* **circle:** working_dir ([dd2bc5d](https://github.com/andes/fhir/commit/dd2bc5dd682fd9a84c44bce9467a891265c5b584))
|
|
199
|
-
* **circle:** working_dir ([aacc1bd](https://github.com/andes/fhir/commit/aacc1bddc1eb2e09a74c3a402ce172ab1fc346e1))
|
|
200
|
-
* **circle_file:** more fixes ([7227c79](https://github.com/andes/fhir/commit/7227c79b5b1f85d6fcfb1058f6d9d6c94161ae4c))
|
|
201
|
-
* **circle_file:** more fixes ([b4120fc](https://github.com/andes/fhir/commit/b4120fc36621e94f90e9dcf324b2b5db6b39cc18))
|
|
202
|
-
* **circleci:** Delete backup configuration file ([077f4f0](https://github.com/andes/fhir/commit/077f4f0fccf80a14c605a0427fef5094a09f8b90))
|
|
203
|
-
* **circleci:** Delete backup configuration file ([66afcc7](https://github.com/andes/fhir/commit/66afcc7e5e11f36f9e14150a730ee3c4c0398cbf))
|
|
204
|
-
* **circleci:** remove npm start line ([5ca4773](https://github.com/andes/fhir/commit/5ca4773be8d50246e1250614c73201913a5eb9ea))
|
|
205
|
-
* **circleci:** remove string error ([52fe53b](https://github.com/andes/fhir/commit/52fe53b93bdc3fac5c2a6f5510313a17ad5363c2))
|
|
206
|
-
* **circleci:** remove string error ([e2297bc](https://github.com/andes/fhir/commit/e2297bc647e289db5d95167fef005a193c459475))
|
|
207
|
-
* **circleci:** semantic-release ([ed265ac](https://github.com/andes/fhir/commit/ed265ac3e2cf9afca6896c71d44125bcc4c067be))
|
|
208
|
-
* **circleci:** semantic-release ([e0c5eb2](https://github.com/andes/fhir/commit/e0c5eb21044761e373f9d797158a45a00c5741a8))
|
|
209
|
-
* **circlici:** More changes ([16d6cad](https://github.com/andes/fhir/commit/16d6cad33cae2e1aa5e16c839c1050d311b8a955))
|
|
210
|
-
* **circlici:** More changes ([402af6d](https://github.com/andes/fhir/commit/402af6d4ab30b1dee0218e5a3c8a2ee8a8e05003))
|
|
211
|
-
* **config:** add root directory ([67cc97a](https://github.com/andes/fhir/commit/67cc97a7db2ea35a5edc4585dcdb7b1b30209d8f))
|
|
212
|
-
* **config:** add root directory ([a510f26](https://github.com/andes/fhir/commit/a510f26f3fccf6c2d0ea3b14dbd60630ec41ab15))
|
|
213
|
-
* **config:** change name into the pipeline ([e3f61ff](https://github.com/andes/fhir/commit/e3f61ff170162fe94aa363cb363d238f352f7c01))
|
|
214
|
-
* **config:** change semnatic relaese call ([43533c8](https://github.com/andes/fhir/commit/43533c8f2aee7e4b7d1088494e96a0804b017884))
|
|
215
|
-
* **config:** change semnatic relaese call ([43df0d9](https://github.com/andes/fhir/commit/43df0d9bb907b6e58a5271a39faecdda12cfcb55))
|
|
216
|
-
* **config:** Fix install label ([740c449](https://github.com/andes/fhir/commit/740c4492e7a6ad4e14a734d108d53a90148dd5f3))
|
|
217
|
-
* **config:** Fix install label ([b146d86](https://github.com/andes/fhir/commit/b146d86ba2c44f245cc109720afb592c79d602f5))
|
|
218
|
-
* **config:** Indentation problems ([549acc8](https://github.com/andes/fhir/commit/549acc80699dc079387dc8e9274887f233b73be6))
|
|
219
|
-
* **config:** Indentation problems ([e949968](https://github.com/andes/fhir/commit/e949968da3378c355c2fab41d7acc5eff210eca0))
|
|
220
|
-
* **config:** remove working directory ([6dac7fc](https://github.com/andes/fhir/commit/6dac7fcf6c09834ae5b71ad3965b745dd01895fd))
|
|
221
|
-
* **config:** remove working directory ([e924595](https://github.com/andes/fhir/commit/e924595145e9251d378fe89fad3c618a61997ddd))
|
|
222
|
-
* **fhir:** Resilvemos el problema del formato fhir para family y given ([57dd4c7](https://github.com/andes/fhir/commit/57dd4c7e52bcdbc1b3362777e9a1534ae1eed2a8))
|
|
223
|
-
* **fhir:** Resilvemos el problema del formato fhir para family y given ([219cc97](https://github.com/andes/fhir/commit/219cc9756205a1f87b69e9786353d50f715a1a75))
|
|
224
|
-
* **fhir:** Resolve _family problem federador ([dd68521](https://github.com/andes/fhir/commit/dd68521ff04a9dfff5e5c115758af2a24ed2260a))
|
|
225
|
-
* **fhir:** Resolve _family problem federador ([b25fb61](https://github.com/andes/fhir/commit/b25fb6199f8fdb171f6567b3ee45aa35dc1b2f45))
|
|
226
|
-
* **fhir:** Separa el los nombres y los apellidos ([062ea0d](https://github.com/andes/fhir/commit/062ea0dc9bec0f20bee37a4fe995b1255ac125fa))
|
|
227
|
-
* **practitioner:** Resolvemos problema de la especialidad y la matricula. ([e8a35cd](https://github.com/andes/fhir/commit/e8a35cd6b57e408b1f9f723a6fe301b5aa5e42fa))
|
|
228
|
-
* **practitioner:** Resolvemos problema de la especialidad y la matricula. ([00d7346](https://github.com/andes/fhir/commit/00d73465d9fcaebc1eaf2210182239e9b00d2bf2))
|
|
229
|
-
* **practitioner:** Se agrega control de matriculas ([e0279ad](https://github.com/andes/fhir/commit/e0279ada09692b8b62b707aedbac3e20f6256da5))
|
|
230
|
-
* **practitioner:** Se solucionan los problemas de parsing en el decode. Además se agregan las matriculas de grado y especialidad. ([1f2f8df](https://github.com/andes/fhir/commit/1f2f8df9cc5321fdaf01430de62f99505824aa9a))
|
|
231
|
-
* **practitioner:** Se solucionan los problemas de parsing en el decode. Además se agregan las matriculas de grado y especialidad. ([b4a7e87](https://github.com/andes/fhir/commit/b4a7e878e678d7f601b6b5ea012cff0c595155fc))
|
|
232
|
-
* **release:** remove condition circle ([e1cfb08](https://github.com/andes/fhir/commit/e1cfb0820afa13f4f0e6ab67dc9a481a549c7933))
|
|
233
|
-
* **release:** remove condition circle ([b2cfd1e](https://github.com/andes/fhir/commit/b2cfd1e2aa28f977ff0e8e217ce9c7d19ca6506b))
|
|
234
|
-
* **resources:** Typo fixes ([e1ae4c2](https://github.com/andes/fhir/commit/e1ae4c2b6ec2476be70e8f5f239f5a9c4388b910))
|
|
235
|
-
* **resources:** Typo fixes ([5f2961f](https://github.com/andes/fhir/commit/5f2961f6cc84e5d5a10684042557ce61c9c5acae))
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
### Features
|
|
239
|
-
|
|
240
|
-
* **circleci:** Add circleci file into the project ([45fb5fb](https://github.com/andes/fhir/commit/45fb5fbe7ff15faf8f982abc272e763a5342a3ae))
|
|
241
|
-
* **circleci:** Add config file ([762ec2e](https://github.com/andes/fhir/commit/762ec2ec576fee05d43d738e83cebe4cae343793))
|
|
242
|
-
* **circleci:** add some workflow behaivor ([1444daa](https://github.com/andes/fhir/commit/1444daa03781be4c9c1b0157a1604ced0809cee7))
|
|
243
|
-
* **circleci:** add some workflow behaivor ([139f4d2](https://github.com/andes/fhir/commit/139f4d2cf7c73eb4201837a0100b8ec04fa1efb7))
|
|
244
|
-
* **continups integration:** Some improvements ([1d719fd](https://github.com/andes/fhir/commit/1d719fd5b2ed4bfeb8fb5b0a53a476feee9c48f9))
|
|
245
|
-
* **continups integration:** Some improvements ([7d40033](https://github.com/andes/fhir/commit/7d40033e33438f18ec4b855fcde576be575c92bd))
|
|
246
|
-
* **patient:** add cuil data ([c3ddd9a](https://github.com/andes/fhir/commit/c3ddd9ac7d1bdbcbd0b54c36e08f7cc2cb20053d))
|
|
247
|
-
* new patient schema ([2e57f59](https://github.com/andes/fhir/commit/2e57f5938433d56a79278c563453633f6ecaf6dd))
|
|
248
|
-
* new patient schema ([a83b51e](https://github.com/andes/fhir/commit/a83b51e79259dd5b5e64d47ef8bbe0d0c450bca5))
|
|
8
|
+
* bumb manual 1.12.1 ([b57b8c4](https://github.com/andes/fhir/commit/b57b8c41527b2df47afcdc18d82755de808f006c))
|
|
249
9
|
|
|
250
|
-
# 1.0.0 (
|
|
10
|
+
# [1.12.0-beta.1](https://github.com/andes/fhir/compare/v1.11.1...v1.12.0-beta.1) (2025-11-05)
|
|
251
11
|
|
|
252
12
|
|
|
253
13
|
### Bug Fixes
|
|
254
14
|
|
|
255
|
-
*
|
|
256
|
-
* **circle:** working_dir ([dd2bc5d](https://github.com/andes/fhir/commit/dd2bc5dd682fd9a84c44bce9467a891265c5b584))
|
|
257
|
-
* **circle:** working_dir ([aacc1bd](https://github.com/andes/fhir/commit/aacc1bddc1eb2e09a74c3a402ce172ab1fc346e1))
|
|
258
|
-
* **circle_file:** more fixes ([7227c79](https://github.com/andes/fhir/commit/7227c79b5b1f85d6fcfb1058f6d9d6c94161ae4c))
|
|
259
|
-
* **circle_file:** more fixes ([b4120fc](https://github.com/andes/fhir/commit/b4120fc36621e94f90e9dcf324b2b5db6b39cc18))
|
|
260
|
-
* **circleci:** Delete backup configuration file ([077f4f0](https://github.com/andes/fhir/commit/077f4f0fccf80a14c605a0427fef5094a09f8b90))
|
|
261
|
-
* **circleci:** Delete backup configuration file ([66afcc7](https://github.com/andes/fhir/commit/66afcc7e5e11f36f9e14150a730ee3c4c0398cbf))
|
|
262
|
-
* **circleci:** remove npm start line ([5ca4773](https://github.com/andes/fhir/commit/5ca4773be8d50246e1250614c73201913a5eb9ea))
|
|
263
|
-
* **circleci:** remove string error ([52fe53b](https://github.com/andes/fhir/commit/52fe53b93bdc3fac5c2a6f5510313a17ad5363c2))
|
|
264
|
-
* **circleci:** remove string error ([e2297bc](https://github.com/andes/fhir/commit/e2297bc647e289db5d95167fef005a193c459475))
|
|
265
|
-
* **circleci:** semantic-release ([ed265ac](https://github.com/andes/fhir/commit/ed265ac3e2cf9afca6896c71d44125bcc4c067be))
|
|
266
|
-
* **circleci:** semantic-release ([e0c5eb2](https://github.com/andes/fhir/commit/e0c5eb21044761e373f9d797158a45a00c5741a8))
|
|
267
|
-
* **circlici:** More changes ([16d6cad](https://github.com/andes/fhir/commit/16d6cad33cae2e1aa5e16c839c1050d311b8a955))
|
|
268
|
-
* **circlici:** More changes ([402af6d](https://github.com/andes/fhir/commit/402af6d4ab30b1dee0218e5a3c8a2ee8a8e05003))
|
|
269
|
-
* **config:** add root directory ([67cc97a](https://github.com/andes/fhir/commit/67cc97a7db2ea35a5edc4585dcdb7b1b30209d8f))
|
|
270
|
-
* **config:** add root directory ([a510f26](https://github.com/andes/fhir/commit/a510f26f3fccf6c2d0ea3b14dbd60630ec41ab15))
|
|
271
|
-
* **config:** change name into the pipeline ([e3f61ff](https://github.com/andes/fhir/commit/e3f61ff170162fe94aa363cb363d238f352f7c01))
|
|
272
|
-
* **config:** change semnatic relaese call ([43533c8](https://github.com/andes/fhir/commit/43533c8f2aee7e4b7d1088494e96a0804b017884))
|
|
273
|
-
* **config:** change semnatic relaese call ([43df0d9](https://github.com/andes/fhir/commit/43df0d9bb907b6e58a5271a39faecdda12cfcb55))
|
|
274
|
-
* **config:** Fix install label ([740c449](https://github.com/andes/fhir/commit/740c4492e7a6ad4e14a734d108d53a90148dd5f3))
|
|
275
|
-
* **config:** Fix install label ([b146d86](https://github.com/andes/fhir/commit/b146d86ba2c44f245cc109720afb592c79d602f5))
|
|
276
|
-
* **config:** Indentation problems ([549acc8](https://github.com/andes/fhir/commit/549acc80699dc079387dc8e9274887f233b73be6))
|
|
277
|
-
* **config:** Indentation problems ([e949968](https://github.com/andes/fhir/commit/e949968da3378c355c2fab41d7acc5eff210eca0))
|
|
278
|
-
* **config:** remove working directory ([6dac7fc](https://github.com/andes/fhir/commit/6dac7fcf6c09834ae5b71ad3965b745dd01895fd))
|
|
279
|
-
* **config:** remove working directory ([e924595](https://github.com/andes/fhir/commit/e924595145e9251d378fe89fad3c618a61997ddd))
|
|
280
|
-
* **fhir:** Resilvemos el problema del formato fhir para family y given ([57dd4c7](https://github.com/andes/fhir/commit/57dd4c7e52bcdbc1b3362777e9a1534ae1eed2a8))
|
|
281
|
-
* **fhir:** Resilvemos el problema del formato fhir para family y given ([219cc97](https://github.com/andes/fhir/commit/219cc9756205a1f87b69e9786353d50f715a1a75))
|
|
282
|
-
* **fhir:** Resolve _family problem federador ([dd68521](https://github.com/andes/fhir/commit/dd68521ff04a9dfff5e5c115758af2a24ed2260a))
|
|
283
|
-
* **fhir:** Resolve _family problem federador ([b25fb61](https://github.com/andes/fhir/commit/b25fb6199f8fdb171f6567b3ee45aa35dc1b2f45))
|
|
284
|
-
* **fhir:** Separa el los nombres y los apellidos ([062ea0d](https://github.com/andes/fhir/commit/062ea0dc9bec0f20bee37a4fe995b1255ac125fa))
|
|
285
|
-
* **practitioner:** Resolvemos problema de la especialidad y la matricula. ([e8a35cd](https://github.com/andes/fhir/commit/e8a35cd6b57e408b1f9f723a6fe301b5aa5e42fa))
|
|
286
|
-
* **practitioner:** Resolvemos problema de la especialidad y la matricula. ([00d7346](https://github.com/andes/fhir/commit/00d73465d9fcaebc1eaf2210182239e9b00d2bf2))
|
|
287
|
-
* **practitioner:** Se agrega control de matriculas ([e0279ad](https://github.com/andes/fhir/commit/e0279ada09692b8b62b707aedbac3e20f6256da5))
|
|
288
|
-
* **practitioner:** Se solucionan los problemas de parsing en el decode. Además se agregan las matriculas de grado y especialidad. ([1f2f8df](https://github.com/andes/fhir/commit/1f2f8df9cc5321fdaf01430de62f99505824aa9a))
|
|
289
|
-
* **practitioner:** Se solucionan los problemas de parsing en el decode. Además se agregan las matriculas de grado y especialidad. ([b4a7e87](https://github.com/andes/fhir/commit/b4a7e878e678d7f601b6b5ea012cff0c595155fc))
|
|
290
|
-
* **release:** remove condition circle ([e1cfb08](https://github.com/andes/fhir/commit/e1cfb0820afa13f4f0e6ab67dc9a481a549c7933))
|
|
291
|
-
* **release:** remove condition circle ([b2cfd1e](https://github.com/andes/fhir/commit/b2cfd1e2aa28f977ff0e8e217ce9c7d19ca6506b))
|
|
292
|
-
* **resources:** Typo fixes ([e1ae4c2](https://github.com/andes/fhir/commit/e1ae4c2b6ec2476be70e8f5f239f5a9c4388b910))
|
|
293
|
-
* **resources:** Typo fixes ([5f2961f](https://github.com/andes/fhir/commit/5f2961f6cc84e5d5a10684042557ce61c9c5acae))
|
|
15
|
+
* agrego dependencia faltante ([9e9687a](https://github.com/andes/fhir/commit/9e9687adc6995ee06922e1b943301858d7046313))
|
|
294
16
|
|
|
295
17
|
|
|
296
18
|
### Features
|
|
297
19
|
|
|
298
|
-
*
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
*
|
|
20
|
+
* bump manual a version 1.12 ([f3e7d0c](https://github.com/andes/fhir/commit/f3e7d0c9f1b428cb4e0868fea93f2c8b8a871f6b))
|
|
21
|
+
|
|
22
|
+
## [1.11.1](https://github.com/andes/fhir/compare/v1.11.0...v1.11.1) (2021-09-23)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Bug Fixes
|
|
26
|
+
|
|
27
|
+
* **document-reference:** ajustes author ([429d86c](https://github.com/andes/fhir/commit/429d86c7dffd7b7562450746e75352b5d65cf478))
|
|
28
|
+
|
|
29
|
+
# [1.11.0](https://github.com/andes/fhir/compare/v1.10.0...v1.11.0) (2021-08-31)
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
### Features
|
|
33
|
+
|
|
34
|
+
* add organization to document reference ([51cbd96](https://github.com/andes/fhir/commit/51cbd962d207479812298704a9d221d3f210b32c))
|
|
35
|
+
|
|
36
|
+
# [1.10.0](https://github.com/andes/fhir/compare/v1.9.0...v1.10.0) (2021-08-25)
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
### Features
|
|
40
|
+
|
|
41
|
+
* **composition:** ajuste de custodian ([2069e81](https://github.com/andes/fhir/commit/2069e8120e64c5f59d47ce2cfa97644b54d3e6c7))
|
|
42
|
+
|
|
43
|
+
# [1.9.0](https://github.com/andes/fhir/compare/v1.8.3...v1.9.0) (2021-08-23)
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
### Features
|
|
47
|
+
|
|
48
|
+
* **composition:** change format ([7b93693](https://github.com/andes/fhir/commit/7b9369329181f4b8671f49134b1da7f587b66fea))
|
|
49
|
+
|
|
50
|
+
## [1.8.3](https://github.com/andes/fhir/compare/v1.8.2...v1.8.3) (2021-07-26)
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
### Bug Fixes
|
|
54
|
+
|
|
55
|
+
* ajusta moment ([7e11c76](https://github.com/andes/fhir/commit/7e11c761823a74074c47c5534b4f1329ccc04c12))
|
|
56
|
+
|
|
57
|
+
## [1.8.2](https://github.com/andes/fhir/compare/v1.8.1...v1.8.2) (2021-07-26)
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
### Bug Fixes
|
|
61
|
+
|
|
62
|
+
* error en relaciones nulas ([0976888](https://github.com/andes/fhir/commit/09768885f87385bad2af3c23e61630958290a834))
|
|
63
|
+
|
|
64
|
+
## [1.8.1](https://github.com/andes/fhir/compare/v1.8.0...v1.8.1) (2021-04-15)
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
### Bug Fixes
|
|
68
|
+
|
|
69
|
+
* **moment:** Correct moment sintax ([0624910](https://github.com/andes/fhir/commit/062491018912e01dee9ef6d69e54d940c9213e33))
|
|
70
|
+
|
|
71
|
+
# [1.8.0](https://github.com/andes/fhir/compare/v1.7.0...v1.8.0) (2021-04-14)
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
### Features
|
|
75
|
+
|
|
76
|
+
* **patient:** add some test ([#17](https://github.com/andes/fhir/issues/17)) ([80bc576](https://github.com/andes/fhir/commit/80bc576e58bdbb0a5a028fb073b31d6c0b431bc6))
|
|
77
|
+
|
|
78
|
+
# [1.7.0](https://github.com/andes/fhir/compare/v1.6.0...v1.7.0) (2021-04-06)
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
### Features
|
|
82
|
+
|
|
83
|
+
* **unitTesting:** First steps unit testing ([#15](https://github.com/andes/fhir/issues/15)) ([d65d0fa](https://github.com/andes/fhir/commit/d65d0fa77d38a87daae6b16fd443d2ddbfbc52e3))
|
|
84
|
+
|
|
85
|
+
# [1.6.0](https://github.com/andes/fhir/compare/v1.5.0...v1.6.0) (2021-02-26)
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
### Features
|
|
89
|
+
|
|
90
|
+
* **medicationRequest:** Add path medication request ([a6ca080](https://github.com/andes/fhir/commit/a6ca080c474b9f0c5cb6b8598f168ca5d2ad6779))
|
|
91
|
+
|
|
92
|
+
# [1.5.0](https://github.com/andes/fhir/compare/v1.4.3...v1.5.0) (2021-02-26)
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
### Features
|
|
96
|
+
|
|
97
|
+
* **medicationRequest:** create and add some properties to this fhir resource ([#14](https://github.com/andes/fhir/issues/14)) ([9d4bb01](https://github.com/andes/fhir/commit/9d4bb01a271bb2e1a36c3ee8ae76f1553d1b2ec3))
|
|
98
|
+
|
|
99
|
+
## [1.4.3](https://github.com/andes/fhir/compare/v1.4.2...v1.4.3) (2020-11-27)
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
### Bug Fixes
|
|
103
|
+
|
|
104
|
+
* **patient:** fix en fecha de nacimiento y de fallecimiento ([#13](https://github.com/andes/fhir/issues/13)) ([6bac05a](https://github.com/andes/fhir/commit/6bac05a982b5c0990eab2d2420b96ee0ba1d564a))
|
|
105
|
+
|
|
106
|
+
## [1.4.2](https://github.com/andes/fhir/compare/v1.4.1...v1.4.2) (2020-11-02)
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
### Bug Fixes
|
|
110
|
+
|
|
111
|
+
* **patient:** verificar si el paciente no tiene fecha nacimiento ([#12](https://github.com/andes/fhir/issues/12)) ([3b39e05](https://github.com/andes/fhir/commit/3b39e056b98a7ad79985e31bb4efe75d5e700a71))
|
|
112
|
+
|
|
113
|
+
## [1.4.1](https://github.com/andes/fhir/compare/v1.4.0...v1.4.1) (2020-10-29)
|
|
114
|
+
|
|
115
|
+
|
|
116
|
+
### Bug Fixes
|
|
117
|
+
|
|
118
|
+
* **patient:** se resuleve problema en decode ([#11](https://github.com/andes/fhir/issues/11)) ([241e906](https://github.com/andes/fhir/commit/241e9060bd4eacf65bd75c55124111dd6764bb09))
|
|
119
|
+
|
|
120
|
+
# [1.4.0](https://github.com/andes/fhir/compare/v1.3.0...v1.4.0) (2020-10-29)
|
|
121
|
+
|
|
122
|
+
|
|
123
|
+
### Features
|
|
124
|
+
|
|
125
|
+
* **resources:** mejoras varias y agregado de alleryIntolerance ([#10](https://github.com/andes/fhir/issues/10)) ([f9085d6](https://github.com/andes/fhir/commit/f9085d6d5f51d60f5d1cf1cac5b03fa041b5f0f5))
|
|
126
|
+
|
|
127
|
+
# [1.3.0](https://github.com/andes/fhir/compare/v1.2.0...v1.3.0) (2020-08-05)
|
|
128
|
+
|
|
129
|
+
|
|
130
|
+
### Features
|
|
131
|
+
|
|
132
|
+
* **fhir:** agregamos la feature de medication y medicationStatement ([#8](https://github.com/andes/fhir/issues/8)) ([65771a2](https://github.com/andes/fhir/commit/65771a2052108f93f1ca819a49cd60408619e90c))
|
|
133
|
+
|
|
134
|
+
# [1.2.0](https://github.com/andes/fhir/compare/v1.1.0...v1.2.0) (2020-05-12)
|
|
135
|
+
|
|
136
|
+
|
|
137
|
+
### Features
|
|
138
|
+
|
|
139
|
+
* **inmunization:** modificamos la informacion del recurso vacunas ([b9a3443](https://github.com/andes/fhir/commit/b9a34439b049fc75f30e0419dbcd748d1b806d57))
|
|
140
|
+
|
|
141
|
+
# [1.1.0](https://github.com/andes/fhir/compare/v1.0.1...v1.1.0) (2020-02-14)
|
|
142
|
+
|
|
143
|
+
|
|
144
|
+
### Features
|
|
145
|
+
|
|
146
|
+
* **patient:** It's a lie ([4dc1748](https://github.com/andes/fhir/commit/4dc17484de9bcd21b985c8379d429749aa9332b2))
|
|
147
|
+
|
|
148
|
+
## [1.0.1](https://github.com/andes/fhir/compare/v1.0.0...v1.0.1) (2020-02-14)
|
|
149
|
+
|
|
150
|
+
|
|
151
|
+
### Bug Fixes
|
|
152
|
+
|
|
153
|
+
* **demo:** add some elemts to demo ([3bd926c](https://github.com/andes/fhir/commit/3bd926c1433ca67555aa3ef83c6145754745a201))
|
|
154
|
+
|
|
155
|
+
# 1.0.0 (2020-02-14)
|
|
156
|
+
|
|
157
|
+
|
|
158
|
+
### Bug Fixes
|
|
159
|
+
|
|
160
|
+
* **circle:** remove start ([32247c0](https://github.com/andes/fhir/commit/32247c048e366db878d0be29f31fbd9775c834b0))
|
|
161
|
+
* **circle:** working_dir ([dd2bc5d](https://github.com/andes/fhir/commit/dd2bc5dd682fd9a84c44bce9467a891265c5b584))
|
|
162
|
+
* **circle:** working_dir ([aacc1bd](https://github.com/andes/fhir/commit/aacc1bddc1eb2e09a74c3a402ce172ab1fc346e1))
|
|
163
|
+
* **circle_file:** more fixes ([7227c79](https://github.com/andes/fhir/commit/7227c79b5b1f85d6fcfb1058f6d9d6c94161ae4c))
|
|
164
|
+
* **circle_file:** more fixes ([b4120fc](https://github.com/andes/fhir/commit/b4120fc36621e94f90e9dcf324b2b5db6b39cc18))
|
|
165
|
+
* **circleci:** Delete backup configuration file ([077f4f0](https://github.com/andes/fhir/commit/077f4f0fccf80a14c605a0427fef5094a09f8b90))
|
|
166
|
+
* **circleci:** Delete backup configuration file ([66afcc7](https://github.com/andes/fhir/commit/66afcc7e5e11f36f9e14150a730ee3c4c0398cbf))
|
|
167
|
+
* **circleci:** remove npm start line ([5ca4773](https://github.com/andes/fhir/commit/5ca4773be8d50246e1250614c73201913a5eb9ea))
|
|
168
|
+
* **circleci:** remove string error ([52fe53b](https://github.com/andes/fhir/commit/52fe53b93bdc3fac5c2a6f5510313a17ad5363c2))
|
|
169
|
+
* **circleci:** remove string error ([e2297bc](https://github.com/andes/fhir/commit/e2297bc647e289db5d95167fef005a193c459475))
|
|
170
|
+
* **circleci:** semantic-release ([ed265ac](https://github.com/andes/fhir/commit/ed265ac3e2cf9afca6896c71d44125bcc4c067be))
|
|
171
|
+
* **circleci:** semantic-release ([e0c5eb2](https://github.com/andes/fhir/commit/e0c5eb21044761e373f9d797158a45a00c5741a8))
|
|
172
|
+
* **circlici:** More changes ([16d6cad](https://github.com/andes/fhir/commit/16d6cad33cae2e1aa5e16c839c1050d311b8a955))
|
|
173
|
+
* **circlici:** More changes ([402af6d](https://github.com/andes/fhir/commit/402af6d4ab30b1dee0218e5a3c8a2ee8a8e05003))
|
|
174
|
+
* **config:** add root directory ([67cc97a](https://github.com/andes/fhir/commit/67cc97a7db2ea35a5edc4585dcdb7b1b30209d8f))
|
|
175
|
+
* **config:** add root directory ([a510f26](https://github.com/andes/fhir/commit/a510f26f3fccf6c2d0ea3b14dbd60630ec41ab15))
|
|
176
|
+
* **config:** change name into the pipeline ([e3f61ff](https://github.com/andes/fhir/commit/e3f61ff170162fe94aa363cb363d238f352f7c01))
|
|
177
|
+
* **config:** change semnatic relaese call ([43533c8](https://github.com/andes/fhir/commit/43533c8f2aee7e4b7d1088494e96a0804b017884))
|
|
178
|
+
* **config:** change semnatic relaese call ([43df0d9](https://github.com/andes/fhir/commit/43df0d9bb907b6e58a5271a39faecdda12cfcb55))
|
|
179
|
+
* **config:** Fix install label ([740c449](https://github.com/andes/fhir/commit/740c4492e7a6ad4e14a734d108d53a90148dd5f3))
|
|
180
|
+
* **config:** Fix install label ([b146d86](https://github.com/andes/fhir/commit/b146d86ba2c44f245cc109720afb592c79d602f5))
|
|
181
|
+
* **config:** Indentation problems ([549acc8](https://github.com/andes/fhir/commit/549acc80699dc079387dc8e9274887f233b73be6))
|
|
182
|
+
* **config:** Indentation problems ([e949968](https://github.com/andes/fhir/commit/e949968da3378c355c2fab41d7acc5eff210eca0))
|
|
183
|
+
* **config:** remove working directory ([6dac7fc](https://github.com/andes/fhir/commit/6dac7fcf6c09834ae5b71ad3965b745dd01895fd))
|
|
184
|
+
* **config:** remove working directory ([e924595](https://github.com/andes/fhir/commit/e924595145e9251d378fe89fad3c618a61997ddd))
|
|
185
|
+
* **fhir:** Resilvemos el problema del formato fhir para family y given ([57dd4c7](https://github.com/andes/fhir/commit/57dd4c7e52bcdbc1b3362777e9a1534ae1eed2a8))
|
|
186
|
+
* **fhir:** Resilvemos el problema del formato fhir para family y given ([219cc97](https://github.com/andes/fhir/commit/219cc9756205a1f87b69e9786353d50f715a1a75))
|
|
187
|
+
* **fhir:** Resolve _family problem federador ([dd68521](https://github.com/andes/fhir/commit/dd68521ff04a9dfff5e5c115758af2a24ed2260a))
|
|
188
|
+
* **fhir:** Resolve _family problem federador ([b25fb61](https://github.com/andes/fhir/commit/b25fb6199f8fdb171f6567b3ee45aa35dc1b2f45))
|
|
189
|
+
* **fhir:** Separa el los nombres y los apellidos ([062ea0d](https://github.com/andes/fhir/commit/062ea0dc9bec0f20bee37a4fe995b1255ac125fa))
|
|
190
|
+
* **practitioner:** Resolvemos problema de la especialidad y la matricula. ([e8a35cd](https://github.com/andes/fhir/commit/e8a35cd6b57e408b1f9f723a6fe301b5aa5e42fa))
|
|
191
|
+
* **practitioner:** Resolvemos problema de la especialidad y la matricula. ([00d7346](https://github.com/andes/fhir/commit/00d73465d9fcaebc1eaf2210182239e9b00d2bf2))
|
|
192
|
+
* **practitioner:** Se agrega control de matriculas ([e0279ad](https://github.com/andes/fhir/commit/e0279ada09692b8b62b707aedbac3e20f6256da5))
|
|
193
|
+
* **practitioner:** Se solucionan los problemas de parsing en el decode. Además se agregan las matriculas de grado y especialidad. ([1f2f8df](https://github.com/andes/fhir/commit/1f2f8df9cc5321fdaf01430de62f99505824aa9a))
|
|
194
|
+
* **practitioner:** Se solucionan los problemas de parsing en el decode. Además se agregan las matriculas de grado y especialidad. ([b4a7e87](https://github.com/andes/fhir/commit/b4a7e878e678d7f601b6b5ea012cff0c595155fc))
|
|
195
|
+
* **release:** remove condition circle ([e1cfb08](https://github.com/andes/fhir/commit/e1cfb0820afa13f4f0e6ab67dc9a481a549c7933))
|
|
196
|
+
* **release:** remove condition circle ([b2cfd1e](https://github.com/andes/fhir/commit/b2cfd1e2aa28f977ff0e8e217ce9c7d19ca6506b))
|
|
197
|
+
* **resources:** Typo fixes ([e1ae4c2](https://github.com/andes/fhir/commit/e1ae4c2b6ec2476be70e8f5f239f5a9c4388b910))
|
|
198
|
+
* **resources:** Typo fixes ([5f2961f](https://github.com/andes/fhir/commit/5f2961f6cc84e5d5a10684042557ce61c9c5acae))
|
|
199
|
+
|
|
200
|
+
|
|
201
|
+
### Features
|
|
202
|
+
|
|
203
|
+
* **circleci:** Add circleci file into the project ([45fb5fb](https://github.com/andes/fhir/commit/45fb5fbe7ff15faf8f982abc272e763a5342a3ae))
|
|
204
|
+
* **circleci:** Add config file ([762ec2e](https://github.com/andes/fhir/commit/762ec2ec576fee05d43d738e83cebe4cae343793))
|
|
205
|
+
* **circleci:** add some workflow behaivor ([1444daa](https://github.com/andes/fhir/commit/1444daa03781be4c9c1b0157a1604ced0809cee7))
|
|
206
|
+
* **circleci:** add some workflow behaivor ([139f4d2](https://github.com/andes/fhir/commit/139f4d2cf7c73eb4201837a0100b8ec04fa1efb7))
|
|
207
|
+
* **continups integration:** Some improvements ([1d719fd](https://github.com/andes/fhir/commit/1d719fd5b2ed4bfeb8fb5b0a53a476feee9c48f9))
|
|
208
|
+
* **continups integration:** Some improvements ([7d40033](https://github.com/andes/fhir/commit/7d40033e33438f18ec4b855fcde576be575c92bd))
|
|
209
|
+
* **patient:** add cuil data ([c3ddd9a](https://github.com/andes/fhir/commit/c3ddd9ac7d1bdbcbd0b54c36e08f7cc2cb20053d))
|
|
210
|
+
* new patient schema ([2e57f59](https://github.com/andes/fhir/commit/2e57f5938433d56a79278c563453633f6ecaf6dd))
|
|
211
|
+
* new patient schema ([a83b51e](https://github.com/andes/fhir/commit/a83b51e79259dd5b5e64d47ef8bbe0d0c450bca5))
|
|
212
|
+
|
|
213
|
+
# 1.0.0 (2020-02-14)
|
|
214
|
+
|
|
215
|
+
|
|
216
|
+
### Bug Fixes
|
|
217
|
+
|
|
218
|
+
* **circle:** remove start ([32247c0](https://github.com/andes/fhir/commit/32247c048e366db878d0be29f31fbd9775c834b0))
|
|
219
|
+
* **circle:** working_dir ([dd2bc5d](https://github.com/andes/fhir/commit/dd2bc5dd682fd9a84c44bce9467a891265c5b584))
|
|
220
|
+
* **circle:** working_dir ([aacc1bd](https://github.com/andes/fhir/commit/aacc1bddc1eb2e09a74c3a402ce172ab1fc346e1))
|
|
221
|
+
* **circle_file:** more fixes ([7227c79](https://github.com/andes/fhir/commit/7227c79b5b1f85d6fcfb1058f6d9d6c94161ae4c))
|
|
222
|
+
* **circle_file:** more fixes ([b4120fc](https://github.com/andes/fhir/commit/b4120fc36621e94f90e9dcf324b2b5db6b39cc18))
|
|
223
|
+
* **circleci:** Delete backup configuration file ([077f4f0](https://github.com/andes/fhir/commit/077f4f0fccf80a14c605a0427fef5094a09f8b90))
|
|
224
|
+
* **circleci:** Delete backup configuration file ([66afcc7](https://github.com/andes/fhir/commit/66afcc7e5e11f36f9e14150a730ee3c4c0398cbf))
|
|
225
|
+
* **circleci:** remove npm start line ([5ca4773](https://github.com/andes/fhir/commit/5ca4773be8d50246e1250614c73201913a5eb9ea))
|
|
226
|
+
* **circleci:** remove string error ([52fe53b](https://github.com/andes/fhir/commit/52fe53b93bdc3fac5c2a6f5510313a17ad5363c2))
|
|
227
|
+
* **circleci:** remove string error ([e2297bc](https://github.com/andes/fhir/commit/e2297bc647e289db5d95167fef005a193c459475))
|
|
228
|
+
* **circleci:** semantic-release ([ed265ac](https://github.com/andes/fhir/commit/ed265ac3e2cf9afca6896c71d44125bcc4c067be))
|
|
229
|
+
* **circleci:** semantic-release ([e0c5eb2](https://github.com/andes/fhir/commit/e0c5eb21044761e373f9d797158a45a00c5741a8))
|
|
230
|
+
* **circlici:** More changes ([16d6cad](https://github.com/andes/fhir/commit/16d6cad33cae2e1aa5e16c839c1050d311b8a955))
|
|
231
|
+
* **circlici:** More changes ([402af6d](https://github.com/andes/fhir/commit/402af6d4ab30b1dee0218e5a3c8a2ee8a8e05003))
|
|
232
|
+
* **config:** add root directory ([67cc97a](https://github.com/andes/fhir/commit/67cc97a7db2ea35a5edc4585dcdb7b1b30209d8f))
|
|
233
|
+
* **config:** add root directory ([a510f26](https://github.com/andes/fhir/commit/a510f26f3fccf6c2d0ea3b14dbd60630ec41ab15))
|
|
234
|
+
* **config:** change name into the pipeline ([e3f61ff](https://github.com/andes/fhir/commit/e3f61ff170162fe94aa363cb363d238f352f7c01))
|
|
235
|
+
* **config:** change semnatic relaese call ([43533c8](https://github.com/andes/fhir/commit/43533c8f2aee7e4b7d1088494e96a0804b017884))
|
|
236
|
+
* **config:** change semnatic relaese call ([43df0d9](https://github.com/andes/fhir/commit/43df0d9bb907b6e58a5271a39faecdda12cfcb55))
|
|
237
|
+
* **config:** Fix install label ([740c449](https://github.com/andes/fhir/commit/740c4492e7a6ad4e14a734d108d53a90148dd5f3))
|
|
238
|
+
* **config:** Fix install label ([b146d86](https://github.com/andes/fhir/commit/b146d86ba2c44f245cc109720afb592c79d602f5))
|
|
239
|
+
* **config:** Indentation problems ([549acc8](https://github.com/andes/fhir/commit/549acc80699dc079387dc8e9274887f233b73be6))
|
|
240
|
+
* **config:** Indentation problems ([e949968](https://github.com/andes/fhir/commit/e949968da3378c355c2fab41d7acc5eff210eca0))
|
|
241
|
+
* **config:** remove working directory ([6dac7fc](https://github.com/andes/fhir/commit/6dac7fcf6c09834ae5b71ad3965b745dd01895fd))
|
|
242
|
+
* **config:** remove working directory ([e924595](https://github.com/andes/fhir/commit/e924595145e9251d378fe89fad3c618a61997ddd))
|
|
243
|
+
* **fhir:** Resilvemos el problema del formato fhir para family y given ([57dd4c7](https://github.com/andes/fhir/commit/57dd4c7e52bcdbc1b3362777e9a1534ae1eed2a8))
|
|
244
|
+
* **fhir:** Resilvemos el problema del formato fhir para family y given ([219cc97](https://github.com/andes/fhir/commit/219cc9756205a1f87b69e9786353d50f715a1a75))
|
|
245
|
+
* **fhir:** Resolve _family problem federador ([dd68521](https://github.com/andes/fhir/commit/dd68521ff04a9dfff5e5c115758af2a24ed2260a))
|
|
246
|
+
* **fhir:** Resolve _family problem federador ([b25fb61](https://github.com/andes/fhir/commit/b25fb6199f8fdb171f6567b3ee45aa35dc1b2f45))
|
|
247
|
+
* **fhir:** Separa el los nombres y los apellidos ([062ea0d](https://github.com/andes/fhir/commit/062ea0dc9bec0f20bee37a4fe995b1255ac125fa))
|
|
248
|
+
* **practitioner:** Resolvemos problema de la especialidad y la matricula. ([e8a35cd](https://github.com/andes/fhir/commit/e8a35cd6b57e408b1f9f723a6fe301b5aa5e42fa))
|
|
249
|
+
* **practitioner:** Resolvemos problema de la especialidad y la matricula. ([00d7346](https://github.com/andes/fhir/commit/00d73465d9fcaebc1eaf2210182239e9b00d2bf2))
|
|
250
|
+
* **practitioner:** Se agrega control de matriculas ([e0279ad](https://github.com/andes/fhir/commit/e0279ada09692b8b62b707aedbac3e20f6256da5))
|
|
251
|
+
* **practitioner:** Se solucionan los problemas de parsing en el decode. Además se agregan las matriculas de grado y especialidad. ([1f2f8df](https://github.com/andes/fhir/commit/1f2f8df9cc5321fdaf01430de62f99505824aa9a))
|
|
252
|
+
* **practitioner:** Se solucionan los problemas de parsing en el decode. Además se agregan las matriculas de grado y especialidad. ([b4a7e87](https://github.com/andes/fhir/commit/b4a7e878e678d7f601b6b5ea012cff0c595155fc))
|
|
253
|
+
* **release:** remove condition circle ([e1cfb08](https://github.com/andes/fhir/commit/e1cfb0820afa13f4f0e6ab67dc9a481a549c7933))
|
|
254
|
+
* **release:** remove condition circle ([b2cfd1e](https://github.com/andes/fhir/commit/b2cfd1e2aa28f977ff0e8e217ce9c7d19ca6506b))
|
|
255
|
+
* **resources:** Typo fixes ([e1ae4c2](https://github.com/andes/fhir/commit/e1ae4c2b6ec2476be70e8f5f239f5a9c4388b910))
|
|
256
|
+
* **resources:** Typo fixes ([5f2961f](https://github.com/andes/fhir/commit/5f2961f6cc84e5d5a10684042557ce61c9c5acae))
|
|
257
|
+
|
|
258
|
+
|
|
259
|
+
### Features
|
|
260
|
+
|
|
261
|
+
* **circleci:** Add circleci file into the project ([45fb5fb](https://github.com/andes/fhir/commit/45fb5fbe7ff15faf8f982abc272e763a5342a3ae))
|
|
262
|
+
* **circleci:** Add config file ([762ec2e](https://github.com/andes/fhir/commit/762ec2ec576fee05d43d738e83cebe4cae343793))
|
|
263
|
+
* **circleci:** add some workflow behaivor ([1444daa](https://github.com/andes/fhir/commit/1444daa03781be4c9c1b0157a1604ced0809cee7))
|
|
264
|
+
* **circleci:** add some workflow behaivor ([139f4d2](https://github.com/andes/fhir/commit/139f4d2cf7c73eb4201837a0100b8ec04fa1efb7))
|
|
265
|
+
* **continups integration:** Some improvements ([1d719fd](https://github.com/andes/fhir/commit/1d719fd5b2ed4bfeb8fb5b0a53a476feee9c48f9))
|
|
266
|
+
* **continups integration:** Some improvements ([7d40033](https://github.com/andes/fhir/commit/7d40033e33438f18ec4b855fcde576be575c92bd))
|
|
267
|
+
* **patient:** add cuil data ([c3ddd9a](https://github.com/andes/fhir/commit/c3ddd9ac7d1bdbcbd0b54c36e08f7cc2cb20053d))
|
|
268
|
+
* new patient schema ([2e57f59](https://github.com/andes/fhir/commit/2e57f5938433d56a79278c563453633f6ecaf6dd))
|
|
269
|
+
* new patient schema ([a83b51e](https://github.com/andes/fhir/commit/a83b51e79259dd5b5e64d47ef8bbe0d0c450bca5))
|
|
270
|
+
|
|
271
|
+
# 1.0.0 (2020-02-14)
|
|
272
|
+
|
|
273
|
+
|
|
274
|
+
### Bug Fixes
|
|
275
|
+
|
|
276
|
+
* **circle:** remove start ([32247c0](https://github.com/andes/fhir/commit/32247c048e366db878d0be29f31fbd9775c834b0))
|
|
277
|
+
* **circle:** working_dir ([dd2bc5d](https://github.com/andes/fhir/commit/dd2bc5dd682fd9a84c44bce9467a891265c5b584))
|
|
278
|
+
* **circle:** working_dir ([aacc1bd](https://github.com/andes/fhir/commit/aacc1bddc1eb2e09a74c3a402ce172ab1fc346e1))
|
|
279
|
+
* **circle_file:** more fixes ([7227c79](https://github.com/andes/fhir/commit/7227c79b5b1f85d6fcfb1058f6d9d6c94161ae4c))
|
|
280
|
+
* **circle_file:** more fixes ([b4120fc](https://github.com/andes/fhir/commit/b4120fc36621e94f90e9dcf324b2b5db6b39cc18))
|
|
281
|
+
* **circleci:** Delete backup configuration file ([077f4f0](https://github.com/andes/fhir/commit/077f4f0fccf80a14c605a0427fef5094a09f8b90))
|
|
282
|
+
* **circleci:** Delete backup configuration file ([66afcc7](https://github.com/andes/fhir/commit/66afcc7e5e11f36f9e14150a730ee3c4c0398cbf))
|
|
283
|
+
* **circleci:** remove npm start line ([5ca4773](https://github.com/andes/fhir/commit/5ca4773be8d50246e1250614c73201913a5eb9ea))
|
|
284
|
+
* **circleci:** remove string error ([52fe53b](https://github.com/andes/fhir/commit/52fe53b93bdc3fac5c2a6f5510313a17ad5363c2))
|
|
285
|
+
* **circleci:** remove string error ([e2297bc](https://github.com/andes/fhir/commit/e2297bc647e289db5d95167fef005a193c459475))
|
|
286
|
+
* **circleci:** semantic-release ([ed265ac](https://github.com/andes/fhir/commit/ed265ac3e2cf9afca6896c71d44125bcc4c067be))
|
|
287
|
+
* **circleci:** semantic-release ([e0c5eb2](https://github.com/andes/fhir/commit/e0c5eb21044761e373f9d797158a45a00c5741a8))
|
|
288
|
+
* **circlici:** More changes ([16d6cad](https://github.com/andes/fhir/commit/16d6cad33cae2e1aa5e16c839c1050d311b8a955))
|
|
289
|
+
* **circlici:** More changes ([402af6d](https://github.com/andes/fhir/commit/402af6d4ab30b1dee0218e5a3c8a2ee8a8e05003))
|
|
290
|
+
* **config:** add root directory ([67cc97a](https://github.com/andes/fhir/commit/67cc97a7db2ea35a5edc4585dcdb7b1b30209d8f))
|
|
291
|
+
* **config:** add root directory ([a510f26](https://github.com/andes/fhir/commit/a510f26f3fccf6c2d0ea3b14dbd60630ec41ab15))
|
|
292
|
+
* **config:** change name into the pipeline ([e3f61ff](https://github.com/andes/fhir/commit/e3f61ff170162fe94aa363cb363d238f352f7c01))
|
|
293
|
+
* **config:** change semnatic relaese call ([43533c8](https://github.com/andes/fhir/commit/43533c8f2aee7e4b7d1088494e96a0804b017884))
|
|
294
|
+
* **config:** change semnatic relaese call ([43df0d9](https://github.com/andes/fhir/commit/43df0d9bb907b6e58a5271a39faecdda12cfcb55))
|
|
295
|
+
* **config:** Fix install label ([740c449](https://github.com/andes/fhir/commit/740c4492e7a6ad4e14a734d108d53a90148dd5f3))
|
|
296
|
+
* **config:** Fix install label ([b146d86](https://github.com/andes/fhir/commit/b146d86ba2c44f245cc109720afb592c79d602f5))
|
|
297
|
+
* **config:** Indentation problems ([549acc8](https://github.com/andes/fhir/commit/549acc80699dc079387dc8e9274887f233b73be6))
|
|
298
|
+
* **config:** Indentation problems ([e949968](https://github.com/andes/fhir/commit/e949968da3378c355c2fab41d7acc5eff210eca0))
|
|
299
|
+
* **config:** remove working directory ([6dac7fc](https://github.com/andes/fhir/commit/6dac7fcf6c09834ae5b71ad3965b745dd01895fd))
|
|
300
|
+
* **config:** remove working directory ([e924595](https://github.com/andes/fhir/commit/e924595145e9251d378fe89fad3c618a61997ddd))
|
|
301
|
+
* **fhir:** Resilvemos el problema del formato fhir para family y given ([57dd4c7](https://github.com/andes/fhir/commit/57dd4c7e52bcdbc1b3362777e9a1534ae1eed2a8))
|
|
302
|
+
* **fhir:** Resilvemos el problema del formato fhir para family y given ([219cc97](https://github.com/andes/fhir/commit/219cc9756205a1f87b69e9786353d50f715a1a75))
|
|
303
|
+
* **fhir:** Resolve _family problem federador ([dd68521](https://github.com/andes/fhir/commit/dd68521ff04a9dfff5e5c115758af2a24ed2260a))
|
|
304
|
+
* **fhir:** Resolve _family problem federador ([b25fb61](https://github.com/andes/fhir/commit/b25fb6199f8fdb171f6567b3ee45aa35dc1b2f45))
|
|
305
|
+
* **fhir:** Separa el los nombres y los apellidos ([062ea0d](https://github.com/andes/fhir/commit/062ea0dc9bec0f20bee37a4fe995b1255ac125fa))
|
|
306
|
+
* **practitioner:** Resolvemos problema de la especialidad y la matricula. ([e8a35cd](https://github.com/andes/fhir/commit/e8a35cd6b57e408b1f9f723a6fe301b5aa5e42fa))
|
|
307
|
+
* **practitioner:** Resolvemos problema de la especialidad y la matricula. ([00d7346](https://github.com/andes/fhir/commit/00d73465d9fcaebc1eaf2210182239e9b00d2bf2))
|
|
308
|
+
* **practitioner:** Se agrega control de matriculas ([e0279ad](https://github.com/andes/fhir/commit/e0279ada09692b8b62b707aedbac3e20f6256da5))
|
|
309
|
+
* **practitioner:** Se solucionan los problemas de parsing en el decode. Además se agregan las matriculas de grado y especialidad. ([1f2f8df](https://github.com/andes/fhir/commit/1f2f8df9cc5321fdaf01430de62f99505824aa9a))
|
|
310
|
+
* **practitioner:** Se solucionan los problemas de parsing en el decode. Además se agregan las matriculas de grado y especialidad. ([b4a7e87](https://github.com/andes/fhir/commit/b4a7e878e678d7f601b6b5ea012cff0c595155fc))
|
|
311
|
+
* **release:** remove condition circle ([e1cfb08](https://github.com/andes/fhir/commit/e1cfb0820afa13f4f0e6ab67dc9a481a549c7933))
|
|
312
|
+
* **release:** remove condition circle ([b2cfd1e](https://github.com/andes/fhir/commit/b2cfd1e2aa28f977ff0e8e217ce9c7d19ca6506b))
|
|
313
|
+
* **resources:** Typo fixes ([e1ae4c2](https://github.com/andes/fhir/commit/e1ae4c2b6ec2476be70e8f5f239f5a9c4388b910))
|
|
314
|
+
* **resources:** Typo fixes ([5f2961f](https://github.com/andes/fhir/commit/5f2961f6cc84e5d5a10684042557ce61c9c5acae))
|
|
315
|
+
|
|
316
|
+
|
|
317
|
+
### Features
|
|
318
|
+
|
|
319
|
+
* **circleci:** Add circleci file into the project ([45fb5fb](https://github.com/andes/fhir/commit/45fb5fbe7ff15faf8f982abc272e763a5342a3ae))
|
|
320
|
+
* **circleci:** Add config file ([762ec2e](https://github.com/andes/fhir/commit/762ec2ec576fee05d43d738e83cebe4cae343793))
|
|
321
|
+
* **circleci:** add some workflow behaivor ([1444daa](https://github.com/andes/fhir/commit/1444daa03781be4c9c1b0157a1604ced0809cee7))
|
|
322
|
+
* **circleci:** add some workflow behaivor ([139f4d2](https://github.com/andes/fhir/commit/139f4d2cf7c73eb4201837a0100b8ec04fa1efb7))
|
|
323
|
+
* **continups integration:** Some improvements ([1d719fd](https://github.com/andes/fhir/commit/1d719fd5b2ed4bfeb8fb5b0a53a476feee9c48f9))
|
|
324
|
+
* **continups integration:** Some improvements ([7d40033](https://github.com/andes/fhir/commit/7d40033e33438f18ec4b855fcde576be575c92bd))
|
|
325
|
+
* **patient:** add cuil data ([c3ddd9a](https://github.com/andes/fhir/commit/c3ddd9ac7d1bdbcbd0b54c36e08f7cc2cb20053d))
|
|
326
|
+
* new patient schema ([2e57f59](https://github.com/andes/fhir/commit/2e57f5938433d56a79278c563453633f6ecaf6dd))
|
|
306
327
|
* new patient schema ([a83b51e](https://github.com/andes/fhir/commit/a83b51e79259dd5b5e64d47ef8bbe0d0c450bca5))
|