oro-sdk-apis 3.7.0-dev1.1 → 3.7.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -28,7 +28,6 @@ export interface TreatmentRequest {
28
28
  name: string;
29
29
  description: string;
30
30
  refillable?: boolean;
31
- noteToPharmacy?: string;
32
31
  urlMultimedia?: string;
33
32
  type?: TreatmentType;
34
33
  }
@@ -103,6 +102,7 @@ export interface DrugPrescription {
103
102
  }
104
103
  export interface TreatmentAndDrugPrescription {
105
104
  treatmentsHistory?: TreatmentHistory[];
105
+ notes?: string;
106
106
  status: PlanStatus;
107
107
  uuidTreatmentPlan: string;
108
108
  /**
@@ -133,6 +133,7 @@ export interface TreatmentAndDrugPrescriptionRequest {
133
133
  trackingId: string;
134
134
  treatment: TreatmentRequest;
135
135
  prescriptionsAndDrugs?: DrugPrescriptionRequest[];
136
+ notes?: string;
136
137
  }
137
138
  export interface TreatmentPlansRequest {
138
139
  uuidConsult: string;
@@ -142,6 +143,7 @@ export interface TreatmentPlansRequest {
142
143
  export interface TreatmentAndDrugPrescriptionUpdateRequest {
143
144
  treatment: Treatment;
144
145
  prescriptionsAndDrugs?: DrugPrescriptionRequest[];
146
+ notes?: string;
145
147
  }
146
148
  export interface TreatmentPlanUpdateRequest extends TreatmentPlansRequest {
147
149
  uuidConsult: string;
@@ -63,9 +63,9 @@ export interface TileRadioData extends ChoiceInputData {
63
63
  description?: string;
64
64
  }
65
65
  export declare enum InputApplyFunctions {
66
- MakeUpperCase = "MakeUpperCase",
67
- MakeLowerCase = "MakeLowerCase",
68
- RemoveAllSpaces = "RemoveAllSpaces"
66
+ AllUpperCase = "AllUpperCase",
67
+ AllLowerCase = "AllLowerCase",
68
+ NoSpaces = "NoSpaces"
69
69
  }
70
70
  export interface EntryData {
71
71
  id?: number;