@quesmed/types-rn 2.2.56 → 2.2.57
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
|
@@ -188,7 +188,7 @@ export declare const LEAVE_MARKSHEET: import("@apollo/client").DocumentNode;
|
|
|
188
188
|
export interface IEndMarksheetVar {
|
|
189
189
|
marksheetId: Id;
|
|
190
190
|
}
|
|
191
|
-
export declare type IEndMarksheetData = RestrictedData<graphqlNormalize &
|
|
191
|
+
export declare type IEndMarksheetData = RestrictedData<graphqlNormalize & IMarksheet, 'endMarksheet'>;
|
|
192
192
|
export declare const END_MARKSHEET: import("@apollo/client").DocumentNode;
|
|
193
193
|
/**
|
|
194
194
|
* toggleStrikeOptions
|
|
@@ -2487,8 +2487,8 @@ exports.START_OR_JOIN_MARKSHEET = (0, client_1.gql) `
|
|
|
2487
2487
|
questionChoiceId
|
|
2488
2488
|
marksheetId
|
|
2489
2489
|
timeTaken
|
|
2490
|
-
isAnswered
|
|
2491
2490
|
striked
|
|
2491
|
+
isAnswered
|
|
2492
2492
|
mark
|
|
2493
2493
|
question {
|
|
2494
2494
|
... on QuestionSBA {
|
|
@@ -3063,8 +3063,8 @@ exports.MODIFY_MARKSHEET_INFO = (0, client_1.gql) `
|
|
|
3063
3063
|
questionChoiceId
|
|
3064
3064
|
marksheetId
|
|
3065
3065
|
timeTaken
|
|
3066
|
-
isAnswered
|
|
3067
3066
|
striked
|
|
3067
|
+
isAnswered
|
|
3068
3068
|
mark
|
|
3069
3069
|
question {
|
|
3070
3070
|
... on QuestionSBA {
|
|
@@ -3586,7 +3586,11 @@ exports.LEAVE_MARKSHEET = (0, client_1.gql) `
|
|
|
3586
3586
|
exports.END_MARKSHEET = (0, client_1.gql) `
|
|
3587
3587
|
mutation EndMarksheet($marksheetId: Int!) {
|
|
3588
3588
|
restricted {
|
|
3589
|
-
endMarksheet(marksheetId: $marksheetId)
|
|
3589
|
+
endMarksheet(marksheetId: $marksheetId){
|
|
3590
|
+
id
|
|
3591
|
+
timeTaken
|
|
3592
|
+
endedAt
|
|
3593
|
+
}
|
|
3590
3594
|
}
|
|
3591
3595
|
}
|
|
3592
3596
|
`;
|