@quesmed/types-rn 2.6.194 → 2.6.195

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/models/Job.d.ts CHANGED
@@ -107,6 +107,11 @@ export interface IJobAsset {
107
107
  choiceLabel: string | null;
108
108
  createdAt: Date | number;
109
109
  }
110
+ export interface IRTParameters {
111
+ discrimination: number;
112
+ difficulty: number;
113
+ guessing: number;
114
+ }
110
115
  export interface IJobRecordQuestion {
111
116
  question: string;
112
117
  stem?: string | null;
@@ -125,6 +130,7 @@ export interface IJobRecordQuestion {
125
130
  choices: Array<Pick<IQuestionChoice, 'label' | 'name' | 'answer'> & {
126
131
  explanation?: IQuestionChoice['explanation'];
127
132
  }>;
133
+ irtParameters?: IRTParameters | null;
128
134
  }
129
135
  export interface IJobRecordChapter {
130
136
  title: string;
@@ -148,6 +154,7 @@ export interface IJobRecordMockTest {
148
154
  choices: Array<Pick<IQuestionChoice, 'label' | 'name' | 'answer'> & {
149
155
  explanation?: IQuestionChoice['explanation'];
150
156
  }>;
157
+ irtParameters?: IRTParameters | null;
151
158
  }
152
159
  export interface IJobRecordMetricsSummary {
153
160
  id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quesmed/types-rn",
3
- "version": "2.6.194",
3
+ "version": "2.6.195",
4
4
  "description": "Typescript types for Quesmed",
5
5
  "keywords": [
6
6
  "quesmed",
@@ -72,6 +72,11 @@ exports.QUESTION_UCAT_FIELDS = (0, client_1.gql) `
72
72
  name
73
73
  }
74
74
  }
75
+ # irtParameters {
76
+ # discrimination
77
+ # difficulty
78
+ # guessing
79
+ # }
75
80
  timeTaken
76
81
  avgTimeTaken
77
82
  stem {
@@ -110,6 +110,11 @@ exports.JOB_RECORD_QUESTION_FRAGMENT = (0, client_1.gql) `
110
110
  explanation
111
111
  answer
112
112
  }
113
+ irtParameters {
114
+ discrimination
115
+ difficulty
116
+ guessing
117
+ }
113
118
  learningPoint
114
119
  explanation
115
120
  }
@@ -142,6 +147,11 @@ exports.JOB_RECORD_MOCK_TEST_FRAGMENT = (0, client_1.gql) `
142
147
  explanation
143
148
  answer
144
149
  }
150
+ irtParameters {
151
+ discrimination
152
+ difficulty
153
+ guessing
154
+ }
145
155
  learningPoint
146
156
  explanation
147
157
  }
@@ -52,6 +52,7 @@ exports.UCAT_THEME_ANALYTICS = (0, client_1.gql) `
52
52
  marks {
53
53
  questionId
54
54
  updatedAt
55
+ mark
55
56
  marksheet {
56
57
  id
57
58
  isTestMarksheet