@quesmed/types 2.6.78 → 2.6.80
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/dist/cjs/models/OsceMarksheet.d.ts +2 -1
- package/dist/cjs/resolvers/mutation/restricted/osce.d.ts +1 -0
- package/dist/cjs/resolvers/query/restricted/notes.js +8 -0
- package/dist/cjs/resolvers/query/sample.js +9 -0
- package/dist/mjs/models/OsceMarksheet.d.ts +2 -1
- package/dist/mjs/resolvers/mutation/restricted/osce.d.ts +1 -0
- package/dist/mjs/resolvers/query/restricted/notes.js +8 -0
- package/dist/mjs/resolvers/query/sample.js +9 -0
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Nullable } from '../resolvers';
|
|
2
2
|
import { IOsceStation, IOsceStationMark, IOsceType } from './OsceStation';
|
|
3
3
|
import { EPaceMarkType } from './Paces';
|
|
4
|
-
import { EEntitlementType, EProductType } from './Product';
|
|
4
|
+
import { EEntitlementType, EProductType, IEntitlement } from './Product';
|
|
5
5
|
import { Id } from './Type';
|
|
6
6
|
import { IUser } from './User';
|
|
7
7
|
export interface IOsceMarksheetMember {
|
|
@@ -85,6 +85,7 @@ export interface IOsceMarksheet {
|
|
|
85
85
|
members: IOsceMarksheetMember[];
|
|
86
86
|
state: EOsceMarksheetState;
|
|
87
87
|
completed: boolean;
|
|
88
|
+
entitlement: IEntitlement;
|
|
88
89
|
entitlementId: EProductType | EEntitlementType;
|
|
89
90
|
isTimed: boolean;
|
|
90
91
|
}
|
|
@@ -130,6 +130,7 @@ export declare const optimisticEndOsceMarksheet: (marksheet: IOsceMarksheet) =>
|
|
|
130
130
|
activeUsers?: import("../../../models").IUser[] | undefined;
|
|
131
131
|
members: import("../../../models").IOsceMarksheetMember[];
|
|
132
132
|
state: EOsceMarksheetState;
|
|
133
|
+
entitlement: import("../../../models").IEntitlement;
|
|
133
134
|
entitlementId: EProductType | EEntitlementType;
|
|
134
135
|
isTimed: boolean;
|
|
135
136
|
__typename: string;
|
|
@@ -14,6 +14,10 @@ exports.CONCEPT_NOTES = (0, client_1.gql) `
|
|
|
14
14
|
conceptId
|
|
15
15
|
concept {
|
|
16
16
|
name
|
|
17
|
+
entitlement {
|
|
18
|
+
id
|
|
19
|
+
name
|
|
20
|
+
}
|
|
17
21
|
topic {
|
|
18
22
|
id
|
|
19
23
|
name
|
|
@@ -37,6 +41,10 @@ exports.STATION_NOTES = (0, client_1.gql) `
|
|
|
37
41
|
id
|
|
38
42
|
name
|
|
39
43
|
hiddenName
|
|
44
|
+
entitlement {
|
|
45
|
+
id
|
|
46
|
+
name
|
|
47
|
+
}
|
|
40
48
|
}
|
|
41
49
|
}
|
|
42
50
|
}
|
|
@@ -9,6 +9,11 @@ exports.SAMPLE_CONTENT = (0, client_1.gql) `
|
|
|
9
9
|
marksheets {
|
|
10
10
|
id
|
|
11
11
|
source
|
|
12
|
+
mockTestId
|
|
13
|
+
entitlement {
|
|
14
|
+
id
|
|
15
|
+
name
|
|
16
|
+
}
|
|
12
17
|
}
|
|
13
18
|
todos {
|
|
14
19
|
id
|
|
@@ -16,6 +21,10 @@ exports.SAMPLE_CONTENT = (0, client_1.gql) `
|
|
|
16
21
|
}
|
|
17
22
|
osceMarksheets {
|
|
18
23
|
id
|
|
24
|
+
entitlement {
|
|
25
|
+
id
|
|
26
|
+
name
|
|
27
|
+
}
|
|
19
28
|
osceStation {
|
|
20
29
|
id
|
|
21
30
|
name
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Nullable } from '../resolvers';
|
|
2
2
|
import { IOsceStation, IOsceStationMark, IOsceType } from './OsceStation';
|
|
3
3
|
import { EPaceMarkType } from './Paces';
|
|
4
|
-
import { EEntitlementType, EProductType } from './Product';
|
|
4
|
+
import { EEntitlementType, EProductType, IEntitlement } from './Product';
|
|
5
5
|
import { Id } from './Type';
|
|
6
6
|
import { IUser } from './User';
|
|
7
7
|
export interface IOsceMarksheetMember {
|
|
@@ -85,6 +85,7 @@ export interface IOsceMarksheet {
|
|
|
85
85
|
members: IOsceMarksheetMember[];
|
|
86
86
|
state: EOsceMarksheetState;
|
|
87
87
|
completed: boolean;
|
|
88
|
+
entitlement: IEntitlement;
|
|
88
89
|
entitlementId: EProductType | EEntitlementType;
|
|
89
90
|
isTimed: boolean;
|
|
90
91
|
}
|
|
@@ -130,6 +130,7 @@ export declare const optimisticEndOsceMarksheet: (marksheet: IOsceMarksheet) =>
|
|
|
130
130
|
activeUsers?: import("../../../models").IUser[] | undefined;
|
|
131
131
|
members: import("../../../models").IOsceMarksheetMember[];
|
|
132
132
|
state: EOsceMarksheetState;
|
|
133
|
+
entitlement: import("../../../models").IEntitlement;
|
|
133
134
|
entitlementId: EProductType | EEntitlementType;
|
|
134
135
|
isTimed: boolean;
|
|
135
136
|
__typename: string;
|
|
@@ -11,6 +11,10 @@ export const CONCEPT_NOTES = gql `
|
|
|
11
11
|
conceptId
|
|
12
12
|
concept {
|
|
13
13
|
name
|
|
14
|
+
entitlement {
|
|
15
|
+
id
|
|
16
|
+
name
|
|
17
|
+
}
|
|
14
18
|
topic {
|
|
15
19
|
id
|
|
16
20
|
name
|
|
@@ -34,6 +38,10 @@ export const STATION_NOTES = gql `
|
|
|
34
38
|
id
|
|
35
39
|
name
|
|
36
40
|
hiddenName
|
|
41
|
+
entitlement {
|
|
42
|
+
id
|
|
43
|
+
name
|
|
44
|
+
}
|
|
37
45
|
}
|
|
38
46
|
}
|
|
39
47
|
}
|
|
@@ -6,6 +6,11 @@ export const SAMPLE_CONTENT = gql `
|
|
|
6
6
|
marksheets {
|
|
7
7
|
id
|
|
8
8
|
source
|
|
9
|
+
mockTestId
|
|
10
|
+
entitlement {
|
|
11
|
+
id
|
|
12
|
+
name
|
|
13
|
+
}
|
|
9
14
|
}
|
|
10
15
|
todos {
|
|
11
16
|
id
|
|
@@ -13,6 +18,10 @@ export const SAMPLE_CONTENT = gql `
|
|
|
13
18
|
}
|
|
14
19
|
osceMarksheets {
|
|
15
20
|
id
|
|
21
|
+
entitlement {
|
|
22
|
+
id
|
|
23
|
+
name
|
|
24
|
+
}
|
|
16
25
|
osceStation {
|
|
17
26
|
id
|
|
18
27
|
name
|