@quesmed/types 2.6.19 → 2.6.20

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.
@@ -1,6 +1,6 @@
1
1
  import { ICard } from './Card';
2
2
  import { IConcept } from './Concept';
3
- import { IMarksheet, IMarksheetMark } from './Marksheet';
3
+ import { IMarksheet } from './Marksheet';
4
4
  import { INotification } from './Notification';
5
5
  import { IOsceStation } from './OsceStation';
6
6
  import { IQuestion, IQuestionHighlights } from './Question';
@@ -168,10 +168,9 @@ export interface IUserFlaggedQuestion {
168
168
  updatedAt: number | Date;
169
169
  deletedAt: number | Date;
170
170
  questionId: Id;
171
- question: IQuestion;
171
+ question: Pick<IQuestion, 'id' | 'question' | 'conceptId' | 'typeId' | 'concept'>;
172
172
  userId: Id;
173
173
  markId: Id;
174
- mark: IMarksheetMark;
175
174
  }
176
175
  export interface IUserProgress {
177
176
  id: Id;