oro-sdk-apis 4.2.4 → 4.3.0-dev1.1

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": "4.2.4",
2
+ "version": "4.3.0-dev1.1",
3
3
  "main": "dist/index.js",
4
4
  "typings": "dist/index.d.ts",
5
5
  "files": [
@@ -55,4 +55,4 @@
55
55
  "buffer": "^6.0.3",
56
56
  "hash.js": "^1.1.7"
57
57
  }
58
- }
58
+ }
@@ -36,6 +36,7 @@ export interface TreatmentRequest {
36
36
  uuid?: string
37
37
  uuidDiagnosis?: string
38
38
  uuidParentTreatment?: string
39
+ uuidPreviousRevision?: string
39
40
  name: string
40
41
  description: string
41
42
  refillable?: boolean
@@ -143,6 +144,7 @@ export interface TreatmentAndDrugPrescription {
143
144
  */
144
145
  export interface TreatmentHistory {
145
146
  treatment: Treatment
147
+ treatmentRevisions: Treatment[]
146
148
  prescriptionsAndDrugs: DrugPrescription[]
147
149
  }
148
150
 
@@ -189,4 +191,4 @@ export interface TreatmentPlansResponseEntry {
189
191
  treatmentPlan: TreatmentPlan
190
192
  }
191
193
 
192
- export interface TreatmentPlansResponse extends Array<TreatmentPlansResponseEntry> {}
194
+ export interface TreatmentPlansResponse extends Array<TreatmentPlansResponseEntry> {}