@quesmed/types-rn 2.5.53 → 2.5.55

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.
@@ -13,7 +13,8 @@ export declare enum EProductType {
13
13
  MSRA = 10,
14
14
  INTERVIEW_ANAESTHETICS = 11,
15
15
  INTERVIEW_CST = 12,
16
- INTERVIEW_IMT = 13
16
+ INTERVIEW_IMT = 13,
17
+ INTERVIEW_RADIOLOGY = 14
17
18
  }
18
19
  export interface IProduct {
19
20
  id: Id;
package/models/Product.js CHANGED
@@ -17,6 +17,7 @@ var EProductType;
17
17
  EProductType[EProductType["INTERVIEW_ANAESTHETICS"] = 11] = "INTERVIEW_ANAESTHETICS";
18
18
  EProductType[EProductType["INTERVIEW_CST"] = 12] = "INTERVIEW_CST";
19
19
  EProductType[EProductType["INTERVIEW_IMT"] = 13] = "INTERVIEW_IMT";
20
+ EProductType[EProductType["INTERVIEW_RADIOLOGY"] = 14] = "INTERVIEW_RADIOLOGY";
20
21
  })(EProductType = exports.EProductType || (exports.EProductType = {}));
21
22
  var EAppType;
22
23
  (function (EAppType) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quesmed/types-rn",
3
- "version": "2.5.53",
3
+ "version": "2.5.55",
4
4
  "description": "Typescript types for Quesmed",
5
5
  "keywords": [
6
6
  "quesmed",
@@ -41,6 +41,7 @@ export interface IOsceMarksheetAction {
41
41
  action: EOsceMarksheetAction;
42
42
  marks?: IOsceMarksheetMark[];
43
43
  timeTaken?: number;
44
+ score?: number;
44
45
  globalScore?: number;
45
46
  feedback?: string;
46
47
  }
@@ -100,6 +100,7 @@ exports.OSCE_MARKSHEET_ACTION = (0, client_1.gql) `
100
100
  feedback
101
101
  timeTaken
102
102
  globalScore
103
+ score
103
104
  marks {
104
105
  ...OsceMarksheetMarkFields
105
106
  }