oro-sdk-apis 3.7.2 → 3.8.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/LICENSE +21 -0
- package/dist/models/diagnosis.d.ts +1 -2
- package/dist/oro-sdk-apis.cjs.development.js +1319 -441
- package/dist/oro-sdk-apis.cjs.development.js.map +1 -1
- package/dist/oro-sdk-apis.cjs.production.min.js +1 -1
- package/dist/oro-sdk-apis.cjs.production.min.js.map +1 -1
- package/dist/oro-sdk-apis.esm.js +1343 -430
- package/dist/oro-sdk-apis.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/models/diagnosis.ts +3 -4
package/package.json
CHANGED
package/src/models/diagnosis.ts
CHANGED
@@ -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> {}
|