This commit is contained in:
root
2026-07-04 07:42:19 +00:00
parent 68bb3c9167
commit 73d84169d6
6 changed files with 361 additions and 29 deletions
+2 -2
View File
@@ -168,8 +168,8 @@ export function GetUsers(): $CancellablePromise<$models.User[]> {
});
}
export function GradeDescriptiveAnswer(username: string, source: string, questionID: number, userAnswer: string): $CancellablePromise<$models.DescriptiveGradingRecord | null> {
return $Call.ByID(642001377, username, source, questionID, userAnswer).then(($result: any) => {
export function GradeDescriptiveAnswer(username: string, source: string, questionID: number, userAnswer: string, ocrImageBase64: string): $CancellablePromise<$models.DescriptiveGradingRecord | null> {
return $Call.ByID(642001377, username, source, questionID, userAnswer, ocrImageBase64).then(($result: any) => {
return $$createType11($result);
});
}