@quesmed/types 1.3.8 → 1.3.9

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quesmed/types",
3
- "version": "1.3.8",
3
+ "version": "1.3.9",
4
4
  "description": "Typescript types for Quesmed",
5
5
  "main": "index.js",
6
6
  "types": "dist/index.d.ts",
@@ -173,7 +173,6 @@ function correctMark(mark) {
173
173
  }
174
174
  }
175
175
  else if (models_1.EQuestionType.PRESCRIPTION_ANSWER === mark.question.typeId) {
176
- console.log('answers');
177
176
  const answers = answer.map(formatPrescribeAnswer);
178
177
  let attempt = formatPrescribeAnswer(mapPrescribeMarkToAnswer({
179
178
  drug: '',
@@ -183,7 +182,6 @@ function correctMark(mark) {
183
182
  frequency: '',
184
183
  duration: '',
185
184
  }));
186
- console.log('attempt');
187
185
  if (typeof flatAttempt === 'object' && Object.keys(flatAttempt).length === 6) {
188
186
  attempt = formatPrescribeAnswer(mapPrescribeMarkToAnswer(flatAttempt));
189
187
  }