@quesmed/types 1.4.19 → 1.4.20

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.4.19",
3
+ "version": "1.4.20",
4
4
  "description": "Typescript types for Quesmed",
5
5
  "main": "index.js",
6
6
  "module": "index.mjs",
@@ -3,7 +3,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.OSCE_MATCHMAKING_ACTION_FIELDS = exports.OSCE_MARKSHEET_ACTION_FIELDS = exports.OSCE_GROUP_FIELDS = exports.OSCE_MARKSHEET_FIELDS = exports.OSCE_MARKSHEET_MARK_FIELDS = exports.OSCE_MARKSHEET_USER_FIELDS = exports.OSCE_STATION_FIELDS = exports.OSCE_STATION_MARK_FIELDS = exports.OSCE_TYPE_FIELDS = exports.OSCE_STATION_TOPIC_FIELDS = void 0;
4
4
  const client_1 = require("@apollo/client");
5
5
  const picture_1 = require("./picture");
6
- const user_1 = require("./user");
7
6
  exports.OSCE_STATION_TOPIC_FIELDS = (0, client_1.gql) `
8
7
  fragment OsceStationTopicFields on Topic {
9
8
  id
@@ -73,7 +72,6 @@ exports.OSCE_STATION_FIELDS = (0, client_1.gql) `
73
72
  }
74
73
  `;
75
74
  exports.OSCE_MARKSHEET_USER_FIELDS = (0, client_1.gql) `
76
- ${user_1.USER_FIELDS}
77
75
  fragment OsceMarksheetUserFields on OsceMarksheetUser {
78
76
  # id - do not pass otherwise all unassigned roles = candidate
79
77
  osceMarksheetId
@@ -144,13 +142,14 @@ exports.OSCE_GROUP_FIELDS = (0, client_1.gql) `
144
142
  }
145
143
  `;
146
144
  exports.OSCE_MARKSHEET_ACTION_FIELDS = (0, client_1.gql) `
147
- ${user_1.USER_FIELDS}
148
145
  fragment OsceMarksheetActionFields on OsceMarksheetAction {
149
146
  osceMarksheetId
150
147
  agoraId
151
148
  userId
152
149
  user {
153
- ...UserFields
150
+ id
151
+ displayName
152
+ universityId
154
153
  }
155
154
  startedAt
156
155
  endedAt
@@ -1,6 +1,5 @@
1
1
  import { gql } from '@apollo/client';
2
2
  import { OSCE_PICTURE_FIELDS } from './picture';
3
- import { USER_FIELDS } from './user';
4
3
  export const OSCE_STATION_TOPIC_FIELDS = gql `
5
4
  fragment OsceStationTopicFields on Topic {
6
5
  id
@@ -70,7 +69,6 @@ export const OSCE_STATION_FIELDS = gql `
70
69
  }
71
70
  `;
72
71
  export const OSCE_MARKSHEET_USER_FIELDS = gql `
73
- ${USER_FIELDS}
74
72
  fragment OsceMarksheetUserFields on OsceMarksheetUser {
75
73
  # id - do not pass otherwise all unassigned roles = candidate
76
74
  osceMarksheetId
@@ -141,13 +139,14 @@ export const OSCE_GROUP_FIELDS = gql `
141
139
  }
142
140
  `;
143
141
  export const OSCE_MARKSHEET_ACTION_FIELDS = gql `
144
- ${USER_FIELDS}
145
142
  fragment OsceMarksheetActionFields on OsceMarksheetAction {
146
143
  osceMarksheetId
147
144
  agoraId
148
145
  userId
149
146
  user {
150
- ...UserFields
147
+ id
148
+ displayName
149
+ universityId
151
150
  }
152
151
  startedAt
153
152
  endedAt