oro-sdk-apis 1.6.0-dev1 → 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/dist/models/diagnosis.d.ts +0 -4
- package/dist/models/workflow.d.ts +10 -0
- 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 +0 -4
- package/src/models/workflow.ts +11 -0
- package/LICENSE +0 -21
|
@@ -81,8 +81,6 @@ export interface TreatmentPlan {
|
|
|
81
81
|
uuidTreatment?: string;
|
|
82
82
|
notes?: string;
|
|
83
83
|
status: PlanStatus;
|
|
84
|
-
decidedAt: string;
|
|
85
|
-
createdAt: string;
|
|
86
84
|
}
|
|
87
85
|
export interface DrugPrescription {
|
|
88
86
|
prescription: Prescription;
|
|
@@ -94,8 +92,6 @@ export interface TreatmentAndDrugPrescription {
|
|
|
94
92
|
notes?: string;
|
|
95
93
|
status: PlanStatus;
|
|
96
94
|
uuidTreatmentPlan: string;
|
|
97
|
-
decidedAt: string;
|
|
98
|
-
createdAt: string;
|
|
99
95
|
}
|
|
100
96
|
export interface TreatmentPlans {
|
|
101
97
|
uuidConsult: string;
|
|
@@ -30,6 +30,15 @@ export interface EntryData {
|
|
|
30
30
|
className?: string;
|
|
31
31
|
triggers?: string[];
|
|
32
32
|
}
|
|
33
|
+
export interface SlideData {
|
|
34
|
+
header: string;
|
|
35
|
+
body: string;
|
|
36
|
+
image?: {
|
|
37
|
+
src: string;
|
|
38
|
+
alt: string;
|
|
39
|
+
};
|
|
40
|
+
icon?: string;
|
|
41
|
+
}
|
|
33
42
|
export declare enum MetadataCategory {
|
|
34
43
|
ChildPersonal = "ChildPersonal",
|
|
35
44
|
Consultation = "Consultation",
|
|
@@ -88,6 +97,7 @@ export interface WorkflowData {
|
|
|
88
97
|
summaryImageFieldName?: string;
|
|
89
98
|
summarySymptomsFieldName?: string;
|
|
90
99
|
selectedAnswers?: SelectedAnswersData;
|
|
100
|
+
walkthroughSlides?: SlideData[];
|
|
91
101
|
}
|
|
92
102
|
/**
|
|
93
103
|
* This interface describes a workflow prepared and ready to be sent to vault
|