oro-sdk-apis 1.7.0-dev1 → 1.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 +4 -0
- package/dist/models/workflow.d.ts +0 -10
- package/dist/oro-sdk-apis.cjs.development.js.map +1 -1
- package/dist/oro-sdk-apis.cjs.production.min.js.map +1 -1
- package/dist/oro-sdk-apis.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/models/diagnosis.ts +4 -0
- package/src/models/workflow.ts +0 -11
package/package.json
CHANGED
package/src/models/diagnosis.ts
CHANGED
|
@@ -94,6 +94,8 @@ export interface TreatmentPlan {
|
|
|
94
94
|
uuidTreatment?: string
|
|
95
95
|
notes?: string
|
|
96
96
|
status: PlanStatus
|
|
97
|
+
decidedAt: string
|
|
98
|
+
createdAt: string
|
|
97
99
|
}
|
|
98
100
|
|
|
99
101
|
export interface DrugPrescription {
|
|
@@ -107,6 +109,8 @@ export interface TreatmentAndDrugPrescription {
|
|
|
107
109
|
notes?: string
|
|
108
110
|
status: PlanStatus
|
|
109
111
|
uuidTreatmentPlan: string
|
|
112
|
+
decidedAt: string
|
|
113
|
+
createdAt: string
|
|
110
114
|
}
|
|
111
115
|
export interface TreatmentPlans {
|
|
112
116
|
uuidConsult: string
|
package/src/models/workflow.ts
CHANGED
|
@@ -38,16 +38,6 @@ export interface EntryData {
|
|
|
38
38
|
triggers?: string[]
|
|
39
39
|
}
|
|
40
40
|
|
|
41
|
-
export interface SlideData {
|
|
42
|
-
header: string
|
|
43
|
-
body: string
|
|
44
|
-
image?: {
|
|
45
|
-
src: string
|
|
46
|
-
alt: string
|
|
47
|
-
}
|
|
48
|
-
icon?: string
|
|
49
|
-
}
|
|
50
|
-
|
|
51
41
|
export enum MetadataCategory { //these are generic metadata categories
|
|
52
42
|
ChildPersonal = 'ChildPersonal',
|
|
53
43
|
Consultation = 'Consultation',
|
|
@@ -121,7 +111,6 @@ export interface WorkflowData {
|
|
|
121
111
|
summaryImageFieldName?: string // this field is used to show the consult summary image
|
|
122
112
|
summarySymptomsFieldName?: string // this field is used to show the consult summary symptoms
|
|
123
113
|
selectedAnswers?: SelectedAnswersData
|
|
124
|
-
walkthroughSlides?: SlideData[]
|
|
125
114
|
}
|
|
126
115
|
|
|
127
116
|
/**
|