@quesmed/types 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/dist/cjs/models/Job.d.ts +7 -0
- package/dist/cjs/resolvers/fragments/question.js +5 -0
- package/dist/cjs/resolvers/fragments/record.js +10 -0
- package/dist/cjs/resolvers/query/restricted/analytics.js +1 -0
- package/dist/mjs/models/Job.d.ts +7 -0
- package/dist/mjs/resolvers/fragments/question.js +5 -0
- package/dist/mjs/resolvers/fragments/record.js +10 -0
- package/dist/mjs/resolvers/query/restricted/analytics.js +1 -0
- package/package.json +1 -1
package/dist/cjs/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;
|
|
@@ -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
|
}
|
package/dist/mjs/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;
|
|
@@ -107,6 +107,11 @@ export const JOB_RECORD_QUESTION_FRAGMENT = gql `
|
|
|
107
107
|
explanation
|
|
108
108
|
answer
|
|
109
109
|
}
|
|
110
|
+
irtParameters {
|
|
111
|
+
discrimination
|
|
112
|
+
difficulty
|
|
113
|
+
guessing
|
|
114
|
+
}
|
|
110
115
|
learningPoint
|
|
111
116
|
explanation
|
|
112
117
|
}
|
|
@@ -139,6 +144,11 @@ export const JOB_RECORD_MOCK_TEST_FRAGMENT = gql `
|
|
|
139
144
|
explanation
|
|
140
145
|
answer
|
|
141
146
|
}
|
|
147
|
+
irtParameters {
|
|
148
|
+
discrimination
|
|
149
|
+
difficulty
|
|
150
|
+
guessing
|
|
151
|
+
}
|
|
142
152
|
learningPoint
|
|
143
153
|
explanation
|
|
144
154
|
}
|