@medplum/core 3.2.33 → 3.3.0

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.
@@ -5911,10 +5911,17 @@ export declare function splitSearchOnComma(input: string): string[];
5911
5911
  export declare function streamToBuffer(stream: Readable): Promise<Buffer>;
5912
5912
 
5913
5913
  /**
5914
- * FHIR JSON stringify.
5914
+ * Returns the FHIR JSON string representation of the input value.
5915
+ *
5915
5916
  * Removes properties with empty string values.
5916
5917
  * Removes objects with zero properties.
5918
+ *
5919
+ * Does not modify the input value.
5920
+ * If the input value does not contain any empty properties, then the original value is returned.
5921
+ * Otherwise, a new value is returned with the empty properties removed.
5922
+ *
5917
5923
  * See: https://www.hl7.org/fhir/json.html
5924
+ *
5918
5925
  * @param value - The input value.
5919
5926
  * @param pretty - Optional flag to pretty-print the JSON.
5920
5927
  * @returns The resulting JSON string.
@@ -5911,10 +5911,17 @@ export declare function splitSearchOnComma(input: string): string[];
5911
5911
  export declare function streamToBuffer(stream: Readable): Promise<Buffer>;
5912
5912
 
5913
5913
  /**
5914
- * FHIR JSON stringify.
5914
+ * Returns the FHIR JSON string representation of the input value.
5915
+ *
5915
5916
  * Removes properties with empty string values.
5916
5917
  * Removes objects with zero properties.
5918
+ *
5919
+ * Does not modify the input value.
5920
+ * If the input value does not contain any empty properties, then the original value is returned.
5921
+ * Otherwise, a new value is returned with the empty properties removed.
5922
+ *
5917
5923
  * See: https://www.hl7.org/fhir/json.html
5924
+ *
5918
5925
  * @param value - The input value.
5919
5926
  * @param pretty - Optional flag to pretty-print the JSON.
5920
5927
  * @returns The resulting JSON string.