@milobedini/shared-types 1.0.52 → 1.0.53
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 +5 -1
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -343,7 +343,11 @@ export type ModulePreviewForAssignment = Pick<Module, '_id' | 'title' | 'type' |
|
|
|
343
343
|
export type ProgramPreviewForAssignment = Pick<Program, '_id' | 'title'>;
|
|
344
344
|
export type MyAssignmentView = {
|
|
345
345
|
_id: string;
|
|
346
|
-
user:
|
|
346
|
+
user: {
|
|
347
|
+
_id: string;
|
|
348
|
+
name: string;
|
|
349
|
+
username: string;
|
|
350
|
+
};
|
|
347
351
|
therapist: {
|
|
348
352
|
_id: string;
|
|
349
353
|
name: string;
|