oro-sdk-apis 1.6.0 → 1.6.1
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
package/src/models/workflow.ts
CHANGED
|
@@ -38,6 +38,16 @@ 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
|
+
|
|
41
51
|
export enum MetadataCategory { //these are generic metadata categories
|
|
42
52
|
ChildPersonal = 'ChildPersonal',
|
|
43
53
|
Consultation = 'Consultation',
|
|
@@ -111,6 +121,7 @@ export interface WorkflowData {
|
|
|
111
121
|
summaryImageFieldName?: string // this field is used to show the consult summary image
|
|
112
122
|
summarySymptomsFieldName?: string // this field is used to show the consult summary symptoms
|
|
113
123
|
selectedAnswers?: SelectedAnswersData
|
|
124
|
+
walkthroughSlides?: SlideData[]
|
|
114
125
|
}
|
|
115
126
|
|
|
116
127
|
/**
|