@milobedini/shared-types 1.0.88 → 1.0.90
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/types.d.ts +4 -3
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -196,6 +196,7 @@ export type ModuleAssignment = {
|
|
|
196
196
|
notes?: string;
|
|
197
197
|
createdAt: string;
|
|
198
198
|
updatedAt: string;
|
|
199
|
+
completedAt?: string;
|
|
199
200
|
};
|
|
200
201
|
export type ProgramResponse = {
|
|
201
202
|
program: ProgramWithModules;
|
|
@@ -674,9 +675,9 @@ export type DashboardScorePreview = {
|
|
|
674
675
|
submittedAt: string;
|
|
675
676
|
};
|
|
676
677
|
export type DashboardAssignmentSummary = {
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
678
|
+
completedThisWeek: number;
|
|
679
|
+
overdueTotal: number;
|
|
680
|
+
pendingThisWeek: number;
|
|
680
681
|
};
|
|
681
682
|
export type DashboardClientItem = {
|
|
682
683
|
patient: Pick<User, '_id' | 'username' | 'email' | 'name'>;
|