oro-sdk-apis 3.7.1 → 3.8.0-dev1.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 -3
- package/dist/models/workflow.d.ts +3 -3
- package/dist/oro-sdk-apis.cjs.development.js +1322 -444
- 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 +1346 -433
- package/dist/oro-sdk-apis.esm.js.map +1 -1
- package/package.json +2 -2
- package/src/models/diagnosis.ts +1 -3
- package/src/models/workflow.ts +3 -3
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
|
}
|
@@ -118,7 +119,6 @@ export interface DrugPrescription {
|
|
118
119
|
|
119
120
|
export interface TreatmentAndDrugPrescription {
|
120
121
|
treatmentsHistory?: TreatmentHistory[]
|
121
|
-
notes?: string
|
122
122
|
status: PlanStatus
|
123
123
|
uuidTreatmentPlan: string
|
124
124
|
/**
|
@@ -153,7 +153,6 @@ export interface TreatmentAndDrugPrescriptionRequest {
|
|
153
153
|
trackingId: string
|
154
154
|
treatment: TreatmentRequest
|
155
155
|
prescriptionsAndDrugs?: DrugPrescriptionRequest[]
|
156
|
-
notes?: string
|
157
156
|
}
|
158
157
|
|
159
158
|
export interface TreatmentPlansRequest {
|
@@ -165,7 +164,6 @@ export interface TreatmentPlansRequest {
|
|
165
164
|
export interface TreatmentAndDrugPrescriptionUpdateRequest {
|
166
165
|
treatment: Treatment
|
167
166
|
prescriptionsAndDrugs?: DrugPrescriptionRequest[]
|
168
|
-
notes?: string
|
169
167
|
}
|
170
168
|
|
171
169
|
export interface TreatmentPlanUpdateRequest extends TreatmentPlansRequest {
|
package/src/models/workflow.ts
CHANGED
@@ -76,9 +76,9 @@ export interface TileRadioData extends ChoiceInputData {
|
|
76
76
|
}
|
77
77
|
|
78
78
|
export enum InputApplyFunctions { //these are generic metadata categories
|
79
|
-
|
80
|
-
|
81
|
-
|
79
|
+
MakeUpperCase = 'MakeUpperCase',
|
80
|
+
MakeLowerCase = 'MakeLowerCase',
|
81
|
+
RemoveAllSpaces = 'RemoveAllSpaces',
|
82
82
|
}
|
83
83
|
|
84
84
|
export interface EntryData {
|