@quesmed/types 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;
|
|
@@ -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
|
|
@@ -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;
|
|
@@ -105,6 +105,8 @@ export const SAMPLE_QUIZ_REPORT = gql `
|
|
|
105
105
|
id
|
|
106
106
|
paperLength
|
|
107
107
|
attempted
|
|
108
|
+
marksheetId
|
|
109
|
+
productId
|
|
108
110
|
correct
|
|
109
111
|
scorePercentage
|
|
110
112
|
coverageTier
|
|
@@ -126,6 +128,13 @@ export const SAMPLE_QUIZ_REPORT = gql `
|
|
|
126
128
|
percentage
|
|
127
129
|
eligible
|
|
128
130
|
}
|
|
131
|
+
marks {
|
|
132
|
+
id
|
|
133
|
+
result
|
|
134
|
+
questionChoiceId
|
|
135
|
+
mark
|
|
136
|
+
timeTaken
|
|
137
|
+
}
|
|
129
138
|
recommendedFocus
|
|
130
139
|
createdAt
|
|
131
140
|
promoCode
|