oro-sdk-apis 1.58.1-dev1 → 1.58.1-dev1.1

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.
@@ -100,8 +100,7 @@ export interface DrugPrescription {
100
100
  drug: Drug;
101
101
  }
102
102
  export interface TreatmentAndDrugPrescription {
103
- treatment?: Treatment;
104
- prescriptionsAndDrugs?: DrugPrescription[];
103
+ treatmentsHistory?: TreatmentHistory[];
105
104
  notes?: string;
106
105
  status: PlanStatus;
107
106
  uuidTreatmentPlan: string;
@@ -111,6 +110,15 @@ export interface TreatmentAndDrugPrescription {
111
110
  decidedAt?: string;
112
111
  createdAt: string;
113
112
  }
113
+ /**
114
+ * An entry in the history of the treatments of the patient.
115
+ * The history entry consists of the treatment and the prescriptions and the drugs
116
+ * that were prescribed to the patient at that point of history
117
+ */
118
+ export interface TreatmentHistory {
119
+ treatment: Treatment;
120
+ prescriptionsAndDrugs: DrugPrescription[];
121
+ }
114
122
  export interface TreatmentPlans {
115
123
  uuidConsult: string;
116
124
  diagnosis: Diagnosis;