ezmedicationinput 0.1.53 → 0.1.54

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.
Files changed (2) hide show
  1. package/dist/types.d.ts +5 -0
  2. package/package.json +1 -1
package/dist/types.d.ts CHANGED
@@ -301,9 +301,14 @@ export declare enum FhirDayOfWeek {
301
301
  Saturday = "sat",
302
302
  Sunday = "sun"
303
303
  }
304
+ export interface FhirPeriod {
305
+ start?: string;
306
+ end?: string;
307
+ }
304
308
  export interface FhirTimingRepeat {
305
309
  count?: number;
306
310
  boundsDuration?: FhirQuantity;
311
+ boundsPeriod?: FhirPeriod;
307
312
  boundsRange?: FhirRange;
308
313
  frequency?: number;
309
314
  frequencyMax?: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ezmedicationinput",
3
- "version": "0.1.53",
3
+ "version": "0.1.54",
4
4
  "description": "Parse concise medication sigs into FHIR R5 Dosage JSON",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",