oro-sdk-apis 1.4.0 → 1.5.0

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.
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.4.0",
2
+ "version": "1.5.0",
3
3
  "main": "dist/index.js",
4
4
  "typings": "dist/index.d.ts",
5
5
  "files": [
@@ -38,6 +38,7 @@ export interface TreatmentRequest {
38
38
  export interface Treatment extends TreatmentRequest {
39
39
  uuid: string
40
40
  uuidDiagnosis: string
41
+ uuidPractitioner?: string
41
42
  createdAt: string
42
43
  }
43
44
 
@@ -57,6 +58,7 @@ export interface DrugRequest {
57
58
  parentUuid?: string // (optional) parent uuid of the drug. In case of DrugType.Instance
58
59
  uuid?: string // uuid of the drug (will be used as parentUuid in case of creation of new drug)
59
60
  }
61
+
60
62
  export interface Drug extends DrugRequest {
61
63
  uuid: string
62
64
  uuidPractice: string
@@ -90,6 +92,7 @@ export interface TreatmentPlan {
90
92
  uuidConsult: string
91
93
  uuidDiagnosis: string
92
94
  uuidTreatment?: string
95
+ notes?: string
93
96
  status: PlanStatus
94
97
  }
95
98
 
@@ -119,6 +122,7 @@ export interface TreatmentAndDrugPrescriptionRequest {
119
122
  trackingId: string
120
123
  treatment: TreatmentRequest
121
124
  prescriptionsAndDrugs?: DrugPrescriptionRequest[]
125
+ notes?: string
122
126
  }
123
127
 
124
128
  export interface TreatmentPlansRequest {
@@ -130,6 +134,7 @@ export interface TreatmentPlansRequest {
130
134
  export interface TreatmentAndDrugPrescriptionUpdateRequest {
131
135
  treatment: Treatment
132
136
  prescriptionsAndDrugs?: DrugPrescriptionRequest[]
137
+ notes?: string
133
138
  }
134
139
 
135
140
  export interface TreatmentPlanUpdateRequest extends TreatmentPlansRequest {