├── .gitignore ├── CODE_OF_CONDUCT.md ├── FHIR-Converter ├── .vscode │ ├── launch.json │ ├── settings.json │ └── tasks.json ├── .vscodeignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── LICENSE ├── NOTICE.html ├── README.md ├── SECURITY.md ├── assets │ ├── conversion.gif │ ├── editing.gif │ ├── icon.png │ ├── installation.gif │ ├── login-logout.gif │ ├── open-switch-workspace.gif │ ├── pull-default-templates.gif │ ├── pull-sample-data.gif │ ├── pull-templates.gif │ ├── push-templates.gif │ ├── snippet-templates-editing.gif │ ├── update-template-folder.gif │ └── workspace.gif ├── client │ ├── install-engine.sh │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── core │ │ │ ├── common │ │ │ │ ├── constants │ │ │ │ │ ├── engine.ts │ │ │ │ │ ├── template-management.ts │ │ │ │ │ ├── workspace-configuration.ts │ │ │ │ │ └── workspace-state.ts │ │ │ │ ├── enum │ │ │ │ │ ├── file-type.ts │ │ │ │ │ ├── metadata-type.ts │ │ │ │ │ ├── status.ts │ │ │ │ │ └── template-type.ts │ │ │ │ ├── errors │ │ │ │ │ ├── configuration-error.ts │ │ │ │ │ ├── conversion-error.ts │ │ │ │ │ └── template-management-error.ts │ │ │ │ └── utils │ │ │ │ │ ├── engine-utils.ts │ │ │ │ │ ├── file-utils.ts │ │ │ │ │ ├── os-utils.ts │ │ │ │ │ └── string-utils.ts │ │ │ ├── converter │ │ │ │ ├── converter-factory.ts │ │ │ │ ├── converter.ts │ │ │ │ └── engine │ │ │ │ │ ├── converter-engine.ts │ │ │ │ │ └── fhir-converter-engine.ts │ │ │ ├── globals.ts │ │ │ ├── http │ │ │ │ └── acr-request.ts │ │ │ ├── language-client │ │ │ │ └── language-client.ts │ │ │ ├── platform │ │ │ │ ├── mac-platform-data.ts │ │ │ │ ├── platform-data.ts │ │ │ │ ├── platform-handler.ts │ │ │ │ └── windows-platform-data.ts │ │ │ ├── settings │ │ │ │ └── settings-manager.ts │ │ │ └── template-manager │ │ │ │ ├── acr-template-manager.ts │ │ │ │ ├── template-manager-factory.ts │ │ │ │ └── template-manager.ts │ │ ├── extension.ts │ │ ├── i18n │ │ │ ├── language-pack.ts │ │ │ └── localize.ts │ │ ├── telemetry │ │ │ └── telemetry.ts │ │ ├── test │ │ │ ├── reporters │ │ │ │ ├── logReporterUtils.ts │ │ │ │ └── logTestReporter.ts │ │ │ ├── runTest.ts │ │ │ └── suite │ │ │ │ ├── converter │ │ │ │ ├── converter.test.ts │ │ │ │ └── engine │ │ │ │ │ └── fhir-converter-engine.test.ts │ │ │ │ ├── index.ts │ │ │ │ ├── test-hooks.ts │ │ │ │ ├── utils │ │ │ │ ├── engine-utils.test.ts │ │ │ │ ├── file-utils.test.ts │ │ │ │ └── string-utils.test.ts │ │ │ │ └── view │ │ │ │ └── extension.test.ts │ │ └── view │ │ │ ├── common │ │ │ ├── commands │ │ │ │ ├── command-handler.ts │ │ │ │ └── register-command.ts │ │ │ ├── diagnostic │ │ │ │ └── used-segments-diagnostic.ts │ │ │ ├── editor │ │ │ │ ├── show-differential-view.ts │ │ │ │ └── show-result-editor.ts │ │ │ ├── error │ │ │ │ └── error-handler.ts │ │ │ ├── explorer │ │ │ │ └── select-file-from-explorer.ts │ │ │ ├── file-dialog │ │ │ │ └── file-dialog-interaction.ts │ │ │ ├── input │ │ │ │ ├── input-box.ts │ │ │ │ └── quick-pick.ts │ │ │ ├── registry │ │ │ │ └── pull-image.ts │ │ │ ├── status-bar │ │ │ │ └── set-status-bar.ts │ │ │ └── workspace │ │ │ │ └── converter-workspace-exists.ts │ │ │ └── user-commands │ │ │ ├── convert.ts │ │ │ ├── create-converter-workspace.ts │ │ │ ├── login-registry.ts │ │ │ ├── logout-registry.ts │ │ │ ├── pull-official-templates.ts │ │ │ ├── pull-sample-data.ts │ │ │ ├── pull-templates.ts │ │ │ ├── push-templates.ts │ │ │ ├── select-data.ts │ │ │ ├── select-template.ts │ │ │ └── update-template-folder.ts │ └── tsconfig.json ├── package-lock.json ├── package.json ├── package.nls.json ├── server │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── common │ │ │ ├── constants.ts │ │ │ ├── settings-manager.ts │ │ │ └── utils.ts │ │ ├── i18n │ │ │ ├── language-pack.ts │ │ │ └── localize.ts │ │ ├── server.ts │ │ └── test │ │ │ ├── reporters │ │ │ ├── logReporterUtils.ts │ │ │ └── logTestReporter.ts │ │ │ ├── runTest.ts │ │ │ └── suite │ │ │ ├── index.ts │ │ │ ├── test-hooks.ts │ │ │ └── utils.test.ts │ └── tsconfig.json ├── test-data │ ├── data │ │ ├── C-CDA │ │ │ ├── 170.314B2_Amb_CCD.ccda │ │ │ ├── C-CDA_R2-1_CCD.xml │ │ │ ├── C-CDA_R2-1_CCD.xml.ccda │ │ │ ├── CCD-Parent-Document-Replace-C-CDAR2.1.ccda │ │ │ ├── CCD-error.ccda │ │ │ ├── CCD.ccda │ │ │ ├── CDA_with_Embedded_PDF.ccda │ │ │ ├── Care_Plan.ccda │ │ │ ├── Consult-Document-Closing-Referral-C-CDAR2.1.ccda │ │ │ ├── Consultation_Note.ccda │ │ │ ├── Diagnostic_Imaging_Report.ccda │ │ │ ├── Discharge_Summary.ccda │ │ │ ├── History_and_Physical.ccda │ │ │ ├── Operative_Note.ccda │ │ │ ├── PROBLEMS_in_Empty_C-CDA_2.1-C-CDAR2.1.ccda │ │ │ ├── Patient-1.ccda │ │ │ ├── Patient-and-Provider-Organization-Direct-Address-C-CDAR2.1.ccda │ │ │ ├── Procedure_Note.ccda │ │ │ ├── Progress_Note.ccda │ │ │ ├── Referral_Note.ccda │ │ │ ├── Transfer_Summary.ccda │ │ │ ├── Unstructured_Document_embed.ccda │ │ │ ├── Unstructured_Document_reference.ccda │ │ │ ├── empty.ccda │ │ │ └── sample.ccda │ │ └── Hl7v2 │ │ │ ├── ADT01-23-error.hl7 │ │ │ ├── ADT01-23.hl7 │ │ │ ├── ADT01-28.hl7 │ │ │ ├── ADT04-23.hl7 │ │ │ ├── ADT04-251.hl7 │ │ │ ├── ADT04-28.hl7 │ │ │ ├── IZ_1_1.1_Admin_Child_Max_Message.hl7 │ │ │ ├── LAB-ORM-1.hl7 │ │ │ ├── LAB-ORU-1.hl7 │ │ │ ├── LAB-ORU-2.hl7 │ │ │ ├── LRI_2.0-NG_CBC_Typ_Message.hl7 │ │ │ ├── MDHHS-OML-O21-1.hl7 │ │ │ ├── MDHHS-OML-O21-2.hl7 │ │ │ ├── ORU-R01-RMGEAD.hl7 │ │ │ ├── PC1-Problem-Add-v2.3.1.hl7 │ │ │ ├── PC1-Problem-Delete-v2.3.1.hl7 │ │ │ ├── PC1-Problem-Update-v2.3.1.hl7 │ │ │ ├── VXU.hl7 │ │ │ └── empty.hl7 │ ├── download-templates.sh │ └── history │ │ ├── ADT04-28 - ADT_A01.1605683976874.json │ │ ├── ADT04-28 - ADT_A01.1605683993535.json │ │ ├── ADT04-28 - ADT_A01.1605684048847.json │ │ ├── test.5.json │ │ └── test.6.json ├── tsconfig.json └── tslint.json ├── GeoPol.xml ├── LICENSE ├── README.md ├── SECURITY.md ├── azure-pipelines.yml └── fhir-converter-pipeline.yml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /FHIR-Converter/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/.vscode/launch.json -------------------------------------------------------------------------------- /FHIR-Converter/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/.vscode/settings.json -------------------------------------------------------------------------------- /FHIR-Converter/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/.vscode/tasks.json -------------------------------------------------------------------------------- /FHIR-Converter/.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/.vscodeignore -------------------------------------------------------------------------------- /FHIR-Converter/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/CHANGELOG.md -------------------------------------------------------------------------------- /FHIR-Converter/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /FHIR-Converter/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/LICENSE -------------------------------------------------------------------------------- /FHIR-Converter/NOTICE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/NOTICE.html -------------------------------------------------------------------------------- /FHIR-Converter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/README.md -------------------------------------------------------------------------------- /FHIR-Converter/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/SECURITY.md -------------------------------------------------------------------------------- /FHIR-Converter/assets/conversion.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/assets/conversion.gif -------------------------------------------------------------------------------- /FHIR-Converter/assets/editing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/assets/editing.gif -------------------------------------------------------------------------------- /FHIR-Converter/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/assets/icon.png -------------------------------------------------------------------------------- /FHIR-Converter/assets/installation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/assets/installation.gif -------------------------------------------------------------------------------- /FHIR-Converter/assets/login-logout.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/assets/login-logout.gif -------------------------------------------------------------------------------- /FHIR-Converter/assets/open-switch-workspace.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/assets/open-switch-workspace.gif -------------------------------------------------------------------------------- /FHIR-Converter/assets/pull-default-templates.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/assets/pull-default-templates.gif -------------------------------------------------------------------------------- /FHIR-Converter/assets/pull-sample-data.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/assets/pull-sample-data.gif -------------------------------------------------------------------------------- /FHIR-Converter/assets/pull-templates.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/assets/pull-templates.gif -------------------------------------------------------------------------------- /FHIR-Converter/assets/push-templates.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/assets/push-templates.gif -------------------------------------------------------------------------------- /FHIR-Converter/assets/snippet-templates-editing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/assets/snippet-templates-editing.gif -------------------------------------------------------------------------------- /FHIR-Converter/assets/update-template-folder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/assets/update-template-folder.gif -------------------------------------------------------------------------------- /FHIR-Converter/assets/workspace.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/assets/workspace.gif -------------------------------------------------------------------------------- /FHIR-Converter/client/install-engine.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/client/install-engine.sh -------------------------------------------------------------------------------- /FHIR-Converter/client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/client/package-lock.json -------------------------------------------------------------------------------- /FHIR-Converter/client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/client/package.json -------------------------------------------------------------------------------- /FHIR-Converter/client/src/core/common/constants/engine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/client/src/core/common/constants/engine.ts -------------------------------------------------------------------------------- /FHIR-Converter/client/src/core/common/constants/template-management.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/client/src/core/common/constants/template-management.ts -------------------------------------------------------------------------------- /FHIR-Converter/client/src/core/common/constants/workspace-configuration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/client/src/core/common/constants/workspace-configuration.ts -------------------------------------------------------------------------------- /FHIR-Converter/client/src/core/common/constants/workspace-state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/client/src/core/common/constants/workspace-state.ts -------------------------------------------------------------------------------- /FHIR-Converter/client/src/core/common/enum/file-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/client/src/core/common/enum/file-type.ts -------------------------------------------------------------------------------- /FHIR-Converter/client/src/core/common/enum/metadata-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/client/src/core/common/enum/metadata-type.ts -------------------------------------------------------------------------------- /FHIR-Converter/client/src/core/common/enum/status.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/client/src/core/common/enum/status.ts -------------------------------------------------------------------------------- /FHIR-Converter/client/src/core/common/enum/template-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/client/src/core/common/enum/template-type.ts -------------------------------------------------------------------------------- /FHIR-Converter/client/src/core/common/errors/configuration-error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/client/src/core/common/errors/configuration-error.ts -------------------------------------------------------------------------------- /FHIR-Converter/client/src/core/common/errors/conversion-error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/client/src/core/common/errors/conversion-error.ts -------------------------------------------------------------------------------- /FHIR-Converter/client/src/core/common/errors/template-management-error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/client/src/core/common/errors/template-management-error.ts -------------------------------------------------------------------------------- /FHIR-Converter/client/src/core/common/utils/engine-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/client/src/core/common/utils/engine-utils.ts -------------------------------------------------------------------------------- /FHIR-Converter/client/src/core/common/utils/file-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/client/src/core/common/utils/file-utils.ts -------------------------------------------------------------------------------- /FHIR-Converter/client/src/core/common/utils/os-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/client/src/core/common/utils/os-utils.ts -------------------------------------------------------------------------------- /FHIR-Converter/client/src/core/common/utils/string-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/client/src/core/common/utils/string-utils.ts -------------------------------------------------------------------------------- /FHIR-Converter/client/src/core/converter/converter-factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/client/src/core/converter/converter-factory.ts -------------------------------------------------------------------------------- /FHIR-Converter/client/src/core/converter/converter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/client/src/core/converter/converter.ts -------------------------------------------------------------------------------- /FHIR-Converter/client/src/core/converter/engine/converter-engine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/client/src/core/converter/engine/converter-engine.ts -------------------------------------------------------------------------------- /FHIR-Converter/client/src/core/converter/engine/fhir-converter-engine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/client/src/core/converter/engine/fhir-converter-engine.ts -------------------------------------------------------------------------------- /FHIR-Converter/client/src/core/globals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/client/src/core/globals.ts -------------------------------------------------------------------------------- /FHIR-Converter/client/src/core/http/acr-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/client/src/core/http/acr-request.ts -------------------------------------------------------------------------------- /FHIR-Converter/client/src/core/language-client/language-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/client/src/core/language-client/language-client.ts -------------------------------------------------------------------------------- /FHIR-Converter/client/src/core/platform/mac-platform-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/client/src/core/platform/mac-platform-data.ts -------------------------------------------------------------------------------- /FHIR-Converter/client/src/core/platform/platform-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/client/src/core/platform/platform-data.ts -------------------------------------------------------------------------------- /FHIR-Converter/client/src/core/platform/platform-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/client/src/core/platform/platform-handler.ts -------------------------------------------------------------------------------- /FHIR-Converter/client/src/core/platform/windows-platform-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/client/src/core/platform/windows-platform-data.ts -------------------------------------------------------------------------------- /FHIR-Converter/client/src/core/settings/settings-manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/client/src/core/settings/settings-manager.ts -------------------------------------------------------------------------------- /FHIR-Converter/client/src/core/template-manager/acr-template-manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/client/src/core/template-manager/acr-template-manager.ts -------------------------------------------------------------------------------- /FHIR-Converter/client/src/core/template-manager/template-manager-factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/client/src/core/template-manager/template-manager-factory.ts -------------------------------------------------------------------------------- /FHIR-Converter/client/src/core/template-manager/template-manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/client/src/core/template-manager/template-manager.ts -------------------------------------------------------------------------------- /FHIR-Converter/client/src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/client/src/extension.ts -------------------------------------------------------------------------------- /FHIR-Converter/client/src/i18n/language-pack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/client/src/i18n/language-pack.ts -------------------------------------------------------------------------------- /FHIR-Converter/client/src/i18n/localize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/client/src/i18n/localize.ts -------------------------------------------------------------------------------- /FHIR-Converter/client/src/telemetry/telemetry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/client/src/telemetry/telemetry.ts -------------------------------------------------------------------------------- /FHIR-Converter/client/src/test/reporters/logReporterUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/client/src/test/reporters/logReporterUtils.ts -------------------------------------------------------------------------------- /FHIR-Converter/client/src/test/reporters/logTestReporter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/client/src/test/reporters/logTestReporter.ts -------------------------------------------------------------------------------- /FHIR-Converter/client/src/test/runTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/client/src/test/runTest.ts -------------------------------------------------------------------------------- /FHIR-Converter/client/src/test/suite/converter/converter.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/client/src/test/suite/converter/converter.test.ts -------------------------------------------------------------------------------- /FHIR-Converter/client/src/test/suite/converter/engine/fhir-converter-engine.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/client/src/test/suite/converter/engine/fhir-converter-engine.test.ts -------------------------------------------------------------------------------- /FHIR-Converter/client/src/test/suite/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/client/src/test/suite/index.ts -------------------------------------------------------------------------------- /FHIR-Converter/client/src/test/suite/test-hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/client/src/test/suite/test-hooks.ts -------------------------------------------------------------------------------- /FHIR-Converter/client/src/test/suite/utils/engine-utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/client/src/test/suite/utils/engine-utils.test.ts -------------------------------------------------------------------------------- /FHIR-Converter/client/src/test/suite/utils/file-utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/client/src/test/suite/utils/file-utils.test.ts -------------------------------------------------------------------------------- /FHIR-Converter/client/src/test/suite/utils/string-utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/client/src/test/suite/utils/string-utils.test.ts -------------------------------------------------------------------------------- /FHIR-Converter/client/src/test/suite/view/extension.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/client/src/test/suite/view/extension.test.ts -------------------------------------------------------------------------------- /FHIR-Converter/client/src/view/common/commands/command-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/client/src/view/common/commands/command-handler.ts -------------------------------------------------------------------------------- /FHIR-Converter/client/src/view/common/commands/register-command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/client/src/view/common/commands/register-command.ts -------------------------------------------------------------------------------- /FHIR-Converter/client/src/view/common/diagnostic/used-segments-diagnostic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/client/src/view/common/diagnostic/used-segments-diagnostic.ts -------------------------------------------------------------------------------- /FHIR-Converter/client/src/view/common/editor/show-differential-view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/client/src/view/common/editor/show-differential-view.ts -------------------------------------------------------------------------------- /FHIR-Converter/client/src/view/common/editor/show-result-editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/client/src/view/common/editor/show-result-editor.ts -------------------------------------------------------------------------------- /FHIR-Converter/client/src/view/common/error/error-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/client/src/view/common/error/error-handler.ts -------------------------------------------------------------------------------- /FHIR-Converter/client/src/view/common/explorer/select-file-from-explorer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/client/src/view/common/explorer/select-file-from-explorer.ts -------------------------------------------------------------------------------- /FHIR-Converter/client/src/view/common/file-dialog/file-dialog-interaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/client/src/view/common/file-dialog/file-dialog-interaction.ts -------------------------------------------------------------------------------- /FHIR-Converter/client/src/view/common/input/input-box.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/client/src/view/common/input/input-box.ts -------------------------------------------------------------------------------- /FHIR-Converter/client/src/view/common/input/quick-pick.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/client/src/view/common/input/quick-pick.ts -------------------------------------------------------------------------------- /FHIR-Converter/client/src/view/common/registry/pull-image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/client/src/view/common/registry/pull-image.ts -------------------------------------------------------------------------------- /FHIR-Converter/client/src/view/common/status-bar/set-status-bar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/client/src/view/common/status-bar/set-status-bar.ts -------------------------------------------------------------------------------- /FHIR-Converter/client/src/view/common/workspace/converter-workspace-exists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/client/src/view/common/workspace/converter-workspace-exists.ts -------------------------------------------------------------------------------- /FHIR-Converter/client/src/view/user-commands/convert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/client/src/view/user-commands/convert.ts -------------------------------------------------------------------------------- /FHIR-Converter/client/src/view/user-commands/create-converter-workspace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/client/src/view/user-commands/create-converter-workspace.ts -------------------------------------------------------------------------------- /FHIR-Converter/client/src/view/user-commands/login-registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/client/src/view/user-commands/login-registry.ts -------------------------------------------------------------------------------- /FHIR-Converter/client/src/view/user-commands/logout-registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/client/src/view/user-commands/logout-registry.ts -------------------------------------------------------------------------------- /FHIR-Converter/client/src/view/user-commands/pull-official-templates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/client/src/view/user-commands/pull-official-templates.ts -------------------------------------------------------------------------------- /FHIR-Converter/client/src/view/user-commands/pull-sample-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/client/src/view/user-commands/pull-sample-data.ts -------------------------------------------------------------------------------- /FHIR-Converter/client/src/view/user-commands/pull-templates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/client/src/view/user-commands/pull-templates.ts -------------------------------------------------------------------------------- /FHIR-Converter/client/src/view/user-commands/push-templates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/client/src/view/user-commands/push-templates.ts -------------------------------------------------------------------------------- /FHIR-Converter/client/src/view/user-commands/select-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/client/src/view/user-commands/select-data.ts -------------------------------------------------------------------------------- /FHIR-Converter/client/src/view/user-commands/select-template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/client/src/view/user-commands/select-template.ts -------------------------------------------------------------------------------- /FHIR-Converter/client/src/view/user-commands/update-template-folder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/client/src/view/user-commands/update-template-folder.ts -------------------------------------------------------------------------------- /FHIR-Converter/client/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/client/tsconfig.json -------------------------------------------------------------------------------- /FHIR-Converter/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/package-lock.json -------------------------------------------------------------------------------- /FHIR-Converter/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/package.json -------------------------------------------------------------------------------- /FHIR-Converter/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/package.nls.json -------------------------------------------------------------------------------- /FHIR-Converter/server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/server/package-lock.json -------------------------------------------------------------------------------- /FHIR-Converter/server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/server/package.json -------------------------------------------------------------------------------- /FHIR-Converter/server/src/common/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/server/src/common/constants.ts -------------------------------------------------------------------------------- /FHIR-Converter/server/src/common/settings-manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/server/src/common/settings-manager.ts -------------------------------------------------------------------------------- /FHIR-Converter/server/src/common/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/server/src/common/utils.ts -------------------------------------------------------------------------------- /FHIR-Converter/server/src/i18n/language-pack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/server/src/i18n/language-pack.ts -------------------------------------------------------------------------------- /FHIR-Converter/server/src/i18n/localize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/server/src/i18n/localize.ts -------------------------------------------------------------------------------- /FHIR-Converter/server/src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/server/src/server.ts -------------------------------------------------------------------------------- /FHIR-Converter/server/src/test/reporters/logReporterUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/server/src/test/reporters/logReporterUtils.ts -------------------------------------------------------------------------------- /FHIR-Converter/server/src/test/reporters/logTestReporter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/server/src/test/reporters/logTestReporter.ts -------------------------------------------------------------------------------- /FHIR-Converter/server/src/test/runTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/server/src/test/runTest.ts -------------------------------------------------------------------------------- /FHIR-Converter/server/src/test/suite/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/server/src/test/suite/index.ts -------------------------------------------------------------------------------- /FHIR-Converter/server/src/test/suite/test-hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/server/src/test/suite/test-hooks.ts -------------------------------------------------------------------------------- /FHIR-Converter/server/src/test/suite/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/server/src/test/suite/utils.test.ts -------------------------------------------------------------------------------- /FHIR-Converter/server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/server/tsconfig.json -------------------------------------------------------------------------------- /FHIR-Converter/test-data/data/C-CDA/170.314B2_Amb_CCD.ccda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/test-data/data/C-CDA/170.314B2_Amb_CCD.ccda -------------------------------------------------------------------------------- /FHIR-Converter/test-data/data/C-CDA/C-CDA_R2-1_CCD.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/test-data/data/C-CDA/C-CDA_R2-1_CCD.xml -------------------------------------------------------------------------------- /FHIR-Converter/test-data/data/C-CDA/C-CDA_R2-1_CCD.xml.ccda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/test-data/data/C-CDA/C-CDA_R2-1_CCD.xml.ccda -------------------------------------------------------------------------------- /FHIR-Converter/test-data/data/C-CDA/CCD-Parent-Document-Replace-C-CDAR2.1.ccda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/test-data/data/C-CDA/CCD-Parent-Document-Replace-C-CDAR2.1.ccda -------------------------------------------------------------------------------- /FHIR-Converter/test-data/data/C-CDA/CCD-error.ccda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/test-data/data/C-CDA/CCD-error.ccda -------------------------------------------------------------------------------- /FHIR-Converter/test-data/data/C-CDA/CCD.ccda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/test-data/data/C-CDA/CCD.ccda -------------------------------------------------------------------------------- /FHIR-Converter/test-data/data/C-CDA/CDA_with_Embedded_PDF.ccda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/test-data/data/C-CDA/CDA_with_Embedded_PDF.ccda -------------------------------------------------------------------------------- /FHIR-Converter/test-data/data/C-CDA/Care_Plan.ccda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/test-data/data/C-CDA/Care_Plan.ccda -------------------------------------------------------------------------------- /FHIR-Converter/test-data/data/C-CDA/Consult-Document-Closing-Referral-C-CDAR2.1.ccda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/test-data/data/C-CDA/Consult-Document-Closing-Referral-C-CDAR2.1.ccda -------------------------------------------------------------------------------- /FHIR-Converter/test-data/data/C-CDA/Consultation_Note.ccda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/test-data/data/C-CDA/Consultation_Note.ccda -------------------------------------------------------------------------------- /FHIR-Converter/test-data/data/C-CDA/Diagnostic_Imaging_Report.ccda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/test-data/data/C-CDA/Diagnostic_Imaging_Report.ccda -------------------------------------------------------------------------------- /FHIR-Converter/test-data/data/C-CDA/Discharge_Summary.ccda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/test-data/data/C-CDA/Discharge_Summary.ccda -------------------------------------------------------------------------------- /FHIR-Converter/test-data/data/C-CDA/History_and_Physical.ccda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/test-data/data/C-CDA/History_and_Physical.ccda -------------------------------------------------------------------------------- /FHIR-Converter/test-data/data/C-CDA/Operative_Note.ccda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/test-data/data/C-CDA/Operative_Note.ccda -------------------------------------------------------------------------------- /FHIR-Converter/test-data/data/C-CDA/PROBLEMS_in_Empty_C-CDA_2.1-C-CDAR2.1.ccda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/test-data/data/C-CDA/PROBLEMS_in_Empty_C-CDA_2.1-C-CDAR2.1.ccda -------------------------------------------------------------------------------- /FHIR-Converter/test-data/data/C-CDA/Patient-1.ccda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/test-data/data/C-CDA/Patient-1.ccda -------------------------------------------------------------------------------- /FHIR-Converter/test-data/data/C-CDA/Patient-and-Provider-Organization-Direct-Address-C-CDAR2.1.ccda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/test-data/data/C-CDA/Patient-and-Provider-Organization-Direct-Address-C-CDAR2.1.ccda -------------------------------------------------------------------------------- /FHIR-Converter/test-data/data/C-CDA/Procedure_Note.ccda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/test-data/data/C-CDA/Procedure_Note.ccda -------------------------------------------------------------------------------- /FHIR-Converter/test-data/data/C-CDA/Progress_Note.ccda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/test-data/data/C-CDA/Progress_Note.ccda -------------------------------------------------------------------------------- /FHIR-Converter/test-data/data/C-CDA/Referral_Note.ccda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/test-data/data/C-CDA/Referral_Note.ccda -------------------------------------------------------------------------------- /FHIR-Converter/test-data/data/C-CDA/Transfer_Summary.ccda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/test-data/data/C-CDA/Transfer_Summary.ccda -------------------------------------------------------------------------------- /FHIR-Converter/test-data/data/C-CDA/Unstructured_Document_embed.ccda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/test-data/data/C-CDA/Unstructured_Document_embed.ccda -------------------------------------------------------------------------------- /FHIR-Converter/test-data/data/C-CDA/Unstructured_Document_reference.ccda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/test-data/data/C-CDA/Unstructured_Document_reference.ccda -------------------------------------------------------------------------------- /FHIR-Converter/test-data/data/C-CDA/empty.ccda: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FHIR-Converter/test-data/data/C-CDA/sample.ccda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/test-data/data/C-CDA/sample.ccda -------------------------------------------------------------------------------- /FHIR-Converter/test-data/data/Hl7v2/ADT01-23-error.hl7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/test-data/data/Hl7v2/ADT01-23-error.hl7 -------------------------------------------------------------------------------- /FHIR-Converter/test-data/data/Hl7v2/ADT01-23.hl7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/test-data/data/Hl7v2/ADT01-23.hl7 -------------------------------------------------------------------------------- /FHIR-Converter/test-data/data/Hl7v2/ADT01-28.hl7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/test-data/data/Hl7v2/ADT01-28.hl7 -------------------------------------------------------------------------------- /FHIR-Converter/test-data/data/Hl7v2/ADT04-23.hl7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/test-data/data/Hl7v2/ADT04-23.hl7 -------------------------------------------------------------------------------- /FHIR-Converter/test-data/data/Hl7v2/ADT04-251.hl7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/test-data/data/Hl7v2/ADT04-251.hl7 -------------------------------------------------------------------------------- /FHIR-Converter/test-data/data/Hl7v2/ADT04-28.hl7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/test-data/data/Hl7v2/ADT04-28.hl7 -------------------------------------------------------------------------------- /FHIR-Converter/test-data/data/Hl7v2/IZ_1_1.1_Admin_Child_Max_Message.hl7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/test-data/data/Hl7v2/IZ_1_1.1_Admin_Child_Max_Message.hl7 -------------------------------------------------------------------------------- /FHIR-Converter/test-data/data/Hl7v2/LAB-ORM-1.hl7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/test-data/data/Hl7v2/LAB-ORM-1.hl7 -------------------------------------------------------------------------------- /FHIR-Converter/test-data/data/Hl7v2/LAB-ORU-1.hl7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/test-data/data/Hl7v2/LAB-ORU-1.hl7 -------------------------------------------------------------------------------- /FHIR-Converter/test-data/data/Hl7v2/LAB-ORU-2.hl7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/test-data/data/Hl7v2/LAB-ORU-2.hl7 -------------------------------------------------------------------------------- /FHIR-Converter/test-data/data/Hl7v2/LRI_2.0-NG_CBC_Typ_Message.hl7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/test-data/data/Hl7v2/LRI_2.0-NG_CBC_Typ_Message.hl7 -------------------------------------------------------------------------------- /FHIR-Converter/test-data/data/Hl7v2/MDHHS-OML-O21-1.hl7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/test-data/data/Hl7v2/MDHHS-OML-O21-1.hl7 -------------------------------------------------------------------------------- /FHIR-Converter/test-data/data/Hl7v2/MDHHS-OML-O21-2.hl7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/test-data/data/Hl7v2/MDHHS-OML-O21-2.hl7 -------------------------------------------------------------------------------- /FHIR-Converter/test-data/data/Hl7v2/ORU-R01-RMGEAD.hl7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/test-data/data/Hl7v2/ORU-R01-RMGEAD.hl7 -------------------------------------------------------------------------------- /FHIR-Converter/test-data/data/Hl7v2/PC1-Problem-Add-v2.3.1.hl7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/test-data/data/Hl7v2/PC1-Problem-Add-v2.3.1.hl7 -------------------------------------------------------------------------------- /FHIR-Converter/test-data/data/Hl7v2/PC1-Problem-Delete-v2.3.1.hl7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/test-data/data/Hl7v2/PC1-Problem-Delete-v2.3.1.hl7 -------------------------------------------------------------------------------- /FHIR-Converter/test-data/data/Hl7v2/PC1-Problem-Update-v2.3.1.hl7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/test-data/data/Hl7v2/PC1-Problem-Update-v2.3.1.hl7 -------------------------------------------------------------------------------- /FHIR-Converter/test-data/data/Hl7v2/VXU.hl7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/test-data/data/Hl7v2/VXU.hl7 -------------------------------------------------------------------------------- /FHIR-Converter/test-data/data/Hl7v2/empty.hl7: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FHIR-Converter/test-data/download-templates.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/test-data/download-templates.sh -------------------------------------------------------------------------------- /FHIR-Converter/test-data/history/ADT04-28 - ADT_A01.1605683976874.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/test-data/history/ADT04-28 - ADT_A01.1605683976874.json -------------------------------------------------------------------------------- /FHIR-Converter/test-data/history/ADT04-28 - ADT_A01.1605683993535.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/test-data/history/ADT04-28 - ADT_A01.1605683993535.json -------------------------------------------------------------------------------- /FHIR-Converter/test-data/history/ADT04-28 - ADT_A01.1605684048847.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/test-data/history/ADT04-28 - ADT_A01.1605684048847.json -------------------------------------------------------------------------------- /FHIR-Converter/test-data/history/test.5.json: -------------------------------------------------------------------------------- 1 | test -------------------------------------------------------------------------------- /FHIR-Converter/test-data/history/test.6.json: -------------------------------------------------------------------------------- 1 | test -------------------------------------------------------------------------------- /FHIR-Converter/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/tsconfig.json -------------------------------------------------------------------------------- /FHIR-Converter/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/FHIR-Converter/tslint.json -------------------------------------------------------------------------------- /GeoPol.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/GeoPol.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/SECURITY.md -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /fhir-converter-pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurehealthcareapis-tools/HEAD/fhir-converter-pipeline.yml --------------------------------------------------------------------------------