@quesmed/types-rn 2.5.107 → 2.5.108
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/models/OsceStation.d.ts +7 -0
- package/models/OsceStation.js +9 -1
- package/models/Picture.d.ts +2 -11
- package/package.json +1 -1
package/models/OsceStation.d.ts
CHANGED
|
@@ -31,6 +31,13 @@ export declare enum EOsceType {
|
|
|
31
31
|
INTERPRETATION = 5,
|
|
32
32
|
ABCDE = 6
|
|
33
33
|
}
|
|
34
|
+
export declare enum EStationPictureType {
|
|
35
|
+
ALL = 0,
|
|
36
|
+
ACTOR = 1,
|
|
37
|
+
CANDIDATE = 2,
|
|
38
|
+
EXAMINER = 3,
|
|
39
|
+
WALKTHROUGH = 4
|
|
40
|
+
}
|
|
34
41
|
export interface IOsceStation {
|
|
35
42
|
id: Id;
|
|
36
43
|
createdAt: number | Date;
|
package/models/OsceStation.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.OSCE_GLOBAL_RATING = exports.EOsceType = void 0;
|
|
3
|
+
exports.OSCE_GLOBAL_RATING = exports.EStationPictureType = exports.EOsceType = void 0;
|
|
4
4
|
var EOsceType;
|
|
5
5
|
(function (EOsceType) {
|
|
6
6
|
EOsceType[EOsceType["ALL"] = 0] = "ALL";
|
|
@@ -11,6 +11,14 @@ var EOsceType;
|
|
|
11
11
|
EOsceType[EOsceType["INTERPRETATION"] = 5] = "INTERPRETATION";
|
|
12
12
|
EOsceType[EOsceType["ABCDE"] = 6] = "ABCDE";
|
|
13
13
|
})(EOsceType = exports.EOsceType || (exports.EOsceType = {}));
|
|
14
|
+
var EStationPictureType;
|
|
15
|
+
(function (EStationPictureType) {
|
|
16
|
+
EStationPictureType[EStationPictureType["ALL"] = 0] = "ALL";
|
|
17
|
+
EStationPictureType[EStationPictureType["ACTOR"] = 1] = "ACTOR";
|
|
18
|
+
EStationPictureType[EStationPictureType["CANDIDATE"] = 2] = "CANDIDATE";
|
|
19
|
+
EStationPictureType[EStationPictureType["EXAMINER"] = 3] = "EXAMINER";
|
|
20
|
+
EStationPictureType[EStationPictureType["WALKTHROUGH"] = 4] = "WALKTHROUGH";
|
|
21
|
+
})(EStationPictureType = exports.EStationPictureType || (exports.EStationPictureType = {}));
|
|
14
22
|
exports.OSCE_GLOBAL_RATING = {
|
|
15
23
|
[EOsceType.ABCDE]: `1. Fail - The candidate did not perform large parts of the scenario to the required standard
|
|
16
24
|
2. Borderline - It is not clear whether the candidate demonstrated acceptable performance: either the whole task was performed slightly below passing level or there were some key errors or omissions
|
package/models/Picture.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EStationPictureType } from './OsceStation';
|
|
1
2
|
import { ITopic } from './Topic';
|
|
2
3
|
import { Id } from './Type';
|
|
3
4
|
export interface IPicture {
|
|
@@ -33,18 +34,8 @@ export interface IStationPicture {
|
|
|
33
34
|
pictureId: Id;
|
|
34
35
|
picture: IPicture;
|
|
35
36
|
pictureIdx: number;
|
|
36
|
-
}
|
|
37
|
-
export interface IOsceActorPicture extends IStationPicture {
|
|
38
|
-
osceStationId: Id;
|
|
39
|
-
}
|
|
40
|
-
export interface IOsceCandidatePicture extends IStationPicture {
|
|
41
|
-
osceStationId: Id;
|
|
42
|
-
}
|
|
43
|
-
export interface IOsceExaminerPicture extends IStationPicture {
|
|
44
|
-
osceStationId: Id;
|
|
45
|
-
}
|
|
46
|
-
export interface IOsceWalkthroughPicture extends IStationPicture {
|
|
47
37
|
osceStationId: Id;
|
|
38
|
+
type: EStationPictureType;
|
|
48
39
|
}
|
|
49
40
|
export interface IQuestionPicture {
|
|
50
41
|
id: Id;
|