@quesmed/types 1.5.0 → 1.5.1

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.
@@ -62,6 +62,8 @@ export interface IOsceMarksheet {
62
62
  startedAt: number | Date;
63
63
  endedAt: number | Date;
64
64
  pausedAt: number | Date;
65
+ timeRemaining: string;
66
+ totalStationTime: string;
65
67
  marks: IOsceMarksheetMark[];
66
68
  users: IOsceMarksheetUser[];
67
69
  members: IUser[];
@@ -88,6 +90,6 @@ export declare enum EOsceTimerState {
88
90
  export interface IOsceMarksheetTimer {
89
91
  osceMarksheetId: number;
90
92
  timeRemaining: string;
91
- stationTime: string;
93
+ totalStationTime: string;
92
94
  state: EOsceTimerState;
93
95
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quesmed/types",
3
- "version": "1.5.0",
3
+ "version": "1.5.1",
4
4
  "description": "Typescript types for Quesmed",
5
5
  "main": "index.js",
6
6
  "module": "index.mjs",
@@ -88,6 +88,8 @@ exports.OSCE_MARKSHEET_FIELDS = (0, client_1.gql) `
88
88
  startedAt
89
89
  endedAt
90
90
  pausedAt
91
+ timeRemaining
92
+ totalStationTime
91
93
  marks {
92
94
  ...OsceMarksheetMarkFields
93
95
  }
@@ -85,6 +85,8 @@ export const OSCE_MARKSHEET_FIELDS = gql `
85
85
  startedAt
86
86
  endedAt
87
87
  pausedAt
88
+ timeRemaining
89
+ totalStationTime
88
90
  marks {
89
91
  ...OsceMarksheetMarkFields
90
92
  }
@@ -132,7 +132,7 @@ exports.START_OSCE_TIMER = (0, client_1.gql) `
132
132
  startOsceTimer(osceMarksheetId: $osceMarksheetId) {
133
133
  osceMarksheetId
134
134
  timeRemaining
135
- stationTime
135
+ totalStationTime
136
136
  state
137
137
  }
138
138
  }
@@ -128,7 +128,7 @@ export const START_OSCE_TIMER = gql `
128
128
  startOsceTimer(osceMarksheetId: $osceMarksheetId) {
129
129
  osceMarksheetId
130
130
  timeRemaining
131
- stationTime
131
+ totalStationTime
132
132
  state
133
133
  }
134
134
  }
@@ -100,7 +100,7 @@ exports.OSCE_MARKSHEET_TIMER = (0, client_1.gql) `
100
100
  osceMarksheetTimer(osceMarksheetId: $osceMarksheetId) {
101
101
  osceMarksheetId
102
102
  timeRemaining
103
- stationTime
103
+ totalStationTime
104
104
  state
105
105
  }
106
106
  }
@@ -96,7 +96,7 @@ export const OSCE_MARKSHEET_TIMER = gql `
96
96
  osceMarksheetTimer(osceMarksheetId: $osceMarksheetId) {
97
97
  osceMarksheetId
98
98
  timeRemaining
99
- stationTime
99
+ totalStationTime
100
100
  state
101
101
  }
102
102
  }