oro-sdk-apis 3.7.2 → 3.8.0

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "3.7.2",
2
+ "version": "3.8.0",
3
3
  "main": "dist/index.js",
4
4
  "typings": "dist/index.d.ts",
5
5
  "files": [
@@ -33,6 +33,7 @@ export interface TreatmentRequest {
33
33
  name: string
34
34
  description: string
35
35
  refillable?: boolean
36
+ noteToPharmacy?: string
36
37
  urlMultimedia?: string
37
38
  type?: TreatmentType
38
39
  }
@@ -97,7 +98,7 @@ export enum PlanStatus {
97
98
  Pending = 'Pending',
98
99
  Accepted = 'Accepted',
99
100
  Rejected = 'Rejected',
100
- PreviouslyAccepted = 'PreviouslyAccepted'
101
+ PreviouslyAccepted = 'PreviouslyAccepted',
101
102
  }
102
103
 
103
104
  export interface TreatmentPlan {
@@ -153,7 +154,6 @@ export interface TreatmentAndDrugPrescriptionRequest {
153
154
  trackingId: string
154
155
  treatment: TreatmentRequest
155
156
  prescriptionsAndDrugs?: DrugPrescriptionRequest[]
156
- notes?: string
157
157
  }
158
158
 
159
159
  export interface TreatmentPlansRequest {
@@ -165,7 +165,6 @@ export interface TreatmentPlansRequest {
165
165
  export interface TreatmentAndDrugPrescriptionUpdateRequest {
166
166
  treatment: Treatment
167
167
  prescriptionsAndDrugs?: DrugPrescriptionRequest[]
168
- notes?: string
169
168
  }
170
169
 
171
170
  export interface TreatmentPlanUpdateRequest extends TreatmentPlansRequest {
@@ -183,4 +182,4 @@ export interface TreatmentPlansResponseEntry {
183
182
  treatmentPlan: TreatmentPlan
184
183
  }
185
184
 
186
- export interface TreatmentPlansResponse extends Array<TreatmentPlansResponseEntry> { }
185
+ export interface TreatmentPlansResponse extends Array<TreatmentPlansResponseEntry> {}