@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.
- package/models/OsceStation.d.ts +1 -1
- package/package.json +1 -1
- package/resolvers/fragments/osce.js +1 -1
- package/resolvers/fragments/osce.mjs +1 -1
- package/resolvers/query/restricted/osce.js +2 -2
- package/resolvers/query/restricted/osce.mjs +2 -2
- package/resolvers/query/restricted/replication.js +1 -1
- package/resolvers/query/restricted/replication.mjs +1 -1
package/models/OsceStation.d.ts
CHANGED
|
@@ -42,7 +42,7 @@ export interface IOsceStation {
|
|
|
42
42
|
walkthroughPictures?: IOsceWalkthroughPicture[];
|
|
43
43
|
}
|
|
44
44
|
export interface IOsceStationItem extends IOsceStation {
|
|
45
|
-
|
|
45
|
+
lastOsceMarksheetId: Id;
|
|
46
46
|
score: number;
|
|
47
47
|
}
|
|
48
48
|
export declare const OSCE_GLOBAL_RATING: {
|
package/package.json
CHANGED
|
@@ -70,7 +70,7 @@ exports.OSCE_STATIONS = (0, client_1.gql) `
|
|
|
70
70
|
topicIds: $topicIds
|
|
71
71
|
) {
|
|
72
72
|
...OsceStationFields
|
|
73
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
103
|
+
lastOsceMarksheetId
|
|
104
104
|
score
|
|
105
105
|
}
|
|
106
106
|
}
|