oro-sdk-apis 1.54.2 → 1.54.3

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": "1.54.2",
2
+ "version": "1.54.3",
3
3
  "main": "dist/index.js",
4
4
  "typings": "dist/index.d.ts",
5
5
  "files": [
@@ -119,7 +119,10 @@ export interface TreatmentAndDrugPrescription {
119
119
  notes?: string
120
120
  status: PlanStatus
121
121
  uuidTreatmentPlan: string
122
- decidedAt: string
122
+ /**
123
+ * this field is used to store the datetime when the patient accepted or refused the prescription
124
+ */
125
+ decidedAt?: string
123
126
  createdAt: string
124
127
  }
125
128
  export interface TreatmentPlans {
@@ -163,4 +166,4 @@ export interface TreatmentPlansResponseEntry {
163
166
  treatmentPlan: TreatmentPlan
164
167
  }
165
168
 
166
- export interface TreatmentPlansResponse extends Array<TreatmentPlansResponseEntry> {}
169
+ export interface TreatmentPlansResponse extends Array<TreatmentPlansResponseEntry> {}