├── .dockerignore ├── .editorconfig ├── .gitignore ├── .idea ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── inspectionProfiles │ └── Project_Default.xml ├── modules.xml ├── trifolia-on-fhir.iml └── vcs.xml ├── .prettierignore ├── .prettierrc ├── .travis.yml ├── .vscode ├── extensions.json ├── launch.json └── settings.json ├── Dockerfile ├── Dockerfile.base ├── LICENSE ├── README.md ├── apps ├── .gitkeep ├── client │ ├── browserslist │ ├── jest.config.ts │ ├── project.json │ ├── src │ │ ├── app │ │ │ ├── app.component.css │ │ │ ├── app.component.html │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── base.component.ts │ │ │ ├── bulk-edit │ │ │ │ ├── bulk-edit.component.css │ │ │ │ ├── bulk-edit.component.html │ │ │ │ ├── bulk-edit.component.ts │ │ │ │ └── page-wrapper │ │ │ │ │ ├── page-wrapper.component.ts │ │ │ │ │ ├── r4-page │ │ │ │ │ ├── r4-page.component.css │ │ │ │ │ ├── r4-page.component.html │ │ │ │ │ └── r4-page.component.ts │ │ │ │ │ └── stu3-page │ │ │ │ │ ├── stu3-page.component.css │ │ │ │ │ ├── stu3-page.component.html │ │ │ │ │ └── stu3-page.component.ts │ │ │ ├── capability-statement-wrapper │ │ │ │ ├── capability-statement-wrapper.component.ts │ │ │ │ ├── r4 │ │ │ │ │ ├── capability-statement.component.css │ │ │ │ │ ├── capability-statement.component.html │ │ │ │ │ └── capability-statement.component.ts │ │ │ │ ├── r5 │ │ │ │ │ ├── capability-statement.component.css │ │ │ │ │ ├── capability-statement.component.html │ │ │ │ │ └── capability-statement.component.ts │ │ │ │ ├── security-services │ │ │ │ │ ├── security-services.component.css │ │ │ │ │ ├── security-services.component.html │ │ │ │ │ └── security-services.component.ts │ │ │ │ └── stu3 │ │ │ │ │ ├── capability-statement.component.css │ │ │ │ │ ├── capability-statement.component.html │ │ │ │ │ └── capability-statement.component.ts │ │ │ ├── capability-statements │ │ │ │ ├── capability-statements.component.css │ │ │ │ ├── capability-statements.component.html │ │ │ │ └── capability-statements.component.ts │ │ │ ├── clientHelper.ts │ │ │ ├── codesystem │ │ │ │ ├── codesystem.component.css │ │ │ │ ├── codesystem.component.html │ │ │ │ └── codesystem.component.ts │ │ │ ├── codesystems │ │ │ │ ├── codesystems.component.css │ │ │ │ ├── codesystems.component.html │ │ │ │ └── codesystems.component.ts │ │ │ ├── examples │ │ │ │ ├── examples.component.css │ │ │ │ ├── examples.component.html │ │ │ │ └── examples.component.ts │ │ │ ├── export-github-panel │ │ │ │ ├── export-github-panel.component.css │ │ │ │ ├── export-github-panel.component.html │ │ │ │ └── export-github-panel.component.ts │ │ │ ├── export │ │ │ │ ├── export.component.css │ │ │ │ ├── export.component.html │ │ │ │ └── export.component.ts │ │ │ ├── fhir-edit │ │ │ │ ├── address-modal │ │ │ │ │ ├── address-modal.component.css │ │ │ │ │ ├── address-modal.component.html │ │ │ │ │ └── address-modal.component.ts │ │ │ │ ├── attachment-modal │ │ │ │ │ ├── attachment-modal.component.css │ │ │ │ │ ├── attachment-modal.component.html │ │ │ │ │ └── attachment-modal.component.ts │ │ │ │ ├── attachment │ │ │ │ │ ├── attachment.component.css │ │ │ │ │ ├── attachment.component.html │ │ │ │ │ └── attachment.component.ts │ │ │ │ ├── boolean │ │ │ │ │ ├── boolean.component.css │ │ │ │ │ ├── boolean.component.html │ │ │ │ │ └── boolean.component.ts │ │ │ │ ├── canonical-url │ │ │ │ │ ├── canonical-url.component.css │ │ │ │ │ ├── canonical-url.component.html │ │ │ │ │ └── canonical-url.component.ts │ │ │ │ ├── capability-statement-resource-modal │ │ │ │ │ ├── capability-statement-resource-modal.component.css │ │ │ │ │ ├── capability-statement-resource-modal.component.html │ │ │ │ │ └── capability-statement-resource-modal.component.ts │ │ │ │ ├── choice │ │ │ │ │ ├── choice.component.css │ │ │ │ │ ├── choice.component.html │ │ │ │ │ └── choice.component.ts │ │ │ │ ├── codeable-concept-modal │ │ │ │ │ ├── codeable-concept-modal.component.css │ │ │ │ │ ├── codeable-concept-modal.component.html │ │ │ │ │ └── codeable-concept-modal.component.ts │ │ │ │ ├── codesystem-concept-modal │ │ │ │ │ ├── codesystem-concept-modal.component.css │ │ │ │ │ ├── codesystem-concept-modal.component.html │ │ │ │ │ └── codesystem-concept-modal.component.ts │ │ │ │ ├── coding-modal │ │ │ │ │ ├── coding-modal.component.css │ │ │ │ │ ├── coding-modal.component.html │ │ │ │ │ └── coding-modal.component.ts │ │ │ │ ├── contact-modal │ │ │ │ │ ├── contact-modal.component.css │ │ │ │ │ ├── contact-modal.component.html │ │ │ │ │ └── contact-modal.component.ts │ │ │ │ ├── contact-point-modal │ │ │ │ │ ├── contact-point-modal.component.css │ │ │ │ │ ├── contact-point-modal.component.html │ │ │ │ │ └── contact-point-modal.component.ts │ │ │ │ ├── date │ │ │ │ │ ├── date.component.css │ │ │ │ │ ├── date.component.html │ │ │ │ │ └── date.component.ts │ │ │ │ ├── fhir-edit.module.ts │ │ │ │ ├── human-name-modal │ │ │ │ │ ├── human-name-modal.component.css │ │ │ │ │ ├── human-name-modal.component.html │ │ │ │ │ └── human-name-modal.component.ts │ │ │ │ ├── human-name │ │ │ │ │ ├── human-name.component.css │ │ │ │ │ ├── human-name.component.html │ │ │ │ │ └── human-name.component.ts │ │ │ │ ├── human-names │ │ │ │ │ ├── human-names.component.css │ │ │ │ │ ├── human-names.component.html │ │ │ │ │ └── human-names.component.ts │ │ │ │ ├── identifier-card │ │ │ │ │ ├── identifier-card.component.css │ │ │ │ │ ├── identifier-card.component.html │ │ │ │ │ └── identifier-card.component.ts │ │ │ │ ├── identifier-modal │ │ │ │ │ ├── identifier-modal.component.css │ │ │ │ │ ├── identifier-modal.component.html │ │ │ │ │ └── identifier-modal.component.ts │ │ │ │ ├── identifier │ │ │ │ │ ├── identifier.component.css │ │ │ │ │ ├── identifier.component.html │ │ │ │ │ └── identifier.component.ts │ │ │ │ ├── markdown │ │ │ │ │ ├── markdown.component.css │ │ │ │ │ ├── markdown.component.html │ │ │ │ │ └── markdown.component.ts │ │ │ │ ├── max-cardinality │ │ │ │ │ ├── max-cardinality.component.css │ │ │ │ │ ├── max-cardinality.component.html │ │ │ │ │ └── max-cardinality.component.ts │ │ │ │ ├── messaging-event-modal │ │ │ │ │ ├── messaging-event-modal.component.css │ │ │ │ │ ├── messaging-event-modal.component.html │ │ │ │ │ └── messaging-event-modal.component.ts │ │ │ │ ├── multi-contact │ │ │ │ │ ├── multi-contact.component.css │ │ │ │ │ ├── multi-contact.component.html │ │ │ │ │ └── multi-contact.component.ts │ │ │ │ ├── multi-identifier │ │ │ │ │ ├── multi-identifier.component.css │ │ │ │ │ ├── multi-identifier.component.html │ │ │ │ │ └── multi-identifier.component.ts │ │ │ │ ├── multi-jurisdiction │ │ │ │ │ ├── multi-jurisdiction.component.css │ │ │ │ │ ├── multi-jurisdiction.component.html │ │ │ │ │ └── multi-jurisdiction.component.ts │ │ │ │ ├── multi-use-context │ │ │ │ │ ├── multi-use-context.component.css │ │ │ │ │ ├── multi-use-context.component.html │ │ │ │ │ └── multi-use-context.component.ts │ │ │ │ ├── narrative │ │ │ │ │ ├── narrative.component.css │ │ │ │ │ ├── narrative.component.html │ │ │ │ │ └── narrative.component.ts │ │ │ │ ├── number │ │ │ │ │ ├── number.component.css │ │ │ │ │ ├── number.component.html │ │ │ │ │ └── number.component.ts │ │ │ │ ├── period │ │ │ │ │ ├── period.component.css │ │ │ │ │ ├── period.component.html │ │ │ │ │ └── period.component.ts │ │ │ │ ├── practitioner │ │ │ │ │ ├── practitioner.component.css │ │ │ │ │ ├── practitioner.component.html │ │ │ │ │ └── practitioner.component.ts │ │ │ │ ├── quantity │ │ │ │ │ ├── quantity.component.css │ │ │ │ │ ├── quantity.component.html │ │ │ │ │ └── quantity.component.ts │ │ │ │ ├── range-modal │ │ │ │ │ ├── range-modal.component.css │ │ │ │ │ ├── range-modal.component.html │ │ │ │ │ └── range-modal.component.ts │ │ │ │ ├── range │ │ │ │ │ ├── range.component.css │ │ │ │ │ ├── range.component.html │ │ │ │ │ └── range.component.ts │ │ │ │ ├── ratio-modal │ │ │ │ │ ├── ratio-modal.component.css │ │ │ │ │ ├── ratio-modal.component.html │ │ │ │ │ └── ratio-modal.component.ts │ │ │ │ ├── ratio │ │ │ │ │ ├── ratio.component.css │ │ │ │ │ ├── ratio.component.html │ │ │ │ │ └── ratio.component.ts │ │ │ │ ├── reference-modal │ │ │ │ │ ├── reference-modal.component.css │ │ │ │ │ ├── reference-modal.component.html │ │ │ │ │ └── reference-modal.component.ts │ │ │ │ ├── reference │ │ │ │ │ ├── reference.component.css │ │ │ │ │ ├── reference.component.html │ │ │ │ │ └── reference.component.ts │ │ │ │ ├── select-multi-coding │ │ │ │ │ ├── select-multi-coding.component.css │ │ │ │ │ ├── select-multi-coding.component.html │ │ │ │ │ └── select-multi-coding.component.ts │ │ │ │ ├── select-single-code │ │ │ │ │ ├── select-single-code.component.css │ │ │ │ │ ├── select-single-code.component.html │ │ │ │ │ └── select-single-code.component.ts │ │ │ │ ├── string │ │ │ │ │ ├── string.component.css │ │ │ │ │ ├── string.component.html │ │ │ │ │ └── string.component.ts │ │ │ │ └── value-set-include-concept-modal │ │ │ │ │ ├── value-set-include-concept-modal.component.css │ │ │ │ │ ├── value-set-include-concept-modal.component.html │ │ │ │ │ └── value-set-include-concept-modal.component.ts │ │ │ ├── guards │ │ │ │ └── resource.guard.ts │ │ │ ├── home │ │ │ │ ├── home.component.css │ │ │ │ ├── home.component.html │ │ │ │ └── home.component.ts │ │ │ ├── implementation-guide-view │ │ │ │ ├── implementation-guide-view.component.css │ │ │ │ ├── implementation-guide-view.component.html │ │ │ │ └── implementation-guide-view.component.ts │ │ │ ├── implementation-guide-wrapper │ │ │ │ ├── base-implementation-guide-component.ts │ │ │ │ ├── custom-menu │ │ │ │ │ ├── custom-menu.component.css │ │ │ │ │ ├── custom-menu.component.html │ │ │ │ │ └── custom-menu.component.ts │ │ │ │ ├── ignore-warnings │ │ │ │ │ ├── ignore-warnings.component.css │ │ │ │ │ ├── ignore-warnings.component.html │ │ │ │ │ └── ignore-warnings.component.ts │ │ │ │ ├── implementation-guide-wrapper.component.ts │ │ │ │ ├── jira-spec │ │ │ │ │ ├── jira-spec.component.css │ │ │ │ │ ├── jira-spec.component.html │ │ │ │ │ └── jira-spec.component.ts │ │ │ │ ├── package-list │ │ │ │ │ ├── package-list.component.css │ │ │ │ │ ├── package-list.component.html │ │ │ │ │ └── package-list.component.ts │ │ │ │ ├── publishing-request │ │ │ │ │ ├── publishing-request.component.css │ │ │ │ │ ├── publishing-request.component.html │ │ │ │ │ └── publishing-request.component.ts │ │ │ │ ├── publishing-template │ │ │ │ │ ├── publishing-template.component.css │ │ │ │ │ ├── publishing-template.component.html │ │ │ │ │ └── publishing-template.component.ts │ │ │ │ ├── r4 │ │ │ │ │ ├── group-modal.component.css │ │ │ │ │ ├── group-modal.component.html │ │ │ │ │ ├── group-modal.component.ts │ │ │ │ │ ├── implementation-guide.component.css │ │ │ │ │ ├── implementation-guide.component.html │ │ │ │ │ ├── implementation-guide.component.ts │ │ │ │ │ ├── page-component-modal.component.css │ │ │ │ │ ├── page-component-modal.component.html │ │ │ │ │ ├── page-component-modal.component.ts │ │ │ │ │ ├── resource-modal.component.css │ │ │ │ │ ├── resource-modal.component.html │ │ │ │ │ └── resource-modal.component.ts │ │ │ │ ├── r5 │ │ │ │ │ ├── group-modal.component.css │ │ │ │ │ ├── group-modal.component.html │ │ │ │ │ ├── group-modal.component.ts │ │ │ │ │ ├── implementation-guide.component.css │ │ │ │ │ ├── implementation-guide.component.html │ │ │ │ │ ├── implementation-guide.component.ts │ │ │ │ │ ├── page-component-modal.component.css │ │ │ │ │ ├── page-component-modal.component.html │ │ │ │ │ ├── page-component-modal.component.ts │ │ │ │ │ ├── resource-modal.component.css │ │ │ │ │ ├── resource-modal.component.html │ │ │ │ │ └── resource-modal.component.ts │ │ │ │ ├── stu3 │ │ │ │ │ ├── implementation-guide.component.css │ │ │ │ │ ├── implementation-guide.component.html │ │ │ │ │ ├── implementation-guide.component.ts │ │ │ │ │ ├── page-component-modal.component.css │ │ │ │ │ ├── page-component-modal.component.html │ │ │ │ │ ├── page-component-modal.component.ts │ │ │ │ │ ├── resource-modal.component.css │ │ │ │ │ ├── resource-modal.component.html │ │ │ │ │ └── resource-modal.component.ts │ │ │ │ └── work-group │ │ │ │ │ ├── work-group.component.css │ │ │ │ │ ├── work-group.component.html │ │ │ │ │ └── work-group.component.ts │ │ │ ├── implementation-guides │ │ │ │ ├── implementation-guides.component.css │ │ │ │ ├── implementation-guides.component.html │ │ │ │ └── implementation-guides.component.ts │ │ │ ├── import │ │ │ │ ├── import-github-panel │ │ │ │ │ ├── import-github-panel.component.css │ │ │ │ │ ├── import-github-panel.component.html │ │ │ │ │ └── import-github-panel.component.ts │ │ │ │ ├── import.component.css │ │ │ │ ├── import.component.html │ │ │ │ ├── import.component.ts │ │ │ │ └── update-diff │ │ │ │ │ ├── update-diff.component.css │ │ │ │ │ ├── update-diff.component.html │ │ │ │ │ └── update-diff.component.ts │ │ │ ├── login │ │ │ │ ├── login.component.css │ │ │ │ ├── login.component.html │ │ │ │ └── login.component.ts │ │ │ ├── manage │ │ │ │ ├── audit-report │ │ │ │ │ ├── audit-report.component.css │ │ │ │ │ ├── audit-report.component.html │ │ │ │ │ └── audit-report.component.ts │ │ │ │ ├── audit │ │ │ │ │ ├── audit.component.css │ │ │ │ │ ├── audit.component.html │ │ │ │ │ ├── audit.component.spec.ts │ │ │ │ │ └── audit.component.ts │ │ │ │ ├── merge-user-modal │ │ │ │ │ ├── merge-user-modal.component.css │ │ │ │ │ ├── merge-user-modal.component.html │ │ │ │ │ └── merge-user-modal.component.ts │ │ │ │ ├── queue │ │ │ │ │ ├── queue.component.css │ │ │ │ │ ├── queue.component.html │ │ │ │ │ └── queue.component.ts │ │ │ │ └── users │ │ │ │ │ ├── users.component.css │ │ │ │ │ ├── users.component.html │ │ │ │ │ └── users.component.ts │ │ │ ├── modals │ │ │ │ ├── README.md │ │ │ │ ├── admin-message-modal │ │ │ │ │ ├── admin-message-modal.component.css │ │ │ │ │ ├── admin-message-modal.component.html │ │ │ │ │ └── admin-message-modal.component.ts │ │ │ │ ├── change-resource-id-modal │ │ │ │ │ ├── change-resource-id-modal.component.css │ │ │ │ │ ├── change-resource-id-modal.component.html │ │ │ │ │ └── change-resource-id-modal.component.ts │ │ │ │ ├── copy-profile-modal │ │ │ │ │ ├── copy-profile-modal.component.css │ │ │ │ │ ├── copy-profile-modal.component.html │ │ │ │ │ └── copy-profile-modal.component.ts │ │ │ │ ├── element-definition-constraint │ │ │ │ │ ├── element-definition-constraint.component.css │ │ │ │ │ ├── element-definition-constraint.component.html │ │ │ │ │ └── element-definition-constraint.component.ts │ │ │ │ ├── file-open-modal │ │ │ │ │ ├── file-open-modal.component.css │ │ │ │ │ ├── file-open-modal.component.html │ │ │ │ │ └── file-open-modal.component.ts │ │ │ │ ├── markdown-modal │ │ │ │ │ ├── markdown-modal.component.css │ │ │ │ │ ├── markdown-modal.component.html │ │ │ │ │ └── markdown-modal.component.ts │ │ │ │ ├── media-selection-modal │ │ │ │ │ ├── media-selection-modal.component.css │ │ │ │ │ ├── media-selection-modal.component.html │ │ │ │ │ └── media-selection-modal.component.ts │ │ │ │ ├── modals.module.ts │ │ │ │ ├── new-user-modal │ │ │ │ │ ├── new-user-modal.component.css │ │ │ │ │ ├── new-user-modal.component.html │ │ │ │ │ └── new-user-modal.component.ts │ │ │ │ ├── published-ig-select-modal │ │ │ │ │ ├── published-ig-edition-select-modal │ │ │ │ │ │ ├── published-ig-edition-select-modal.component.css │ │ │ │ │ │ ├── published-ig-edition-select-modal.component.html │ │ │ │ │ │ └── published-ig-edition-select-modal.component.ts │ │ │ │ │ ├── published-ig-select-modal.component.css │ │ │ │ │ ├── published-ig-select-modal.component.html │ │ │ │ │ └── published-ig-select-modal.component.ts │ │ │ │ ├── select-choice-modal │ │ │ │ │ ├── select-choice-modal.component.css │ │ │ │ │ ├── select-choice-modal.component.html │ │ │ │ │ └── select-choice-modal.component.ts │ │ │ │ └── settings-modal │ │ │ │ │ ├── settings-modal.component.css │ │ │ │ │ ├── settings-modal.component.html │ │ │ │ │ └── settings-modal.component.ts │ │ │ ├── models │ │ │ │ ├── export-formats.enum.ts │ │ │ │ ├── file-model.ts │ │ │ │ ├── implementation-guide-list-item-model.ts │ │ │ │ ├── person-list-model.ts │ │ │ │ ├── recent-item-model.ts │ │ │ │ ├── structure-definition-list-item-model.ts │ │ │ │ └── structure-definition-list-model.ts │ │ │ ├── new-profile │ │ │ │ ├── new-profile.component.css │ │ │ │ ├── new-profile.component.html │ │ │ │ └── new-profile.component.ts │ │ │ ├── new-project │ │ │ │ ├── new-project.component.css │ │ │ │ ├── new-project.component.html │ │ │ │ └── new-project.component.ts │ │ │ ├── operation-definition │ │ │ │ ├── operation-definition.component.css │ │ │ │ ├── operation-definition.component.html │ │ │ │ ├── operation-definition.component.ts │ │ │ │ └── parameter-modal │ │ │ │ │ ├── parameter-modal.component.css │ │ │ │ │ ├── parameter-modal.component.html │ │ │ │ │ └── parameter-modal.component.ts │ │ │ ├── operation-definitions │ │ │ │ ├── operation-definitions.component.css │ │ │ │ ├── operation-definitions.component.html │ │ │ │ └── operation-definitions.component.ts │ │ │ ├── other-resources │ │ │ │ ├── other-resources-result │ │ │ │ │ ├── other-resources-result.component.css │ │ │ │ │ ├── other-resources-result.component.html │ │ │ │ │ └── other-resources-result.component.ts │ │ │ │ ├── other-resources.component.css │ │ │ │ ├── other-resources.component.html │ │ │ │ └── other-resources.component.ts │ │ │ ├── page │ │ │ │ ├── page.component.css │ │ │ │ ├── page.component.html │ │ │ │ └── page.component.ts │ │ │ ├── pages │ │ │ │ ├── pages.component.css │ │ │ │ ├── pages.component.html │ │ │ │ └── pages.component.ts │ │ │ ├── project │ │ │ │ ├── project.component.css │ │ │ │ ├── project.component.html │ │ │ │ ├── project.component.spec.ts │ │ │ │ └── project.component.ts │ │ │ ├── projects │ │ │ │ ├── projects.component.css │ │ │ │ ├── projects.component.html │ │ │ │ ├── projects.component.spec.ts │ │ │ │ └── projects.component.ts │ │ │ ├── publish │ │ │ │ ├── publish.component.css │ │ │ │ ├── publish.component.html │ │ │ │ └── publish.component.ts │ │ │ ├── questionnaire │ │ │ │ ├── questionnaire-item-modal.component.css │ │ │ │ ├── questionnaire-item-modal.component.html │ │ │ │ ├── questionnaire-item-modal.component.ts │ │ │ │ ├── questionnaire.component.css │ │ │ │ ├── questionnaire.component.html │ │ │ │ └── questionnaire.component.ts │ │ │ ├── questionnaires │ │ │ │ ├── questionnaires.component.css │ │ │ │ ├── questionnaires.component.html │ │ │ │ └── questionnaires.component.ts │ │ │ ├── route-transformer.directive.ts │ │ │ ├── search-parameter │ │ │ │ ├── search-parameter.component.css │ │ │ │ ├── search-parameter.component.html │ │ │ │ ├── search-parameter.component.spec.ts │ │ │ │ └── search-parameter.component.ts │ │ │ ├── search-parameters │ │ │ │ ├── search-parameters.component.css │ │ │ │ ├── search-parameters.component.html │ │ │ │ ├── search-parameters.component.spec.ts │ │ │ │ └── search-parameters.component.ts │ │ │ ├── shared-ui │ │ │ │ ├── README.md │ │ │ │ ├── audit-diffs-modal │ │ │ │ │ ├── audit-diffs-modal.component.css │ │ │ │ │ ├── audit-diffs-modal.component.html │ │ │ │ │ └── audit-diffs-modal.component.ts │ │ │ │ ├── audit-diffs │ │ │ │ │ ├── audit-diffs.component.css │ │ │ │ │ ├── audit-diffs.component.html │ │ │ │ │ └── audit-diffs.component.ts │ │ │ │ ├── fhir-display-pipe.ts │ │ │ │ ├── fhir-xml-pipe.ts │ │ │ │ ├── fsh-resource │ │ │ │ │ ├── fsh-resource.component.css │ │ │ │ │ ├── fsh-resource.component.html │ │ │ │ │ └── fsh-resource.component.ts │ │ │ │ ├── ig-publisher-selection │ │ │ │ │ ├── ig-publisher-selection.component.css │ │ │ │ │ ├── ig-publisher-selection.component.html │ │ │ │ │ └── ig-publisher-selection.component.ts │ │ │ │ ├── implementation-guide-typeahead │ │ │ │ │ ├── implementation-guide-typeahead.component.css │ │ │ │ │ ├── implementation-guide-typeahead.component.html │ │ │ │ │ └── implementation-guide-typeahead.component.ts │ │ │ │ ├── keys-pipe.ts │ │ │ │ ├── markdown │ │ │ │ │ ├── markdown.component.css │ │ │ │ │ ├── markdown.component.html │ │ │ │ │ └── markdown.component.ts │ │ │ │ ├── raw-modal │ │ │ │ │ ├── raw-modal.component.css │ │ │ │ │ ├── raw-modal.component.html │ │ │ │ │ └── raw-modal.component.ts │ │ │ │ ├── raw-resource │ │ │ │ │ ├── raw-resource.component.css │ │ │ │ │ ├── raw-resource.component.html │ │ │ │ │ └── raw-resource.component.ts │ │ │ │ ├── resource-history │ │ │ │ │ ├── resource-history.component.css │ │ │ │ │ ├── resource-history.component.html │ │ │ │ │ └── resource-history.component.ts │ │ │ │ ├── resource-permissions │ │ │ │ │ ├── resource-permissions.component.css │ │ │ │ │ ├── resource-permissions.component.html │ │ │ │ │ └── resource-permissions.component.ts │ │ │ │ ├── safe-pipe.ts │ │ │ │ ├── shared-ui.module.ts │ │ │ │ ├── tooltip-icon │ │ │ │ │ ├── tooltip-icon.component.css │ │ │ │ │ ├── tooltip-icon.component.html │ │ │ │ │ └── tooltip-icon.component.ts │ │ │ │ ├── user-edit │ │ │ │ │ ├── user-edit.component.css │ │ │ │ │ ├── user-edit.component.html │ │ │ │ │ └── user-edit.component.ts │ │ │ │ ├── validation-results │ │ │ │ │ ├── validation-results.component.css │ │ │ │ │ ├── validation-results.component.html │ │ │ │ │ └── validation-results.component.ts │ │ │ │ └── xml-pipe.ts │ │ │ ├── shared │ │ │ │ ├── audit.service.ts │ │ │ │ ├── auth.service.ts │ │ │ │ ├── capability-statement.service.ts │ │ │ │ ├── code-system.service.ts │ │ │ │ ├── config.service.ts │ │ │ │ ├── export.service.ts │ │ │ │ ├── fhir-resource.service.ts │ │ │ │ ├── fhir.service.ts │ │ │ │ ├── file.service.ts │ │ │ │ ├── fsh.service.ts │ │ │ │ ├── github.service.ts │ │ │ │ ├── group.service.ts │ │ │ │ ├── history.service.ts │ │ │ │ ├── implementation-guide.service.ts │ │ │ │ ├── import.service.ts │ │ │ │ ├── manage.service.ts │ │ │ │ ├── modal.service.ts │ │ │ │ ├── non-fhir-resource.service.ts │ │ │ │ ├── operation-definition.service.ts │ │ │ │ ├── practitioner.service.ts │ │ │ │ ├── projects.service.ts │ │ │ │ ├── questionnaire.service.ts │ │ │ │ ├── recent-item.service.ts │ │ │ │ ├── search-parameter.service.ts │ │ │ │ ├── shared.module.ts │ │ │ │ ├── socket.service.ts │ │ │ │ ├── structure-definition.service.ts │ │ │ │ ├── user.service.ts │ │ │ │ ├── validation │ │ │ │ │ ├── custom-R4-validator.ts │ │ │ │ │ ├── custom-STU3-validator.ts │ │ │ │ │ └── custom-validator.ts │ │ │ │ └── value-set.service.ts │ │ │ ├── structure-definition │ │ │ │ ├── context-panel-wrapper │ │ │ │ │ ├── context-panel-wrapper.component.ts │ │ │ │ │ ├── r4 │ │ │ │ │ │ ├── context-panel-r4.component.css │ │ │ │ │ │ ├── context-panel-r4.component.html │ │ │ │ │ │ └── context-panel-r4.component.ts │ │ │ │ │ └── stu3 │ │ │ │ │ │ ├── context-panel-stu3.component.css │ │ │ │ │ │ ├── context-panel-stu3.component.html │ │ │ │ │ │ └── context-panel-stu3.component.ts │ │ │ │ ├── element-definition-panel │ │ │ │ │ ├── binding-panel │ │ │ │ │ │ ├── binding-panel.component.css │ │ │ │ │ │ ├── binding-panel.component.html │ │ │ │ │ │ └── binding-panel.component.ts │ │ │ │ │ ├── element-definition-panel.component.css │ │ │ │ │ ├── element-definition-panel.component.html │ │ │ │ │ ├── element-definition-panel.component.ts │ │ │ │ │ ├── mapping-modal │ │ │ │ │ │ ├── mapping-modal.component.css │ │ │ │ │ │ ├── mapping-modal.component.html │ │ │ │ │ │ └── mapping-modal.component.ts │ │ │ │ │ ├── r4-type-modal │ │ │ │ │ │ ├── type-modal.component.css │ │ │ │ │ │ ├── type-modal.component.html │ │ │ │ │ │ └── type-modal.component.ts │ │ │ │ │ └── stu3-type-modal │ │ │ │ │ │ ├── type-modal.component.css │ │ │ │ │ │ ├── type-modal.component.html │ │ │ │ │ │ └── type-modal.component.ts │ │ │ │ ├── structure-definition.component.css │ │ │ │ ├── structure-definition.component.html │ │ │ │ └── structure-definition.component.ts │ │ │ ├── structure-definitions │ │ │ │ ├── structure-definitions.component.css │ │ │ │ ├── structure-definitions.component.html │ │ │ │ └── structure-definitions.component.ts │ │ │ ├── user │ │ │ │ ├── user.component.css │ │ │ │ ├── user.component.html │ │ │ │ └── user.component.ts │ │ │ ├── valueset-expand │ │ │ │ ├── valueset-expand.component.css │ │ │ │ ├── valueset-expand.component.html │ │ │ │ └── valueset-expand.component.ts │ │ │ ├── valueset │ │ │ │ ├── concept-card │ │ │ │ │ ├── concept-card.component.css │ │ │ │ │ ├── concept-card.component.html │ │ │ │ │ └── concept-card.component.ts │ │ │ │ ├── include-panel │ │ │ │ │ ├── include-panel.component.css │ │ │ │ │ ├── include-panel.component.html │ │ │ │ │ └── include-panel.component.ts │ │ │ │ ├── valueset.component.css │ │ │ │ ├── valueset.component.html │ │ │ │ └── valueset.component.ts │ │ │ └── valuesets │ │ │ │ ├── valuesets.component.css │ │ │ │ ├── valuesets.component.html │ │ │ │ └── valuesets.component.ts │ │ ├── assets │ │ │ ├── .gitkeep │ │ │ ├── jquery-3.4.1.min.js │ │ │ ├── loading.png │ │ │ ├── narrative-templates │ │ │ │ ├── ImplementationGuide.mustache │ │ │ │ ├── StructureDefinition.mustache │ │ │ │ └── ValueSet.mustache │ │ │ ├── trifoliaonfhir_128.png │ │ │ ├── trifoliaonfhir_16.png │ │ │ ├── trifoliaonfhir_32.png │ │ │ └── trifoliaonfhir_64.png │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── help │ │ │ ├── AccessandPermissions.html │ │ │ ├── AccountsandLogin.html │ │ │ ├── AdditionalHelp.html │ │ │ ├── AuthoringValuesets.html │ │ │ ├── Bindingvaluestoelementsinaprofil.html │ │ │ ├── CodeSystems.html │ │ │ ├── Dependency.html │ │ │ ├── Elements.html │ │ │ ├── Export.html │ │ │ ├── FAQ.html │ │ │ ├── FHIRVersions.html │ │ │ ├── GeneratingSnapshot.html │ │ │ ├── GettingStarted.html │ │ │ ├── GitHubIntegration.html │ │ │ ├── Glossary.html │ │ │ ├── GuidelinesandBestPractices.html │ │ │ ├── IGPackageID.html │ │ │ ├── IGVersion.html │ │ │ ├── ImplementationGuides.html │ │ │ ├── Import.html │ │ │ ├── Introduction.html │ │ │ ├── JIRASpecGeneration.html │ │ │ ├── Login.html │ │ │ ├── MarkdownSyntax.html │ │ │ ├── NarrativePages.html │ │ │ ├── Navigation.html │ │ │ ├── Pre-PublishingErrors.html │ │ │ ├── Publishing.html │ │ │ ├── RESTAPI.html │ │ │ ├── ResourcePermissions.html │ │ │ ├── SecurityandPermissions.html │ │ │ ├── SlicingElements.html │ │ │ ├── StructureDefinitionsProfiles.html │ │ │ ├── SystemRequirements.html │ │ │ ├── TechnicalDetails.html │ │ │ ├── TechnicalDetails_SecurityandPerm.html │ │ │ ├── TerminologyServerConnection.html │ │ │ ├── Trifolia-on-FHIR.chm │ │ │ ├── Trifolia-on-FHIR.docx │ │ │ ├── Trifolia-on-FHIR.epub │ │ │ ├── Trifolia-on-FHIR.pdf │ │ │ ├── V1130.html │ │ │ ├── V1150.html │ │ │ ├── V1160.html │ │ │ ├── Validation.html │ │ │ ├── WalkThrough.html │ │ │ ├── Welcome.html │ │ │ ├── WhatsNew.html │ │ │ ├── _keywords.json │ │ │ ├── _toc.json │ │ │ ├── _translations.js │ │ │ ├── context │ │ │ │ ├── 0.html │ │ │ │ ├── 1.html │ │ │ │ ├── 10.html │ │ │ │ ├── 11.html │ │ │ │ ├── 12.html │ │ │ │ ├── 13.html │ │ │ │ ├── 14.html │ │ │ │ ├── 15.html │ │ │ │ ├── 16.html │ │ │ │ ├── 17.html │ │ │ │ ├── 18.html │ │ │ │ ├── 19.html │ │ │ │ ├── 2.html │ │ │ │ ├── 20.html │ │ │ │ ├── 21.html │ │ │ │ ├── 22.html │ │ │ │ ├── 23.html │ │ │ │ ├── 24.html │ │ │ │ ├── 25.html │ │ │ │ ├── 26.html │ │ │ │ ├── 27.html │ │ │ │ ├── 28.html │ │ │ │ ├── 29.html │ │ │ │ ├── 3.html │ │ │ │ ├── 30.html │ │ │ │ ├── 31.html │ │ │ │ ├── 32.html │ │ │ │ ├── 33.html │ │ │ │ ├── 34.html │ │ │ │ ├── 35.html │ │ │ │ ├── 36.html │ │ │ │ ├── 37.html │ │ │ │ ├── 38.html │ │ │ │ ├── 39.html │ │ │ │ ├── 4.html │ │ │ │ ├── 40.html │ │ │ │ ├── 41.html │ │ │ │ ├── 42.html │ │ │ │ ├── 43.html │ │ │ │ ├── 44.html │ │ │ │ ├── 45.html │ │ │ │ ├── 46.html │ │ │ │ ├── 47.html │ │ │ │ ├── 48.html │ │ │ │ ├── 49.html │ │ │ │ ├── 5.html │ │ │ │ ├── 50.html │ │ │ │ ├── 51.html │ │ │ │ ├── 52.html │ │ │ │ ├── 53.html │ │ │ │ ├── 54.html │ │ │ │ ├── 55.html │ │ │ │ ├── 56.html │ │ │ │ ├── 57.html │ │ │ │ ├── 58.html │ │ │ │ ├── 59.html │ │ │ │ ├── 6.html │ │ │ │ ├── 60.html │ │ │ │ ├── 61.html │ │ │ │ ├── 62.html │ │ │ │ ├── 63.html │ │ │ │ ├── 7.html │ │ │ │ ├── 8.html │ │ │ │ └── 9.html │ │ │ ├── css │ │ │ │ ├── effects.min.css │ │ │ │ ├── hnd.content.css │ │ │ │ ├── layout.min.css │ │ │ │ ├── print.min.css │ │ │ │ ├── theme-dark-blue.min.css │ │ │ │ ├── theme-dark-green.min.css │ │ │ │ ├── theme-dark-orange.min.css │ │ │ │ ├── theme-dark-purple.min.css │ │ │ │ ├── theme-light-blue.min.css │ │ │ │ ├── theme-light-green.min.css │ │ │ │ ├── theme-light-orange.min.css │ │ │ │ └── theme-light-purple.min.css │ │ │ ├── index.html │ │ │ ├── js │ │ │ │ ├── app.min.js │ │ │ │ ├── hndsd.min.js │ │ │ │ ├── hndse.min.js │ │ │ │ └── polyfill.object.min.js │ │ │ ├── lib │ │ │ │ ├── HL7-US Core.png │ │ │ │ ├── IG Package ID-2.png │ │ │ │ ├── IG Package ID.png │ │ │ │ ├── IG Version-2.png │ │ │ │ ├── NewItem1.png │ │ │ │ ├── authorization-3.jpg │ │ │ │ ├── authorization-4.jpg │ │ │ │ ├── authorization.png │ │ │ │ ├── base definition 3.jpg │ │ │ │ ├── base definition-2.png │ │ │ │ ├── create-new-slice.png │ │ │ │ ├── dependencies.png │ │ │ │ ├── dependency-2.jpg │ │ │ │ ├── dependency.jpg │ │ │ │ ├── package-listjson.png │ │ │ │ ├── publishing error-2.png │ │ │ │ ├── publishing error.png │ │ │ │ ├── publishing1.png │ │ │ │ └── slicing-details.png │ │ │ ├── v100.html │ │ │ ├── v110.html │ │ │ ├── v1100.html │ │ │ ├── v1110.html │ │ │ ├── v1120.html │ │ │ ├── v1140.html │ │ │ ├── v120.html │ │ │ ├── v130.html │ │ │ ├── v140.html │ │ │ ├── v150.html │ │ │ ├── v160.html │ │ │ ├── v170.html │ │ │ ├── v180.html │ │ │ ├── v190.html │ │ │ ├── v200.html │ │ │ ├── v210.html │ │ │ ├── v221.html │ │ │ ├── v231.html │ │ │ ├── v240.html │ │ │ ├── v300-v310.html │ │ │ ├── v320.html │ │ │ └── vendors │ │ │ │ ├── bootstrap-3.4.1 │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap-theme.css │ │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ └── ie10-viewport-bug-workaround.css │ │ │ │ ├── fonts │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ └── js │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ └── ie10-viewport-bug-workaround.js │ │ │ │ ├── headroom-0.11.0 │ │ │ │ └── headroom.min.js │ │ │ │ ├── headroom-0.9.4 │ │ │ │ ├── headroom.min.js │ │ │ │ └── jquery.headroom.min.js │ │ │ │ ├── helpndoc-5 │ │ │ │ └── icons │ │ │ │ │ ├── 0.png │ │ │ │ │ ├── 1.png │ │ │ │ │ ├── 10.png │ │ │ │ │ ├── 11.png │ │ │ │ │ ├── 12.png │ │ │ │ │ ├── 13.png │ │ │ │ │ ├── 14.png │ │ │ │ │ ├── 15.png │ │ │ │ │ ├── 16.png │ │ │ │ │ ├── 17.png │ │ │ │ │ ├── 18.png │ │ │ │ │ ├── 19.png │ │ │ │ │ ├── 2.png │ │ │ │ │ ├── 20.png │ │ │ │ │ ├── 21.png │ │ │ │ │ ├── 22.png │ │ │ │ │ ├── 23.png │ │ │ │ │ ├── 24.png │ │ │ │ │ ├── 25.png │ │ │ │ │ ├── 26.png │ │ │ │ │ ├── 27.png │ │ │ │ │ ├── 28.png │ │ │ │ │ ├── 29.png │ │ │ │ │ ├── 3.png │ │ │ │ │ ├── 30.png │ │ │ │ │ ├── 31.png │ │ │ │ │ ├── 32.png │ │ │ │ │ ├── 33.png │ │ │ │ │ ├── 34.png │ │ │ │ │ ├── 35.png │ │ │ │ │ ├── 36.png │ │ │ │ │ ├── 37.png │ │ │ │ │ ├── 38.png │ │ │ │ │ ├── 39.png │ │ │ │ │ ├── 4.png │ │ │ │ │ ├── 40.png │ │ │ │ │ ├── 41.png │ │ │ │ │ ├── 5.png │ │ │ │ │ ├── 6.png │ │ │ │ │ ├── 7.png │ │ │ │ │ ├── 8.png │ │ │ │ │ └── 9.png │ │ │ │ ├── html5shiv-3.7.3 │ │ │ │ └── html5shiv.min.js │ │ │ │ ├── imageMapResizer-1.0.10 │ │ │ │ └── imageMapResizer.min.js │ │ │ │ ├── imageMapResizer-1.0.7 │ │ │ │ └── imageMapResizer.min.js │ │ │ │ ├── interactjs-1.9.22 │ │ │ │ └── interact.min.js │ │ │ │ ├── jquery-3.4.1 │ │ │ │ └── jquery.min.js │ │ │ │ ├── jquery-3.5.1 │ │ │ │ └── jquery.min.js │ │ │ │ ├── jstree-3.3.10 │ │ │ │ ├── jstree.min.js │ │ │ │ └── themes │ │ │ │ │ ├── default-dark │ │ │ │ │ ├── 32px.png │ │ │ │ │ ├── 40px.png │ │ │ │ │ ├── style.css │ │ │ │ │ ├── style.min.css │ │ │ │ │ └── throbber.gif │ │ │ │ │ └── default │ │ │ │ │ ├── 32px.png │ │ │ │ │ ├── 40px.png │ │ │ │ │ ├── style.css │ │ │ │ │ ├── style.min.css │ │ │ │ │ └── throbber.gif │ │ │ │ ├── jstree-3.3.7 │ │ │ │ ├── jstree.min.js │ │ │ │ └── themes │ │ │ │ │ ├── default-dark │ │ │ │ │ ├── 32px.png │ │ │ │ │ ├── 40px.png │ │ │ │ │ ├── style.css │ │ │ │ │ ├── style.min.css │ │ │ │ │ └── throbber.gif │ │ │ │ │ └── default │ │ │ │ │ ├── 32px.png │ │ │ │ │ ├── 40px.png │ │ │ │ │ ├── style.css │ │ │ │ │ ├── style.min.css │ │ │ │ │ └── throbber.gif │ │ │ │ ├── markjs-8.11.1 │ │ │ │ └── jquery.mark.min.js │ │ │ │ ├── respond-1.4.2 │ │ │ │ └── respond.min.js │ │ │ │ ├── uri-1.19.1 │ │ │ │ └── uri.min.js │ │ │ │ ├── uri-1.19.11 │ │ │ │ └── uri.min.js │ │ │ │ └── uri-1.19.2 │ │ │ │ └── uri.min.js │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── silent-refresh.html │ │ ├── styles.css │ │ └── test-setup.ts │ ├── tsconfig.app.json │ ├── tsconfig.editor.json │ ├── tsconfig.json │ ├── tsconfig.spec.json │ └── tslint.json ├── server │ ├── jest.config.ts │ ├── project.json │ ├── src │ │ ├── app │ │ │ ├── .gitkeep │ │ │ ├── app.module.ts │ │ │ ├── audit-event.controller.ts │ │ │ ├── audit │ │ │ │ ├── audit-entity.interceptor.ts │ │ │ │ ├── audit-report-repository.ts │ │ │ │ ├── audit-report.ts │ │ │ │ ├── audit.controller.spec.ts │ │ │ │ ├── audit.controller.ts │ │ │ │ ├── audit.decorator.ts │ │ │ │ ├── audit.module.ts │ │ │ │ ├── audit.schema.ts │ │ │ │ ├── audit.service.spec.ts │ │ │ │ ├── audit.service.ts │ │ │ │ └── reports │ │ │ │ │ ├── fhir-resource-summary-report.ts │ │ │ │ │ ├── implementation-guide-summary-report.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── user-summary-report.ts │ │ │ ├── auth.strategy.ts │ │ │ ├── auth │ │ │ │ ├── auth.controller.spec.ts │ │ │ │ ├── auth.controller.ts │ │ │ │ ├── auth.module.ts │ │ │ │ ├── auth.service.spec.ts │ │ │ │ └── auth.service.ts │ │ │ ├── base-fhir.controller.spec.ts │ │ │ ├── base-fhir.controller.ts │ │ │ ├── base.controller.ts │ │ │ ├── base │ │ │ │ ├── base-data.controller.ts │ │ │ │ ├── base-data.service.ts │ │ │ │ ├── base.controller.ts │ │ │ │ ├── base.entity.ts │ │ │ │ └── interfaces │ │ │ │ │ └── index.ts │ │ │ ├── capability-statement.controller.ts │ │ │ ├── code-system.controller.ts │ │ │ ├── config.controller.ts │ │ │ ├── config.service.ts │ │ │ ├── export.controller.ts │ │ │ ├── export.service.ts │ │ │ ├── export │ │ │ │ ├── bundle.ts │ │ │ │ ├── html.factory.ts │ │ │ │ ├── html.models.ts │ │ │ │ ├── html.r4.ts │ │ │ │ ├── html.spec.ts │ │ │ │ ├── html.stu3.ts │ │ │ │ ├── html.ts │ │ │ │ └── msword.ts │ │ │ ├── fhir-resources │ │ │ │ ├── fhir-resource.schema.ts │ │ │ │ ├── fhir-resources.controller.spec.ts │ │ │ │ ├── fhir-resources.controller.ts │ │ │ │ ├── fhir-resources.module.ts │ │ │ │ ├── fhir-resources.service.spec.ts │ │ │ │ └── fhir-resources.service.ts │ │ │ ├── fhir.controller.spec.ts │ │ │ ├── fhir.controller.ts │ │ │ ├── fsh.controller.spec.ts │ │ │ ├── fsh.controller.ts │ │ │ ├── github.controller.ts │ │ │ ├── groups │ │ │ │ ├── goups.controller.spec.ts │ │ │ │ ├── group.schema.ts │ │ │ │ ├── groups.controller.ts │ │ │ │ ├── groups.module.ts │ │ │ │ ├── groups.service.spec.ts │ │ │ │ └── groups.service.ts │ │ │ ├── helper.spec.ts │ │ │ ├── helper.ts │ │ │ ├── history │ │ │ │ ├── history.controller.spec.ts │ │ │ │ ├── history.controller.ts │ │ │ │ ├── history.module.ts │ │ │ │ ├── history.schema.ts │ │ │ │ ├── history.service.spec.ts │ │ │ │ └── history.service.ts │ │ │ ├── implementation-guide.controller.ts │ │ │ ├── import.controller.ts │ │ │ ├── manage.controller.ts │ │ │ ├── manage │ │ │ │ ├── manage.controller.spec.ts │ │ │ │ ├── manage.controller.ts │ │ │ │ └── manage.module.ts │ │ │ ├── models │ │ │ │ ├── announcement-service-config.ts │ │ │ │ ├── auth-config.ts │ │ │ │ ├── database-config.ts │ │ │ │ ├── export-formats.ts │ │ │ │ ├── export-options.ts │ │ │ │ ├── fhir-config.ts │ │ │ │ ├── github-config.ts │ │ │ │ ├── publish-config.ts │ │ │ │ ├── server-config.ts │ │ │ │ ├── socket-connection.ts │ │ │ │ └── tof-request.ts │ │ │ ├── non-fhir-resources │ │ │ │ ├── non-fhir-resource.schema.ts │ │ │ │ ├── non-fhir-resources.controller.spec.ts │ │ │ │ ├── non-fhir-resources.controller.ts │ │ │ │ ├── non-fhir-resources.module.ts │ │ │ │ ├── non-fhir-resources.service.spec.ts │ │ │ │ ├── non-fhir-resources.service.ts │ │ │ │ └── types │ │ │ │ │ └── index.ts │ │ │ ├── operation-definition.controller.ts │ │ │ ├── practitioner.controller.ts │ │ │ ├── projects │ │ │ │ ├── project.schema.ts │ │ │ │ ├── projects.controller.spec.ts │ │ │ │ ├── projects.controller.ts │ │ │ │ ├── projects.module.ts │ │ │ │ ├── projects.service.spec.ts │ │ │ │ └── projects.service.ts │ │ │ ├── questionnaire.controller.ts │ │ │ ├── search-parameter.controller.ts │ │ │ ├── server.decorators.ts │ │ │ ├── shared │ │ │ │ ├── database-config.service.ts │ │ │ │ └── shared.module.ts │ │ │ ├── structure-definition.controller.ts │ │ │ ├── test.helper.ts │ │ │ ├── tof-logger.ts │ │ │ ├── users │ │ │ │ ├── user.schema.ts │ │ │ │ ├── users.controller.spec.ts │ │ │ │ ├── users.controller.ts │ │ │ │ ├── users.module.ts │ │ │ │ ├── users.service.spec.ts │ │ │ │ └── users.service.ts │ │ │ └── value-set.controller.ts │ │ ├── assets │ │ │ ├── .gitkeep │ │ │ ├── github-callback.html │ │ │ ├── ig-export │ │ │ │ ├── _gencontinuous.bat │ │ │ │ ├── _gencontinuous.sh │ │ │ │ ├── _genonce.bat │ │ │ │ ├── _genonce.sh │ │ │ │ ├── _updatePublisher.bat │ │ │ │ └── _updatePublisher.sh │ │ │ └── msword-styles.xml │ │ ├── config │ │ │ ├── custom-environment-variables.json │ │ │ ├── default.json │ │ │ ├── migration-default.json │ │ │ └── types.json │ │ ├── db-migrations │ │ │ ├── migrate-mongo-config-cli.js │ │ │ ├── migrate-mongo-config.ts │ │ │ └── migrations │ │ │ │ ├── 20230721004619-fix-version-id-type.js │ │ │ │ ├── 20230725211722-rename-conformance-collection.js │ │ │ │ ├── 20230725220604-migrate-project-references.js │ │ │ │ ├── 20230725233753-update-fhir-resource-reference-valuetypes.js │ │ │ │ ├── 20230726170424-migrate-fhir-resources-referencedby.js │ │ │ │ ├── 20230726235623-rename-example-collection.js │ │ │ │ ├── 20230726235812-update-non-fhir-resource-reference-valuetypes.js │ │ │ │ ├── 20230726235919-migrate-non-fhir-resources-referencedby.js │ │ │ │ ├── 20230727155108-drop-non-fhir-resources-fhirVersion.js.js │ │ │ │ ├── 20230727185618-migrate-history-resources-targetId.js │ │ │ │ ├── 20230809200658-migrate-existing-cda-examples.js │ │ │ │ ├── 20230818144713-migrate-ig-pages.js.js │ │ │ │ ├── 20230821195230-migrate-structure-definition-intros-and-notes.js │ │ │ │ ├── 20230921180747-migrate-ig-pages-v3.js │ │ │ │ ├── 20230925150221-fix-project-objectids.js │ │ │ │ ├── 20230925153229-add-referencedby-to-igs.js │ │ │ │ ├── 20230925180440-add-projects-to-resources.js │ │ │ │ ├── 20230925201838-move-permissions-to-project.js │ │ │ │ ├── 20230926182337-remove-old-resource-permissions.js │ │ │ │ ├── 20230928003638-migrate-permission-targets.js │ │ │ │ ├── 20231004142146-fix-history-nonfhirresources.js │ │ │ │ ├── 20231010184758-fix-last-updated-type.js │ │ │ │ ├── 20231031161855-migrate-ig-custom-menu.js │ │ │ │ ├── 20231106163812-migrate-ig-ignorewarnings.js │ │ │ │ ├── 20231107220256-delete-imported-audits.js │ │ │ │ ├── 20231109150712-migrate-ig-publication-request.js │ │ │ │ ├── 20231121232237-migrate-project-authors.js.js │ │ │ │ ├── 20231207183403-create-wg-igextension-from-igcontact.js │ │ │ │ ├── 20231208223342-delete-orphaned-references.js │ │ │ │ └── 20231229224314-migrate-ig-publish-template.js │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── igs │ │ │ └── index.html │ │ ├── main.ts │ │ ├── not-found-exception-filter.ts │ │ └── not-found-exception.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.spec.json │ ├── tslint.json │ └── webpack.config.js └── tools │ ├── jest.config.ts │ ├── project.json │ ├── src │ ├── app │ │ ├── .gitkeep │ │ ├── baseTools.ts │ │ ├── generate-typescript.ts │ │ ├── main.ts │ │ ├── migrate-db.ts │ │ └── update-db.ts │ └── assets │ │ └── .gitkeep │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.spec.json │ ├── tslint.json │ └── webpack.config.js ├── azure-pipelines.yml ├── checkdep.js ├── decorate-angular-cli.js ├── docker-compose.yml ├── docs ├── diagrams │ ├── class.vsdx │ ├── class │ │ └── components.png │ ├── sequence.vsdx │ └── sequence │ │ ├── Authentication.png │ │ ├── GitHub Auth.png │ │ └── GitHub Import.png └── mockups │ ├── Bulk Edit (Additional info).png │ ├── Bulk Edit.png │ ├── Edit Implementation Guide (Resources).png │ ├── Export (GitHub).png │ ├── Export (IG Publisher Package).png │ ├── Export.png │ ├── IG Context (Browse_Edit).png │ ├── IG Context (Main).png │ ├── IG Context (Publish).png │ └── Publish.png ├── jest.config.ts ├── jest.preset.js ├── libs ├── .gitkeep └── tof-lib │ ├── README.md │ ├── jest.config.ts │ ├── project.json │ ├── src │ ├── assets │ │ ├── r4 │ │ │ ├── codesystem-iso3166.json │ │ │ ├── extensions │ │ │ │ ├── extension-ig-depends-on-location.json │ │ │ │ ├── extension-ig-depends-on-name.json │ │ │ │ ├── extension-ig-page-content.json │ │ │ │ ├── github-branch.json │ │ │ │ └── github-path.json │ │ │ ├── profiles-resources.json │ │ │ ├── profiles-types.json │ │ │ └── valuesets.json │ │ ├── r5 │ │ │ ├── codesystem-iso3166.json │ │ │ ├── conceptmaps.json │ │ │ ├── dataelements.json │ │ │ ├── extension-definitions.json │ │ │ ├── profiles-others.json │ │ │ ├── profiles-resources.json │ │ │ ├── profiles-types.json │ │ │ ├── search-parameters.json │ │ │ └── valuesets.json │ │ └── stu3 │ │ │ ├── codesystem-iso3166.json │ │ │ ├── extensions │ │ │ ├── extension-ig-dependency-location.json │ │ │ ├── extension-ig-dependency-name.json │ │ │ ├── extension-ig-dependency-version.json │ │ │ ├── extension-ig-dependency.json │ │ │ ├── extension-ig-package-id.json │ │ │ ├── extension-ig-page-content.json │ │ │ ├── github-branch.json │ │ │ └── github-path.json │ │ │ ├── profiles-resources.json │ │ │ ├── profiles-types.json │ │ │ └── valuesets.json │ ├── index.ts │ └── lib │ │ ├── .gitkeep │ │ ├── active-user-model.ts │ │ ├── base-definition-response-model.ts │ │ ├── bulk-update-request.ts │ │ ├── config-fhir-server-model.ts │ │ ├── config-model.ts │ │ ├── constraint-manager.spec.ts │ │ ├── constraint-manager.ts │ │ ├── date-extensions.ts │ │ ├── element-tree-model.ts │ │ ├── fhirHelper.spec.ts │ │ ├── fhirHelper.ts │ │ ├── fhirInterfaces.ts │ │ ├── fsh.ts │ │ ├── get-users-model.ts │ │ ├── globals.ts │ │ ├── helper.ts │ │ ├── ig-example-model.ts │ │ ├── ig-helper.ts │ │ ├── ig-page-helper.ts │ │ ├── index.ts │ │ ├── logical-type-definition.ts │ │ ├── models │ │ ├── index.ts │ │ └── non-fhir-resource-type.ts │ │ ├── package-list-model.ts │ │ ├── paginate.ts │ │ ├── publishing-request-model.ts │ │ ├── queue-info.ts │ │ ├── r4 │ │ ├── fhir.ts │ │ └── index.ts │ │ ├── r5 │ │ ├── fhir.ts │ │ └── index.ts │ │ ├── resource-security-model.ts │ │ ├── searchIGResponse-model.ts │ │ ├── server-validation-result.ts │ │ ├── stu3 │ │ ├── expandOptions.ts │ │ ├── fhir.ts │ │ └── index.ts │ │ ├── tof-user.ts │ │ ├── type-config.ts │ │ └── user-model.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.spec.json │ └── tslint.json ├── nx.json ├── package.json ├── proxy.conf.json ├── swagger.yaml ├── test ├── README.md ├── data │ ├── ccd.json │ ├── composition-clinicaldocument-dataEnterer.json │ ├── composition-jurisdiction-fetal-death-report.json │ ├── dental-ccd.json │ ├── dentalReferral.json │ ├── observationHowDeathInjuryOccured.profile.json │ ├── referralNote.json │ ├── resprate.profile.json │ ├── resprate2.profile.json │ └── shareableplandefinition.profile.json └── tof.xml ├── tsconfig.base.json ├── tsconfig.json └── tslint.json /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/trifolia-on-fhir.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/.idea/trifolia-on-fhir.iml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true 3 | } 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "angular.enable-strict-mode-prompt": false 3 | } -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile.base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/Dockerfile.base -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/README.md -------------------------------------------------------------------------------- /apps/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /apps/client/browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/browserslist -------------------------------------------------------------------------------- /apps/client/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/jest.config.ts -------------------------------------------------------------------------------- /apps/client/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/project.json -------------------------------------------------------------------------------- /apps/client/src/app/app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/app.component.css -------------------------------------------------------------------------------- /apps/client/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/app.component.html -------------------------------------------------------------------------------- /apps/client/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/app.component.ts -------------------------------------------------------------------------------- /apps/client/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/app.module.ts -------------------------------------------------------------------------------- /apps/client/src/app/base.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/base.component.ts -------------------------------------------------------------------------------- /apps/client/src/app/bulk-edit/bulk-edit.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/bulk-edit/bulk-edit.component.css -------------------------------------------------------------------------------- /apps/client/src/app/bulk-edit/bulk-edit.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/bulk-edit/bulk-edit.component.html -------------------------------------------------------------------------------- /apps/client/src/app/bulk-edit/bulk-edit.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/bulk-edit/bulk-edit.component.ts -------------------------------------------------------------------------------- /apps/client/src/app/capability-statement-wrapper/security-services/security-services.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/clientHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/clientHelper.ts -------------------------------------------------------------------------------- /apps/client/src/app/codesystem/codesystem.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/codesystem/codesystem.component.css -------------------------------------------------------------------------------- /apps/client/src/app/codesystem/codesystem.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/codesystem/codesystem.component.html -------------------------------------------------------------------------------- /apps/client/src/app/codesystem/codesystem.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/codesystem/codesystem.component.ts -------------------------------------------------------------------------------- /apps/client/src/app/codesystems/codesystems.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/codesystems/codesystems.component.css -------------------------------------------------------------------------------- /apps/client/src/app/codesystems/codesystems.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/codesystems/codesystems.component.html -------------------------------------------------------------------------------- /apps/client/src/app/codesystems/codesystems.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/codesystems/codesystems.component.ts -------------------------------------------------------------------------------- /apps/client/src/app/examples/examples.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/examples/examples.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/examples/examples.component.html -------------------------------------------------------------------------------- /apps/client/src/app/examples/examples.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/examples/examples.component.ts -------------------------------------------------------------------------------- /apps/client/src/app/export-github-panel/export-github-panel.component.css: -------------------------------------------------------------------------------- 1 | table tr th:last-child { 2 | width: 175px; 3 | } 4 | -------------------------------------------------------------------------------- /apps/client/src/app/export/export.component.css: -------------------------------------------------------------------------------- 1 | .hide{ 2 | display:none; 3 | } 4 | -------------------------------------------------------------------------------- /apps/client/src/app/export/export.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/export/export.component.html -------------------------------------------------------------------------------- /apps/client/src/app/export/export.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/export/export.component.ts -------------------------------------------------------------------------------- /apps/client/src/app/fhir-edit/address-modal/address-modal.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/fhir-edit/attachment-modal/attachment-modal.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/fhir-edit/attachment/attachment.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/fhir-edit/attachment/attachment.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/fhir-edit/attachment/attachment.component.html -------------------------------------------------------------------------------- /apps/client/src/app/fhir-edit/attachment/attachment.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/fhir-edit/attachment/attachment.component.ts -------------------------------------------------------------------------------- /apps/client/src/app/fhir-edit/boolean/boolean.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/fhir-edit/boolean/boolean.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/fhir-edit/boolean/boolean.component.html -------------------------------------------------------------------------------- /apps/client/src/app/fhir-edit/boolean/boolean.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/fhir-edit/boolean/boolean.component.ts -------------------------------------------------------------------------------- /apps/client/src/app/fhir-edit/canonical-url/canonical-url.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/fhir-edit/capability-statement-resource-modal/capability-statement-resource-modal.component.css: -------------------------------------------------------------------------------- 1 | .card { 2 | margin-bottom: 15px; 3 | } -------------------------------------------------------------------------------- /apps/client/src/app/fhir-edit/choice/choice.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/fhir-edit/choice/choice.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/fhir-edit/choice/choice.component.html -------------------------------------------------------------------------------- /apps/client/src/app/fhir-edit/choice/choice.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/fhir-edit/choice/choice.component.ts -------------------------------------------------------------------------------- /apps/client/src/app/fhir-edit/codeable-concept-modal/codeable-concept-modal.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/fhir-edit/codesystem-concept-modal/codesystem-concept-modal.component.css: -------------------------------------------------------------------------------- 1 | .card { 2 | margin-bottom: 15px; 3 | } -------------------------------------------------------------------------------- /apps/client/src/app/fhir-edit/coding-modal/coding-modal.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/fhir-edit/contact-modal/contact-modal.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/fhir-edit/contact-point-modal/contact-point-modal.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/fhir-edit/date/date.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/fhir-edit/date/date.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/fhir-edit/date/date.component.html -------------------------------------------------------------------------------- /apps/client/src/app/fhir-edit/date/date.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/fhir-edit/date/date.component.ts -------------------------------------------------------------------------------- /apps/client/src/app/fhir-edit/fhir-edit.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/fhir-edit/fhir-edit.module.ts -------------------------------------------------------------------------------- /apps/client/src/app/fhir-edit/human-name-modal/human-name-modal.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/fhir-edit/human-name/human-name.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/fhir-edit/human-name/human-name.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/fhir-edit/human-name/human-name.component.html -------------------------------------------------------------------------------- /apps/client/src/app/fhir-edit/human-name/human-name.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/fhir-edit/human-name/human-name.component.ts -------------------------------------------------------------------------------- /apps/client/src/app/fhir-edit/human-names/human-names.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/fhir-edit/human-names/human-names.component.ts -------------------------------------------------------------------------------- /apps/client/src/app/fhir-edit/identifier-card/identifier-card.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/fhir-edit/identifier-modal/identifier-modal.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/fhir-edit/identifier/identifier.component.css: -------------------------------------------------------------------------------- 1 | .text-field { 2 | width: 100%; 3 | } 4 | -------------------------------------------------------------------------------- /apps/client/src/app/fhir-edit/identifier/identifier.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/fhir-edit/identifier/identifier.component.html -------------------------------------------------------------------------------- /apps/client/src/app/fhir-edit/identifier/identifier.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/fhir-edit/identifier/identifier.component.ts -------------------------------------------------------------------------------- /apps/client/src/app/fhir-edit/markdown/markdown.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/fhir-edit/markdown/markdown.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/fhir-edit/markdown/markdown.component.html -------------------------------------------------------------------------------- /apps/client/src/app/fhir-edit/markdown/markdown.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/fhir-edit/markdown/markdown.component.ts -------------------------------------------------------------------------------- /apps/client/src/app/fhir-edit/max-cardinality/max-cardinality.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/fhir-edit/messaging-event-modal/messaging-event-modal.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/fhir-edit/multi-contact/multi-contact.component.css: -------------------------------------------------------------------------------- 1 | .card { 2 | margin-bottom: 15px; 3 | } -------------------------------------------------------------------------------- /apps/client/src/app/fhir-edit/multi-identifier/multi-identifier.component.css: -------------------------------------------------------------------------------- 1 | .card { 2 | margin-bottom: 15px; 3 | } -------------------------------------------------------------------------------- /apps/client/src/app/fhir-edit/narrative/narrative.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/fhir-edit/narrative/narrative.component.css -------------------------------------------------------------------------------- /apps/client/src/app/fhir-edit/narrative/narrative.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/fhir-edit/narrative/narrative.component.html -------------------------------------------------------------------------------- /apps/client/src/app/fhir-edit/narrative/narrative.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/fhir-edit/narrative/narrative.component.ts -------------------------------------------------------------------------------- /apps/client/src/app/fhir-edit/number/number.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/fhir-edit/number/number.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/fhir-edit/number/number.component.html -------------------------------------------------------------------------------- /apps/client/src/app/fhir-edit/number/number.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/fhir-edit/number/number.component.ts -------------------------------------------------------------------------------- /apps/client/src/app/fhir-edit/period/period.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/fhir-edit/period/period.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/fhir-edit/period/period.component.html -------------------------------------------------------------------------------- /apps/client/src/app/fhir-edit/period/period.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/fhir-edit/period/period.component.ts -------------------------------------------------------------------------------- /apps/client/src/app/fhir-edit/quantity/quantity.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/fhir-edit/quantity/quantity.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/fhir-edit/quantity/quantity.component.html -------------------------------------------------------------------------------- /apps/client/src/app/fhir-edit/quantity/quantity.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/fhir-edit/quantity/quantity.component.ts -------------------------------------------------------------------------------- /apps/client/src/app/fhir-edit/range-modal/range-modal.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/fhir-edit/range-modal/range-modal.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/fhir-edit/range-modal/range-modal.component.ts -------------------------------------------------------------------------------- /apps/client/src/app/fhir-edit/range/range.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/fhir-edit/range/range.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/fhir-edit/range/range.component.html -------------------------------------------------------------------------------- /apps/client/src/app/fhir-edit/range/range.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/fhir-edit/range/range.component.ts -------------------------------------------------------------------------------- /apps/client/src/app/fhir-edit/ratio-modal/ratio-modal.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/fhir-edit/ratio-modal/ratio-modal.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/fhir-edit/ratio-modal/ratio-modal.component.ts -------------------------------------------------------------------------------- /apps/client/src/app/fhir-edit/ratio/ratio.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/fhir-edit/ratio/ratio.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/fhir-edit/ratio/ratio.component.html -------------------------------------------------------------------------------- /apps/client/src/app/fhir-edit/ratio/ratio.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/fhir-edit/ratio/ratio.component.ts -------------------------------------------------------------------------------- /apps/client/src/app/fhir-edit/reference/reference.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/fhir-edit/reference/reference.component.css -------------------------------------------------------------------------------- /apps/client/src/app/fhir-edit/reference/reference.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/fhir-edit/reference/reference.component.html -------------------------------------------------------------------------------- /apps/client/src/app/fhir-edit/reference/reference.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/fhir-edit/reference/reference.component.ts -------------------------------------------------------------------------------- /apps/client/src/app/fhir-edit/string/string.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/fhir-edit/string/string.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/fhir-edit/string/string.component.html -------------------------------------------------------------------------------- /apps/client/src/app/fhir-edit/string/string.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/fhir-edit/string/string.component.ts -------------------------------------------------------------------------------- /apps/client/src/app/fhir-edit/value-set-include-concept-modal/value-set-include-concept-modal.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/guards/resource.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/guards/resource.guard.ts -------------------------------------------------------------------------------- /apps/client/src/app/home/home.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/home/home.component.html -------------------------------------------------------------------------------- /apps/client/src/app/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/home/home.component.ts -------------------------------------------------------------------------------- /apps/client/src/app/implementation-guide-wrapper/custom-menu/custom-menu.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/implementation-guide-wrapper/ignore-warnings/ignore-warnings.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/implementation-guide-wrapper/publishing-request/publishing-request.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/implementation-guide-wrapper/publishing-template/publishing-template.component.css: -------------------------------------------------------------------------------- 1 | .input-group > .form-control:first-child { 2 | max-width: 150px; 3 | } 4 | -------------------------------------------------------------------------------- /apps/client/src/app/implementation-guide-wrapper/r4/group-modal.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/implementation-guide-wrapper/r4/page-component-modal.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/implementation-guide-wrapper/r4/resource-modal.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/implementation-guide-wrapper/r5/group-modal.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/implementation-guide-wrapper/r5/page-component-modal.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/implementation-guide-wrapper/r5/resource-modal.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/implementation-guide-wrapper/stu3/page-component-modal.component.css: -------------------------------------------------------------------------------- 1 | .card { 2 | margin-bottom: 15px; 3 | } -------------------------------------------------------------------------------- /apps/client/src/app/implementation-guide-wrapper/stu3/resource-modal.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/implementation-guide-wrapper/work-group/work-group.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/import/import-github-panel/import-github-panel.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/import/import.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/import/import.component.css -------------------------------------------------------------------------------- /apps/client/src/app/import/import.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/import/import.component.html -------------------------------------------------------------------------------- /apps/client/src/app/import/import.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/import/import.component.ts -------------------------------------------------------------------------------- /apps/client/src/app/import/update-diff/update-diff.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/import/update-diff/update-diff.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/import/update-diff/update-diff.component.html -------------------------------------------------------------------------------- /apps/client/src/app/import/update-diff/update-diff.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/import/update-diff/update-diff.component.ts -------------------------------------------------------------------------------- /apps/client/src/app/login/login.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/login/login.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/login/login.component.html -------------------------------------------------------------------------------- /apps/client/src/app/login/login.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/login/login.component.ts -------------------------------------------------------------------------------- /apps/client/src/app/manage/audit-report/audit-report.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/manage/audit-report/audit-report.component.css -------------------------------------------------------------------------------- /apps/client/src/app/manage/audit-report/audit-report.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/manage/audit-report/audit-report.component.ts -------------------------------------------------------------------------------- /apps/client/src/app/manage/audit/audit.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/manage/audit/audit.component.css -------------------------------------------------------------------------------- /apps/client/src/app/manage/audit/audit.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/manage/audit/audit.component.html -------------------------------------------------------------------------------- /apps/client/src/app/manage/audit/audit.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/manage/audit/audit.component.spec.ts -------------------------------------------------------------------------------- /apps/client/src/app/manage/audit/audit.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/manage/audit/audit.component.ts -------------------------------------------------------------------------------- /apps/client/src/app/manage/merge-user-modal/merge-user-modal.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/manage/queue/queue.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/manage/queue/queue.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/manage/queue/queue.component.html -------------------------------------------------------------------------------- /apps/client/src/app/manage/queue/queue.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/manage/queue/queue.component.ts -------------------------------------------------------------------------------- /apps/client/src/app/manage/users/users.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/manage/users/users.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/manage/users/users.component.html -------------------------------------------------------------------------------- /apps/client/src/app/manage/users/users.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/manage/users/users.component.ts -------------------------------------------------------------------------------- /apps/client/src/app/modals/README.md: -------------------------------------------------------------------------------- 1 | Only modal window components go in this module. -------------------------------------------------------------------------------- /apps/client/src/app/modals/admin-message-modal/admin-message-modal.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/modals/change-resource-id-modal/change-resource-id-modal.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/modals/copy-profile-modal/copy-profile-modal.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/modals/element-definition-constraint/element-definition-constraint.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/modals/file-open-modal/file-open-modal.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/modals/markdown-modal/markdown-modal.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/modals/media-selection-modal/media-selection-modal.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/modals/modals.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/modals/modals.module.ts -------------------------------------------------------------------------------- /apps/client/src/app/modals/new-user-modal/new-user-modal.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/modals/published-ig-select-modal/published-ig-edition-select-modal/published-ig-edition-select-modal.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/modals/published-ig-select-modal/published-ig-select-modal.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/modals/select-choice-modal/select-choice-modal.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/modals/settings-modal/settings-modal.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/models/export-formats.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/models/export-formats.enum.ts -------------------------------------------------------------------------------- /apps/client/src/app/models/file-model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/models/file-model.ts -------------------------------------------------------------------------------- /apps/client/src/app/models/person-list-model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/models/person-list-model.ts -------------------------------------------------------------------------------- /apps/client/src/app/models/recent-item-model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/models/recent-item-model.ts -------------------------------------------------------------------------------- /apps/client/src/app/models/structure-definition-list-model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/models/structure-definition-list-model.ts -------------------------------------------------------------------------------- /apps/client/src/app/new-profile/new-profile.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/new-profile/new-profile.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/new-profile/new-profile.component.html -------------------------------------------------------------------------------- /apps/client/src/app/new-profile/new-profile.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/new-profile/new-profile.component.ts -------------------------------------------------------------------------------- /apps/client/src/app/new-project/new-project.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/new-project/new-project.component.css -------------------------------------------------------------------------------- /apps/client/src/app/new-project/new-project.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/new-project/new-project.component.html -------------------------------------------------------------------------------- /apps/client/src/app/new-project/new-project.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/new-project/new-project.component.ts -------------------------------------------------------------------------------- /apps/client/src/app/operation-definition/operation-definition.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/operation-definition/parameter-modal/parameter-modal.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/other-resources/other-resources.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/other-resources/other-resources.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/other-resources/other-resources.component.ts -------------------------------------------------------------------------------- /apps/client/src/app/page/page.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/page/page.component.css -------------------------------------------------------------------------------- /apps/client/src/app/page/page.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/page/page.component.html -------------------------------------------------------------------------------- /apps/client/src/app/page/page.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/page/page.component.ts -------------------------------------------------------------------------------- /apps/client/src/app/pages/pages.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/pages/pages.component.css -------------------------------------------------------------------------------- /apps/client/src/app/pages/pages.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/pages/pages.component.html -------------------------------------------------------------------------------- /apps/client/src/app/pages/pages.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/pages/pages.component.ts -------------------------------------------------------------------------------- /apps/client/src/app/project/project.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/project/project.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/project/project.component.html -------------------------------------------------------------------------------- /apps/client/src/app/project/project.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/project/project.component.spec.ts -------------------------------------------------------------------------------- /apps/client/src/app/project/project.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/project/project.component.ts -------------------------------------------------------------------------------- /apps/client/src/app/projects/projects.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/projects/projects.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/projects/projects.component.html -------------------------------------------------------------------------------- /apps/client/src/app/projects/projects.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/projects/projects.component.spec.ts -------------------------------------------------------------------------------- /apps/client/src/app/projects/projects.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/projects/projects.component.ts -------------------------------------------------------------------------------- /apps/client/src/app/publish/publish.component.css: -------------------------------------------------------------------------------- 1 | pre { 2 | max-height: 53vh; 3 | } 4 | -------------------------------------------------------------------------------- /apps/client/src/app/publish/publish.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/publish/publish.component.html -------------------------------------------------------------------------------- /apps/client/src/app/publish/publish.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/publish/publish.component.ts -------------------------------------------------------------------------------- /apps/client/src/app/questionnaire/questionnaire-item-modal.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/questionnaire/questionnaire.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/questionnaire/questionnaire.component.css -------------------------------------------------------------------------------- /apps/client/src/app/questionnaire/questionnaire.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/questionnaire/questionnaire.component.html -------------------------------------------------------------------------------- /apps/client/src/app/questionnaire/questionnaire.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/questionnaire/questionnaire.component.ts -------------------------------------------------------------------------------- /apps/client/src/app/questionnaires/questionnaires.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/questionnaires/questionnaires.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/questionnaires/questionnaires.component.html -------------------------------------------------------------------------------- /apps/client/src/app/questionnaires/questionnaires.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/questionnaires/questionnaires.component.ts -------------------------------------------------------------------------------- /apps/client/src/app/route-transformer.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/route-transformer.directive.ts -------------------------------------------------------------------------------- /apps/client/src/app/search-parameter/search-parameter.component.css: -------------------------------------------------------------------------------- 1 | .card { 2 | margin-bottom: 10px; 3 | } 4 | -------------------------------------------------------------------------------- /apps/client/src/app/search-parameters/search-parameters.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/shared-ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/shared-ui/README.md -------------------------------------------------------------------------------- /apps/client/src/app/shared-ui/audit-diffs-modal/audit-diffs-modal.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/shared-ui/audit-diffs/audit-diffs.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/shared-ui/fhir-display-pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/shared-ui/fhir-display-pipe.ts -------------------------------------------------------------------------------- /apps/client/src/app/shared-ui/fhir-xml-pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/shared-ui/fhir-xml-pipe.ts -------------------------------------------------------------------------------- /apps/client/src/app/shared-ui/ig-publisher-selection/ig-publisher-selection.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/shared-ui/implementation-guide-typeahead/implementation-guide-typeahead.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/shared-ui/keys-pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/shared-ui/keys-pipe.ts -------------------------------------------------------------------------------- /apps/client/src/app/shared-ui/markdown/markdown.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/shared-ui/markdown/markdown.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/shared-ui/markdown/markdown.component.html -------------------------------------------------------------------------------- /apps/client/src/app/shared-ui/markdown/markdown.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/shared-ui/markdown/markdown.component.ts -------------------------------------------------------------------------------- /apps/client/src/app/shared-ui/raw-modal/raw-modal.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/shared-ui/raw-modal/raw-modal.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/shared-ui/raw-modal/raw-modal.component.html -------------------------------------------------------------------------------- /apps/client/src/app/shared-ui/raw-modal/raw-modal.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/shared-ui/raw-modal/raw-modal.component.ts -------------------------------------------------------------------------------- /apps/client/src/app/shared-ui/raw-resource/raw-resource.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/shared-ui/resource-history/resource-history.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/shared-ui/resource-permissions/resource-permissions.component.css: -------------------------------------------------------------------------------- 1 | .card { 2 | margin-bottom: 10px; 3 | } 4 | -------------------------------------------------------------------------------- /apps/client/src/app/shared-ui/safe-pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/shared-ui/safe-pipe.ts -------------------------------------------------------------------------------- /apps/client/src/app/shared-ui/shared-ui.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/shared-ui/shared-ui.module.ts -------------------------------------------------------------------------------- /apps/client/src/app/shared-ui/user-edit/user-edit.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/shared-ui/user-edit/user-edit.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/shared-ui/user-edit/user-edit.component.html -------------------------------------------------------------------------------- /apps/client/src/app/shared-ui/user-edit/user-edit.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/shared-ui/user-edit/user-edit.component.ts -------------------------------------------------------------------------------- /apps/client/src/app/shared-ui/validation-results/validation-results.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/shared-ui/xml-pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/shared-ui/xml-pipe.ts -------------------------------------------------------------------------------- /apps/client/src/app/shared/audit.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/shared/audit.service.ts -------------------------------------------------------------------------------- /apps/client/src/app/shared/auth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/shared/auth.service.ts -------------------------------------------------------------------------------- /apps/client/src/app/shared/capability-statement.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/shared/capability-statement.service.ts -------------------------------------------------------------------------------- /apps/client/src/app/shared/code-system.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/shared/code-system.service.ts -------------------------------------------------------------------------------- /apps/client/src/app/shared/config.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/shared/config.service.ts -------------------------------------------------------------------------------- /apps/client/src/app/shared/export.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/shared/export.service.ts -------------------------------------------------------------------------------- /apps/client/src/app/shared/fhir-resource.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/shared/fhir-resource.service.ts -------------------------------------------------------------------------------- /apps/client/src/app/shared/fhir.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/shared/fhir.service.ts -------------------------------------------------------------------------------- /apps/client/src/app/shared/file.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/shared/file.service.ts -------------------------------------------------------------------------------- /apps/client/src/app/shared/fsh.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/shared/fsh.service.ts -------------------------------------------------------------------------------- /apps/client/src/app/shared/github.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/shared/github.service.ts -------------------------------------------------------------------------------- /apps/client/src/app/shared/group.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/shared/group.service.ts -------------------------------------------------------------------------------- /apps/client/src/app/shared/history.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/shared/history.service.ts -------------------------------------------------------------------------------- /apps/client/src/app/shared/implementation-guide.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/shared/implementation-guide.service.ts -------------------------------------------------------------------------------- /apps/client/src/app/shared/import.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/shared/import.service.ts -------------------------------------------------------------------------------- /apps/client/src/app/shared/manage.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/shared/manage.service.ts -------------------------------------------------------------------------------- /apps/client/src/app/shared/modal.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/shared/modal.service.ts -------------------------------------------------------------------------------- /apps/client/src/app/shared/non-fhir-resource.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/shared/non-fhir-resource.service.ts -------------------------------------------------------------------------------- /apps/client/src/app/shared/operation-definition.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/shared/operation-definition.service.ts -------------------------------------------------------------------------------- /apps/client/src/app/shared/practitioner.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/shared/practitioner.service.ts -------------------------------------------------------------------------------- /apps/client/src/app/shared/projects.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/shared/projects.service.ts -------------------------------------------------------------------------------- /apps/client/src/app/shared/questionnaire.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/shared/questionnaire.service.ts -------------------------------------------------------------------------------- /apps/client/src/app/shared/recent-item.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/shared/recent-item.service.ts -------------------------------------------------------------------------------- /apps/client/src/app/shared/search-parameter.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/shared/search-parameter.service.ts -------------------------------------------------------------------------------- /apps/client/src/app/shared/shared.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/shared/shared.module.ts -------------------------------------------------------------------------------- /apps/client/src/app/shared/socket.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/shared/socket.service.ts -------------------------------------------------------------------------------- /apps/client/src/app/shared/structure-definition.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/shared/structure-definition.service.ts -------------------------------------------------------------------------------- /apps/client/src/app/shared/user.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/shared/user.service.ts -------------------------------------------------------------------------------- /apps/client/src/app/shared/validation/custom-R4-validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/shared/validation/custom-R4-validator.ts -------------------------------------------------------------------------------- /apps/client/src/app/shared/validation/custom-STU3-validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/shared/validation/custom-STU3-validator.ts -------------------------------------------------------------------------------- /apps/client/src/app/shared/validation/custom-validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/shared/validation/custom-validator.ts -------------------------------------------------------------------------------- /apps/client/src/app/shared/value-set.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/shared/value-set.service.ts -------------------------------------------------------------------------------- /apps/client/src/app/structure-definition/context-panel-wrapper/r4/context-panel-r4.component.css: -------------------------------------------------------------------------------- 1 | .card { 2 | margin-bottom: 10px; 3 | } -------------------------------------------------------------------------------- /apps/client/src/app/structure-definition/context-panel-wrapper/stu3/context-panel-stu3.component.css: -------------------------------------------------------------------------------- 1 | .card { 2 | margin-bottom: 10px; 3 | } -------------------------------------------------------------------------------- /apps/client/src/app/structure-definition/element-definition-panel/binding-panel/binding-panel.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/structure-definition/element-definition-panel/mapping-modal/mapping-modal.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/structure-definition/element-definition-panel/r4-type-modal/type-modal.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/structure-definition/element-definition-panel/stu3-type-modal/type-modal.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/user/user.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/user/user.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/user/user.component.html -------------------------------------------------------------------------------- /apps/client/src/app/user/user.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/user/user.component.ts -------------------------------------------------------------------------------- /apps/client/src/app/valueset-expand/valueset-expand.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/valueset-expand/valueset-expand.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/valueset-expand/valueset-expand.component.ts -------------------------------------------------------------------------------- /apps/client/src/app/valueset/concept-card/concept-card.component.css: -------------------------------------------------------------------------------- 1 | .card { 2 | margin-bottom: 15px; 3 | } -------------------------------------------------------------------------------- /apps/client/src/app/valueset/include-panel/include-panel.component.css: -------------------------------------------------------------------------------- 1 | .card { 2 | margin-bottom: 15px; 3 | } 4 | -------------------------------------------------------------------------------- /apps/client/src/app/valueset/valueset.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/valueset/valueset.component.css -------------------------------------------------------------------------------- /apps/client/src/app/valueset/valueset.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/valueset/valueset.component.html -------------------------------------------------------------------------------- /apps/client/src/app/valueset/valueset.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/valueset/valueset.component.ts -------------------------------------------------------------------------------- /apps/client/src/app/valuesets/valuesets.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/valuesets/valuesets.component.css -------------------------------------------------------------------------------- /apps/client/src/app/valuesets/valuesets.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/valuesets/valuesets.component.html -------------------------------------------------------------------------------- /apps/client/src/app/valuesets/valuesets.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/app/valuesets/valuesets.component.ts -------------------------------------------------------------------------------- /apps/client/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/assets/jquery-3.4.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/assets/jquery-3.4.1.min.js -------------------------------------------------------------------------------- /apps/client/src/assets/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/assets/loading.png -------------------------------------------------------------------------------- /apps/client/src/assets/narrative-templates/ValueSet.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/assets/narrative-templates/ValueSet.mustache -------------------------------------------------------------------------------- /apps/client/src/assets/trifoliaonfhir_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/assets/trifoliaonfhir_128.png -------------------------------------------------------------------------------- /apps/client/src/assets/trifoliaonfhir_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/assets/trifoliaonfhir_16.png -------------------------------------------------------------------------------- /apps/client/src/assets/trifoliaonfhir_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/assets/trifoliaonfhir_32.png -------------------------------------------------------------------------------- /apps/client/src/assets/trifoliaonfhir_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/assets/trifoliaonfhir_64.png -------------------------------------------------------------------------------- /apps/client/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /apps/client/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/environments/environment.ts -------------------------------------------------------------------------------- /apps/client/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/favicon.ico -------------------------------------------------------------------------------- /apps/client/src/help/AccessandPermissions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/AccessandPermissions.html -------------------------------------------------------------------------------- /apps/client/src/help/AccountsandLogin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/AccountsandLogin.html -------------------------------------------------------------------------------- /apps/client/src/help/AdditionalHelp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/AdditionalHelp.html -------------------------------------------------------------------------------- /apps/client/src/help/AuthoringValuesets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/AuthoringValuesets.html -------------------------------------------------------------------------------- /apps/client/src/help/Bindingvaluestoelementsinaprofil.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/Bindingvaluestoelementsinaprofil.html -------------------------------------------------------------------------------- /apps/client/src/help/CodeSystems.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/CodeSystems.html -------------------------------------------------------------------------------- /apps/client/src/help/Dependency.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/Dependency.html -------------------------------------------------------------------------------- /apps/client/src/help/Elements.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/Elements.html -------------------------------------------------------------------------------- /apps/client/src/help/Export.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/Export.html -------------------------------------------------------------------------------- /apps/client/src/help/FAQ.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/FAQ.html -------------------------------------------------------------------------------- /apps/client/src/help/FHIRVersions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/FHIRVersions.html -------------------------------------------------------------------------------- /apps/client/src/help/GeneratingSnapshot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/GeneratingSnapshot.html -------------------------------------------------------------------------------- /apps/client/src/help/GettingStarted.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/GettingStarted.html -------------------------------------------------------------------------------- /apps/client/src/help/GitHubIntegration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/GitHubIntegration.html -------------------------------------------------------------------------------- /apps/client/src/help/Glossary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/Glossary.html -------------------------------------------------------------------------------- /apps/client/src/help/GuidelinesandBestPractices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/GuidelinesandBestPractices.html -------------------------------------------------------------------------------- /apps/client/src/help/IGPackageID.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/IGPackageID.html -------------------------------------------------------------------------------- /apps/client/src/help/IGVersion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/IGVersion.html -------------------------------------------------------------------------------- /apps/client/src/help/ImplementationGuides.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/ImplementationGuides.html -------------------------------------------------------------------------------- /apps/client/src/help/Import.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/Import.html -------------------------------------------------------------------------------- /apps/client/src/help/Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/Introduction.html -------------------------------------------------------------------------------- /apps/client/src/help/JIRASpecGeneration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/JIRASpecGeneration.html -------------------------------------------------------------------------------- /apps/client/src/help/Login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/Login.html -------------------------------------------------------------------------------- /apps/client/src/help/MarkdownSyntax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/MarkdownSyntax.html -------------------------------------------------------------------------------- /apps/client/src/help/NarrativePages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/NarrativePages.html -------------------------------------------------------------------------------- /apps/client/src/help/Navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/Navigation.html -------------------------------------------------------------------------------- /apps/client/src/help/Pre-PublishingErrors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/Pre-PublishingErrors.html -------------------------------------------------------------------------------- /apps/client/src/help/Publishing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/Publishing.html -------------------------------------------------------------------------------- /apps/client/src/help/RESTAPI.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/RESTAPI.html -------------------------------------------------------------------------------- /apps/client/src/help/ResourcePermissions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/ResourcePermissions.html -------------------------------------------------------------------------------- /apps/client/src/help/SecurityandPermissions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/SecurityandPermissions.html -------------------------------------------------------------------------------- /apps/client/src/help/SlicingElements.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/SlicingElements.html -------------------------------------------------------------------------------- /apps/client/src/help/StructureDefinitionsProfiles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/StructureDefinitionsProfiles.html -------------------------------------------------------------------------------- /apps/client/src/help/SystemRequirements.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/SystemRequirements.html -------------------------------------------------------------------------------- /apps/client/src/help/TechnicalDetails.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/TechnicalDetails.html -------------------------------------------------------------------------------- /apps/client/src/help/TechnicalDetails_SecurityandPerm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/TechnicalDetails_SecurityandPerm.html -------------------------------------------------------------------------------- /apps/client/src/help/TerminologyServerConnection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/TerminologyServerConnection.html -------------------------------------------------------------------------------- /apps/client/src/help/Trifolia-on-FHIR.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/Trifolia-on-FHIR.chm -------------------------------------------------------------------------------- /apps/client/src/help/Trifolia-on-FHIR.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/Trifolia-on-FHIR.docx -------------------------------------------------------------------------------- /apps/client/src/help/Trifolia-on-FHIR.epub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/Trifolia-on-FHIR.epub -------------------------------------------------------------------------------- /apps/client/src/help/Trifolia-on-FHIR.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/Trifolia-on-FHIR.pdf -------------------------------------------------------------------------------- /apps/client/src/help/V1130.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/V1130.html -------------------------------------------------------------------------------- /apps/client/src/help/V1150.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/V1150.html -------------------------------------------------------------------------------- /apps/client/src/help/V1160.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/V1160.html -------------------------------------------------------------------------------- /apps/client/src/help/Validation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/Validation.html -------------------------------------------------------------------------------- /apps/client/src/help/WalkThrough.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/WalkThrough.html -------------------------------------------------------------------------------- /apps/client/src/help/Welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/Welcome.html -------------------------------------------------------------------------------- /apps/client/src/help/WhatsNew.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/WhatsNew.html -------------------------------------------------------------------------------- /apps/client/src/help/_keywords.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/_keywords.json -------------------------------------------------------------------------------- /apps/client/src/help/_toc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/_toc.json -------------------------------------------------------------------------------- /apps/client/src/help/_translations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/_translations.js -------------------------------------------------------------------------------- /apps/client/src/help/context/0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/context/0.html -------------------------------------------------------------------------------- /apps/client/src/help/context/1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/context/1.html -------------------------------------------------------------------------------- /apps/client/src/help/context/10.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/context/10.html -------------------------------------------------------------------------------- /apps/client/src/help/context/11.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/context/11.html -------------------------------------------------------------------------------- /apps/client/src/help/context/12.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/context/12.html -------------------------------------------------------------------------------- /apps/client/src/help/context/13.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/context/13.html -------------------------------------------------------------------------------- /apps/client/src/help/context/14.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/context/14.html -------------------------------------------------------------------------------- /apps/client/src/help/context/15.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/context/15.html -------------------------------------------------------------------------------- /apps/client/src/help/context/16.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/context/16.html -------------------------------------------------------------------------------- /apps/client/src/help/context/17.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/context/17.html -------------------------------------------------------------------------------- /apps/client/src/help/context/18.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/context/18.html -------------------------------------------------------------------------------- /apps/client/src/help/context/19.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/context/19.html -------------------------------------------------------------------------------- /apps/client/src/help/context/2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/context/2.html -------------------------------------------------------------------------------- /apps/client/src/help/context/20.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/context/20.html -------------------------------------------------------------------------------- /apps/client/src/help/context/21.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/context/21.html -------------------------------------------------------------------------------- /apps/client/src/help/context/22.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/context/22.html -------------------------------------------------------------------------------- /apps/client/src/help/context/23.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/context/23.html -------------------------------------------------------------------------------- /apps/client/src/help/context/24.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/context/24.html -------------------------------------------------------------------------------- /apps/client/src/help/context/25.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/context/25.html -------------------------------------------------------------------------------- /apps/client/src/help/context/26.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/context/26.html -------------------------------------------------------------------------------- /apps/client/src/help/context/27.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/context/27.html -------------------------------------------------------------------------------- /apps/client/src/help/context/28.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/context/28.html -------------------------------------------------------------------------------- /apps/client/src/help/context/29.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/context/29.html -------------------------------------------------------------------------------- /apps/client/src/help/context/3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/context/3.html -------------------------------------------------------------------------------- /apps/client/src/help/context/30.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/context/30.html -------------------------------------------------------------------------------- /apps/client/src/help/context/31.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/context/31.html -------------------------------------------------------------------------------- /apps/client/src/help/context/32.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/context/32.html -------------------------------------------------------------------------------- /apps/client/src/help/context/33.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/context/33.html -------------------------------------------------------------------------------- /apps/client/src/help/context/34.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/context/34.html -------------------------------------------------------------------------------- /apps/client/src/help/context/35.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/context/35.html -------------------------------------------------------------------------------- /apps/client/src/help/context/36.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/context/36.html -------------------------------------------------------------------------------- /apps/client/src/help/context/37.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/context/37.html -------------------------------------------------------------------------------- /apps/client/src/help/context/38.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/context/38.html -------------------------------------------------------------------------------- /apps/client/src/help/context/39.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/context/39.html -------------------------------------------------------------------------------- /apps/client/src/help/context/4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/context/4.html -------------------------------------------------------------------------------- /apps/client/src/help/context/40.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/context/40.html -------------------------------------------------------------------------------- /apps/client/src/help/context/41.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/context/41.html -------------------------------------------------------------------------------- /apps/client/src/help/context/42.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/context/42.html -------------------------------------------------------------------------------- /apps/client/src/help/context/43.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/context/43.html -------------------------------------------------------------------------------- /apps/client/src/help/context/44.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/context/44.html -------------------------------------------------------------------------------- /apps/client/src/help/context/45.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/context/45.html -------------------------------------------------------------------------------- /apps/client/src/help/context/46.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/context/46.html -------------------------------------------------------------------------------- /apps/client/src/help/context/47.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/context/47.html -------------------------------------------------------------------------------- /apps/client/src/help/context/48.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/context/48.html -------------------------------------------------------------------------------- /apps/client/src/help/context/49.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/context/49.html -------------------------------------------------------------------------------- /apps/client/src/help/context/5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/context/5.html -------------------------------------------------------------------------------- /apps/client/src/help/context/50.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/context/50.html -------------------------------------------------------------------------------- /apps/client/src/help/context/51.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/context/51.html -------------------------------------------------------------------------------- /apps/client/src/help/context/52.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/context/52.html -------------------------------------------------------------------------------- /apps/client/src/help/context/53.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/context/53.html -------------------------------------------------------------------------------- /apps/client/src/help/context/54.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/context/54.html -------------------------------------------------------------------------------- /apps/client/src/help/context/55.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/context/55.html -------------------------------------------------------------------------------- /apps/client/src/help/context/56.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/context/56.html -------------------------------------------------------------------------------- /apps/client/src/help/context/57.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/context/57.html -------------------------------------------------------------------------------- /apps/client/src/help/context/58.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/context/58.html -------------------------------------------------------------------------------- /apps/client/src/help/context/59.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/context/59.html -------------------------------------------------------------------------------- /apps/client/src/help/context/6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/context/6.html -------------------------------------------------------------------------------- /apps/client/src/help/context/60.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/context/60.html -------------------------------------------------------------------------------- /apps/client/src/help/context/61.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/context/61.html -------------------------------------------------------------------------------- /apps/client/src/help/context/62.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/context/62.html -------------------------------------------------------------------------------- /apps/client/src/help/context/63.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/context/63.html -------------------------------------------------------------------------------- /apps/client/src/help/context/7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/context/7.html -------------------------------------------------------------------------------- /apps/client/src/help/context/8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/context/8.html -------------------------------------------------------------------------------- /apps/client/src/help/context/9.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/context/9.html -------------------------------------------------------------------------------- /apps/client/src/help/css/effects.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/css/effects.min.css -------------------------------------------------------------------------------- /apps/client/src/help/css/hnd.content.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/css/hnd.content.css -------------------------------------------------------------------------------- /apps/client/src/help/css/layout.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/css/layout.min.css -------------------------------------------------------------------------------- /apps/client/src/help/css/print.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/css/print.min.css -------------------------------------------------------------------------------- /apps/client/src/help/css/theme-dark-blue.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/css/theme-dark-blue.min.css -------------------------------------------------------------------------------- /apps/client/src/help/css/theme-dark-green.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/css/theme-dark-green.min.css -------------------------------------------------------------------------------- /apps/client/src/help/css/theme-dark-orange.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/css/theme-dark-orange.min.css -------------------------------------------------------------------------------- /apps/client/src/help/css/theme-dark-purple.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/css/theme-dark-purple.min.css -------------------------------------------------------------------------------- /apps/client/src/help/css/theme-light-blue.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/css/theme-light-blue.min.css -------------------------------------------------------------------------------- /apps/client/src/help/css/theme-light-green.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/css/theme-light-green.min.css -------------------------------------------------------------------------------- /apps/client/src/help/css/theme-light-orange.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/css/theme-light-orange.min.css -------------------------------------------------------------------------------- /apps/client/src/help/css/theme-light-purple.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/css/theme-light-purple.min.css -------------------------------------------------------------------------------- /apps/client/src/help/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/index.html -------------------------------------------------------------------------------- /apps/client/src/help/js/app.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/js/app.min.js -------------------------------------------------------------------------------- /apps/client/src/help/js/hndsd.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/js/hndsd.min.js -------------------------------------------------------------------------------- /apps/client/src/help/js/hndse.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/js/hndse.min.js -------------------------------------------------------------------------------- /apps/client/src/help/js/polyfill.object.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/js/polyfill.object.min.js -------------------------------------------------------------------------------- /apps/client/src/help/lib/HL7-US Core.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/lib/HL7-US Core.png -------------------------------------------------------------------------------- /apps/client/src/help/lib/IG Package ID-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/lib/IG Package ID-2.png -------------------------------------------------------------------------------- /apps/client/src/help/lib/IG Package ID.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/lib/IG Package ID.png -------------------------------------------------------------------------------- /apps/client/src/help/lib/IG Version-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/lib/IG Version-2.png -------------------------------------------------------------------------------- /apps/client/src/help/lib/NewItem1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/lib/NewItem1.png -------------------------------------------------------------------------------- /apps/client/src/help/lib/authorization-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/lib/authorization-3.jpg -------------------------------------------------------------------------------- /apps/client/src/help/lib/authorization-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/lib/authorization-4.jpg -------------------------------------------------------------------------------- /apps/client/src/help/lib/authorization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/lib/authorization.png -------------------------------------------------------------------------------- /apps/client/src/help/lib/base definition 3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/lib/base definition 3.jpg -------------------------------------------------------------------------------- /apps/client/src/help/lib/base definition-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/lib/base definition-2.png -------------------------------------------------------------------------------- /apps/client/src/help/lib/create-new-slice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/lib/create-new-slice.png -------------------------------------------------------------------------------- /apps/client/src/help/lib/dependencies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/lib/dependencies.png -------------------------------------------------------------------------------- /apps/client/src/help/lib/dependency-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/lib/dependency-2.jpg -------------------------------------------------------------------------------- /apps/client/src/help/lib/dependency.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/lib/dependency.jpg -------------------------------------------------------------------------------- /apps/client/src/help/lib/package-listjson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/lib/package-listjson.png -------------------------------------------------------------------------------- /apps/client/src/help/lib/publishing error-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/lib/publishing error-2.png -------------------------------------------------------------------------------- /apps/client/src/help/lib/publishing error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/lib/publishing error.png -------------------------------------------------------------------------------- /apps/client/src/help/lib/publishing1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/lib/publishing1.png -------------------------------------------------------------------------------- /apps/client/src/help/lib/slicing-details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/lib/slicing-details.png -------------------------------------------------------------------------------- /apps/client/src/help/v100.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/v100.html -------------------------------------------------------------------------------- /apps/client/src/help/v110.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/v110.html -------------------------------------------------------------------------------- /apps/client/src/help/v1100.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/v1100.html -------------------------------------------------------------------------------- /apps/client/src/help/v1110.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/v1110.html -------------------------------------------------------------------------------- /apps/client/src/help/v1120.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/v1120.html -------------------------------------------------------------------------------- /apps/client/src/help/v1140.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/v1140.html -------------------------------------------------------------------------------- /apps/client/src/help/v120.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/v120.html -------------------------------------------------------------------------------- /apps/client/src/help/v130.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/v130.html -------------------------------------------------------------------------------- /apps/client/src/help/v140.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/v140.html -------------------------------------------------------------------------------- /apps/client/src/help/v150.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/v150.html -------------------------------------------------------------------------------- /apps/client/src/help/v160.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/v160.html -------------------------------------------------------------------------------- /apps/client/src/help/v170.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/v170.html -------------------------------------------------------------------------------- /apps/client/src/help/v180.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/v180.html -------------------------------------------------------------------------------- /apps/client/src/help/v190.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/v190.html -------------------------------------------------------------------------------- /apps/client/src/help/v200.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/v200.html -------------------------------------------------------------------------------- /apps/client/src/help/v210.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/v210.html -------------------------------------------------------------------------------- /apps/client/src/help/v221.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/v221.html -------------------------------------------------------------------------------- /apps/client/src/help/v231.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/v231.html -------------------------------------------------------------------------------- /apps/client/src/help/v240.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/v240.html -------------------------------------------------------------------------------- /apps/client/src/help/v300-v310.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/v300-v310.html -------------------------------------------------------------------------------- /apps/client/src/help/v320.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/v320.html -------------------------------------------------------------------------------- /apps/client/src/help/vendors/bootstrap-3.4.1/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/vendors/bootstrap-3.4.1/css/bootstrap.css -------------------------------------------------------------------------------- /apps/client/src/help/vendors/bootstrap-3.4.1/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/vendors/bootstrap-3.4.1/js/bootstrap.min.js -------------------------------------------------------------------------------- /apps/client/src/help/vendors/headroom-0.11.0/headroom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/vendors/headroom-0.11.0/headroom.min.js -------------------------------------------------------------------------------- /apps/client/src/help/vendors/headroom-0.9.4/headroom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/vendors/headroom-0.9.4/headroom.min.js -------------------------------------------------------------------------------- /apps/client/src/help/vendors/helpndoc-5/icons/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/vendors/helpndoc-5/icons/0.png -------------------------------------------------------------------------------- /apps/client/src/help/vendors/helpndoc-5/icons/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/vendors/helpndoc-5/icons/1.png -------------------------------------------------------------------------------- /apps/client/src/help/vendors/helpndoc-5/icons/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/vendors/helpndoc-5/icons/10.png -------------------------------------------------------------------------------- /apps/client/src/help/vendors/helpndoc-5/icons/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/vendors/helpndoc-5/icons/11.png -------------------------------------------------------------------------------- /apps/client/src/help/vendors/helpndoc-5/icons/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/vendors/helpndoc-5/icons/12.png -------------------------------------------------------------------------------- /apps/client/src/help/vendors/helpndoc-5/icons/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/vendors/helpndoc-5/icons/13.png -------------------------------------------------------------------------------- /apps/client/src/help/vendors/helpndoc-5/icons/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/vendors/helpndoc-5/icons/14.png -------------------------------------------------------------------------------- /apps/client/src/help/vendors/helpndoc-5/icons/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/vendors/helpndoc-5/icons/15.png -------------------------------------------------------------------------------- /apps/client/src/help/vendors/helpndoc-5/icons/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/vendors/helpndoc-5/icons/16.png -------------------------------------------------------------------------------- /apps/client/src/help/vendors/helpndoc-5/icons/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/vendors/helpndoc-5/icons/17.png -------------------------------------------------------------------------------- /apps/client/src/help/vendors/helpndoc-5/icons/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/vendors/helpndoc-5/icons/18.png -------------------------------------------------------------------------------- /apps/client/src/help/vendors/helpndoc-5/icons/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/vendors/helpndoc-5/icons/19.png -------------------------------------------------------------------------------- /apps/client/src/help/vendors/helpndoc-5/icons/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/vendors/helpndoc-5/icons/2.png -------------------------------------------------------------------------------- /apps/client/src/help/vendors/helpndoc-5/icons/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/vendors/helpndoc-5/icons/20.png -------------------------------------------------------------------------------- /apps/client/src/help/vendors/helpndoc-5/icons/21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/vendors/helpndoc-5/icons/21.png -------------------------------------------------------------------------------- /apps/client/src/help/vendors/helpndoc-5/icons/22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/vendors/helpndoc-5/icons/22.png -------------------------------------------------------------------------------- /apps/client/src/help/vendors/helpndoc-5/icons/23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/vendors/helpndoc-5/icons/23.png -------------------------------------------------------------------------------- /apps/client/src/help/vendors/helpndoc-5/icons/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/vendors/helpndoc-5/icons/24.png -------------------------------------------------------------------------------- /apps/client/src/help/vendors/helpndoc-5/icons/25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/vendors/helpndoc-5/icons/25.png -------------------------------------------------------------------------------- /apps/client/src/help/vendors/helpndoc-5/icons/26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/vendors/helpndoc-5/icons/26.png -------------------------------------------------------------------------------- /apps/client/src/help/vendors/helpndoc-5/icons/27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/vendors/helpndoc-5/icons/27.png -------------------------------------------------------------------------------- /apps/client/src/help/vendors/helpndoc-5/icons/28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/vendors/helpndoc-5/icons/28.png -------------------------------------------------------------------------------- /apps/client/src/help/vendors/helpndoc-5/icons/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/vendors/helpndoc-5/icons/29.png -------------------------------------------------------------------------------- /apps/client/src/help/vendors/helpndoc-5/icons/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/vendors/helpndoc-5/icons/3.png -------------------------------------------------------------------------------- /apps/client/src/help/vendors/helpndoc-5/icons/30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/vendors/helpndoc-5/icons/30.png -------------------------------------------------------------------------------- /apps/client/src/help/vendors/helpndoc-5/icons/31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/vendors/helpndoc-5/icons/31.png -------------------------------------------------------------------------------- /apps/client/src/help/vendors/helpndoc-5/icons/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/vendors/helpndoc-5/icons/32.png -------------------------------------------------------------------------------- /apps/client/src/help/vendors/helpndoc-5/icons/33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/vendors/helpndoc-5/icons/33.png -------------------------------------------------------------------------------- /apps/client/src/help/vendors/helpndoc-5/icons/34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/vendors/helpndoc-5/icons/34.png -------------------------------------------------------------------------------- /apps/client/src/help/vendors/helpndoc-5/icons/35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/vendors/helpndoc-5/icons/35.png -------------------------------------------------------------------------------- /apps/client/src/help/vendors/helpndoc-5/icons/36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/vendors/helpndoc-5/icons/36.png -------------------------------------------------------------------------------- /apps/client/src/help/vendors/helpndoc-5/icons/37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/vendors/helpndoc-5/icons/37.png -------------------------------------------------------------------------------- /apps/client/src/help/vendors/helpndoc-5/icons/38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/vendors/helpndoc-5/icons/38.png -------------------------------------------------------------------------------- /apps/client/src/help/vendors/helpndoc-5/icons/39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/vendors/helpndoc-5/icons/39.png -------------------------------------------------------------------------------- /apps/client/src/help/vendors/helpndoc-5/icons/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/vendors/helpndoc-5/icons/4.png -------------------------------------------------------------------------------- /apps/client/src/help/vendors/helpndoc-5/icons/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/vendors/helpndoc-5/icons/40.png -------------------------------------------------------------------------------- /apps/client/src/help/vendors/helpndoc-5/icons/41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/vendors/helpndoc-5/icons/41.png -------------------------------------------------------------------------------- /apps/client/src/help/vendors/helpndoc-5/icons/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/vendors/helpndoc-5/icons/5.png -------------------------------------------------------------------------------- /apps/client/src/help/vendors/helpndoc-5/icons/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/vendors/helpndoc-5/icons/6.png -------------------------------------------------------------------------------- /apps/client/src/help/vendors/helpndoc-5/icons/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/vendors/helpndoc-5/icons/7.png -------------------------------------------------------------------------------- /apps/client/src/help/vendors/helpndoc-5/icons/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/vendors/helpndoc-5/icons/8.png -------------------------------------------------------------------------------- /apps/client/src/help/vendors/helpndoc-5/icons/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/vendors/helpndoc-5/icons/9.png -------------------------------------------------------------------------------- /apps/client/src/help/vendors/html5shiv-3.7.3/html5shiv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/vendors/html5shiv-3.7.3/html5shiv.min.js -------------------------------------------------------------------------------- /apps/client/src/help/vendors/interactjs-1.9.22/interact.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/vendors/interactjs-1.9.22/interact.min.js -------------------------------------------------------------------------------- /apps/client/src/help/vendors/jquery-3.4.1/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/vendors/jquery-3.4.1/jquery.min.js -------------------------------------------------------------------------------- /apps/client/src/help/vendors/jquery-3.5.1/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/vendors/jquery-3.5.1/jquery.min.js -------------------------------------------------------------------------------- /apps/client/src/help/vendors/jstree-3.3.10/jstree.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/vendors/jstree-3.3.10/jstree.min.js -------------------------------------------------------------------------------- /apps/client/src/help/vendors/jstree-3.3.7/jstree.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/vendors/jstree-3.3.7/jstree.min.js -------------------------------------------------------------------------------- /apps/client/src/help/vendors/markjs-8.11.1/jquery.mark.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/vendors/markjs-8.11.1/jquery.mark.min.js -------------------------------------------------------------------------------- /apps/client/src/help/vendors/respond-1.4.2/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/vendors/respond-1.4.2/respond.min.js -------------------------------------------------------------------------------- /apps/client/src/help/vendors/uri-1.19.1/uri.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/vendors/uri-1.19.1/uri.min.js -------------------------------------------------------------------------------- /apps/client/src/help/vendors/uri-1.19.11/uri.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/vendors/uri-1.19.11/uri.min.js -------------------------------------------------------------------------------- /apps/client/src/help/vendors/uri-1.19.2/uri.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/help/vendors/uri-1.19.2/uri.min.js -------------------------------------------------------------------------------- /apps/client/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/index.html -------------------------------------------------------------------------------- /apps/client/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/main.ts -------------------------------------------------------------------------------- /apps/client/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/polyfills.ts -------------------------------------------------------------------------------- /apps/client/src/silent-refresh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/silent-refresh.html -------------------------------------------------------------------------------- /apps/client/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/styles.css -------------------------------------------------------------------------------- /apps/client/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/src/test-setup.ts -------------------------------------------------------------------------------- /apps/client/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/tsconfig.app.json -------------------------------------------------------------------------------- /apps/client/tsconfig.editor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/tsconfig.editor.json -------------------------------------------------------------------------------- /apps/client/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/tsconfig.json -------------------------------------------------------------------------------- /apps/client/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/tsconfig.spec.json -------------------------------------------------------------------------------- /apps/client/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/client/tslint.json -------------------------------------------------------------------------------- /apps/server/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/jest.config.ts -------------------------------------------------------------------------------- /apps/server/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/project.json -------------------------------------------------------------------------------- /apps/server/src/app/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/server/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/app.module.ts -------------------------------------------------------------------------------- /apps/server/src/app/audit-event.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/audit-event.controller.ts -------------------------------------------------------------------------------- /apps/server/src/app/audit/audit-entity.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/audit/audit-entity.interceptor.ts -------------------------------------------------------------------------------- /apps/server/src/app/audit/audit-report-repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/audit/audit-report-repository.ts -------------------------------------------------------------------------------- /apps/server/src/app/audit/audit-report.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/audit/audit-report.ts -------------------------------------------------------------------------------- /apps/server/src/app/audit/audit.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/audit/audit.controller.spec.ts -------------------------------------------------------------------------------- /apps/server/src/app/audit/audit.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/audit/audit.controller.ts -------------------------------------------------------------------------------- /apps/server/src/app/audit/audit.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/audit/audit.decorator.ts -------------------------------------------------------------------------------- /apps/server/src/app/audit/audit.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/audit/audit.module.ts -------------------------------------------------------------------------------- /apps/server/src/app/audit/audit.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/audit/audit.schema.ts -------------------------------------------------------------------------------- /apps/server/src/app/audit/audit.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/audit/audit.service.spec.ts -------------------------------------------------------------------------------- /apps/server/src/app/audit/audit.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/audit/audit.service.ts -------------------------------------------------------------------------------- /apps/server/src/app/audit/reports/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/audit/reports/index.ts -------------------------------------------------------------------------------- /apps/server/src/app/audit/reports/user-summary-report.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/audit/reports/user-summary-report.ts -------------------------------------------------------------------------------- /apps/server/src/app/auth.strategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/auth.strategy.ts -------------------------------------------------------------------------------- /apps/server/src/app/auth/auth.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/auth/auth.controller.spec.ts -------------------------------------------------------------------------------- /apps/server/src/app/auth/auth.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/auth/auth.controller.ts -------------------------------------------------------------------------------- /apps/server/src/app/auth/auth.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/auth/auth.module.ts -------------------------------------------------------------------------------- /apps/server/src/app/auth/auth.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/auth/auth.service.spec.ts -------------------------------------------------------------------------------- /apps/server/src/app/auth/auth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/auth/auth.service.ts -------------------------------------------------------------------------------- /apps/server/src/app/base-fhir.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/base-fhir.controller.spec.ts -------------------------------------------------------------------------------- /apps/server/src/app/base-fhir.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/base-fhir.controller.ts -------------------------------------------------------------------------------- /apps/server/src/app/base.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/base.controller.ts -------------------------------------------------------------------------------- /apps/server/src/app/base/base-data.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/base/base-data.controller.ts -------------------------------------------------------------------------------- /apps/server/src/app/base/base-data.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/base/base-data.service.ts -------------------------------------------------------------------------------- /apps/server/src/app/base/base.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/base/base.controller.ts -------------------------------------------------------------------------------- /apps/server/src/app/base/base.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/base/base.entity.ts -------------------------------------------------------------------------------- /apps/server/src/app/base/interfaces/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/base/interfaces/index.ts -------------------------------------------------------------------------------- /apps/server/src/app/capability-statement.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/capability-statement.controller.ts -------------------------------------------------------------------------------- /apps/server/src/app/code-system.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/code-system.controller.ts -------------------------------------------------------------------------------- /apps/server/src/app/config.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/config.controller.ts -------------------------------------------------------------------------------- /apps/server/src/app/config.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/config.service.ts -------------------------------------------------------------------------------- /apps/server/src/app/export.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/export.controller.ts -------------------------------------------------------------------------------- /apps/server/src/app/export.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/export.service.ts -------------------------------------------------------------------------------- /apps/server/src/app/export/bundle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/export/bundle.ts -------------------------------------------------------------------------------- /apps/server/src/app/export/html.factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/export/html.factory.ts -------------------------------------------------------------------------------- /apps/server/src/app/export/html.models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/export/html.models.ts -------------------------------------------------------------------------------- /apps/server/src/app/export/html.r4.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/export/html.r4.ts -------------------------------------------------------------------------------- /apps/server/src/app/export/html.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/export/html.spec.ts -------------------------------------------------------------------------------- /apps/server/src/app/export/html.stu3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/export/html.stu3.ts -------------------------------------------------------------------------------- /apps/server/src/app/export/html.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/export/html.ts -------------------------------------------------------------------------------- /apps/server/src/app/export/msword.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/export/msword.ts -------------------------------------------------------------------------------- /apps/server/src/app/fhir-resources/fhir-resource.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/fhir-resources/fhir-resource.schema.ts -------------------------------------------------------------------------------- /apps/server/src/app/fhir-resources/fhir-resources.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/fhir-resources/fhir-resources.controller.ts -------------------------------------------------------------------------------- /apps/server/src/app/fhir-resources/fhir-resources.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/fhir-resources/fhir-resources.module.ts -------------------------------------------------------------------------------- /apps/server/src/app/fhir-resources/fhir-resources.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/fhir-resources/fhir-resources.service.ts -------------------------------------------------------------------------------- /apps/server/src/app/fhir.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/fhir.controller.spec.ts -------------------------------------------------------------------------------- /apps/server/src/app/fhir.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/fhir.controller.ts -------------------------------------------------------------------------------- /apps/server/src/app/fsh.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/fsh.controller.spec.ts -------------------------------------------------------------------------------- /apps/server/src/app/fsh.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/fsh.controller.ts -------------------------------------------------------------------------------- /apps/server/src/app/github.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/github.controller.ts -------------------------------------------------------------------------------- /apps/server/src/app/groups/goups.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/groups/goups.controller.spec.ts -------------------------------------------------------------------------------- /apps/server/src/app/groups/group.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/groups/group.schema.ts -------------------------------------------------------------------------------- /apps/server/src/app/groups/groups.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/groups/groups.controller.ts -------------------------------------------------------------------------------- /apps/server/src/app/groups/groups.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/groups/groups.module.ts -------------------------------------------------------------------------------- /apps/server/src/app/groups/groups.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/groups/groups.service.spec.ts -------------------------------------------------------------------------------- /apps/server/src/app/groups/groups.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/groups/groups.service.ts -------------------------------------------------------------------------------- /apps/server/src/app/helper.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/helper.spec.ts -------------------------------------------------------------------------------- /apps/server/src/app/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/helper.ts -------------------------------------------------------------------------------- /apps/server/src/app/history/history.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/history/history.controller.spec.ts -------------------------------------------------------------------------------- /apps/server/src/app/history/history.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/history/history.controller.ts -------------------------------------------------------------------------------- /apps/server/src/app/history/history.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/history/history.module.ts -------------------------------------------------------------------------------- /apps/server/src/app/history/history.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/history/history.schema.ts -------------------------------------------------------------------------------- /apps/server/src/app/history/history.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/history/history.service.spec.ts -------------------------------------------------------------------------------- /apps/server/src/app/history/history.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/history/history.service.ts -------------------------------------------------------------------------------- /apps/server/src/app/implementation-guide.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/implementation-guide.controller.ts -------------------------------------------------------------------------------- /apps/server/src/app/import.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/import.controller.ts -------------------------------------------------------------------------------- /apps/server/src/app/manage.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/manage.controller.ts -------------------------------------------------------------------------------- /apps/server/src/app/manage/manage.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/manage/manage.controller.spec.ts -------------------------------------------------------------------------------- /apps/server/src/app/manage/manage.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/manage/manage.controller.ts -------------------------------------------------------------------------------- /apps/server/src/app/manage/manage.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/manage/manage.module.ts -------------------------------------------------------------------------------- /apps/server/src/app/models/announcement-service-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/models/announcement-service-config.ts -------------------------------------------------------------------------------- /apps/server/src/app/models/auth-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/models/auth-config.ts -------------------------------------------------------------------------------- /apps/server/src/app/models/database-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/models/database-config.ts -------------------------------------------------------------------------------- /apps/server/src/app/models/export-formats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/models/export-formats.ts -------------------------------------------------------------------------------- /apps/server/src/app/models/export-options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/models/export-options.ts -------------------------------------------------------------------------------- /apps/server/src/app/models/fhir-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/models/fhir-config.ts -------------------------------------------------------------------------------- /apps/server/src/app/models/github-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/models/github-config.ts -------------------------------------------------------------------------------- /apps/server/src/app/models/publish-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/models/publish-config.ts -------------------------------------------------------------------------------- /apps/server/src/app/models/server-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/models/server-config.ts -------------------------------------------------------------------------------- /apps/server/src/app/models/socket-connection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/models/socket-connection.ts -------------------------------------------------------------------------------- /apps/server/src/app/models/tof-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/models/tof-request.ts -------------------------------------------------------------------------------- /apps/server/src/app/non-fhir-resources/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/non-fhir-resources/types/index.ts -------------------------------------------------------------------------------- /apps/server/src/app/operation-definition.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/operation-definition.controller.ts -------------------------------------------------------------------------------- /apps/server/src/app/practitioner.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/practitioner.controller.ts -------------------------------------------------------------------------------- /apps/server/src/app/projects/project.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/projects/project.schema.ts -------------------------------------------------------------------------------- /apps/server/src/app/projects/projects.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/projects/projects.controller.spec.ts -------------------------------------------------------------------------------- /apps/server/src/app/projects/projects.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/projects/projects.controller.ts -------------------------------------------------------------------------------- /apps/server/src/app/projects/projects.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/projects/projects.module.ts -------------------------------------------------------------------------------- /apps/server/src/app/projects/projects.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/projects/projects.service.spec.ts -------------------------------------------------------------------------------- /apps/server/src/app/projects/projects.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/projects/projects.service.ts -------------------------------------------------------------------------------- /apps/server/src/app/questionnaire.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/questionnaire.controller.ts -------------------------------------------------------------------------------- /apps/server/src/app/search-parameter.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/search-parameter.controller.ts -------------------------------------------------------------------------------- /apps/server/src/app/server.decorators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/server.decorators.ts -------------------------------------------------------------------------------- /apps/server/src/app/shared/database-config.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/shared/database-config.service.ts -------------------------------------------------------------------------------- /apps/server/src/app/shared/shared.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/shared/shared.module.ts -------------------------------------------------------------------------------- /apps/server/src/app/structure-definition.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/structure-definition.controller.ts -------------------------------------------------------------------------------- /apps/server/src/app/test.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/test.helper.ts -------------------------------------------------------------------------------- /apps/server/src/app/tof-logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/tof-logger.ts -------------------------------------------------------------------------------- /apps/server/src/app/users/user.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/users/user.schema.ts -------------------------------------------------------------------------------- /apps/server/src/app/users/users.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/users/users.controller.spec.ts -------------------------------------------------------------------------------- /apps/server/src/app/users/users.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/users/users.controller.ts -------------------------------------------------------------------------------- /apps/server/src/app/users/users.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/users/users.module.ts -------------------------------------------------------------------------------- /apps/server/src/app/users/users.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/users/users.service.spec.ts -------------------------------------------------------------------------------- /apps/server/src/app/users/users.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/users/users.service.ts -------------------------------------------------------------------------------- /apps/server/src/app/value-set.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/app/value-set.controller.ts -------------------------------------------------------------------------------- /apps/server/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/server/src/assets/github-callback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/assets/github-callback.html -------------------------------------------------------------------------------- /apps/server/src/assets/ig-export/_gencontinuous.bat: -------------------------------------------------------------------------------- 1 | @ECHO OFF 2 | CALL ./_genonce.bat -watch -------------------------------------------------------------------------------- /apps/server/src/assets/ig-export/_gencontinuous.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | ./_genonce.sh -watch 3 | -------------------------------------------------------------------------------- /apps/server/src/assets/ig-export/_genonce.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/assets/ig-export/_genonce.bat -------------------------------------------------------------------------------- /apps/server/src/assets/ig-export/_genonce.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/assets/ig-export/_genonce.sh -------------------------------------------------------------------------------- /apps/server/src/assets/ig-export/_updatePublisher.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/assets/ig-export/_updatePublisher.bat -------------------------------------------------------------------------------- /apps/server/src/assets/ig-export/_updatePublisher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/assets/ig-export/_updatePublisher.sh -------------------------------------------------------------------------------- /apps/server/src/assets/msword-styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/assets/msword-styles.xml -------------------------------------------------------------------------------- /apps/server/src/config/custom-environment-variables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/config/custom-environment-variables.json -------------------------------------------------------------------------------- /apps/server/src/config/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/config/default.json -------------------------------------------------------------------------------- /apps/server/src/config/migration-default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/config/migration-default.json -------------------------------------------------------------------------------- /apps/server/src/config/types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/config/types.json -------------------------------------------------------------------------------- /apps/server/src/db-migrations/migrate-mongo-config-cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/db-migrations/migrate-mongo-config-cli.js -------------------------------------------------------------------------------- /apps/server/src/db-migrations/migrate-mongo-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/db-migrations/migrate-mongo-config.ts -------------------------------------------------------------------------------- /apps/server/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /apps/server/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/environments/environment.ts -------------------------------------------------------------------------------- /apps/server/src/igs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/igs/index.html -------------------------------------------------------------------------------- /apps/server/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/main.ts -------------------------------------------------------------------------------- /apps/server/src/not-found-exception-filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/not-found-exception-filter.ts -------------------------------------------------------------------------------- /apps/server/src/not-found-exception.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/src/not-found-exception.ts -------------------------------------------------------------------------------- /apps/server/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/tsconfig.app.json -------------------------------------------------------------------------------- /apps/server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/tsconfig.json -------------------------------------------------------------------------------- /apps/server/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/tsconfig.spec.json -------------------------------------------------------------------------------- /apps/server/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/tslint.json -------------------------------------------------------------------------------- /apps/server/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/server/webpack.config.js -------------------------------------------------------------------------------- /apps/tools/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/tools/jest.config.ts -------------------------------------------------------------------------------- /apps/tools/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/tools/project.json -------------------------------------------------------------------------------- /apps/tools/src/app/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/tools/src/app/baseTools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/tools/src/app/baseTools.ts -------------------------------------------------------------------------------- /apps/tools/src/app/generate-typescript.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/tools/src/app/generate-typescript.ts -------------------------------------------------------------------------------- /apps/tools/src/app/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/tools/src/app/main.ts -------------------------------------------------------------------------------- /apps/tools/src/app/migrate-db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/tools/src/app/migrate-db.ts -------------------------------------------------------------------------------- /apps/tools/src/app/update-db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/tools/src/app/update-db.ts -------------------------------------------------------------------------------- /apps/tools/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/tools/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/tools/tsconfig.app.json -------------------------------------------------------------------------------- /apps/tools/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/tools/tsconfig.json -------------------------------------------------------------------------------- /apps/tools/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/tools/tsconfig.spec.json -------------------------------------------------------------------------------- /apps/tools/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/tools/tslint.json -------------------------------------------------------------------------------- /apps/tools/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/apps/tools/webpack.config.js -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /checkdep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/checkdep.js -------------------------------------------------------------------------------- /decorate-angular-cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/decorate-angular-cli.js -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/diagrams/class.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/docs/diagrams/class.vsdx -------------------------------------------------------------------------------- /docs/diagrams/class/components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/docs/diagrams/class/components.png -------------------------------------------------------------------------------- /docs/diagrams/sequence.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/docs/diagrams/sequence.vsdx -------------------------------------------------------------------------------- /docs/diagrams/sequence/Authentication.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/docs/diagrams/sequence/Authentication.png -------------------------------------------------------------------------------- /docs/diagrams/sequence/GitHub Auth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/docs/diagrams/sequence/GitHub Auth.png -------------------------------------------------------------------------------- /docs/diagrams/sequence/GitHub Import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/docs/diagrams/sequence/GitHub Import.png -------------------------------------------------------------------------------- /docs/mockups/Bulk Edit (Additional info).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/docs/mockups/Bulk Edit (Additional info).png -------------------------------------------------------------------------------- /docs/mockups/Bulk Edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/docs/mockups/Bulk Edit.png -------------------------------------------------------------------------------- /docs/mockups/Edit Implementation Guide (Resources).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/docs/mockups/Edit Implementation Guide (Resources).png -------------------------------------------------------------------------------- /docs/mockups/Export (GitHub).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/docs/mockups/Export (GitHub).png -------------------------------------------------------------------------------- /docs/mockups/Export (IG Publisher Package).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/docs/mockups/Export (IG Publisher Package).png -------------------------------------------------------------------------------- /docs/mockups/Export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/docs/mockups/Export.png -------------------------------------------------------------------------------- /docs/mockups/IG Context (Browse_Edit).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/docs/mockups/IG Context (Browse_Edit).png -------------------------------------------------------------------------------- /docs/mockups/IG Context (Main).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/docs/mockups/IG Context (Main).png -------------------------------------------------------------------------------- /docs/mockups/IG Context (Publish).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/docs/mockups/IG Context (Publish).png -------------------------------------------------------------------------------- /docs/mockups/Publish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/docs/mockups/Publish.png -------------------------------------------------------------------------------- /jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/jest.config.ts -------------------------------------------------------------------------------- /jest.preset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/jest.preset.js -------------------------------------------------------------------------------- /libs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/tof-lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/libs/tof-lib/README.md -------------------------------------------------------------------------------- /libs/tof-lib/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/libs/tof-lib/jest.config.ts -------------------------------------------------------------------------------- /libs/tof-lib/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/libs/tof-lib/project.json -------------------------------------------------------------------------------- /libs/tof-lib/src/assets/r4/codesystem-iso3166.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/libs/tof-lib/src/assets/r4/codesystem-iso3166.json -------------------------------------------------------------------------------- /libs/tof-lib/src/assets/r4/extensions/github-branch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/libs/tof-lib/src/assets/r4/extensions/github-branch.json -------------------------------------------------------------------------------- /libs/tof-lib/src/assets/r4/extensions/github-path.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/libs/tof-lib/src/assets/r4/extensions/github-path.json -------------------------------------------------------------------------------- /libs/tof-lib/src/assets/r4/profiles-resources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/libs/tof-lib/src/assets/r4/profiles-resources.json -------------------------------------------------------------------------------- /libs/tof-lib/src/assets/r4/profiles-types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/libs/tof-lib/src/assets/r4/profiles-types.json -------------------------------------------------------------------------------- /libs/tof-lib/src/assets/r4/valuesets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/libs/tof-lib/src/assets/r4/valuesets.json -------------------------------------------------------------------------------- /libs/tof-lib/src/assets/r5/codesystem-iso3166.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/libs/tof-lib/src/assets/r5/codesystem-iso3166.json -------------------------------------------------------------------------------- /libs/tof-lib/src/assets/r5/conceptmaps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/libs/tof-lib/src/assets/r5/conceptmaps.json -------------------------------------------------------------------------------- /libs/tof-lib/src/assets/r5/dataelements.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/libs/tof-lib/src/assets/r5/dataelements.json -------------------------------------------------------------------------------- /libs/tof-lib/src/assets/r5/extension-definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/libs/tof-lib/src/assets/r5/extension-definitions.json -------------------------------------------------------------------------------- /libs/tof-lib/src/assets/r5/profiles-others.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/libs/tof-lib/src/assets/r5/profiles-others.json -------------------------------------------------------------------------------- /libs/tof-lib/src/assets/r5/profiles-resources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/libs/tof-lib/src/assets/r5/profiles-resources.json -------------------------------------------------------------------------------- /libs/tof-lib/src/assets/r5/profiles-types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/libs/tof-lib/src/assets/r5/profiles-types.json -------------------------------------------------------------------------------- /libs/tof-lib/src/assets/r5/search-parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/libs/tof-lib/src/assets/r5/search-parameters.json -------------------------------------------------------------------------------- /libs/tof-lib/src/assets/r5/valuesets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/libs/tof-lib/src/assets/r5/valuesets.json -------------------------------------------------------------------------------- /libs/tof-lib/src/assets/stu3/codesystem-iso3166.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/libs/tof-lib/src/assets/stu3/codesystem-iso3166.json -------------------------------------------------------------------------------- /libs/tof-lib/src/assets/stu3/extensions/github-branch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/libs/tof-lib/src/assets/stu3/extensions/github-branch.json -------------------------------------------------------------------------------- /libs/tof-lib/src/assets/stu3/extensions/github-path.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/libs/tof-lib/src/assets/stu3/extensions/github-path.json -------------------------------------------------------------------------------- /libs/tof-lib/src/assets/stu3/profiles-resources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/libs/tof-lib/src/assets/stu3/profiles-resources.json -------------------------------------------------------------------------------- /libs/tof-lib/src/assets/stu3/profiles-types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/libs/tof-lib/src/assets/stu3/profiles-types.json -------------------------------------------------------------------------------- /libs/tof-lib/src/assets/stu3/valuesets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/libs/tof-lib/src/assets/stu3/valuesets.json -------------------------------------------------------------------------------- /libs/tof-lib/src/index.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/tof-lib/src/lib/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/tof-lib/src/lib/active-user-model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/libs/tof-lib/src/lib/active-user-model.ts -------------------------------------------------------------------------------- /libs/tof-lib/src/lib/base-definition-response-model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/libs/tof-lib/src/lib/base-definition-response-model.ts -------------------------------------------------------------------------------- /libs/tof-lib/src/lib/bulk-update-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/libs/tof-lib/src/lib/bulk-update-request.ts -------------------------------------------------------------------------------- /libs/tof-lib/src/lib/config-fhir-server-model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/libs/tof-lib/src/lib/config-fhir-server-model.ts -------------------------------------------------------------------------------- /libs/tof-lib/src/lib/config-model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/libs/tof-lib/src/lib/config-model.ts -------------------------------------------------------------------------------- /libs/tof-lib/src/lib/constraint-manager.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/libs/tof-lib/src/lib/constraint-manager.spec.ts -------------------------------------------------------------------------------- /libs/tof-lib/src/lib/constraint-manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/libs/tof-lib/src/lib/constraint-manager.ts -------------------------------------------------------------------------------- /libs/tof-lib/src/lib/date-extensions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/libs/tof-lib/src/lib/date-extensions.ts -------------------------------------------------------------------------------- /libs/tof-lib/src/lib/element-tree-model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/libs/tof-lib/src/lib/element-tree-model.ts -------------------------------------------------------------------------------- /libs/tof-lib/src/lib/fhirHelper.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/libs/tof-lib/src/lib/fhirHelper.spec.ts -------------------------------------------------------------------------------- /libs/tof-lib/src/lib/fhirHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/libs/tof-lib/src/lib/fhirHelper.ts -------------------------------------------------------------------------------- /libs/tof-lib/src/lib/fhirInterfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/libs/tof-lib/src/lib/fhirInterfaces.ts -------------------------------------------------------------------------------- /libs/tof-lib/src/lib/fsh.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/libs/tof-lib/src/lib/fsh.ts -------------------------------------------------------------------------------- /libs/tof-lib/src/lib/get-users-model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/libs/tof-lib/src/lib/get-users-model.ts -------------------------------------------------------------------------------- /libs/tof-lib/src/lib/globals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/libs/tof-lib/src/lib/globals.ts -------------------------------------------------------------------------------- /libs/tof-lib/src/lib/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/libs/tof-lib/src/lib/helper.ts -------------------------------------------------------------------------------- /libs/tof-lib/src/lib/ig-example-model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/libs/tof-lib/src/lib/ig-example-model.ts -------------------------------------------------------------------------------- /libs/tof-lib/src/lib/ig-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/libs/tof-lib/src/lib/ig-helper.ts -------------------------------------------------------------------------------- /libs/tof-lib/src/lib/ig-page-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/libs/tof-lib/src/lib/ig-page-helper.ts -------------------------------------------------------------------------------- /libs/tof-lib/src/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/libs/tof-lib/src/lib/index.ts -------------------------------------------------------------------------------- /libs/tof-lib/src/lib/logical-type-definition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/libs/tof-lib/src/lib/logical-type-definition.ts -------------------------------------------------------------------------------- /libs/tof-lib/src/lib/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/libs/tof-lib/src/lib/models/index.ts -------------------------------------------------------------------------------- /libs/tof-lib/src/lib/models/non-fhir-resource-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/libs/tof-lib/src/lib/models/non-fhir-resource-type.ts -------------------------------------------------------------------------------- /libs/tof-lib/src/lib/package-list-model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/libs/tof-lib/src/lib/package-list-model.ts -------------------------------------------------------------------------------- /libs/tof-lib/src/lib/paginate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/libs/tof-lib/src/lib/paginate.ts -------------------------------------------------------------------------------- /libs/tof-lib/src/lib/publishing-request-model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/libs/tof-lib/src/lib/publishing-request-model.ts -------------------------------------------------------------------------------- /libs/tof-lib/src/lib/queue-info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/libs/tof-lib/src/lib/queue-info.ts -------------------------------------------------------------------------------- /libs/tof-lib/src/lib/r4/fhir.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/libs/tof-lib/src/lib/r4/fhir.ts -------------------------------------------------------------------------------- /libs/tof-lib/src/lib/r4/index.ts: -------------------------------------------------------------------------------- 1 | export * from './fhir'; -------------------------------------------------------------------------------- /libs/tof-lib/src/lib/r5/fhir.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/libs/tof-lib/src/lib/r5/fhir.ts -------------------------------------------------------------------------------- /libs/tof-lib/src/lib/r5/index.ts: -------------------------------------------------------------------------------- 1 | export * from './fhir'; -------------------------------------------------------------------------------- /libs/tof-lib/src/lib/resource-security-model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/libs/tof-lib/src/lib/resource-security-model.ts -------------------------------------------------------------------------------- /libs/tof-lib/src/lib/searchIGResponse-model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/libs/tof-lib/src/lib/searchIGResponse-model.ts -------------------------------------------------------------------------------- /libs/tof-lib/src/lib/server-validation-result.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/libs/tof-lib/src/lib/server-validation-result.ts -------------------------------------------------------------------------------- /libs/tof-lib/src/lib/stu3/expandOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/libs/tof-lib/src/lib/stu3/expandOptions.ts -------------------------------------------------------------------------------- /libs/tof-lib/src/lib/stu3/fhir.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/libs/tof-lib/src/lib/stu3/fhir.ts -------------------------------------------------------------------------------- /libs/tof-lib/src/lib/stu3/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/libs/tof-lib/src/lib/stu3/index.ts -------------------------------------------------------------------------------- /libs/tof-lib/src/lib/tof-user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/libs/tof-lib/src/lib/tof-user.ts -------------------------------------------------------------------------------- /libs/tof-lib/src/lib/type-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/libs/tof-lib/src/lib/type-config.ts -------------------------------------------------------------------------------- /libs/tof-lib/src/lib/user-model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/libs/tof-lib/src/lib/user-model.ts -------------------------------------------------------------------------------- /libs/tof-lib/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/libs/tof-lib/tsconfig.json -------------------------------------------------------------------------------- /libs/tof-lib/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/libs/tof-lib/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/tof-lib/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/libs/tof-lib/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/tof-lib/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/libs/tof-lib/tslint.json -------------------------------------------------------------------------------- /nx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/nx.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/package.json -------------------------------------------------------------------------------- /proxy.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/proxy.conf.json -------------------------------------------------------------------------------- /swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/swagger.yaml -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/test/README.md -------------------------------------------------------------------------------- /test/data/ccd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/test/data/ccd.json -------------------------------------------------------------------------------- /test/data/composition-clinicaldocument-dataEnterer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/test/data/composition-clinicaldocument-dataEnterer.json -------------------------------------------------------------------------------- /test/data/composition-jurisdiction-fetal-death-report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/test/data/composition-jurisdiction-fetal-death-report.json -------------------------------------------------------------------------------- /test/data/dental-ccd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/test/data/dental-ccd.json -------------------------------------------------------------------------------- /test/data/dentalReferral.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/test/data/dentalReferral.json -------------------------------------------------------------------------------- /test/data/observationHowDeathInjuryOccured.profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/test/data/observationHowDeathInjuryOccured.profile.json -------------------------------------------------------------------------------- /test/data/referralNote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/test/data/referralNote.json -------------------------------------------------------------------------------- /test/data/resprate.profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/test/data/resprate.profile.json -------------------------------------------------------------------------------- /test/data/resprate2.profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/test/data/resprate2.profile.json -------------------------------------------------------------------------------- /test/data/shareableplandefinition.profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/test/data/shareableplandefinition.profile.json -------------------------------------------------------------------------------- /test/tof.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/test/tof.xml -------------------------------------------------------------------------------- /tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/tsconfig.base.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./tsconfig.base.json" 3 | } -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanagroup/trifolia-on-fhir/HEAD/tslint.json --------------------------------------------------------------------------------