Skip to content

Commit befed37

Browse files
authored
feat(events): add 'labRecommendations' to treatment plan event type
Add proper types for lab recommendations
2 parents 2915937 + cd43f2b commit befed37

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

src/feature/eventType.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,16 @@ type TreatmentPlanPayload = {
4444
additionalInfo: string;
4545
};
4646
}[];
47+
labRecommendations: {
48+
id: string;
49+
name: string;
50+
instructions: string;
51+
requiresFasting: boolean;
52+
tests: {
53+
id: string;
54+
name: string;
55+
}[];
56+
}[];
4757
};
4858
};
4959

0 commit comments

Comments
 (0)