@quesmed/types 1.5.4 → 1.5.5

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.
@@ -42,7 +42,7 @@ export interface IOsceStation {
42
42
  walkthroughPictures?: IOsceWalkthroughPicture[];
43
43
  }
44
44
  export interface IOsceStationItem extends IOsceStation {
45
- attempted: boolean;
45
+ lastOsceMarksheetId: Id;
46
46
  score: number;
47
47
  }
48
48
  export declare const OSCE_GLOBAL_RATING: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quesmed/types",
3
- "version": "1.5.4",
3
+ "version": "1.5.5",
4
4
  "description": "Typescript types for Quesmed",
5
5
  "main": "index.js",
6
6
  "module": "index.mjs",
@@ -50,7 +50,7 @@ exports.OSCE_STATION_FIELDS = (0, client_1.gql) `
50
50
  }
51
51
 
52
52
  # user-specific keys
53
- # attempted
53
+ # lastOsceMarksheetId
54
54
  # score
55
55
  }
56
56
  `;
@@ -47,7 +47,7 @@ export const OSCE_STATION_FIELDS = gql `
47
47
  }
48
48
 
49
49
  # user-specific keys
50
- # attempted
50
+ # lastOsceMarksheetId
51
51
  # score
52
52
  }
53
53
  `;
@@ -70,7 +70,7 @@ exports.OSCE_STATIONS = (0, client_1.gql) `
70
70
  topicIds: $topicIds
71
71
  ) {
72
72
  ...OsceStationFields
73
- attempted
73
+ lastOsceMarksheetId
74
74
  score
75
75
  }
76
76
  }
@@ -103,7 +103,7 @@ exports.SEARCH_OSCE_STATIONS = (0, client_1.gql) `
103
103
  restricted {
104
104
  searchOsceStations(search: $search) {
105
105
  ...OsceStationFields
106
- attempted
106
+ lastOsceMarksheetId
107
107
  score
108
108
  }
109
109
  }
@@ -67,7 +67,7 @@ export const OSCE_STATIONS = gql `
67
67
  topicIds: $topicIds
68
68
  ) {
69
69
  ...OsceStationFields
70
- attempted
70
+ lastOsceMarksheetId
71
71
  score
72
72
  }
73
73
  }
@@ -100,7 +100,7 @@ export const SEARCH_OSCE_STATIONS = gql `
100
100
  restricted {
101
101
  searchOsceStations(search: $search) {
102
102
  ...OsceStationFields
103
- attempted
103
+ lastOsceMarksheetId
104
104
  score
105
105
  }
106
106
  }
@@ -142,7 +142,7 @@ const osceStationReplicationQuery = `query OsceStationReplication($lastId: Strin
142
142
  }
143
143
 
144
144
  # user-specific keys
145
- # attempted
145
+ # lastOsceMarksheetId
146
146
  # score
147
147
  }
148
148
 
@@ -137,7 +137,7 @@ const osceStationReplicationQuery = `query OsceStationReplication($lastId: Strin
137
137
  }
138
138
 
139
139
  # user-specific keys
140
- # attempted
140
+ # lastOsceMarksheetId
141
141
  # score
142
142
  }
143
143