├── .gitattributes ├── .gitignore ├── .tool-versions ├── CODE-OF-CONDUCT.md ├── CONTRIBUTING.md ├── DEPENDENCY-NOTES.md ├── Dockerfile ├── LICENSE ├── README.md ├── app.js ├── bin └── www ├── client.js ├── config ├── hooks │ ├── cond-med-count-r4.json │ ├── statin-use.json │ └── statin-use.json.alternate └── libraries │ ├── cond-med-count-r4 │ ├── Condition_and_Medication_Count_FHIRv401.cql │ ├── Condition_and_Medication_Count_FHIRv401.json │ ├── FHIRHelpers.cql │ └── FHIRHelpers.json │ └── statin-use │ ├── CDSConnectCommonsForFHIRv401.cql │ ├── CDSConnectCommonsForFHIRv401.json │ ├── CDSConnectConversions.cql │ ├── CDSConnectConversions.json │ ├── FHIRHelpers.cql │ ├── FHIRHelpers.json │ ├── USPSTFStatinUseForPrimaryPreventionOfCVDInAdultsFHIRv401.cql │ ├── USPSTFStatinUseForPrimaryPreventionOfCVDInAdultsFHIRv401.json │ ├── USPSTFStatinUseForPrimaryPreventionOfCVDInAdultsSharedLogicFHIRv401.cql │ └── USPSTFStatinUseForPrimaryPreventionOfCVDInAdultsSharedLogicFHIRv401.json ├── cql-es.config.js ├── docs └── uspstf_guidelines │ ├── USPSTF Statin Use CQL Data Elements.xlsx │ ├── USPSTF Statin Use FHIR Templates.docx │ ├── uspstf_statin_use.md │ ├── uspstf_statin_use_exec.md │ └── uspstf_statin_use_hooks.md ├── eslint.config.js ├── jsconfig.json ├── lib ├── card-logger.js ├── code-service-loader.js ├── hooks-loader.js ├── libraries-loader.js └── uuid.js ├── npm-shrinkwrap.json ├── package.json ├── public └── stylesheets │ └── style.css ├── routes ├── api │ └── library.js ├── cds-services.js └── index.js ├── test ├── examples │ ├── exec │ │ └── R4 │ │ │ ├── Adolfo777_Braun514.json │ │ │ ├── Adrian111_Wunsch504.json │ │ │ ├── Cher186_Crooks415.json │ │ │ ├── Debora709_Mayer370.json │ │ │ └── unhealthy_patient.json │ └── hooks │ │ └── R4 │ │ ├── Adolfo777_Braun514.json │ │ ├── Adrian111_Wunsch504.json │ │ ├── Cher186_Crooks415.json │ │ ├── Debora709_Mayer370.json │ │ ├── feedback.json │ │ └── unhealthy_patient.json ├── exec-api-test.js ├── fixtures │ ├── code-service │ │ └── valueset-db.json │ ├── cql │ │ ├── DSTU2 │ │ │ ├── FHIRHelpers.cql │ │ │ ├── FHIRHelpers.json │ │ │ ├── LazyChecker.cql │ │ │ └── LazyChecker.json │ │ ├── R4 │ │ │ ├── FHIRHelpers.cql │ │ │ ├── FHIRHelpers.json │ │ │ ├── LazyChecker.cql │ │ │ └── LazyChecker.json │ │ └── STU3 │ │ │ ├── FHIRHelpers.cql │ │ │ ├── FHIRHelpers.json │ │ │ ├── LazyChecker.cql │ │ │ └── LazyChecker.json │ ├── exec-patients │ │ ├── DSTU2 │ │ │ ├── lazy_person_invocation.json │ │ │ ├── lazy_person_mean_invocation.json │ │ │ └── lazy_person_return_expressions_invocation.json │ │ ├── R4 │ │ │ ├── lazy_person_invocation.json │ │ │ ├── lazy_person_mean_invocation.json │ │ │ └── lazy_person_return_expressions_invocation.json │ │ └── STU3 │ │ │ ├── lazy_person_invocation.json │ │ │ ├── lazy_person_mean_invocation.json │ │ │ └── lazy_person_return_expressions_invocation.json │ ├── hooks-feedback │ │ └── feedbackFor2.json │ ├── hooks-patients │ │ ├── DSTU2 │ │ │ ├── active_person_invocation.json │ │ │ ├── lazy_person_invocation.json │ │ │ ├── missing_prefetch_keys_invocation.json │ │ │ └── null_prefetch_values_invocation.json │ │ ├── R4 │ │ │ ├── active_person_invocation.json │ │ │ ├── lazy_person_invocation.json │ │ │ ├── missing_prefetch_keys_invocation.json │ │ │ └── null_prefetch_values_invocation.json │ │ └── STU3 │ │ │ ├── active_person_invocation.json │ │ │ ├── lazy_person_invocation.json │ │ │ ├── missing_prefetch_keys_invocation.json │ │ │ └── null_prefetch_values_invocation.json │ ├── hooks-prefetch-config │ │ ├── lazy-checker-add-pf.json │ │ ├── lazy-checker-invalid-pf.json │ │ ├── lazy-checker-no-pf-config.json │ │ ├── lazy-checker-override-pf.json │ │ ├── lazy-checker-remove-pf-empty.json │ │ └── lazy-checker-remove-pf-null.json │ ├── hooks │ │ └── lazy-checker.json │ ├── negative-test-hooks │ │ ├── invalid-selectionBehavior │ │ │ └── invalid-selectionBehavior.json │ │ ├── missing-cql-library │ │ │ └── missing-cql-library.json │ │ ├── missing-required-fields │ │ │ └── missing-required-fields.json │ │ ├── missing-selectionBehavior │ │ │ └── missing-selectionBehavior.json │ │ └── unsupported-cql-dataType │ │ │ └── unsupported-cql-dataType.json │ └── unsupported-cql │ │ ├── FHIRHelpers.cql │ │ ├── FHIRHelpers.json │ │ ├── UnsupportedResource.cql │ │ └── UnsupportedResource.json ├── hooks-api-test.js ├── hooks-loader-test.js └── libraries-loader-test.js └── views ├── error.pug ├── index.pug └── layout.pug /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/.gitignore -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/.tool-versions -------------------------------------------------------------------------------- /CODE-OF-CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/CODE-OF-CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DEPENDENCY-NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/DEPENDENCY-NOTES.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/README.md -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/app.js -------------------------------------------------------------------------------- /bin/www: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/bin/www -------------------------------------------------------------------------------- /client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/client.js -------------------------------------------------------------------------------- /config/hooks/cond-med-count-r4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/config/hooks/cond-med-count-r4.json -------------------------------------------------------------------------------- /config/hooks/statin-use.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/config/hooks/statin-use.json -------------------------------------------------------------------------------- /config/hooks/statin-use.json.alternate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/config/hooks/statin-use.json.alternate -------------------------------------------------------------------------------- /config/libraries/cond-med-count-r4/Condition_and_Medication_Count_FHIRv401.cql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/config/libraries/cond-med-count-r4/Condition_and_Medication_Count_FHIRv401.cql -------------------------------------------------------------------------------- /config/libraries/cond-med-count-r4/Condition_and_Medication_Count_FHIRv401.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/config/libraries/cond-med-count-r4/Condition_and_Medication_Count_FHIRv401.json -------------------------------------------------------------------------------- /config/libraries/cond-med-count-r4/FHIRHelpers.cql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/config/libraries/cond-med-count-r4/FHIRHelpers.cql -------------------------------------------------------------------------------- /config/libraries/cond-med-count-r4/FHIRHelpers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/config/libraries/cond-med-count-r4/FHIRHelpers.json -------------------------------------------------------------------------------- /config/libraries/statin-use/CDSConnectCommonsForFHIRv401.cql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/config/libraries/statin-use/CDSConnectCommonsForFHIRv401.cql -------------------------------------------------------------------------------- /config/libraries/statin-use/CDSConnectCommonsForFHIRv401.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/config/libraries/statin-use/CDSConnectCommonsForFHIRv401.json -------------------------------------------------------------------------------- /config/libraries/statin-use/CDSConnectConversions.cql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/config/libraries/statin-use/CDSConnectConversions.cql -------------------------------------------------------------------------------- /config/libraries/statin-use/CDSConnectConversions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/config/libraries/statin-use/CDSConnectConversions.json -------------------------------------------------------------------------------- /config/libraries/statin-use/FHIRHelpers.cql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/config/libraries/statin-use/FHIRHelpers.cql -------------------------------------------------------------------------------- /config/libraries/statin-use/FHIRHelpers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/config/libraries/statin-use/FHIRHelpers.json -------------------------------------------------------------------------------- /config/libraries/statin-use/USPSTFStatinUseForPrimaryPreventionOfCVDInAdultsFHIRv401.cql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/config/libraries/statin-use/USPSTFStatinUseForPrimaryPreventionOfCVDInAdultsFHIRv401.cql -------------------------------------------------------------------------------- /config/libraries/statin-use/USPSTFStatinUseForPrimaryPreventionOfCVDInAdultsFHIRv401.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/config/libraries/statin-use/USPSTFStatinUseForPrimaryPreventionOfCVDInAdultsFHIRv401.json -------------------------------------------------------------------------------- /config/libraries/statin-use/USPSTFStatinUseForPrimaryPreventionOfCVDInAdultsSharedLogicFHIRv401.cql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/config/libraries/statin-use/USPSTFStatinUseForPrimaryPreventionOfCVDInAdultsSharedLogicFHIRv401.cql -------------------------------------------------------------------------------- /config/libraries/statin-use/USPSTFStatinUseForPrimaryPreventionOfCVDInAdultsSharedLogicFHIRv401.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/config/libraries/statin-use/USPSTFStatinUseForPrimaryPreventionOfCVDInAdultsSharedLogicFHIRv401.json -------------------------------------------------------------------------------- /cql-es.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/cql-es.config.js -------------------------------------------------------------------------------- /docs/uspstf_guidelines/USPSTF Statin Use CQL Data Elements.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/docs/uspstf_guidelines/USPSTF Statin Use CQL Data Elements.xlsx -------------------------------------------------------------------------------- /docs/uspstf_guidelines/USPSTF Statin Use FHIR Templates.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/docs/uspstf_guidelines/USPSTF Statin Use FHIR Templates.docx -------------------------------------------------------------------------------- /docs/uspstf_guidelines/uspstf_statin_use.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/docs/uspstf_guidelines/uspstf_statin_use.md -------------------------------------------------------------------------------- /docs/uspstf_guidelines/uspstf_statin_use_exec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/docs/uspstf_guidelines/uspstf_statin_use_exec.md -------------------------------------------------------------------------------- /docs/uspstf_guidelines/uspstf_statin_use_hooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/docs/uspstf_guidelines/uspstf_statin_use_hooks.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/eslint.config.js -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/jsconfig.json -------------------------------------------------------------------------------- /lib/card-logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/lib/card-logger.js -------------------------------------------------------------------------------- /lib/code-service-loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/lib/code-service-loader.js -------------------------------------------------------------------------------- /lib/hooks-loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/lib/hooks-loader.js -------------------------------------------------------------------------------- /lib/libraries-loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/lib/libraries-loader.js -------------------------------------------------------------------------------- /lib/uuid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/lib/uuid.js -------------------------------------------------------------------------------- /npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/npm-shrinkwrap.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/package.json -------------------------------------------------------------------------------- /public/stylesheets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/public/stylesheets/style.css -------------------------------------------------------------------------------- /routes/api/library.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/routes/api/library.js -------------------------------------------------------------------------------- /routes/cds-services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/routes/cds-services.js -------------------------------------------------------------------------------- /routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/routes/index.js -------------------------------------------------------------------------------- /test/examples/exec/R4/Adolfo777_Braun514.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/test/examples/exec/R4/Adolfo777_Braun514.json -------------------------------------------------------------------------------- /test/examples/exec/R4/Adrian111_Wunsch504.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/test/examples/exec/R4/Adrian111_Wunsch504.json -------------------------------------------------------------------------------- /test/examples/exec/R4/Cher186_Crooks415.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/test/examples/exec/R4/Cher186_Crooks415.json -------------------------------------------------------------------------------- /test/examples/exec/R4/Debora709_Mayer370.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/test/examples/exec/R4/Debora709_Mayer370.json -------------------------------------------------------------------------------- /test/examples/exec/R4/unhealthy_patient.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/test/examples/exec/R4/unhealthy_patient.json -------------------------------------------------------------------------------- /test/examples/hooks/R4/Adolfo777_Braun514.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/test/examples/hooks/R4/Adolfo777_Braun514.json -------------------------------------------------------------------------------- /test/examples/hooks/R4/Adrian111_Wunsch504.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/test/examples/hooks/R4/Adrian111_Wunsch504.json -------------------------------------------------------------------------------- /test/examples/hooks/R4/Cher186_Crooks415.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/test/examples/hooks/R4/Cher186_Crooks415.json -------------------------------------------------------------------------------- /test/examples/hooks/R4/Debora709_Mayer370.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/test/examples/hooks/R4/Debora709_Mayer370.json -------------------------------------------------------------------------------- /test/examples/hooks/R4/feedback.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/test/examples/hooks/R4/feedback.json -------------------------------------------------------------------------------- /test/examples/hooks/R4/unhealthy_patient.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/test/examples/hooks/R4/unhealthy_patient.json -------------------------------------------------------------------------------- /test/exec-api-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/test/exec-api-test.js -------------------------------------------------------------------------------- /test/fixtures/code-service/valueset-db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/test/fixtures/code-service/valueset-db.json -------------------------------------------------------------------------------- /test/fixtures/cql/DSTU2/FHIRHelpers.cql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/test/fixtures/cql/DSTU2/FHIRHelpers.cql -------------------------------------------------------------------------------- /test/fixtures/cql/DSTU2/FHIRHelpers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/test/fixtures/cql/DSTU2/FHIRHelpers.json -------------------------------------------------------------------------------- /test/fixtures/cql/DSTU2/LazyChecker.cql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/test/fixtures/cql/DSTU2/LazyChecker.cql -------------------------------------------------------------------------------- /test/fixtures/cql/DSTU2/LazyChecker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/test/fixtures/cql/DSTU2/LazyChecker.json -------------------------------------------------------------------------------- /test/fixtures/cql/R4/FHIRHelpers.cql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/test/fixtures/cql/R4/FHIRHelpers.cql -------------------------------------------------------------------------------- /test/fixtures/cql/R4/FHIRHelpers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/test/fixtures/cql/R4/FHIRHelpers.json -------------------------------------------------------------------------------- /test/fixtures/cql/R4/LazyChecker.cql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/test/fixtures/cql/R4/LazyChecker.cql -------------------------------------------------------------------------------- /test/fixtures/cql/R4/LazyChecker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/test/fixtures/cql/R4/LazyChecker.json -------------------------------------------------------------------------------- /test/fixtures/cql/STU3/FHIRHelpers.cql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/test/fixtures/cql/STU3/FHIRHelpers.cql -------------------------------------------------------------------------------- /test/fixtures/cql/STU3/FHIRHelpers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/test/fixtures/cql/STU3/FHIRHelpers.json -------------------------------------------------------------------------------- /test/fixtures/cql/STU3/LazyChecker.cql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/test/fixtures/cql/STU3/LazyChecker.cql -------------------------------------------------------------------------------- /test/fixtures/cql/STU3/LazyChecker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/test/fixtures/cql/STU3/LazyChecker.json -------------------------------------------------------------------------------- /test/fixtures/exec-patients/DSTU2/lazy_person_invocation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/test/fixtures/exec-patients/DSTU2/lazy_person_invocation.json -------------------------------------------------------------------------------- /test/fixtures/exec-patients/DSTU2/lazy_person_mean_invocation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/test/fixtures/exec-patients/DSTU2/lazy_person_mean_invocation.json -------------------------------------------------------------------------------- /test/fixtures/exec-patients/DSTU2/lazy_person_return_expressions_invocation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/test/fixtures/exec-patients/DSTU2/lazy_person_return_expressions_invocation.json -------------------------------------------------------------------------------- /test/fixtures/exec-patients/R4/lazy_person_invocation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/test/fixtures/exec-patients/R4/lazy_person_invocation.json -------------------------------------------------------------------------------- /test/fixtures/exec-patients/R4/lazy_person_mean_invocation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/test/fixtures/exec-patients/R4/lazy_person_mean_invocation.json -------------------------------------------------------------------------------- /test/fixtures/exec-patients/R4/lazy_person_return_expressions_invocation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/test/fixtures/exec-patients/R4/lazy_person_return_expressions_invocation.json -------------------------------------------------------------------------------- /test/fixtures/exec-patients/STU3/lazy_person_invocation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/test/fixtures/exec-patients/STU3/lazy_person_invocation.json -------------------------------------------------------------------------------- /test/fixtures/exec-patients/STU3/lazy_person_mean_invocation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/test/fixtures/exec-patients/STU3/lazy_person_mean_invocation.json -------------------------------------------------------------------------------- /test/fixtures/exec-patients/STU3/lazy_person_return_expressions_invocation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/test/fixtures/exec-patients/STU3/lazy_person_return_expressions_invocation.json -------------------------------------------------------------------------------- /test/fixtures/hooks-feedback/feedbackFor2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/test/fixtures/hooks-feedback/feedbackFor2.json -------------------------------------------------------------------------------- /test/fixtures/hooks-patients/DSTU2/active_person_invocation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/test/fixtures/hooks-patients/DSTU2/active_person_invocation.json -------------------------------------------------------------------------------- /test/fixtures/hooks-patients/DSTU2/lazy_person_invocation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/test/fixtures/hooks-patients/DSTU2/lazy_person_invocation.json -------------------------------------------------------------------------------- /test/fixtures/hooks-patients/DSTU2/missing_prefetch_keys_invocation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/test/fixtures/hooks-patients/DSTU2/missing_prefetch_keys_invocation.json -------------------------------------------------------------------------------- /test/fixtures/hooks-patients/DSTU2/null_prefetch_values_invocation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/test/fixtures/hooks-patients/DSTU2/null_prefetch_values_invocation.json -------------------------------------------------------------------------------- /test/fixtures/hooks-patients/R4/active_person_invocation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/test/fixtures/hooks-patients/R4/active_person_invocation.json -------------------------------------------------------------------------------- /test/fixtures/hooks-patients/R4/lazy_person_invocation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/test/fixtures/hooks-patients/R4/lazy_person_invocation.json -------------------------------------------------------------------------------- /test/fixtures/hooks-patients/R4/missing_prefetch_keys_invocation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/test/fixtures/hooks-patients/R4/missing_prefetch_keys_invocation.json -------------------------------------------------------------------------------- /test/fixtures/hooks-patients/R4/null_prefetch_values_invocation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/test/fixtures/hooks-patients/R4/null_prefetch_values_invocation.json -------------------------------------------------------------------------------- /test/fixtures/hooks-patients/STU3/active_person_invocation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/test/fixtures/hooks-patients/STU3/active_person_invocation.json -------------------------------------------------------------------------------- /test/fixtures/hooks-patients/STU3/lazy_person_invocation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/test/fixtures/hooks-patients/STU3/lazy_person_invocation.json -------------------------------------------------------------------------------- /test/fixtures/hooks-patients/STU3/missing_prefetch_keys_invocation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/test/fixtures/hooks-patients/STU3/missing_prefetch_keys_invocation.json -------------------------------------------------------------------------------- /test/fixtures/hooks-patients/STU3/null_prefetch_values_invocation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/test/fixtures/hooks-patients/STU3/null_prefetch_values_invocation.json -------------------------------------------------------------------------------- /test/fixtures/hooks-prefetch-config/lazy-checker-add-pf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/test/fixtures/hooks-prefetch-config/lazy-checker-add-pf.json -------------------------------------------------------------------------------- /test/fixtures/hooks-prefetch-config/lazy-checker-invalid-pf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/test/fixtures/hooks-prefetch-config/lazy-checker-invalid-pf.json -------------------------------------------------------------------------------- /test/fixtures/hooks-prefetch-config/lazy-checker-no-pf-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/test/fixtures/hooks-prefetch-config/lazy-checker-no-pf-config.json -------------------------------------------------------------------------------- /test/fixtures/hooks-prefetch-config/lazy-checker-override-pf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/test/fixtures/hooks-prefetch-config/lazy-checker-override-pf.json -------------------------------------------------------------------------------- /test/fixtures/hooks-prefetch-config/lazy-checker-remove-pf-empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/test/fixtures/hooks-prefetch-config/lazy-checker-remove-pf-empty.json -------------------------------------------------------------------------------- /test/fixtures/hooks-prefetch-config/lazy-checker-remove-pf-null.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/test/fixtures/hooks-prefetch-config/lazy-checker-remove-pf-null.json -------------------------------------------------------------------------------- /test/fixtures/hooks/lazy-checker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/test/fixtures/hooks/lazy-checker.json -------------------------------------------------------------------------------- /test/fixtures/negative-test-hooks/invalid-selectionBehavior/invalid-selectionBehavior.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/test/fixtures/negative-test-hooks/invalid-selectionBehavior/invalid-selectionBehavior.json -------------------------------------------------------------------------------- /test/fixtures/negative-test-hooks/missing-cql-library/missing-cql-library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/test/fixtures/negative-test-hooks/missing-cql-library/missing-cql-library.json -------------------------------------------------------------------------------- /test/fixtures/negative-test-hooks/missing-required-fields/missing-required-fields.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/test/fixtures/negative-test-hooks/missing-required-fields/missing-required-fields.json -------------------------------------------------------------------------------- /test/fixtures/negative-test-hooks/missing-selectionBehavior/missing-selectionBehavior.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/test/fixtures/negative-test-hooks/missing-selectionBehavior/missing-selectionBehavior.json -------------------------------------------------------------------------------- /test/fixtures/negative-test-hooks/unsupported-cql-dataType/unsupported-cql-dataType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/test/fixtures/negative-test-hooks/unsupported-cql-dataType/unsupported-cql-dataType.json -------------------------------------------------------------------------------- /test/fixtures/unsupported-cql/FHIRHelpers.cql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/test/fixtures/unsupported-cql/FHIRHelpers.cql -------------------------------------------------------------------------------- /test/fixtures/unsupported-cql/FHIRHelpers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/test/fixtures/unsupported-cql/FHIRHelpers.json -------------------------------------------------------------------------------- /test/fixtures/unsupported-cql/UnsupportedResource.cql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/test/fixtures/unsupported-cql/UnsupportedResource.cql -------------------------------------------------------------------------------- /test/fixtures/unsupported-cql/UnsupportedResource.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/test/fixtures/unsupported-cql/UnsupportedResource.json -------------------------------------------------------------------------------- /test/hooks-api-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/test/hooks-api-test.js -------------------------------------------------------------------------------- /test/hooks-loader-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/test/hooks-loader-test.js -------------------------------------------------------------------------------- /test/libraries-loader-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/test/libraries-loader-test.js -------------------------------------------------------------------------------- /views/error.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/views/error.pug -------------------------------------------------------------------------------- /views/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/views/index.pug -------------------------------------------------------------------------------- /views/layout.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES/HEAD/views/layout.pug --------------------------------------------------------------------------------