@quesmed/types 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.
|
@@ -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
|
`;
|
|
@@ -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
|
|
@@ -2482,8 +2482,8 @@ export const START_OR_JOIN_MARKSHEET = gql `
|
|
|
2482
2482
|
questionChoiceId
|
|
2483
2483
|
marksheetId
|
|
2484
2484
|
timeTaken
|
|
2485
|
-
isAnswered
|
|
2486
2485
|
striked
|
|
2486
|
+
isAnswered
|
|
2487
2487
|
mark
|
|
2488
2488
|
question {
|
|
2489
2489
|
... on QuestionSBA {
|
|
@@ -3057,8 +3057,8 @@ export const MODIFY_MARKSHEET_INFO = gql `
|
|
|
3057
3057
|
questionChoiceId
|
|
3058
3058
|
marksheetId
|
|
3059
3059
|
timeTaken
|
|
3060
|
-
isAnswered
|
|
3061
3060
|
striked
|
|
3061
|
+
isAnswered
|
|
3062
3062
|
mark
|
|
3063
3063
|
question {
|
|
3064
3064
|
... on QuestionSBA {
|
|
@@ -3580,7 +3580,11 @@ export const LEAVE_MARKSHEET = gql `
|
|
|
3580
3580
|
export const END_MARKSHEET = gql `
|
|
3581
3581
|
mutation EndMarksheet($marksheetId: Int!) {
|
|
3582
3582
|
restricted {
|
|
3583
|
-
endMarksheet(marksheetId: $marksheetId)
|
|
3583
|
+
endMarksheet(marksheetId: $marksheetId){
|
|
3584
|
+
id
|
|
3585
|
+
timeTaken
|
|
3586
|
+
endedAt
|
|
3587
|
+
}
|
|
3584
3588
|
}
|
|
3585
3589
|
}
|
|
3586
3590
|
`;
|