@quesmed/types-rn 2.6.263 → 2.6.264
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
|
@@ -81,6 +81,7 @@ export interface ISaveOsceMarksheetVar {
|
|
|
81
81
|
osceMarksheetId: Id;
|
|
82
82
|
globalScore?: number;
|
|
83
83
|
feedback?: string;
|
|
84
|
+
corrected?: boolean;
|
|
84
85
|
}
|
|
85
86
|
export type ISaveOsceMarksheetData = RestrictedData<graphqlNormalize & IOsceMarksheet, 'saveOsceMarksheet'>;
|
|
86
87
|
export declare const MODIFY_OSCE_MARKSHEET: import("@apollo/client").DocumentNode;
|
|
@@ -259,12 +259,14 @@ exports.SAVE_OSCE_MARKSHEET = (0, client_1.gql) `
|
|
|
259
259
|
$osceMarksheetId: Int!
|
|
260
260
|
$feedback: String
|
|
261
261
|
$globalScore: Int
|
|
262
|
+
$corrected: Boolean
|
|
262
263
|
) {
|
|
263
264
|
restricted {
|
|
264
265
|
saveOsceMarksheet(
|
|
265
266
|
osceMarksheetId: $osceMarksheetId
|
|
266
267
|
feedback: $feedback
|
|
267
268
|
globalScore: $globalScore
|
|
269
|
+
corrected: $corrected
|
|
268
270
|
) {
|
|
269
271
|
id
|
|
270
272
|
feedback
|