@quesmed/types 2.6.11 → 2.6.13

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.
@@ -29,7 +29,9 @@ export declare enum EOsceType {
29
29
  EXAMINATION = 3,
30
30
  PROCEDURE = 4,
31
31
  INTERPRETATION = 5,
32
- ABCDE = 6
32
+ ABCDE = 6,
33
+ PRESCRIBING = 7,
34
+ MIXED = 8
33
35
  }
34
36
  export declare enum EStationPictureType {
35
37
  ALL = 0,
@@ -10,6 +10,8 @@ var EOsceType;
10
10
  EOsceType[EOsceType["PROCEDURE"] = 4] = "PROCEDURE";
11
11
  EOsceType[EOsceType["INTERPRETATION"] = 5] = "INTERPRETATION";
12
12
  EOsceType[EOsceType["ABCDE"] = 6] = "ABCDE";
13
+ EOsceType[EOsceType["PRESCRIBING"] = 7] = "PRESCRIBING";
14
+ EOsceType[EOsceType["MIXED"] = 8] = "MIXED";
13
15
  })(EOsceType = exports.EOsceType || (exports.EOsceType = {}));
14
16
  var EStationPictureType;
15
17
  (function (EStationPictureType) {
@@ -0,0 +1,36 @@
1
+ import { Id } from './Type';
2
+ export declare enum EPrescriptionType {
3
+ Drug = 0,
4
+ Dose = 1,
5
+ Duration = 2,
6
+ Frequency = 3,
7
+ Route = 4,
8
+ Unit = 5
9
+ }
10
+ export interface IPrescriptionItem {
11
+ id: Id;
12
+ name: string;
13
+ typeId: EPrescriptionType;
14
+ }
15
+ export interface IQuestionPrescription {
16
+ id: Id;
17
+ questionId: Id;
18
+ doseId: Id;
19
+ doseDisplay: string;
20
+ doseVisible: boolean;
21
+ drugId: Id;
22
+ drugDisplay: string;
23
+ drugVisible: boolean;
24
+ routeId: Id;
25
+ routeDisplay: string;
26
+ routeVisible: boolean;
27
+ frequencyId: Id;
28
+ frequencyDisplay: string;
29
+ frequencyVisible: boolean;
30
+ durationId: Id;
31
+ durationDisplay: string;
32
+ durationVisible: boolean;
33
+ unitId: Id;
34
+ unitDisplay: string;
35
+ unitVisible: boolean;
36
+ }
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.EPrescriptionType = void 0;
4
+ var EPrescriptionType;
5
+ (function (EPrescriptionType) {
6
+ EPrescriptionType[EPrescriptionType["Drug"] = 0] = "Drug";
7
+ EPrescriptionType[EPrescriptionType["Dose"] = 1] = "Dose";
8
+ EPrescriptionType[EPrescriptionType["Duration"] = 2] = "Duration";
9
+ EPrescriptionType[EPrescriptionType["Frequency"] = 3] = "Frequency";
10
+ EPrescriptionType[EPrescriptionType["Route"] = 4] = "Route";
11
+ EPrescriptionType[EPrescriptionType["Unit"] = 5] = "Unit";
12
+ })(EPrescriptionType = exports.EPrescriptionType || (exports.EPrescriptionType = {}));
@@ -3,6 +3,7 @@ import { ICondition } from './Condition';
3
3
  import { EDifficultyType } from './Difficulty';
4
4
  import { IPicture } from './Picture';
5
5
  import { IPresentation } from './Presentation';
6
+ import { IQuestionPrescription } from './Psa';
6
7
  import { ITopic } from './Topic';
7
8
  import { Id } from './Type';
8
9
  import { IUkmlaTopic } from './UkmlaTopic';
@@ -87,6 +88,7 @@ export interface IQuestion {
87
88
  difficulty: EDifficultyType;
88
89
  elo: number;
89
90
  psaSectionId: EPsaSectionType;
91
+ prescriptions?: IQuestionPrescription[];
90
92
  likes?: number;
91
93
  dislikes?: number;
92
94
  isLikedByMe?: EQuestionLike;
@@ -19,6 +19,7 @@ export * from './Presentation';
19
19
  export * from './Preset';
20
20
  export * from './Product';
21
21
  export * from './Promo';
22
+ export * from './Psa';
22
23
  export * from './Question';
23
24
  export * from './Referrals';
24
25
  export * from './Subscription';
@@ -35,6 +35,7 @@ __exportStar(require("./Presentation"), exports);
35
35
  __exportStar(require("./Preset"), exports);
36
36
  __exportStar(require("./Product"), exports);
37
37
  __exportStar(require("./Promo"), exports);
38
+ __exportStar(require("./Psa"), exports);
38
39
  __exportStar(require("./Question"), exports);
39
40
  __exportStar(require("./Referrals"), exports);
40
41
  __exportStar(require("./Subscription"), exports);
@@ -6,6 +6,7 @@ export * from './mockTests';
6
6
  export * from './notification';
7
7
  export * from './osce';
8
8
  export * from './preset';
9
+ export * from './psa';
9
10
  export * from './qBank';
10
11
  export * from './quesBook';
11
12
  export * from './question';
@@ -22,6 +22,7 @@ __exportStar(require("./mockTests"), exports);
22
22
  __exportStar(require("./notification"), exports);
23
23
  __exportStar(require("./osce"), exports);
24
24
  __exportStar(require("./preset"), exports);
25
+ __exportStar(require("./psa"), exports);
25
26
  __exportStar(require("./qBank"), exports);
26
27
  __exportStar(require("./quesBook"), exports);
27
28
  __exportStar(require("./question"), exports);
@@ -0,0 +1,13 @@
1
+ import { EPrescriptionType, IPrescriptionItem } from '../../../models';
2
+ import { RestrictedData, graphqlNormalize } from '../../types';
3
+ export interface IPrescriptionsVar {
4
+ query: string;
5
+ limit?: number;
6
+ cursor?: number;
7
+ typeId: EPrescriptionType;
8
+ }
9
+ export type IPrescriptionsData = RestrictedData<graphqlNormalize & {
10
+ total: number;
11
+ result: IPrescriptionItem[];
12
+ }, 'prescriptions'>;
13
+ export declare const PRESCRIPTIONS: import("@apollo/client").DocumentNode;
@@ -0,0 +1,50 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.PRESCRIPTIONS = void 0;
4
+ const client_1 = require("@apollo/client");
5
+ exports.PRESCRIPTIONS = (0, client_1.gql) `
6
+ query Prescriptions($typeId: Int!, $query: String, $cursor: Int, $limit: Int) {
7
+ restricted {
8
+ prescriptions(
9
+ typeId: $typeId
10
+ query: $query
11
+ cursor: $cursor
12
+ limit: $limit
13
+ ) {
14
+ total
15
+ result {
16
+ ... on Drug {
17
+ id
18
+ name
19
+ __typename
20
+ }
21
+ ... on Dose {
22
+ id
23
+ name
24
+ __typename
25
+ }
26
+ ... on Duration {
27
+ id
28
+ name
29
+ __typename
30
+ }
31
+ ... on Frequency {
32
+ id
33
+ name
34
+ __typename
35
+ }
36
+ ... on Route {
37
+ id
38
+ name
39
+ __typename
40
+ }
41
+ ... on Unit {
42
+ id
43
+ name
44
+ __typename
45
+ }
46
+ }
47
+ }
48
+ }
49
+ }
50
+ `;
@@ -29,7 +29,9 @@ export declare enum EOsceType {
29
29
  EXAMINATION = 3,
30
30
  PROCEDURE = 4,
31
31
  INTERPRETATION = 5,
32
- ABCDE = 6
32
+ ABCDE = 6,
33
+ PRESCRIBING = 7,
34
+ MIXED = 8
33
35
  }
34
36
  export declare enum EStationPictureType {
35
37
  ALL = 0,
@@ -7,6 +7,8 @@ export var EOsceType;
7
7
  EOsceType[EOsceType["PROCEDURE"] = 4] = "PROCEDURE";
8
8
  EOsceType[EOsceType["INTERPRETATION"] = 5] = "INTERPRETATION";
9
9
  EOsceType[EOsceType["ABCDE"] = 6] = "ABCDE";
10
+ EOsceType[EOsceType["PRESCRIBING"] = 7] = "PRESCRIBING";
11
+ EOsceType[EOsceType["MIXED"] = 8] = "MIXED";
10
12
  })(EOsceType || (EOsceType = {}));
11
13
  export var EStationPictureType;
12
14
  (function (EStationPictureType) {
@@ -0,0 +1,36 @@
1
+ import { Id } from './Type';
2
+ export declare enum EPrescriptionType {
3
+ Drug = 0,
4
+ Dose = 1,
5
+ Duration = 2,
6
+ Frequency = 3,
7
+ Route = 4,
8
+ Unit = 5
9
+ }
10
+ export interface IPrescriptionItem {
11
+ id: Id;
12
+ name: string;
13
+ typeId: EPrescriptionType;
14
+ }
15
+ export interface IQuestionPrescription {
16
+ id: Id;
17
+ questionId: Id;
18
+ doseId: Id;
19
+ doseDisplay: string;
20
+ doseVisible: boolean;
21
+ drugId: Id;
22
+ drugDisplay: string;
23
+ drugVisible: boolean;
24
+ routeId: Id;
25
+ routeDisplay: string;
26
+ routeVisible: boolean;
27
+ frequencyId: Id;
28
+ frequencyDisplay: string;
29
+ frequencyVisible: boolean;
30
+ durationId: Id;
31
+ durationDisplay: string;
32
+ durationVisible: boolean;
33
+ unitId: Id;
34
+ unitDisplay: string;
35
+ unitVisible: boolean;
36
+ }
@@ -0,0 +1,9 @@
1
+ export var EPrescriptionType;
2
+ (function (EPrescriptionType) {
3
+ EPrescriptionType[EPrescriptionType["Drug"] = 0] = "Drug";
4
+ EPrescriptionType[EPrescriptionType["Dose"] = 1] = "Dose";
5
+ EPrescriptionType[EPrescriptionType["Duration"] = 2] = "Duration";
6
+ EPrescriptionType[EPrescriptionType["Frequency"] = 3] = "Frequency";
7
+ EPrescriptionType[EPrescriptionType["Route"] = 4] = "Route";
8
+ EPrescriptionType[EPrescriptionType["Unit"] = 5] = "Unit";
9
+ })(EPrescriptionType || (EPrescriptionType = {}));
@@ -3,6 +3,7 @@ import { ICondition } from './Condition';
3
3
  import { EDifficultyType } from './Difficulty';
4
4
  import { IPicture } from './Picture';
5
5
  import { IPresentation } from './Presentation';
6
+ import { IQuestionPrescription } from './Psa';
6
7
  import { ITopic } from './Topic';
7
8
  import { Id } from './Type';
8
9
  import { IUkmlaTopic } from './UkmlaTopic';
@@ -87,6 +88,7 @@ export interface IQuestion {
87
88
  difficulty: EDifficultyType;
88
89
  elo: number;
89
90
  psaSectionId: EPsaSectionType;
91
+ prescriptions?: IQuestionPrescription[];
90
92
  likes?: number;
91
93
  dislikes?: number;
92
94
  isLikedByMe?: EQuestionLike;
@@ -19,6 +19,7 @@ export * from './Presentation';
19
19
  export * from './Preset';
20
20
  export * from './Product';
21
21
  export * from './Promo';
22
+ export * from './Psa';
22
23
  export * from './Question';
23
24
  export * from './Referrals';
24
25
  export * from './Subscription';
@@ -19,6 +19,7 @@ export * from './Presentation';
19
19
  export * from './Preset';
20
20
  export * from './Product';
21
21
  export * from './Promo';
22
+ export * from './Psa';
22
23
  export * from './Question';
23
24
  export * from './Referrals';
24
25
  export * from './Subscription';
@@ -6,6 +6,7 @@ export * from './mockTests';
6
6
  export * from './notification';
7
7
  export * from './osce';
8
8
  export * from './preset';
9
+ export * from './psa';
9
10
  export * from './qBank';
10
11
  export * from './quesBook';
11
12
  export * from './question';
@@ -6,6 +6,7 @@ export * from './mockTests';
6
6
  export * from './notification';
7
7
  export * from './osce';
8
8
  export * from './preset';
9
+ export * from './psa';
9
10
  export * from './qBank';
10
11
  export * from './quesBook';
11
12
  export * from './question';
@@ -0,0 +1,13 @@
1
+ import { EPrescriptionType, IPrescriptionItem } from '../../../models';
2
+ import { RestrictedData, graphqlNormalize } from '../../types';
3
+ export interface IPrescriptionsVar {
4
+ query: string;
5
+ limit?: number;
6
+ cursor?: number;
7
+ typeId: EPrescriptionType;
8
+ }
9
+ export type IPrescriptionsData = RestrictedData<graphqlNormalize & {
10
+ total: number;
11
+ result: IPrescriptionItem[];
12
+ }, 'prescriptions'>;
13
+ export declare const PRESCRIPTIONS: import("@apollo/client").DocumentNode;
@@ -0,0 +1,47 @@
1
+ import { gql } from '@apollo/client';
2
+ export const PRESCRIPTIONS = gql `
3
+ query Prescriptions($typeId: Int!, $query: String, $cursor: Int, $limit: Int) {
4
+ restricted {
5
+ prescriptions(
6
+ typeId: $typeId
7
+ query: $query
8
+ cursor: $cursor
9
+ limit: $limit
10
+ ) {
11
+ total
12
+ result {
13
+ ... on Drug {
14
+ id
15
+ name
16
+ __typename
17
+ }
18
+ ... on Dose {
19
+ id
20
+ name
21
+ __typename
22
+ }
23
+ ... on Duration {
24
+ id
25
+ name
26
+ __typename
27
+ }
28
+ ... on Frequency {
29
+ id
30
+ name
31
+ __typename
32
+ }
33
+ ... on Route {
34
+ id
35
+ name
36
+ __typename
37
+ }
38
+ ... on Unit {
39
+ id
40
+ name
41
+ __typename
42
+ }
43
+ }
44
+ }
45
+ }
46
+ }
47
+ `;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quesmed/types",
3
- "version": "2.6.11",
3
+ "version": "2.6.13",
4
4
  "description": "Typescript types for Quesmed",
5
5
  "keywords": [
6
6
  "quesmed",