modifications
All checks were successful
Mindforge API Build and Deploy / Build Mindforge API Image (push) Successful in 2m10s
Mindforge API Build and Deploy / Deploy Mindforge API (internal) (push) Successful in 8s
Mindforge Web Build and Deploy (internal) / Build Mindforge Web Image (push) Successful in 3m38s
Mindforge Web Build and Deploy (internal) / Deploy Mindforge Web (internal) (push) Successful in 8s

This commit is contained in:
2026-06-01 19:29:01 -03:00
parent f03bcc40e3
commit 097ba577cf
6 changed files with 375 additions and 159 deletions

View File

@@ -80,14 +80,13 @@ export interface FlashcardReviewAnswerRequest {
export type FlashcardRagStatus = 'Grey' | 'Red' | 'Amber' | 'Green';
export interface FlashcardRagCard {
cardId: number;
export interface FlashcardRagLibrary {
libraryId: number;
filePath: string;
fileName: string;
subject: string;
subSubject: string;
front: string;
back: string;
cardCount: number;
correctCount: number;
incorrectCount: number;
totalAnswers: number;
@@ -109,7 +108,7 @@ export interface FlashcardRagSummary {
export interface FlashcardRagSubSubjectGroup {
subSubject: string;
summary: FlashcardRagSummary;
cards: FlashcardRagCard[];
libraries: FlashcardRagLibrary[];
}
export interface FlashcardRagSubjectGroup {