@imranq2/fhirpatientsummary 1.0.7 → 1.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +3 -0
- package/dist/index.js +3 -0
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -2455,6 +2455,9 @@ var ComprehensiveIPSCompositionBuilder = class {
|
|
|
2455
2455
|
);
|
|
2456
2456
|
fullNarrativeContent = fullNarrativeContent.concat(patientNarrative || "");
|
|
2457
2457
|
for (const sectionType of Object.values(IPSSections)) {
|
|
2458
|
+
if (sectionType === "Patient" /* PATIENT */) {
|
|
2459
|
+
continue;
|
|
2460
|
+
}
|
|
2458
2461
|
const resourceTypesForSection = IPSSectionResourceHelper.getResourceTypesForSection(sectionType);
|
|
2459
2462
|
const allResources = Array.from(this.resources);
|
|
2460
2463
|
const resources = allResources.filter((r) => resourceTypesForSection.includes(r.resourceType));
|
package/dist/index.js
CHANGED
|
@@ -2427,6 +2427,9 @@ var ComprehensiveIPSCompositionBuilder = class {
|
|
|
2427
2427
|
);
|
|
2428
2428
|
fullNarrativeContent = fullNarrativeContent.concat(patientNarrative || "");
|
|
2429
2429
|
for (const sectionType of Object.values(IPSSections)) {
|
|
2430
|
+
if (sectionType === "Patient" /* PATIENT */) {
|
|
2431
|
+
continue;
|
|
2432
|
+
}
|
|
2430
2433
|
const resourceTypesForSection = IPSSectionResourceHelper.getResourceTypesForSection(sectionType);
|
|
2431
2434
|
const allResources = Array.from(this.resources);
|
|
2432
2435
|
const resources = allResources.filter((r) => resourceTypesForSection.includes(r.resourceType));
|