@quesmed/types-rn 2.6.43 → 2.6.45

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-rn",
3
- "version": "2.6.43",
3
+ "version": "2.6.45",
4
4
  "description": "Typescript types for Quesmed",
5
5
  "keywords": [
6
6
  "quesmed",
@@ -3,6 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.COMPLETED_OSCE_STATION_FRAGMENT = exports.COMPLETED_OSCE_MARKSHEET_FRAGMENT = exports.STATION_CONCEPT_FRAGMENT = exports.OSCE_MATCHMAKING_ACTION_FIELDS = exports.OSCE_MARKSHEET_FIELDS = exports.OSCE_MARKSHEET_MARK_FIELDS = exports.OSCE_STATION_FIELDS = exports.OSCE_STATION_MARK_FIELDS = void 0;
4
4
  const client_1 = require("@apollo/client");
5
5
  const picture_1 = require("./picture");
6
+ const video_1 = require("./video");
6
7
  exports.OSCE_STATION_MARK_FIELDS = (0, client_1.gql) `
7
8
  fragment OsceStationMarkFields on OsceStationMark {
8
9
  id
@@ -21,6 +22,7 @@ exports.OSCE_STATION_MARK_FIELDS = (0, client_1.gql) `
21
22
  exports.OSCE_STATION_FIELDS = (0, client_1.gql) `
22
23
  ${picture_1.PICTURE_FIELDS}
23
24
  ${exports.OSCE_STATION_MARK_FIELDS}
25
+ ${video_1.VIDEO_FIELDS}
24
26
  fragment OsceStationFields on OsceStation {
25
27
  id
26
28
  updatedAt
@@ -63,22 +65,9 @@ exports.OSCE_STATION_FIELDS = (0, client_1.gql) `
63
65
  ...PictureFields
64
66
  }
65
67
  videos {
66
- id
67
- demo
68
- title
69
- status
70
- museId
71
- thumbnail
72
- concepts {
73
- id
74
- name
75
- }
76
- live
77
- description
78
- duration
68
+ ...VideoFields
79
69
  }
80
70
  demo
81
-
82
71
  # user-specific keys
83
72
  # lastOsceMarksheetId
84
73
  # score
@@ -2,7 +2,6 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.VIDEO_STATUS_FRAGMENT = exports.VIDEO_FIELDS = exports.VIDEO_FILE_FIELDS = void 0;
4
4
  const client_1 = require("@apollo/client");
5
- const picture_1 = require("./picture");
6
5
  exports.VIDEO_FILE_FIELDS = (0, client_1.gql) `
7
6
  fragment VideoFileFields on File {
8
7
  id
@@ -13,7 +12,6 @@ exports.VIDEO_FILE_FIELDS = (0, client_1.gql) `
13
12
  }
14
13
  `;
15
14
  exports.VIDEO_FIELDS = (0, client_1.gql) `
16
- ${picture_1.PICTURE_FIELDS}
17
15
  ${exports.VIDEO_FILE_FIELDS}
18
16
  fragment VideoFields on Video {
19
17
  id
@@ -30,6 +28,13 @@ exports.VIDEO_FIELDS = (0, client_1.gql) `
30
28
  startTime
31
29
  endTime
32
30
  viewsToday
31
+ views
32
+ userViewed
33
+ osceStation {
34
+ id
35
+ name
36
+ hiddenName
37
+ }
33
38
  concepts {
34
39
  id
35
40
  name
@@ -168,6 +168,7 @@ exports.PRESTART_OSCE_MARKSHEET = (0, client_1.gql) `
168
168
  $readingTime: Int!
169
169
  $stationTime: Int!
170
170
  $feedbackTime: Int!
171
+ $isTimed: Boolean
171
172
  ) {
172
173
  restricted {
173
174
  prestartOsceMarksheet(
@@ -175,6 +176,7 @@ exports.PRESTART_OSCE_MARKSHEET = (0, client_1.gql) `
175
176
  readingTime: $readingTime
176
177
  stationTime: $stationTime
177
178
  feedbackTime: $feedbackTime
179
+ isTimed: $isTimed
178
180
  ) {
179
181
  ...OsceMarksheetFields
180
182
  osceStation {