@imranq2/fhirpatientsummary 1.0.32 → 1.0.33
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 +199 -130
- package/dist/index.d.cts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +199 -130
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -688,6 +688,7 @@ declare class ComprehensiveIPSCompositionBuilder {
|
|
|
688
688
|
private patients;
|
|
689
689
|
private sections;
|
|
690
690
|
private resources;
|
|
691
|
+
private patientSummary;
|
|
691
692
|
/**
|
|
692
693
|
* sets the patient resource for the IPS Composition.
|
|
693
694
|
* This is not needed if you are calling read_bundle, but can be used to set the patient resource directly.
|
|
@@ -715,7 +716,7 @@ declare class ComprehensiveIPSCompositionBuilder {
|
|
|
715
716
|
* @param timezone - Optional timezone to use for date formatting
|
|
716
717
|
* @param useSummaryCompositions - Whether to use summary compositions (default: false)
|
|
717
718
|
*/
|
|
718
|
-
readBundleAsync(bundle: TBundle, timezone: string | undefined, useSummaryCompositions?: boolean): Promise<this>;
|
|
719
|
+
readBundleAsync(bundle: TBundle, timezone: string | undefined, useSummaryCompositions?: boolean, consoleLogger?: Console): Promise<this>;
|
|
719
720
|
/**
|
|
720
721
|
* Builds a complete FHIR Bundle containing the Composition and all resources.
|
|
721
722
|
* @param authorOrganizationId - ID of the authoring organization (e.g., hospital or clinic)
|
package/dist/index.d.ts
CHANGED
|
@@ -688,6 +688,7 @@ declare class ComprehensiveIPSCompositionBuilder {
|
|
|
688
688
|
private patients;
|
|
689
689
|
private sections;
|
|
690
690
|
private resources;
|
|
691
|
+
private patientSummary;
|
|
691
692
|
/**
|
|
692
693
|
* sets the patient resource for the IPS Composition.
|
|
693
694
|
* This is not needed if you are calling read_bundle, but can be used to set the patient resource directly.
|
|
@@ -715,7 +716,7 @@ declare class ComprehensiveIPSCompositionBuilder {
|
|
|
715
716
|
* @param timezone - Optional timezone to use for date formatting
|
|
716
717
|
* @param useSummaryCompositions - Whether to use summary compositions (default: false)
|
|
717
718
|
*/
|
|
718
|
-
readBundleAsync(bundle: TBundle, timezone: string | undefined, useSummaryCompositions?: boolean): Promise<this>;
|
|
719
|
+
readBundleAsync(bundle: TBundle, timezone: string | undefined, useSummaryCompositions?: boolean, consoleLogger?: Console): Promise<this>;
|
|
719
720
|
/**
|
|
720
721
|
* Builds a complete FHIR Bundle containing the Composition and all resources.
|
|
721
722
|
* @param authorOrganizationId - ID of the authoring organization (e.g., hospital or clinic)
|