@milobedini/shared-types 1.0.88 → 1.0.89

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.
Files changed (2) hide show
  1. package/dist/types.d.ts +3 -3
  2. package/package.json +1 -1
package/dist/types.d.ts CHANGED
@@ -674,9 +674,9 @@ export type DashboardScorePreview = {
674
674
  submittedAt: string;
675
675
  };
676
676
  export type DashboardAssignmentSummary = {
677
- total: number;
678
- completed: number;
679
- overdue: number;
677
+ completedThisWeek: number;
678
+ overdueTotal: number;
679
+ pendingThisWeek: number;
680
680
  };
681
681
  export type DashboardClientItem = {
682
682
  patient: Pick<User, '_id' | 'username' | 'email' | 'name'>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@milobedini/shared-types",
3
3
  "type": "commonjs",
4
- "version": "1.0.88",
4
+ "version": "1.0.89",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
7
7
  "sideEffects": false,