@milobedini/shared-types 1.0.80 → 1.0.81

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 +11 -0
  2. package/package.json +1 -1
package/dist/types.d.ts CHANGED
@@ -579,3 +579,14 @@ export type TherapistDashboardResponse = {
579
579
  completedThisWeek: DashboardClientItem[];
580
580
  noActivity: DashboardClientItem[];
581
581
  };
582
+ export type ScoreTrendItem = {
583
+ moduleTitle: string;
584
+ moduleId: string;
585
+ latestScore: number;
586
+ previousScore: number | null;
587
+ sparkline: number[];
588
+ };
589
+ export type ScoreTrendsResponse = {
590
+ success: boolean;
591
+ trends: ScoreTrendItem[];
592
+ };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@milobedini/shared-types",
3
3
  "type": "commonjs",
4
- "version": "1.0.80",
4
+ "version": "1.0.81",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
7
7
  "sideEffects": false,