@quesmed/types-rn 2.5.1 → 2.5.2
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
|
@@ -14,7 +14,8 @@ export interface IDashboardOsceVar {
|
|
|
14
14
|
export type IDashboardOsceData = RestrictedData<graphqlNormalize & IDashboardOsce, 'dashboardOsce'>;
|
|
15
15
|
export declare const OSCE_MARKSHEETS: import("@apollo/client").DocumentNode;
|
|
16
16
|
export interface IOsceMarksheetsVar {
|
|
17
|
-
solo
|
|
17
|
+
solo?: boolean;
|
|
18
|
+
days?: number;
|
|
18
19
|
}
|
|
19
20
|
export type IOsceMarksheetsData = RestrictedData<(graphqlNormalize & IOsceMarksheet)[], 'osceMarksheets'>;
|
|
20
21
|
export declare const OSCE_MARKSHEET: import("@apollo/client").DocumentNode;
|
|
@@ -45,9 +45,9 @@ exports.DASHBOARD_OSCE = (0, client_1.gql) `
|
|
|
45
45
|
exports.OSCE_MARKSHEETS = (0, client_1.gql) `
|
|
46
46
|
${osce_2.OSCE_STATION_FIELDS}
|
|
47
47
|
${osce_1.OSCE_MARKSHEET_FIELDS}
|
|
48
|
-
query OsceMarksheets($solo: Boolean
|
|
48
|
+
query OsceMarksheets($solo: Boolean, $days: Int) {
|
|
49
49
|
restricted {
|
|
50
|
-
osceMarksheets(solo: $solo) {
|
|
50
|
+
osceMarksheets(solo: $solo, days: $days) {
|
|
51
51
|
...OsceMarksheetFields
|
|
52
52
|
osceStation {
|
|
53
53
|
...OsceStationFields
|
|
@@ -56,6 +56,7 @@ exports.OSCE_MARKSHEETS = (0, client_1.gql) `
|
|
|
56
56
|
}
|
|
57
57
|
}
|
|
58
58
|
`;
|
|
59
|
+
;
|
|
59
60
|
exports.OSCE_MARKSHEET = (0, client_1.gql) `
|
|
60
61
|
${osce_2.OSCE_STATION_FIELDS}
|
|
61
62
|
${osce_1.OSCE_MARKSHEET_FIELDS}
|