@quesmed/types 1.4.20 → 1.4.24

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/index.d.ts CHANGED
@@ -1,3 +1,4 @@
1
+ export * as Models from './models';
1
2
  export * from './resolvers';
2
3
  export * as utils from './utils';
3
4
  export declare const ERRORS: {
package/index.js CHANGED
@@ -11,9 +11,6 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (
11
11
  }) : function(o, v) {
12
12
  o["default"] = v;
13
13
  });
14
- var __exportStar = (this && this.__exportStar) || function(m, exports) {
15
- for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
16
- };
17
14
  var __importStar = (this && this.__importStar) || function (mod) {
18
15
  if (mod && mod.__esModule) return mod;
19
16
  var result = {};
@@ -21,8 +18,12 @@ var __importStar = (this && this.__importStar) || function (mod) {
21
18
  __setModuleDefault(result, mod);
22
19
  return result;
23
20
  };
21
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
22
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
23
+ };
24
24
  Object.defineProperty(exports, "__esModule", { value: true });
25
- exports.termsAndConditions = exports.EPlatformId = exports.FCM_TOPICS = exports.ERRORS = exports.utils = void 0;
25
+ exports.termsAndConditions = exports.EPlatformId = exports.FCM_TOPICS = exports.ERRORS = exports.utils = exports.Models = void 0;
26
+ exports.Models = __importStar(require("./models"));
26
27
  __exportStar(require("./resolvers"), exports);
27
28
  exports.utils = __importStar(require("./utils"));
28
29
  exports.ERRORS = {
package/index.mjs CHANGED
@@ -1,3 +1,4 @@
1
+ export * as Models from './models';
1
2
  export * from './resolvers';
2
3
  export * as utils from './utils';
3
4
  export const ERRORS = {
package/models/User.d.ts CHANGED
@@ -6,6 +6,14 @@ import { ISubscription } from './Subscription';
6
6
  import { ITopic } from './Topic';
7
7
  import { Id } from './Type';
8
8
  export declare type IClassYear = 'Year 1' | 'Year 2' | 'Year 3' | 'Year 4' | 'Year 5' | 'Graduated' | 'PhD' | 'BSc' | 'MSc' | 'Beta Tester';
9
+ export declare const classYears: IClassYear[];
10
+ export declare enum EClassYearGroup {
11
+ PRECLINICAL = 0,
12
+ CLINICAL = 1
13
+ }
14
+ export declare const classYearGroup: {
15
+ [key: string]: EClassYearGroup;
16
+ };
9
17
  export interface IPayload {
10
18
  id: Id;
11
19
  displayName: string;
@@ -46,6 +54,8 @@ export interface IUser {
46
54
  stripeSubscriptionEndDate: number | Date | null;
47
55
  stripePriceNickname: string | null;
48
56
  }
57
+ export declare function currentClassYear(createdAtUnix: number, classYear: IClassYear): IClassYear;
58
+ export declare function currentClassGroup(createdAtUnix: number, classYear: IClassYear): EClassYearGroup;
49
59
  export interface IUserCompletedQuestions {
50
60
  id: Id;
51
61
  createdAt: number | Date;
package/models/User.js CHANGED
@@ -1,2 +1,61 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.currentClassGroup = exports.currentClassYear = exports.classYearGroup = exports.EClassYearGroup = exports.classYears = void 0;
4
+ exports.classYears = [
5
+ 'Year 1',
6
+ 'Year 2',
7
+ 'Year 3',
8
+ 'Year 4',
9
+ 'Year 5',
10
+ 'Graduated',
11
+ ];
12
+ var EClassYearGroup;
13
+ (function (EClassYearGroup) {
14
+ EClassYearGroup[EClassYearGroup["PRECLINICAL"] = 0] = "PRECLINICAL";
15
+ EClassYearGroup[EClassYearGroup["CLINICAL"] = 1] = "CLINICAL";
16
+ })(EClassYearGroup = exports.EClassYearGroup || (exports.EClassYearGroup = {}));
17
+ exports.classYearGroup = {
18
+ 'Year 1': EClassYearGroup.PRECLINICAL,
19
+ 'Year 2': EClassYearGroup.PRECLINICAL,
20
+ 'Year 3': EClassYearGroup.CLINICAL,
21
+ 'Year 4': EClassYearGroup.CLINICAL,
22
+ 'Year 5': EClassYearGroup.CLINICAL,
23
+ Graduated: EClassYearGroup.CLINICAL,
24
+ PhD: EClassYearGroup.CLINICAL,
25
+ BSc: EClassYearGroup.PRECLINICAL,
26
+ MSc: EClassYearGroup.CLINICAL,
27
+ 'Beta Tester': EClassYearGroup.CLINICAL,
28
+ };
29
+ function currentClassYear(createdAtUnix, classYear) {
30
+ if (!createdAtUnix) {
31
+ return classYear;
32
+ }
33
+ const lastClassYearIdx = exports.classYears.length - 1;
34
+ const classYearsIdx = exports.classYears.findIndex((x) => x === classYear);
35
+ if (classYearsIdx === -1) {
36
+ return exports.classYears[lastClassYearIdx];
37
+ }
38
+ const now = new Date();
39
+ const currentYear = now.getFullYear();
40
+ const createdAt = new Date(createdAtUnix * 1000);
41
+ const createdYear = createdAt.getFullYear();
42
+ let yearsAdded = currentYear - createdYear;
43
+ const createdAcademicYear = new Date(createdYear, 7, 1);
44
+ const nowAcademicYear = new Date(currentYear, 7, 1);
45
+ if (createdAt > createdAcademicYear) {
46
+ yearsAdded--;
47
+ }
48
+ if (now > nowAcademicYear) {
49
+ yearsAdded++;
50
+ }
51
+ const newClassYearIdx = classYearsIdx + yearsAdded;
52
+ return newClassYearIdx > lastClassYearIdx
53
+ ? exports.classYears[lastClassYearIdx]
54
+ : exports.classYears[newClassYearIdx];
55
+ }
56
+ exports.currentClassYear = currentClassYear;
57
+ function currentClassGroup(createdAtUnix, classYear) {
58
+ const currentClass = currentClassYear(createdAtUnix, classYear);
59
+ return exports.classYearGroup[currentClass] || EClassYearGroup.CLINICAL;
60
+ }
61
+ exports.currentClassGroup = currentClassGroup;
package/models/User.mjs CHANGED
@@ -1 +1,56 @@
1
- export {};
1
+ export const classYears = [
2
+ 'Year 1',
3
+ 'Year 2',
4
+ 'Year 3',
5
+ 'Year 4',
6
+ 'Year 5',
7
+ 'Graduated',
8
+ ];
9
+ export var EClassYearGroup;
10
+ (function (EClassYearGroup) {
11
+ EClassYearGroup[EClassYearGroup["PRECLINICAL"] = 0] = "PRECLINICAL";
12
+ EClassYearGroup[EClassYearGroup["CLINICAL"] = 1] = "CLINICAL";
13
+ })(EClassYearGroup || (EClassYearGroup = {}));
14
+ export const classYearGroup = {
15
+ 'Year 1': EClassYearGroup.PRECLINICAL,
16
+ 'Year 2': EClassYearGroup.PRECLINICAL,
17
+ 'Year 3': EClassYearGroup.CLINICAL,
18
+ 'Year 4': EClassYearGroup.CLINICAL,
19
+ 'Year 5': EClassYearGroup.CLINICAL,
20
+ Graduated: EClassYearGroup.CLINICAL,
21
+ PhD: EClassYearGroup.CLINICAL,
22
+ BSc: EClassYearGroup.PRECLINICAL,
23
+ MSc: EClassYearGroup.CLINICAL,
24
+ 'Beta Tester': EClassYearGroup.CLINICAL,
25
+ };
26
+ export function currentClassYear(createdAtUnix, classYear) {
27
+ if (!createdAtUnix) {
28
+ return classYear;
29
+ }
30
+ const lastClassYearIdx = classYears.length - 1;
31
+ const classYearsIdx = classYears.findIndex((x) => x === classYear);
32
+ if (classYearsIdx === -1) {
33
+ return classYears[lastClassYearIdx];
34
+ }
35
+ const now = new Date();
36
+ const currentYear = now.getFullYear();
37
+ const createdAt = new Date(createdAtUnix * 1000);
38
+ const createdYear = createdAt.getFullYear();
39
+ let yearsAdded = currentYear - createdYear;
40
+ const createdAcademicYear = new Date(createdYear, 7, 1);
41
+ const nowAcademicYear = new Date(currentYear, 7, 1);
42
+ if (createdAt > createdAcademicYear) {
43
+ yearsAdded--;
44
+ }
45
+ if (now > nowAcademicYear) {
46
+ yearsAdded++;
47
+ }
48
+ const newClassYearIdx = classYearsIdx + yearsAdded;
49
+ return newClassYearIdx > lastClassYearIdx
50
+ ? classYears[lastClassYearIdx]
51
+ : classYears[newClassYearIdx];
52
+ }
53
+ export function currentClassGroup(createdAtUnix, classYear) {
54
+ const currentClass = currentClassYear(createdAtUnix, classYear);
55
+ return classYearGroup[currentClass] || EClassYearGroup.CLINICAL;
56
+ }
package/models/index.d.ts CHANGED
@@ -1,4 +1,5 @@
1
1
  export * from './Author';
2
+ export * from './Blog';
2
3
  export * from './Book';
3
4
  export * from './Card';
4
5
  export * from './Chapter';
@@ -21,4 +22,3 @@ export * from './Type';
21
22
  export * from './University';
22
23
  export * from './User';
23
24
  export * from './Video';
24
- export * from './Blog';
package/models/index.js CHANGED
@@ -11,6 +11,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
11
11
  };
12
12
  Object.defineProperty(exports, "__esModule", { value: true });
13
13
  __exportStar(require("./Author"), exports);
14
+ __exportStar(require("./Blog"), exports);
14
15
  __exportStar(require("./Book"), exports);
15
16
  __exportStar(require("./Card"), exports);
16
17
  __exportStar(require("./Chapter"), exports);
@@ -33,4 +34,3 @@ __exportStar(require("./Type"), exports);
33
34
  __exportStar(require("./University"), exports);
34
35
  __exportStar(require("./User"), exports);
35
36
  __exportStar(require("./Video"), exports);
36
- __exportStar(require("./Blog"), exports);
package/models/index.mjs CHANGED
@@ -1,4 +1,5 @@
1
1
  export * from './Author';
2
+ export * from './Blog';
2
3
  export * from './Book';
3
4
  export * from './Card';
4
5
  export * from './Chapter';
@@ -21,4 +22,3 @@ export * from './Type';
21
22
  export * from './University';
22
23
  export * from './User';
23
24
  export * from './Video';
24
- export * from './Blog';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quesmed/types",
3
- "version": "1.4.20",
3
+ "version": "1.4.24",
4
4
  "description": "Typescript types for Quesmed",
5
5
  "main": "index.js",
6
6
  "module": "index.mjs",
@@ -1,8 +1,5 @@
1
- export declare const OSCE_STATION_TOPIC_FIELDS: import("@apollo/client").DocumentNode;
2
- export declare const OSCE_TYPE_FIELDS: import("@apollo/client").DocumentNode;
3
1
  export declare const OSCE_STATION_MARK_FIELDS: import("@apollo/client").DocumentNode;
4
2
  export declare const OSCE_STATION_FIELDS: import("@apollo/client").DocumentNode;
5
- export declare const OSCE_MARKSHEET_USER_FIELDS: import("@apollo/client").DocumentNode;
6
3
  export declare const OSCE_MARKSHEET_MARK_FIELDS: import("@apollo/client").DocumentNode;
7
4
  export declare const OSCE_MARKSHEET_FIELDS: import("@apollo/client").DocumentNode;
8
5
  export declare const OSCE_GROUP_FIELDS: import("@apollo/client").DocumentNode;
@@ -1,25 +1,8 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
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;
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_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
- exports.OSCE_STATION_TOPIC_FIELDS = (0, client_1.gql) `
7
- fragment OsceStationTopicFields on Topic {
8
- id
9
- name
10
- typeId
11
- }
12
- `;
13
- exports.OSCE_TYPE_FIELDS = (0, client_1.gql) `
14
- fragment OsceTypeFields on OsceType {
15
- id
16
- name
17
- # user-specific keys
18
- # completed
19
- # total
20
- # avgScore
21
- }
22
- `;
23
6
  exports.OSCE_STATION_MARK_FIELDS = (0, client_1.gql) `
24
7
  fragment OsceStationMarkFields on OsceStationMark {
25
8
  id
@@ -30,8 +13,6 @@ exports.OSCE_STATION_MARK_FIELDS = (0, client_1.gql) `
30
13
  }
31
14
  `;
32
15
  exports.OSCE_STATION_FIELDS = (0, client_1.gql) `
33
- ${exports.OSCE_TYPE_FIELDS}
34
- ${exports.OSCE_STATION_TOPIC_FIELDS}
35
16
  ${picture_1.OSCE_PICTURE_FIELDS}
36
17
  ${exports.OSCE_STATION_MARK_FIELDS}
37
18
  fragment OsceStationFields on OsceStation {
@@ -40,7 +21,8 @@ exports.OSCE_STATION_FIELDS = (0, client_1.gql) `
40
21
  deleted
41
22
  name
42
23
  osceType {
43
- ...OsceTypeFields
24
+ id
25
+ name
44
26
  }
45
27
  difficulty
46
28
  candidateBrief
@@ -51,7 +33,8 @@ exports.OSCE_STATION_FIELDS = (0, client_1.gql) `
51
33
  ...OsceStationMarkFields
52
34
  }
53
35
  topics {
54
- ...OsceStationTopicFields
36
+ id
37
+ name
55
38
  }
56
39
  candidatePictures {
57
40
  ...OscePictureFields
@@ -71,18 +54,6 @@ exports.OSCE_STATION_FIELDS = (0, client_1.gql) `
71
54
  # score
72
55
  }
73
56
  `;
74
- exports.OSCE_MARKSHEET_USER_FIELDS = (0, client_1.gql) `
75
- fragment OsceMarksheetUserFields on OsceMarksheetUser {
76
- # id - do not pass otherwise all unassigned roles = candidate
77
- osceMarksheetId
78
- userId
79
- user {
80
- id
81
- displayName
82
- }
83
- role
84
- }
85
- `;
86
57
  exports.OSCE_MARKSHEET_MARK_FIELDS = (0, client_1.gql) `
87
58
  ${exports.OSCE_STATION_MARK_FIELDS}
88
59
  fragment OsceMarksheetMarkFields on OsceMarksheetMark {
@@ -98,7 +69,6 @@ exports.OSCE_MARKSHEET_MARK_FIELDS = (0, client_1.gql) `
98
69
  `;
99
70
  exports.OSCE_MARKSHEET_FIELDS = (0, client_1.gql) `
100
71
  ${exports.OSCE_MARKSHEET_MARK_FIELDS}
101
- ${exports.OSCE_MARKSHEET_USER_FIELDS}
102
72
  fragment OsceMarksheetFields on OsceMarksheet {
103
73
  id
104
74
  createdAt
@@ -122,7 +92,14 @@ exports.OSCE_MARKSHEET_FIELDS = (0, client_1.gql) `
122
92
  ...OsceMarksheetMarkFields
123
93
  }
124
94
  users {
125
- ...OsceMarksheetUserFields
95
+ # id - do not pass otherwise all unassigned roles = candidate
96
+ osceMarksheetId
97
+ userId
98
+ user {
99
+ id
100
+ displayName
101
+ }
102
+ role
126
103
  }
127
104
  members {
128
105
  id
@@ -132,12 +109,17 @@ exports.OSCE_MARKSHEET_FIELDS = (0, client_1.gql) `
132
109
  }
133
110
  `;
134
111
  exports.OSCE_GROUP_FIELDS = (0, client_1.gql) `
135
- ${exports.OSCE_MARKSHEET_USER_FIELDS}
136
112
  fragment OsceGroupFields on OsceGroup {
137
113
  osceMarksheetId
138
114
  agoraId
139
115
  members {
140
- ...OsceMarksheetUserFields
116
+ osceMarksheetId
117
+ userId
118
+ user {
119
+ id
120
+ displayName
121
+ }
122
+ role
141
123
  }
142
124
  }
143
125
  `;
@@ -1,22 +1,5 @@
1
1
  import { gql } from '@apollo/client';
2
2
  import { OSCE_PICTURE_FIELDS } from './picture';
3
- export const OSCE_STATION_TOPIC_FIELDS = gql `
4
- fragment OsceStationTopicFields on Topic {
5
- id
6
- name
7
- typeId
8
- }
9
- `;
10
- export const OSCE_TYPE_FIELDS = gql `
11
- fragment OsceTypeFields on OsceType {
12
- id
13
- name
14
- # user-specific keys
15
- # completed
16
- # total
17
- # avgScore
18
- }
19
- `;
20
3
  export const OSCE_STATION_MARK_FIELDS = gql `
21
4
  fragment OsceStationMarkFields on OsceStationMark {
22
5
  id
@@ -27,8 +10,6 @@ export const OSCE_STATION_MARK_FIELDS = gql `
27
10
  }
28
11
  `;
29
12
  export const OSCE_STATION_FIELDS = gql `
30
- ${OSCE_TYPE_FIELDS}
31
- ${OSCE_STATION_TOPIC_FIELDS}
32
13
  ${OSCE_PICTURE_FIELDS}
33
14
  ${OSCE_STATION_MARK_FIELDS}
34
15
  fragment OsceStationFields on OsceStation {
@@ -37,7 +18,8 @@ export const OSCE_STATION_FIELDS = gql `
37
18
  deleted
38
19
  name
39
20
  osceType {
40
- ...OsceTypeFields
21
+ id
22
+ name
41
23
  }
42
24
  difficulty
43
25
  candidateBrief
@@ -48,7 +30,8 @@ export const OSCE_STATION_FIELDS = gql `
48
30
  ...OsceStationMarkFields
49
31
  }
50
32
  topics {
51
- ...OsceStationTopicFields
33
+ id
34
+ name
52
35
  }
53
36
  candidatePictures {
54
37
  ...OscePictureFields
@@ -68,18 +51,6 @@ export const OSCE_STATION_FIELDS = gql `
68
51
  # score
69
52
  }
70
53
  `;
71
- export const OSCE_MARKSHEET_USER_FIELDS = gql `
72
- fragment OsceMarksheetUserFields on OsceMarksheetUser {
73
- # id - do not pass otherwise all unassigned roles = candidate
74
- osceMarksheetId
75
- userId
76
- user {
77
- id
78
- displayName
79
- }
80
- role
81
- }
82
- `;
83
54
  export const OSCE_MARKSHEET_MARK_FIELDS = gql `
84
55
  ${OSCE_STATION_MARK_FIELDS}
85
56
  fragment OsceMarksheetMarkFields on OsceMarksheetMark {
@@ -95,7 +66,6 @@ export const OSCE_MARKSHEET_MARK_FIELDS = gql `
95
66
  `;
96
67
  export const OSCE_MARKSHEET_FIELDS = gql `
97
68
  ${OSCE_MARKSHEET_MARK_FIELDS}
98
- ${OSCE_MARKSHEET_USER_FIELDS}
99
69
  fragment OsceMarksheetFields on OsceMarksheet {
100
70
  id
101
71
  createdAt
@@ -119,7 +89,14 @@ export const OSCE_MARKSHEET_FIELDS = gql `
119
89
  ...OsceMarksheetMarkFields
120
90
  }
121
91
  users {
122
- ...OsceMarksheetUserFields
92
+ # id - do not pass otherwise all unassigned roles = candidate
93
+ osceMarksheetId
94
+ userId
95
+ user {
96
+ id
97
+ displayName
98
+ }
99
+ role
123
100
  }
124
101
  members {
125
102
  id
@@ -129,12 +106,17 @@ export const OSCE_MARKSHEET_FIELDS = gql `
129
106
  }
130
107
  `;
131
108
  export const OSCE_GROUP_FIELDS = gql `
132
- ${OSCE_MARKSHEET_USER_FIELDS}
133
109
  fragment OsceGroupFields on OsceGroup {
134
110
  osceMarksheetId
135
111
  agoraId
136
112
  members {
137
- ...OsceMarksheetUserFields
113
+ osceMarksheetId
114
+ userId
115
+ user {
116
+ id
117
+ displayName
118
+ }
119
+ role
138
120
  }
139
121
  }
140
122
  `;
@@ -2,8 +2,7 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.VIDEO_FIELDS = exports.VIDEO_FILE_FIELDS = void 0;
4
4
  const client_1 = require("@apollo/client");
5
- const chapter_1 = require("./chapter");
6
- const concept_1 = require("./concept");
5
+ const picture_1 = require("./picture");
7
6
  exports.VIDEO_FILE_FIELDS = (0, client_1.gql) `
8
7
  fragment VideoFileFields on File {
9
8
  id
@@ -14,9 +13,7 @@ exports.VIDEO_FILE_FIELDS = (0, client_1.gql) `
14
13
  }
15
14
  `;
16
15
  exports.VIDEO_FIELDS = (0, client_1.gql) `
17
- ${exports.VIDEO_FILE_FIELDS}
18
- ${chapter_1.CHAPTER_FIELDS}
19
- ${concept_1.CONCEPT_TOPIC_FIELDS}
16
+ ${picture_1.CHAPTER_PICTURE_FIELDS}
20
17
  fragment VideoFields on Video {
21
18
  id
22
19
  title
@@ -30,11 +27,22 @@ exports.VIDEO_FIELDS = (0, client_1.gql) `
30
27
  name
31
28
  chapterId
32
29
  chapter {
33
- ...ChapterFields
30
+ id
31
+ createdAt
32
+ updatedAt
33
+ explanation
34
+ typeId
35
+ pictures {
36
+ ...ChapterPictureFields
37
+ }
38
+ files {
39
+ ...VideoFileFields
40
+ }
34
41
  }
35
42
  topicId
36
43
  topic {
37
- ...ConceptTopicFields
44
+ id
45
+ name
38
46
  }
39
47
  }
40
48
  live
@@ -1,6 +1,5 @@
1
1
  import { gql } from '@apollo/client';
2
- import { CHAPTER_FIELDS } from './chapter';
3
- import { CONCEPT_TOPIC_FIELDS } from './concept';
2
+ import { CHAPTER_PICTURE_FIELDS } from './picture';
4
3
  export const VIDEO_FILE_FIELDS = gql `
5
4
  fragment VideoFileFields on File {
6
5
  id
@@ -11,9 +10,7 @@ export const VIDEO_FILE_FIELDS = gql `
11
10
  }
12
11
  `;
13
12
  export const VIDEO_FIELDS = gql `
14
- ${VIDEO_FILE_FIELDS}
15
- ${CHAPTER_FIELDS}
16
- ${CONCEPT_TOPIC_FIELDS}
13
+ ${CHAPTER_PICTURE_FIELDS}
17
14
  fragment VideoFields on Video {
18
15
  id
19
16
  title
@@ -27,11 +24,22 @@ export const VIDEO_FIELDS = gql `
27
24
  name
28
25
  chapterId
29
26
  chapter {
30
- ...ChapterFields
27
+ id
28
+ createdAt
29
+ updatedAt
30
+ explanation
31
+ typeId
32
+ pictures {
33
+ ...ChapterPictureFields
34
+ }
35
+ files {
36
+ ...VideoFileFields
37
+ }
31
38
  }
32
39
  topicId
33
40
  topic {
34
- ...ConceptTopicFields
41
+ id
42
+ name
35
43
  }
36
44
  }
37
45
  live
@@ -1,2 +1,5 @@
1
+ export * as admin from './admin';
2
+ export * as restricted from './restricted';
1
3
  export * from './stripe';
2
4
  export * from './users';
5
+ export * as validUserToken from './validUserToken';
@@ -6,9 +6,25 @@ var __createBinding = (this && this.__createBinding) || (Object.create ? (functi
6
6
  if (k2 === undefined) k2 = k;
7
7
  o[k2] = m[k];
8
8
  }));
9
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
10
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
11
+ }) : function(o, v) {
12
+ o["default"] = v;
13
+ });
14
+ var __importStar = (this && this.__importStar) || function (mod) {
15
+ if (mod && mod.__esModule) return mod;
16
+ var result = {};
17
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
18
+ __setModuleDefault(result, mod);
19
+ return result;
20
+ };
9
21
  var __exportStar = (this && this.__exportStar) || function(m, exports) {
10
22
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
11
23
  };
12
24
  Object.defineProperty(exports, "__esModule", { value: true });
25
+ exports.validUserToken = exports.restricted = exports.admin = void 0;
26
+ exports.admin = __importStar(require("./admin"));
27
+ exports.restricted = __importStar(require("./restricted"));
13
28
  __exportStar(require("./stripe"), exports);
14
29
  __exportStar(require("./users"), exports);
30
+ exports.validUserToken = __importStar(require("./validUserToken"));
@@ -1,2 +1,5 @@
1
+ export * as admin from './admin';
2
+ export * as restricted from './restricted';
1
3
  export * from './stripe';
2
4
  export * from './users';
5
+ export * as validUserToken from './validUserToken';
@@ -1,7 +1,9 @@
1
+ export * as admin from './admin';
1
2
  export * from './author';
2
3
  export * from './blog';
3
4
  export * from './book';
4
5
  export * from './feedback';
6
+ export * as restricted from './restricted';
5
7
  export * from './sampleCards';
6
8
  export * from './sampleQuestions';
7
9
  export * from './subscription';
@@ -6,14 +6,29 @@ var __createBinding = (this && this.__createBinding) || (Object.create ? (functi
6
6
  if (k2 === undefined) k2 = k;
7
7
  o[k2] = m[k];
8
8
  }));
9
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
10
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
11
+ }) : function(o, v) {
12
+ o["default"] = v;
13
+ });
14
+ var __importStar = (this && this.__importStar) || function (mod) {
15
+ if (mod && mod.__esModule) return mod;
16
+ var result = {};
17
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
18
+ __setModuleDefault(result, mod);
19
+ return result;
20
+ };
9
21
  var __exportStar = (this && this.__exportStar) || function(m, exports) {
10
22
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
11
23
  };
12
24
  Object.defineProperty(exports, "__esModule", { value: true });
25
+ exports.restricted = exports.admin = void 0;
26
+ exports.admin = __importStar(require("./admin"));
13
27
  __exportStar(require("./author"), exports);
14
28
  __exportStar(require("./blog"), exports);
15
29
  __exportStar(require("./book"), exports);
16
30
  __exportStar(require("./feedback"), exports);
31
+ exports.restricted = __importStar(require("./restricted"));
17
32
  __exportStar(require("./sampleCards"), exports);
18
33
  __exportStar(require("./sampleQuestions"), exports);
19
34
  __exportStar(require("./subscription"), exports);
@@ -1,7 +1,9 @@
1
+ export * as admin from './admin';
1
2
  export * from './author';
2
3
  export * from './blog';
3
4
  export * from './book';
4
5
  export * from './feedback';
6
+ export * as restricted from './restricted';
5
7
  export * from './sampleCards';
6
8
  export * from './sampleQuestions';
7
9
  export * from './subscription';
@@ -5,13 +5,13 @@ const client_1 = require("@apollo/client");
5
5
  const osce_1 = require("../../fragments/osce");
6
6
  const osce_2 = require("./../../fragments/osce");
7
7
  exports.DASHBOARD_OSCE = (0, client_1.gql) `
8
- ${osce_1.OSCE_TYPE_FIELDS}
9
8
  query DashboardOsce($solo: Boolean!) {
10
9
  restricted {
11
10
  dashboardOsce(solo: $solo) {
12
11
  lastAgoraId
13
12
  types {
14
- ...OsceTypeFields
13
+ id
14
+ name
15
15
  # user-specific
16
16
  completed
17
17
  total
@@ -87,11 +87,12 @@ exports.OSCE_STATION = (0, client_1.gql) `
87
87
  }
88
88
  `;
89
89
  exports.OSCE_TOPICS = (0, client_1.gql) `
90
- ${osce_1.OSCE_STATION_TOPIC_FIELDS}
91
90
  query OsceTopics {
92
91
  restricted {
93
92
  osceTopics {
94
- ...OsceStationTopicFields
93
+ id
94
+ name
95
+ typeId
95
96
  }
96
97
  }
97
98
  }
@@ -1,14 +1,14 @@
1
1
  import { gql } from '@apollo/client';
2
- import { OSCE_MARKSHEET_FIELDS, OSCE_STATION_TOPIC_FIELDS, OSCE_TYPE_FIELDS, } from '../../fragments/osce';
2
+ import { OSCE_MARKSHEET_FIELDS } from '../../fragments/osce';
3
3
  import { OSCE_STATION_FIELDS } from './../../fragments/osce';
4
4
  export const DASHBOARD_OSCE = gql `
5
- ${OSCE_TYPE_FIELDS}
6
5
  query DashboardOsce($solo: Boolean!) {
7
6
  restricted {
8
7
  dashboardOsce(solo: $solo) {
9
8
  lastAgoraId
10
9
  types {
11
- ...OsceTypeFields
10
+ id
11
+ name
12
12
  # user-specific
13
13
  completed
14
14
  total
@@ -84,11 +84,12 @@ export const OSCE_STATION = gql `
84
84
  }
85
85
  `;
86
86
  export const OSCE_TOPICS = gql `
87
- ${OSCE_STATION_TOPIC_FIELDS}
88
87
  query OsceTopics {
89
88
  restricted {
90
89
  osceTopics {
91
- ...OsceStationTopicFields
90
+ id
91
+ name
92
+ typeId
92
93
  }
93
94
  }
94
95
  }
@@ -50,5 +50,8 @@ export interface IOsceMatchmakingVar {
50
50
  userId: Id;
51
51
  }
52
52
  export declare const OSCE_MATCHMAKING_USERS: import("@apollo/client").DocumentNode;
53
- export declare type IOsceMatchmakingUsersData = RootData<number, 'osceMatchmakingUsers'>;
53
+ export declare type IOsceMatchmakingUsersData = RootData<[
54
+ number,
55
+ number
56
+ ], 'osceMatchmakingUsers'>;
54
57
  export declare type IOsceMatchmakingUsersVar = null;