@medplum/fhir-router 5.1.9 → 5.1.10

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.
@@ -151,7 +151,7 @@ export declare abstract class FhirRepository<TClient = unknown> {
151
151
  * @param searchRequest - The FHIR search request.
152
152
  * @param referenceField - The name of the reference field to search by (e.g. "patient" or "subject").
153
153
  * @param references - The reference values to search for (e.g. ["Patient/123", "Patient/456"]).
154
- * @returns A record mapping reference values to the resources that reference them (e.g. { "Patient/123": [Observation1, Observation2], "Patient/456": [Observation3] }).
154
+ * @returns A record mapping reference values to the resources that reference them (e.g. \{ "Patient/123": [Observation1, Observation2], "Patient/456": [Observation3] \}).
155
155
  */
156
156
  abstract searchByReference<T extends Resource>(searchRequest: SearchRequest<T>, referenceField: string, references: string[]): Promise<Record<string, WithId<T>[]>>;
157
157
  /**
@@ -151,7 +151,7 @@ export declare abstract class FhirRepository<TClient = unknown> {
151
151
  * @param searchRequest - The FHIR search request.
152
152
  * @param referenceField - The name of the reference field to search by (e.g. "patient" or "subject").
153
153
  * @param references - The reference values to search for (e.g. ["Patient/123", "Patient/456"]).
154
- * @returns A record mapping reference values to the resources that reference them (e.g. { "Patient/123": [Observation1, Observation2], "Patient/456": [Observation3] }).
154
+ * @returns A record mapping reference values to the resources that reference them (e.g. \{ "Patient/123": [Observation1, Observation2], "Patient/456": [Observation3] \}).
155
155
  */
156
156
  abstract searchByReference<T extends Resource>(searchRequest: SearchRequest<T>, referenceField: string, references: string[]): Promise<Record<string, WithId<T>[]>>;
157
157
  /**