@quesmed/types 1.5.1 → 1.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
|
@@ -74,7 +74,6 @@ export declare type ISaveOsceMarksheetData = RestrictedData<graphqlNormalize & I
|
|
|
74
74
|
export declare const OSCE_MARKSHEET_ACTIONS: import("@apollo/client").DocumentNode;
|
|
75
75
|
export interface IOsceMarksheetActionsVar {
|
|
76
76
|
osceMarksheetId: Id;
|
|
77
|
-
agoraId: string;
|
|
78
77
|
action: EOsceMarksheetAction;
|
|
79
78
|
}
|
|
80
79
|
export declare type IOsceMarksheetActionsData = RestrictedData<number, 'osceMarksheetActions'>;
|
|
@@ -183,17 +183,9 @@ exports.SAVE_OSCE_MARKSHEET = (0, client_1.gql) `
|
|
|
183
183
|
}
|
|
184
184
|
`;
|
|
185
185
|
exports.OSCE_MARKSHEET_ACTIONS = (0, client_1.gql) `
|
|
186
|
-
mutation OsceMarksheetActions(
|
|
187
|
-
$osceMarksheetId: Int!
|
|
188
|
-
$agoraId: String!
|
|
189
|
-
$action: Int!
|
|
190
|
-
) {
|
|
186
|
+
mutation OsceMarksheetActions($osceMarksheetId: Int!, $action: Int!) {
|
|
191
187
|
restricted {
|
|
192
|
-
osceMarksheetActions(
|
|
193
|
-
osceMarksheetId: $osceMarksheetId
|
|
194
|
-
agoraId: $agoraId
|
|
195
|
-
action: $action
|
|
196
|
-
)
|
|
188
|
+
osceMarksheetActions(osceMarksheetId: $osceMarksheetId, action: $action)
|
|
197
189
|
}
|
|
198
190
|
}
|
|
199
191
|
`;
|
|
@@ -179,17 +179,9 @@ export const SAVE_OSCE_MARKSHEET = gql `
|
|
|
179
179
|
}
|
|
180
180
|
`;
|
|
181
181
|
export const OSCE_MARKSHEET_ACTIONS = gql `
|
|
182
|
-
mutation OsceMarksheetActions(
|
|
183
|
-
$osceMarksheetId: Int!
|
|
184
|
-
$agoraId: String!
|
|
185
|
-
$action: Int!
|
|
186
|
-
) {
|
|
182
|
+
mutation OsceMarksheetActions($osceMarksheetId: Int!, $action: Int!) {
|
|
187
183
|
restricted {
|
|
188
|
-
osceMarksheetActions(
|
|
189
|
-
osceMarksheetId: $osceMarksheetId
|
|
190
|
-
agoraId: $agoraId
|
|
191
|
-
action: $action
|
|
192
|
-
)
|
|
184
|
+
osceMarksheetActions(osceMarksheetId: $osceMarksheetId, action: $action)
|
|
193
185
|
}
|
|
194
186
|
}
|
|
195
187
|
`;
|