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

Sign up to get free protection for your applications and to get access to all the features.
@@ -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;