@openhi/types 0.0.21 → 0.0.22
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/lib/data/constants.d.ts
CHANGED
|
@@ -2369,6 +2369,18 @@ export declare const MEDICATION_REQUEST_INTENT: {
|
|
|
2369
2369
|
};
|
|
2370
2370
|
export type MedicationRequestIntent = (typeof MEDICATION_REQUEST_INTENT)[keyof typeof MEDICATION_REQUEST_INTENT];
|
|
2371
2371
|
export declare const medicationRequestIntentSchema: z.ZodEnum<["filler-order", "instance-order", "option", "order", "original-order", "plan", "proposal", "reflex-order"]>;
|
|
2372
|
+
export declare const MEDICATION_STATEMENT_STATUS: {
|
|
2373
|
+
readonly ACTIVE: "active";
|
|
2374
|
+
readonly COMPLETED: "completed";
|
|
2375
|
+
readonly ENTERED_IN_ERROR: "entered-in-error";
|
|
2376
|
+
readonly INTENDED: "intended";
|
|
2377
|
+
readonly NOT_TAKEN: "not-taken";
|
|
2378
|
+
readonly ON_HOLD: "on-hold";
|
|
2379
|
+
readonly STOPPED: "stopped";
|
|
2380
|
+
readonly UNKNOWN: "unknown";
|
|
2381
|
+
};
|
|
2382
|
+
export type MedicationStatementStatus = (typeof MEDICATION_STATEMENT_STATUS)[keyof typeof MEDICATION_STATEMENT_STATUS];
|
|
2383
|
+
export declare const medicationStatementStatusSchema: z.ZodEnum<["active", "completed", "entered-in-error", "intended", "not-taken", "on-hold", "stopped", "unknown"]>;
|
|
2372
2384
|
export declare const MEDICATION_STATUS_CODES: {
|
|
2373
2385
|
readonly ACTIVE: "active";
|
|
2374
2386
|
readonly ENTERED_IN_ERROR: "entered-in-error";
|