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.
- package/dist/types.d.ts +5 -0
- 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;
|