@quesmed/types 1.5.3 → 1.5.4

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.5.3",
3
+ "version": "1.5.4",
4
4
  "description": "Typescript types for Quesmed",
5
5
  "main": "index.js",
6
6
  "module": "index.mjs",
@@ -67,7 +67,6 @@ export declare const SAVE_OSCE_MARKSHEET: import("@apollo/client").DocumentNode;
67
67
  export interface ISaveOsceMarksheetVar {
68
68
  osceMarksheetId: Id;
69
69
  globalScore?: number;
70
- timeTaken?: number;
71
70
  feedback?: string;
72
71
  }
73
72
  export declare type ISaveOsceMarksheetData = RestrictedData<graphqlNormalize & IOsceMarksheet, 'saveOsceMarksheet'>;
@@ -168,14 +168,12 @@ exports.SAVE_OSCE_MARKSHEET = (0, client_1.gql) `
168
168
  $osceMarksheetId: Int!
169
169
  $feedback: String
170
170
  $globalScore: Int
171
- $timeTaken: Int
172
171
  ) {
173
172
  restricted {
174
173
  saveOsceMarksheet(
175
174
  osceMarksheetId: $osceMarksheetId
176
175
  feedback: $feedback
177
176
  globalScore: $globalScore
178
- timeTaken: $timeTaken
179
177
  ) {
180
178
  ...OsceMarksheetFields
181
179
  }
@@ -195,14 +193,12 @@ exports.END_OSCE_MARKSHEET = (0, client_1.gql) `
195
193
  $osceMarksheetId: Int!
196
194
  $feedback: String
197
195
  $globalScore: Int
198
- $timeTaken: Int
199
196
  ) {
200
197
  restricted {
201
198
  endOsceMarksheet(
202
199
  osceMarksheetId: $osceMarksheetId
203
200
  feedback: $feedback
204
201
  globalScore: $globalScore
205
- timeTaken: $timeTaken
206
202
  ) {
207
203
  ...OsceMarksheetFields
208
204
  }
@@ -164,14 +164,12 @@ export const SAVE_OSCE_MARKSHEET = gql `
164
164
  $osceMarksheetId: Int!
165
165
  $feedback: String
166
166
  $globalScore: Int
167
- $timeTaken: Int
168
167
  ) {
169
168
  restricted {
170
169
  saveOsceMarksheet(
171
170
  osceMarksheetId: $osceMarksheetId
172
171
  feedback: $feedback
173
172
  globalScore: $globalScore
174
- timeTaken: $timeTaken
175
173
  ) {
176
174
  ...OsceMarksheetFields
177
175
  }
@@ -191,14 +189,12 @@ export const END_OSCE_MARKSHEET = gql `
191
189
  $osceMarksheetId: Int!
192
190
  $feedback: String
193
191
  $globalScore: Int
194
- $timeTaken: Int
195
192
  ) {
196
193
  restricted {
197
194
  endOsceMarksheet(
198
195
  osceMarksheetId: $osceMarksheetId
199
196
  feedback: $feedback
200
197
  globalScore: $globalScore
201
- timeTaken: $timeTaken
202
198
  ) {
203
199
  ...OsceMarksheetFields
204
200
  }