@andes/fhir 1.11.1
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 +69 -0
- package/.editorconfig +14 -0
- package/.gitattributes +1 -0
- package/.github/CODEOWNERS +1 -0
- package/.github/labeler.yml +11 -0
- package/.github/pull_request_template.md +28 -0
- package/.github/workflows/build_test.yml +14 -0
- package/.github/workflows/has_conflicts.yml +13 -0
- package/CHANGELOG.md +306 -0
- package/LICENSE +674 -0
- package/README.md +2 -0
- package/dist/index.js +33 -0
- package/dist/index.js.map +1 -0
- package/dist/src/data/patient.json +185 -0
- package/dist/src/lib/allergyIntolerance.js +40 -0
- package/dist/src/lib/allergyIntolerance.js.map +1 -0
- package/dist/src/lib/bundle.js +23 -0
- package/dist/src/lib/bundle.js.map +1 -0
- package/dist/src/lib/composition.js +151 -0
- package/dist/src/lib/composition.js.map +1 -0
- package/dist/src/lib/condition.js +80 -0
- package/dist/src/lib/condition.js.map +1 -0
- package/dist/src/lib/config.js +23 -0
- package/dist/src/lib/config.js.map +1 -0
- package/dist/src/lib/config.test.js +13 -0
- package/dist/src/lib/config.test.js.map +1 -0
- package/dist/src/lib/device.js +39 -0
- package/dist/src/lib/device.js.map +1 -0
- package/dist/src/lib/device.test.js +10 -0
- package/dist/src/lib/device.test.js.map +1 -0
- package/dist/src/lib/document-reference.js +104 -0
- package/dist/src/lib/document-reference.js.map +1 -0
- package/dist/src/lib/immunization.js +68 -0
- package/dist/src/lib/immunization.js.map +1 -0
- package/dist/src/lib/medication.js +65 -0
- package/dist/src/lib/medication.js.map +1 -0
- package/dist/src/lib/medicationRequest.js +100 -0
- package/dist/src/lib/medicationRequest.js.map +1 -0
- package/dist/src/lib/medicationStatement.js +56 -0
- package/dist/src/lib/medicationStatement.js.map +1 -0
- package/dist/src/lib/organization.js +91 -0
- package/dist/src/lib/organization.js.map +1 -0
- package/dist/src/lib/patient.js +361 -0
- package/dist/src/lib/patient.js.map +1 -0
- package/dist/src/lib/patient.test.js +40 -0
- package/dist/src/lib/patient.test.js.map +1 -0
- package/dist/src/lib/practitioner.js +161 -0
- package/dist/src/lib/practitioner.js.map +1 -0
- package/index.ts +31 -0
- package/jest.config.js +12 -0
- package/package.json +54 -0
- package/src/data/patient.json +185 -0
- package/src/lib/allergyIntolerance.ts +36 -0
- package/src/lib/bundle.ts +19 -0
- package/src/lib/composition.ts +153 -0
- package/src/lib/condition.ts +80 -0
- package/src/lib/config.test.ts +13 -0
- package/src/lib/config.ts +17 -0
- package/src/lib/device.test.ts +9 -0
- package/src/lib/device.ts +36 -0
- package/src/lib/document-reference.ts +102 -0
- package/src/lib/immunization.ts +64 -0
- package/src/lib/medication.ts +61 -0
- package/src/lib/medicationRequest.ts +100 -0
- package/src/lib/medicationStatement.ts +52 -0
- package/src/lib/organization.ts +89 -0
- package/src/lib/patient.test.ts +38 -0
- package/src/lib/patient.ts +374 -0
- package/src/lib/practitioner.ts +157 -0
- package/tsconfig.test.json +18 -0
- package/tslint.json +139 -0
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
version: 2
|
|
2
|
+
jobs:
|
|
3
|
+
install:
|
|
4
|
+
working_directory: ~/fhir
|
|
5
|
+
docker:
|
|
6
|
+
- image: 'circleci/node:14'
|
|
7
|
+
steps:
|
|
8
|
+
- checkout
|
|
9
|
+
- restore_cache:
|
|
10
|
+
keys:
|
|
11
|
+
- v2-deps-{{ .Branch }}-{{ checksum "package-lock.json" }}
|
|
12
|
+
- v2-deps-{{ .Branch }}-
|
|
13
|
+
- v2-deps-
|
|
14
|
+
- run:
|
|
15
|
+
name: Install dependencies
|
|
16
|
+
command: npm ci
|
|
17
|
+
- save_cache:
|
|
18
|
+
key: v2-deps-{{ .Branch }}-{{ checksum "package-lock.json" }}
|
|
19
|
+
paths:
|
|
20
|
+
- ~/.npm
|
|
21
|
+
- ~/.cache
|
|
22
|
+
- persist_to_workspace:
|
|
23
|
+
root: ~/
|
|
24
|
+
paths:
|
|
25
|
+
- .cache
|
|
26
|
+
- fhir
|
|
27
|
+
build:
|
|
28
|
+
working_directory: ~/fhir
|
|
29
|
+
docker:
|
|
30
|
+
- image: circleci/node:14
|
|
31
|
+
steps:
|
|
32
|
+
- attach_workspace:
|
|
33
|
+
at: ~/
|
|
34
|
+
- run:
|
|
35
|
+
name: lint
|
|
36
|
+
command: npm run lint
|
|
37
|
+
- run:
|
|
38
|
+
name: npm-install
|
|
39
|
+
command: npm install
|
|
40
|
+
deploy:
|
|
41
|
+
working_directory: ~/fhir
|
|
42
|
+
docker:
|
|
43
|
+
- image: 'circleci/node:14'
|
|
44
|
+
steps:
|
|
45
|
+
- attach_workspace:
|
|
46
|
+
at: ~/
|
|
47
|
+
- run: npx semantic-release
|
|
48
|
+
|
|
49
|
+
workflows:
|
|
50
|
+
version: 2
|
|
51
|
+
prepare_and_release:
|
|
52
|
+
jobs:
|
|
53
|
+
- install
|
|
54
|
+
- build:
|
|
55
|
+
requires:
|
|
56
|
+
- install
|
|
57
|
+
- request-deploy:
|
|
58
|
+
type: approval
|
|
59
|
+
requires:
|
|
60
|
+
- build
|
|
61
|
+
filters:
|
|
62
|
+
branches:
|
|
63
|
+
only: master
|
|
64
|
+
- deploy:
|
|
65
|
+
requires:
|
|
66
|
+
- request-deploy
|
|
67
|
+
filters:
|
|
68
|
+
branches:
|
|
69
|
+
only: master
|
package/.editorconfig
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# Editor configuration, see http://editorconfig.org
|
|
2
|
+
root = true
|
|
3
|
+
|
|
4
|
+
[*]
|
|
5
|
+
charset = utf-8
|
|
6
|
+
indent_style = space
|
|
7
|
+
indent_size = 2
|
|
8
|
+
end_of_line = lf
|
|
9
|
+
insert_final_newline = true
|
|
10
|
+
trim_trailing_whitespace = true
|
|
11
|
+
|
|
12
|
+
[*.md]
|
|
13
|
+
max_line_length = 0
|
|
14
|
+
trim_trailing_whitespace = false
|
package/.gitattributes
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
*.js linguist-language=TypeScript
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
* @andes/testing @andes/code-review
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
<!--
|
|
2
|
+
|
|
3
|
+
PASOS PARA REGISTRAR UN PULL REQUEST
|
|
4
|
+
____________________________________
|
|
5
|
+
-->
|
|
6
|
+
### Requerimiento
|
|
7
|
+
<!-- URL de la User Story, referencia al issue (#1111) o breve descripcion del requerimiento -->
|
|
8
|
+
|
|
9
|
+
### Funcionalidad desarrollada
|
|
10
|
+
<!-- Describir que se desarrollo -->
|
|
11
|
+
1.
|
|
12
|
+
2.
|
|
13
|
+
3.
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### UserStories llegó a completarse
|
|
17
|
+
<!-- Marca con una X la casilla correcta-->
|
|
18
|
+
- [ ] Si
|
|
19
|
+
- [ ] No
|
|
20
|
+
|
|
21
|
+
<!-- Agregar captura de pantalla, si fuera relevante -->
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
<!-- Código relevante
|
|
25
|
+
```
|
|
26
|
+
(pegar código aquí)
|
|
27
|
+
```
|
|
28
|
+
-->
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
name: BUILD AND TEST
|
|
2
|
+
on: [push]
|
|
3
|
+
jobs:
|
|
4
|
+
build:
|
|
5
|
+
runs-on: ubuntu-latest
|
|
6
|
+
steps:
|
|
7
|
+
- uses: actions/checkout@v1
|
|
8
|
+
- name: Use Node.js
|
|
9
|
+
uses: actions/setup-node@v1
|
|
10
|
+
with:
|
|
11
|
+
node-version: '10.x'
|
|
12
|
+
- run: npm ci
|
|
13
|
+
- run: npm run lint
|
|
14
|
+
- run: npm test
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
on:
|
|
2
|
+
workflow_dispatch:
|
|
3
|
+
push:
|
|
4
|
+
branches:
|
|
5
|
+
- master
|
|
6
|
+
jobs:
|
|
7
|
+
triage:
|
|
8
|
+
runs-on: ubuntu-latest
|
|
9
|
+
steps:
|
|
10
|
+
- uses: mschilde/auto-label-merge-conflicts@master
|
|
11
|
+
with:
|
|
12
|
+
CONFLICT_LABEL_NAME: "has conflicts"
|
|
13
|
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,306 @@
|
|
|
1
|
+
## [1.11.1](https://github.com/andes/fhir/compare/v1.11.0...v1.11.1) (2021-09-23)
|
|
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)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Features
|
|
26
|
+
|
|
27
|
+
* **composition:** change format ([7b93693](https://github.com/andes/fhir/commit/7b9369329181f4b8671f49134b1da7f587b66fea))
|
|
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))
|
|
249
|
+
|
|
250
|
+
# 1.0.0 (2020-02-14)
|
|
251
|
+
|
|
252
|
+
|
|
253
|
+
### Bug Fixes
|
|
254
|
+
|
|
255
|
+
* **circle:** remove start ([32247c0](https://github.com/andes/fhir/commit/32247c048e366db878d0be29f31fbd9775c834b0))
|
|
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))
|
|
294
|
+
|
|
295
|
+
|
|
296
|
+
### Features
|
|
297
|
+
|
|
298
|
+
* **circleci:** Add circleci file into the project ([45fb5fb](https://github.com/andes/fhir/commit/45fb5fbe7ff15faf8f982abc272e763a5342a3ae))
|
|
299
|
+
* **circleci:** Add config file ([762ec2e](https://github.com/andes/fhir/commit/762ec2ec576fee05d43d738e83cebe4cae343793))
|
|
300
|
+
* **circleci:** add some workflow behaivor ([1444daa](https://github.com/andes/fhir/commit/1444daa03781be4c9c1b0157a1604ced0809cee7))
|
|
301
|
+
* **circleci:** add some workflow behaivor ([139f4d2](https://github.com/andes/fhir/commit/139f4d2cf7c73eb4201837a0100b8ec04fa1efb7))
|
|
302
|
+
* **continups integration:** Some improvements ([1d719fd](https://github.com/andes/fhir/commit/1d719fd5b2ed4bfeb8fb5b0a53a476feee9c48f9))
|
|
303
|
+
* **continups integration:** Some improvements ([7d40033](https://github.com/andes/fhir/commit/7d40033e33438f18ec4b855fcde576be575c92bd))
|
|
304
|
+
* **patient:** add cuil data ([c3ddd9a](https://github.com/andes/fhir/commit/c3ddd9ac7d1bdbcbd0b54c36e08f7cc2cb20053d))
|
|
305
|
+
* new patient schema ([2e57f59](https://github.com/andes/fhir/commit/2e57f5938433d56a79278c563453633f6ecaf6dd))
|
|
306
|
+
* new patient schema ([a83b51e](https://github.com/andes/fhir/commit/a83b51e79259dd5b5e64d47ef8bbe0d0c450bca5))
|