@quesmed/types-rn 2.6.280 → 2.6.289

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,3 +1,6 @@
1
+ import { IMarksheetMark } from './Marksheet';
2
+ import { EProductType } from './Product';
3
+ import { Id } from './Type';
1
4
  export { CoverageTier, PostQuizBand } from '../resolvers/enums';
2
5
  export interface ISampleQuizMarkInput {
3
6
  id: number;
@@ -30,8 +33,17 @@ export interface ISampleQuizTopicBreakdown {
30
33
  percentage: number;
31
34
  eligible: boolean;
32
35
  }
36
+ export interface SampleQuizMark {
37
+ id: IMarksheetMark['id'];
38
+ result: IMarksheetMark['result'];
39
+ questionChoiceId: IMarksheetMark['questionId'];
40
+ mark: IMarksheetMark['mark'];
41
+ timeTaken: IMarksheetMark['timeTaken'];
42
+ }
33
43
  export interface ISampleQuizReport {
34
44
  id: string;
45
+ marksheetId: Id;
46
+ productId: EProductType;
35
47
  paperLength: number;
36
48
  attempted: number;
37
49
  correct: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quesmed/types-rn",
3
- "version": "2.6.280",
3
+ "version": "2.6.289",
4
4
  "description": "Typescript types for Quesmed",
5
5
  "keywords": [
6
6
  "quesmed",
@@ -108,6 +108,8 @@ exports.SAMPLE_QUIZ_REPORT = (0, client_1.gql) `
108
108
  id
109
109
  paperLength
110
110
  attempted
111
+ marksheetId
112
+ productId
111
113
  correct
112
114
  scorePercentage
113
115
  coverageTier
@@ -129,6 +131,13 @@ exports.SAMPLE_QUIZ_REPORT = (0, client_1.gql) `
129
131
  percentage
130
132
  eligible
131
133
  }
134
+ marks {
135
+ id
136
+ result
137
+ questionChoiceId
138
+ mark
139
+ timeTaken
140
+ }
132
141
  recommendedFocus
133
142
  createdAt
134
143
  promoCode