├── .github └── workflows │ ├── run-tests.yml │ └── test-and-deploy.yml ├── .gitignore ├── .vscode └── settings.json ├── LICENSE.txt ├── README.md ├── package.json ├── public ├── app.css ├── bootstrap.min.css ├── callback.html ├── config │ ├── bluebutton_endpoints.json │ ├── config-override-demo.json │ ├── config.json │ ├── epic_endpoints_r4.json │ └── sandbox_endpoints.json ├── favicon.ico ├── index.html └── manifest.json ├── scripts └── get_epic_endpoints.sh ├── src ├── components │ ├── App.js │ ├── BlankSlate.js │ ├── Fetcher.js │ ├── FhirTree.js │ ├── FileUploader.js │ ├── GithubUploader.js │ ├── Header.js │ ├── Loader.js │ ├── ProviderForm.js │ ├── ProviderList.js │ ├── SettingsImportDropZone.js │ ├── TimeAgo.js │ ├── Toolbar.js │ └── Wizard │ │ ├── DownloadButton.js │ │ ├── Retrieve.js │ │ ├── Review.js │ │ ├── SelectProvider.js │ │ ├── Start.js │ │ ├── Upload.js │ │ └── index.js ├── index.js ├── schemas │ ├── config-schema.json │ ├── endpoint-list-schema.json │ ├── samples │ │ └── user-settings.json │ ├── upload-manifest-schema.json │ └── user-settings-schema.json ├── serviceWorker.js ├── smart │ ├── fhir.js │ ├── smart-core.js │ └── smart-popup.js ├── store │ ├── config-loader.js │ ├── csv-writer.js │ ├── fhir-loader.js │ ├── file-exporter.js │ ├── github-api.js │ ├── github-exporter.js │ ├── initial-state-dev.js │ ├── initial-state.js │ ├── merge-objects.js │ ├── spreadsheet-exporter.js │ ├── store.js │ ├── user-settings.js │ └── zip-exporter.js ├── sw-build.js ├── sw.js └── test │ ├── App.test.js │ ├── data │ ├── document1.js │ ├── document_reference.json │ ├── duck.js │ ├── josh │ │ ├── unity-point │ │ │ ├── allergy-intolerance.json │ │ │ ├── condition.json │ │ │ ├── document-reference-TksSRPcka4BoYduTTHg-k0jPC5rVuPExcfPtz4UQS-3uCXiMVAQgj2SsyEWKvUbPZ.jSROON4EThqtJZa5Az4PJuqIqOe6xg7cyGjo7YoRxEB.xml │ │ │ ├── document-reference-Tr-wsqP3I4ItgWRr1UtQWZHlE7rlv7nbeuTFnUqoLY4.wE7nA4Ugt7PuvMvct9ydxMXubL7BSwkb00UgR1HewAiIlpSl3AHRtkFgkT7XRf.IB.xml │ │ │ ├── document-reference.json │ │ │ ├── immunization.json │ │ │ ├── laboratory.json │ │ │ ├── medication-order.json │ │ │ ├── medication-statement.json │ │ │ ├── patient.json │ │ │ ├── procedure.json │ │ │ ├── social-history.json │ │ │ └── vital-signs.json │ │ └── uw │ │ │ ├── allergy-intolerance.json │ │ │ ├── condition.json │ │ │ ├── document-reference-TLFF7UrfbsbX.Of.6p86Rt6KAX0tYwTfligqU-QjdS78CAZHlHdbEzFy1YQvLdgFU2MvF6KOhqpGv.IGaD4leQBLPT55WRrZsm4pXroi.w2kB.xml │ │ │ ├── document-reference-TOIpsPdnnD8RBIcWAoT9Vmynd.xVLCSnQF7yCE56mN5hWinmeCT0v-6C1EpEhHsy9injJ361KLSVBvx6A2AIIRIeOsUTWWPx9yZN8SaobGnMB.xml │ │ │ ├── document-reference-TVmPYRkn9A.cSDZwweE61.Zpt7R6f6ekSxQqSl.qWZffg.pEYDV5OJRCBvvyp1iczssSv9tk9Uu518PR.kPn9ne.NNoNM.g4KBj1-BwCa6AQB.xml │ │ │ ├── document-reference-TcoDtNRyERbHqp4AjTVQYeoAzJOflQgYLHQOzlLZ0k1WyM0GwXqRw.mQdpsitgmVgm3fAMcsjfFJlb0Cix6AQsdVH5IYv.9g4vhAm-Aqf5jEB.xml │ │ │ ├── document-reference.json │ │ │ ├── immunization.json │ │ │ ├── laboratory.json │ │ │ ├── medication-order.json │ │ │ ├── medication-statement.json │ │ │ ├── patient.json │ │ │ ├── procedure.json │ │ │ ├── social-history.json │ │ │ └── vital-signs.json │ ├── metadata.json │ ├── observation-cerner.json │ ├── observation-epic.json │ ├── observation1.json │ ├── observation2.json │ ├── operation_outcome_404.json │ ├── patient.json │ ├── procedure.json │ └── smart-configuration.json │ ├── fhir.test.js │ ├── merge-objects.test.js │ ├── smart-core.test.js │ ├── spreadsheet.test.js │ └── util │ └── base64toblob.js └── upload-backends ├── node-server-aws ├── index.js ├── package-lock.json └── package.json └── node-server ├── index.js ├── package-lock.json └── package.json /.github/workflows/run-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/.github/workflows/run-tests.yml -------------------------------------------------------------------------------- /.github/workflows/test-and-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/.github/workflows/test-and-deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/package.json -------------------------------------------------------------------------------- /public/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/public/app.css -------------------------------------------------------------------------------- /public/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/public/bootstrap.min.css -------------------------------------------------------------------------------- /public/callback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/public/callback.html -------------------------------------------------------------------------------- /public/config/bluebutton_endpoints.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/public/config/bluebutton_endpoints.json -------------------------------------------------------------------------------- /public/config/config-override-demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/public/config/config-override-demo.json -------------------------------------------------------------------------------- /public/config/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/public/config/config.json -------------------------------------------------------------------------------- /public/config/epic_endpoints_r4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/public/config/epic_endpoints_r4.json -------------------------------------------------------------------------------- /public/config/sandbox_endpoints.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/public/config/sandbox_endpoints.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/public/manifest.json -------------------------------------------------------------------------------- /scripts/get_epic_endpoints.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/scripts/get_epic_endpoints.sh -------------------------------------------------------------------------------- /src/components/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/components/App.js -------------------------------------------------------------------------------- /src/components/BlankSlate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/components/BlankSlate.js -------------------------------------------------------------------------------- /src/components/Fetcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/components/Fetcher.js -------------------------------------------------------------------------------- /src/components/FhirTree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/components/FhirTree.js -------------------------------------------------------------------------------- /src/components/FileUploader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/components/FileUploader.js -------------------------------------------------------------------------------- /src/components/GithubUploader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/components/GithubUploader.js -------------------------------------------------------------------------------- /src/components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/components/Header.js -------------------------------------------------------------------------------- /src/components/Loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/components/Loader.js -------------------------------------------------------------------------------- /src/components/ProviderForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/components/ProviderForm.js -------------------------------------------------------------------------------- /src/components/ProviderList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/components/ProviderList.js -------------------------------------------------------------------------------- /src/components/SettingsImportDropZone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/components/SettingsImportDropZone.js -------------------------------------------------------------------------------- /src/components/TimeAgo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/components/TimeAgo.js -------------------------------------------------------------------------------- /src/components/Toolbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/components/Toolbar.js -------------------------------------------------------------------------------- /src/components/Wizard/DownloadButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/components/Wizard/DownloadButton.js -------------------------------------------------------------------------------- /src/components/Wizard/Retrieve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/components/Wizard/Retrieve.js -------------------------------------------------------------------------------- /src/components/Wizard/Review.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/components/Wizard/Review.js -------------------------------------------------------------------------------- /src/components/Wizard/SelectProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/components/Wizard/SelectProvider.js -------------------------------------------------------------------------------- /src/components/Wizard/Start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/components/Wizard/Start.js -------------------------------------------------------------------------------- /src/components/Wizard/Upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/components/Wizard/Upload.js -------------------------------------------------------------------------------- /src/components/Wizard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/components/Wizard/index.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/index.js -------------------------------------------------------------------------------- /src/schemas/config-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/schemas/config-schema.json -------------------------------------------------------------------------------- /src/schemas/endpoint-list-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/schemas/endpoint-list-schema.json -------------------------------------------------------------------------------- /src/schemas/samples/user-settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/schemas/samples/user-settings.json -------------------------------------------------------------------------------- /src/schemas/upload-manifest-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/schemas/upload-manifest-schema.json -------------------------------------------------------------------------------- /src/schemas/user-settings-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/schemas/user-settings-schema.json -------------------------------------------------------------------------------- /src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/serviceWorker.js -------------------------------------------------------------------------------- /src/smart/fhir.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/smart/fhir.js -------------------------------------------------------------------------------- /src/smart/smart-core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/smart/smart-core.js -------------------------------------------------------------------------------- /src/smart/smart-popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/smart/smart-popup.js -------------------------------------------------------------------------------- /src/store/config-loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/store/config-loader.js -------------------------------------------------------------------------------- /src/store/csv-writer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/store/csv-writer.js -------------------------------------------------------------------------------- /src/store/fhir-loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/store/fhir-loader.js -------------------------------------------------------------------------------- /src/store/file-exporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/store/file-exporter.js -------------------------------------------------------------------------------- /src/store/github-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/store/github-api.js -------------------------------------------------------------------------------- /src/store/github-exporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/store/github-exporter.js -------------------------------------------------------------------------------- /src/store/initial-state-dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/store/initial-state-dev.js -------------------------------------------------------------------------------- /src/store/initial-state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/store/initial-state.js -------------------------------------------------------------------------------- /src/store/merge-objects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/store/merge-objects.js -------------------------------------------------------------------------------- /src/store/spreadsheet-exporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/store/spreadsheet-exporter.js -------------------------------------------------------------------------------- /src/store/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/store/store.js -------------------------------------------------------------------------------- /src/store/user-settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/store/user-settings.js -------------------------------------------------------------------------------- /src/store/zip-exporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/store/zip-exporter.js -------------------------------------------------------------------------------- /src/sw-build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/sw-build.js -------------------------------------------------------------------------------- /src/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/sw.js -------------------------------------------------------------------------------- /src/test/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/test/App.test.js -------------------------------------------------------------------------------- /src/test/data/document1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/test/data/document1.js -------------------------------------------------------------------------------- /src/test/data/document_reference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/test/data/document_reference.json -------------------------------------------------------------------------------- /src/test/data/duck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/test/data/duck.js -------------------------------------------------------------------------------- /src/test/data/josh/unity-point/allergy-intolerance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/test/data/josh/unity-point/allergy-intolerance.json -------------------------------------------------------------------------------- /src/test/data/josh/unity-point/condition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/test/data/josh/unity-point/condition.json -------------------------------------------------------------------------------- /src/test/data/josh/unity-point/document-reference-TksSRPcka4BoYduTTHg-k0jPC5rVuPExcfPtz4UQS-3uCXiMVAQgj2SsyEWKvUbPZ.jSROON4EThqtJZa5Az4PJuqIqOe6xg7cyGjo7YoRxEB.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/test/data/josh/unity-point/document-reference-TksSRPcka4BoYduTTHg-k0jPC5rVuPExcfPtz4UQS-3uCXiMVAQgj2SsyEWKvUbPZ.jSROON4EThqtJZa5Az4PJuqIqOe6xg7cyGjo7YoRxEB.xml -------------------------------------------------------------------------------- /src/test/data/josh/unity-point/document-reference-Tr-wsqP3I4ItgWRr1UtQWZHlE7rlv7nbeuTFnUqoLY4.wE7nA4Ugt7PuvMvct9ydxMXubL7BSwkb00UgR1HewAiIlpSl3AHRtkFgkT7XRf.IB.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/test/data/josh/unity-point/document-reference-Tr-wsqP3I4ItgWRr1UtQWZHlE7rlv7nbeuTFnUqoLY4.wE7nA4Ugt7PuvMvct9ydxMXubL7BSwkb00UgR1HewAiIlpSl3AHRtkFgkT7XRf.IB.xml -------------------------------------------------------------------------------- /src/test/data/josh/unity-point/document-reference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/test/data/josh/unity-point/document-reference.json -------------------------------------------------------------------------------- /src/test/data/josh/unity-point/immunization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/test/data/josh/unity-point/immunization.json -------------------------------------------------------------------------------- /src/test/data/josh/unity-point/laboratory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/test/data/josh/unity-point/laboratory.json -------------------------------------------------------------------------------- /src/test/data/josh/unity-point/medication-order.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/test/data/josh/unity-point/medication-order.json -------------------------------------------------------------------------------- /src/test/data/josh/unity-point/medication-statement.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/test/data/josh/unity-point/medication-statement.json -------------------------------------------------------------------------------- /src/test/data/josh/unity-point/patient.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/test/data/josh/unity-point/patient.json -------------------------------------------------------------------------------- /src/test/data/josh/unity-point/procedure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/test/data/josh/unity-point/procedure.json -------------------------------------------------------------------------------- /src/test/data/josh/unity-point/social-history.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/test/data/josh/unity-point/social-history.json -------------------------------------------------------------------------------- /src/test/data/josh/unity-point/vital-signs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/test/data/josh/unity-point/vital-signs.json -------------------------------------------------------------------------------- /src/test/data/josh/uw/allergy-intolerance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/test/data/josh/uw/allergy-intolerance.json -------------------------------------------------------------------------------- /src/test/data/josh/uw/condition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/test/data/josh/uw/condition.json -------------------------------------------------------------------------------- /src/test/data/josh/uw/document-reference-TLFF7UrfbsbX.Of.6p86Rt6KAX0tYwTfligqU-QjdS78CAZHlHdbEzFy1YQvLdgFU2MvF6KOhqpGv.IGaD4leQBLPT55WRrZsm4pXroi.w2kB.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/test/data/josh/uw/document-reference-TLFF7UrfbsbX.Of.6p86Rt6KAX0tYwTfligqU-QjdS78CAZHlHdbEzFy1YQvLdgFU2MvF6KOhqpGv.IGaD4leQBLPT55WRrZsm4pXroi.w2kB.xml -------------------------------------------------------------------------------- /src/test/data/josh/uw/document-reference-TOIpsPdnnD8RBIcWAoT9Vmynd.xVLCSnQF7yCE56mN5hWinmeCT0v-6C1EpEhHsy9injJ361KLSVBvx6A2AIIRIeOsUTWWPx9yZN8SaobGnMB.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/test/data/josh/uw/document-reference-TOIpsPdnnD8RBIcWAoT9Vmynd.xVLCSnQF7yCE56mN5hWinmeCT0v-6C1EpEhHsy9injJ361KLSVBvx6A2AIIRIeOsUTWWPx9yZN8SaobGnMB.xml -------------------------------------------------------------------------------- /src/test/data/josh/uw/document-reference-TVmPYRkn9A.cSDZwweE61.Zpt7R6f6ekSxQqSl.qWZffg.pEYDV5OJRCBvvyp1iczssSv9tk9Uu518PR.kPn9ne.NNoNM.g4KBj1-BwCa6AQB.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/test/data/josh/uw/document-reference-TVmPYRkn9A.cSDZwweE61.Zpt7R6f6ekSxQqSl.qWZffg.pEYDV5OJRCBvvyp1iczssSv9tk9Uu518PR.kPn9ne.NNoNM.g4KBj1-BwCa6AQB.xml -------------------------------------------------------------------------------- /src/test/data/josh/uw/document-reference-TcoDtNRyERbHqp4AjTVQYeoAzJOflQgYLHQOzlLZ0k1WyM0GwXqRw.mQdpsitgmVgm3fAMcsjfFJlb0Cix6AQsdVH5IYv.9g4vhAm-Aqf5jEB.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/test/data/josh/uw/document-reference-TcoDtNRyERbHqp4AjTVQYeoAzJOflQgYLHQOzlLZ0k1WyM0GwXqRw.mQdpsitgmVgm3fAMcsjfFJlb0Cix6AQsdVH5IYv.9g4vhAm-Aqf5jEB.xml -------------------------------------------------------------------------------- /src/test/data/josh/uw/document-reference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/test/data/josh/uw/document-reference.json -------------------------------------------------------------------------------- /src/test/data/josh/uw/immunization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/test/data/josh/uw/immunization.json -------------------------------------------------------------------------------- /src/test/data/josh/uw/laboratory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/test/data/josh/uw/laboratory.json -------------------------------------------------------------------------------- /src/test/data/josh/uw/medication-order.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/test/data/josh/uw/medication-order.json -------------------------------------------------------------------------------- /src/test/data/josh/uw/medication-statement.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/test/data/josh/uw/medication-statement.json -------------------------------------------------------------------------------- /src/test/data/josh/uw/patient.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/test/data/josh/uw/patient.json -------------------------------------------------------------------------------- /src/test/data/josh/uw/procedure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/test/data/josh/uw/procedure.json -------------------------------------------------------------------------------- /src/test/data/josh/uw/social-history.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/test/data/josh/uw/social-history.json -------------------------------------------------------------------------------- /src/test/data/josh/uw/vital-signs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/test/data/josh/uw/vital-signs.json -------------------------------------------------------------------------------- /src/test/data/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/test/data/metadata.json -------------------------------------------------------------------------------- /src/test/data/observation-cerner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/test/data/observation-cerner.json -------------------------------------------------------------------------------- /src/test/data/observation-epic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/test/data/observation-epic.json -------------------------------------------------------------------------------- /src/test/data/observation1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/test/data/observation1.json -------------------------------------------------------------------------------- /src/test/data/observation2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/test/data/observation2.json -------------------------------------------------------------------------------- /src/test/data/operation_outcome_404.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/test/data/operation_outcome_404.json -------------------------------------------------------------------------------- /src/test/data/patient.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/test/data/patient.json -------------------------------------------------------------------------------- /src/test/data/procedure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/test/data/procedure.json -------------------------------------------------------------------------------- /src/test/data/smart-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/test/data/smart-configuration.json -------------------------------------------------------------------------------- /src/test/fhir.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/test/fhir.test.js -------------------------------------------------------------------------------- /src/test/merge-objects.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/test/merge-objects.test.js -------------------------------------------------------------------------------- /src/test/smart-core.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/test/smart-core.test.js -------------------------------------------------------------------------------- /src/test/spreadsheet.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/test/spreadsheet.test.js -------------------------------------------------------------------------------- /src/test/util/base64toblob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/src/test/util/base64toblob.js -------------------------------------------------------------------------------- /upload-backends/node-server-aws/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/upload-backends/node-server-aws/index.js -------------------------------------------------------------------------------- /upload-backends/node-server-aws/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/upload-backends/node-server-aws/package-lock.json -------------------------------------------------------------------------------- /upload-backends/node-server-aws/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/upload-backends/node-server-aws/package.json -------------------------------------------------------------------------------- /upload-backends/node-server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/upload-backends/node-server/index.js -------------------------------------------------------------------------------- /upload-backends/node-server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/upload-backends/node-server/package-lock.json -------------------------------------------------------------------------------- /upload-backends/node-server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync-for-science/procure-wip/HEAD/upload-backends/node-server/package.json --------------------------------------------------------------------------------