@thanh01.pmt/interactive-quiz-kit 1.0.65 → 1.0.67
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/HEADLESS.md +1 -1
- package/README.md +2 -2
- package/dist/{ai-ecosystem-DqFRlFU3.d.cts → ai-ecosystem-DyQYZbyX.d.cts} +3 -3
- package/dist/{ai-ecosystem-DqVlSO3r.d.ts → ai-ecosystem-Qa_SdE2T.d.ts} +3 -3
- package/dist/ai.cjs +60 -96
- package/dist/ai.d.cts +127 -127
- package/dist/ai.d.ts +127 -127
- package/dist/ai.mjs +60 -96
- package/dist/authoring.cjs +1576 -1250
- package/dist/authoring.d.cts +4 -4
- package/dist/authoring.d.ts +4 -4
- package/dist/authoring.mjs +1315 -990
- package/dist/index.cjs +22 -37
- package/dist/index.d.cts +24 -27
- package/dist/index.d.ts +24 -27
- package/dist/index.mjs +22 -37
- package/dist/player.cjs +9 -9
- package/dist/player.d.cts +1 -1
- package/dist/player.d.ts +1 -1
- package/dist/player.mjs +9 -9
- package/dist/{quiz-config-o4j2dfsu.d.cts → quiz-config-CwaP-pBs.d.cts} +1 -1
- package/dist/{quiz-config-o4j2dfsu.d.ts → quiz-config-CwaP-pBs.d.ts} +1 -1
- package/dist/react-ui.cjs +1307 -997
- package/dist/react-ui.d.cts +6 -6
- package/dist/react-ui.d.ts +6 -6
- package/dist/react-ui.mjs +1307 -998
- package/dist/{toaster-CKS4zoRY.d.cts → toaster-BVaUJA6E.d.ts} +65 -45
- package/dist/{toaster-DLJ_2W9u.d.ts → toaster-BWaJj0l-.d.cts} +65 -45
- package/package.json +1 -1
package/dist/ai.d.ts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { T as TrueFalseQuestion, a as MultipleChoiceQuestion, b as MultipleResponseQuestion, S as ShortAnswerQuestion, N as NumericQuestion, F as FillInTheBlanksQuestion, c as SequenceQuestion, d as MatchingQuestion, C as CodingQuestion, Q as QuestionTypeStrings } from './quiz-config-
|
|
2
|
-
export { g as QuizQuestion } from './quiz-config-
|
|
3
|
-
import { t as ImageContextItem, T as TestCaseResult, h as QuizReviewContent, m as PracticeSuggestion, L as LearningAnalysis, K as KnowledgeCard } from './ai-ecosystem-
|
|
4
|
-
export { u as AnalysisReport, l as PracticeSuggestionTopic, g as QuestionReview, R as RoadmapItem, W as WeeklyRoadmap } from './ai-ecosystem-
|
|
1
|
+
import { T as TrueFalseQuestion, a as MultipleChoiceQuestion, b as MultipleResponseQuestion, S as ShortAnswerQuestion, N as NumericQuestion, F as FillInTheBlanksQuestion, c as SequenceQuestion, d as MatchingQuestion, C as CodingQuestion, Q as QuestionTypeStrings } from './quiz-config-CwaP-pBs.js';
|
|
2
|
+
export { g as QuizQuestion } from './quiz-config-CwaP-pBs.js';
|
|
3
|
+
import { t as ImageContextItem, T as TestCaseResult, h as QuizReviewContent, m as PracticeSuggestion, L as LearningAnalysis, K as KnowledgeCard } from './ai-ecosystem-Qa_SdE2T.js';
|
|
4
|
+
export { u as AnalysisReport, l as PracticeSuggestionTopic, g as QuestionReview, R as RoadmapItem, W as WeeklyRoadmap } from './ai-ecosystem-Qa_SdE2T.js';
|
|
5
5
|
import { z } from 'zod';
|
|
6
6
|
|
|
7
7
|
declare const GenerateTrueFalseQuestionClientInputSchema: z.ZodObject<{
|
|
8
8
|
language: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
9
|
-
difficulty: z.ZodEnum<["
|
|
9
|
+
difficulty: z.ZodEnum<["Easy", "Medium", "Hard"]>;
|
|
10
10
|
quizContext: z.ZodOptional<z.ZodObject<{
|
|
11
11
|
plannedTopic: z.ZodOptional<z.ZodString>;
|
|
12
12
|
plannedQuestionType: z.ZodOptional<z.ZodString>;
|
|
@@ -19,9 +19,10 @@ declare const GenerateTrueFalseQuestionClientInputSchema: z.ZodObject<{
|
|
|
19
19
|
originalSubject: z.ZodOptional<z.ZodString>;
|
|
20
20
|
originalCategory: z.ZodOptional<z.ZodString>;
|
|
21
21
|
originalTopic: z.ZodOptional<z.ZodString>;
|
|
22
|
-
|
|
22
|
+
description: z.ZodOptional<z.ZodString>;
|
|
23
23
|
gradeBand: z.ZodOptional<z.ZodString>;
|
|
24
24
|
}, "strip", z.ZodTypeAny, {
|
|
25
|
+
description?: string | undefined;
|
|
25
26
|
gradeBand?: string | undefined;
|
|
26
27
|
plannedTopic?: string | undefined;
|
|
27
28
|
plannedQuestionType?: string | undefined;
|
|
@@ -34,8 +35,8 @@ declare const GenerateTrueFalseQuestionClientInputSchema: z.ZodObject<{
|
|
|
34
35
|
originalSubject?: string | undefined;
|
|
35
36
|
originalCategory?: string | undefined;
|
|
36
37
|
originalTopic?: string | undefined;
|
|
37
|
-
loDescription?: string | undefined;
|
|
38
38
|
}, {
|
|
39
|
+
description?: string | undefined;
|
|
39
40
|
gradeBand?: string | undefined;
|
|
40
41
|
plannedTopic?: string | undefined;
|
|
41
42
|
plannedQuestionType?: string | undefined;
|
|
@@ -48,14 +49,14 @@ declare const GenerateTrueFalseQuestionClientInputSchema: z.ZodObject<{
|
|
|
48
49
|
originalSubject?: string | undefined;
|
|
49
50
|
originalCategory?: string | undefined;
|
|
50
51
|
originalTopic?: string | undefined;
|
|
51
|
-
loDescription?: string | undefined;
|
|
52
52
|
}>>;
|
|
53
53
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
54
54
|
}, "strip", z.ZodTypeAny, {
|
|
55
55
|
language: string;
|
|
56
|
-
difficulty: "
|
|
56
|
+
difficulty: "Easy" | "Medium" | "Hard";
|
|
57
57
|
imageUrl?: string | undefined;
|
|
58
58
|
quizContext?: {
|
|
59
|
+
description?: string | undefined;
|
|
59
60
|
gradeBand?: string | undefined;
|
|
60
61
|
plannedTopic?: string | undefined;
|
|
61
62
|
plannedQuestionType?: string | undefined;
|
|
@@ -68,13 +69,13 @@ declare const GenerateTrueFalseQuestionClientInputSchema: z.ZodObject<{
|
|
|
68
69
|
originalSubject?: string | undefined;
|
|
69
70
|
originalCategory?: string | undefined;
|
|
70
71
|
originalTopic?: string | undefined;
|
|
71
|
-
loDescription?: string | undefined;
|
|
72
72
|
} | undefined;
|
|
73
73
|
}, {
|
|
74
|
-
difficulty: "
|
|
74
|
+
difficulty: "Easy" | "Medium" | "Hard";
|
|
75
75
|
language?: string | undefined;
|
|
76
76
|
imageUrl?: string | undefined;
|
|
77
77
|
quizContext?: {
|
|
78
|
+
description?: string | undefined;
|
|
78
79
|
gradeBand?: string | undefined;
|
|
79
80
|
plannedTopic?: string | undefined;
|
|
80
81
|
plannedQuestionType?: string | undefined;
|
|
@@ -87,7 +88,6 @@ declare const GenerateTrueFalseQuestionClientInputSchema: z.ZodObject<{
|
|
|
87
88
|
originalSubject?: string | undefined;
|
|
88
89
|
originalCategory?: string | undefined;
|
|
89
90
|
originalTopic?: string | undefined;
|
|
90
|
-
loDescription?: string | undefined;
|
|
91
91
|
} | undefined;
|
|
92
92
|
}>;
|
|
93
93
|
type GenerateTrueFalseQuestionClientInput = z.infer<typeof GenerateTrueFalseQuestionClientInputSchema>;
|
|
@@ -100,7 +100,7 @@ declare function generateTrueFalseQuestion(clientInput: GenerateTrueFalseQuestio
|
|
|
100
100
|
|
|
101
101
|
declare const GenerateMCQQuestionClientInputSchema: z.ZodObject<{
|
|
102
102
|
language: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
103
|
-
difficulty: z.ZodEnum<["
|
|
103
|
+
difficulty: z.ZodEnum<["Easy", "Medium", "Hard"]>;
|
|
104
104
|
quizContext: z.ZodOptional<z.ZodObject<{
|
|
105
105
|
plannedTopic: z.ZodOptional<z.ZodString>;
|
|
106
106
|
plannedQuestionType: z.ZodOptional<z.ZodString>;
|
|
@@ -113,9 +113,10 @@ declare const GenerateMCQQuestionClientInputSchema: z.ZodObject<{
|
|
|
113
113
|
originalSubject: z.ZodOptional<z.ZodString>;
|
|
114
114
|
originalCategory: z.ZodOptional<z.ZodString>;
|
|
115
115
|
originalTopic: z.ZodOptional<z.ZodString>;
|
|
116
|
-
|
|
116
|
+
description: z.ZodOptional<z.ZodString>;
|
|
117
117
|
gradeBand: z.ZodOptional<z.ZodString>;
|
|
118
118
|
}, "strip", z.ZodTypeAny, {
|
|
119
|
+
description?: string | undefined;
|
|
119
120
|
gradeBand?: string | undefined;
|
|
120
121
|
plannedTopic?: string | undefined;
|
|
121
122
|
plannedQuestionType?: string | undefined;
|
|
@@ -128,8 +129,8 @@ declare const GenerateMCQQuestionClientInputSchema: z.ZodObject<{
|
|
|
128
129
|
originalSubject?: string | undefined;
|
|
129
130
|
originalCategory?: string | undefined;
|
|
130
131
|
originalTopic?: string | undefined;
|
|
131
|
-
loDescription?: string | undefined;
|
|
132
132
|
}, {
|
|
133
|
+
description?: string | undefined;
|
|
133
134
|
gradeBand?: string | undefined;
|
|
134
135
|
plannedTopic?: string | undefined;
|
|
135
136
|
plannedQuestionType?: string | undefined;
|
|
@@ -142,17 +143,17 @@ declare const GenerateMCQQuestionClientInputSchema: z.ZodObject<{
|
|
|
142
143
|
originalSubject?: string | undefined;
|
|
143
144
|
originalCategory?: string | undefined;
|
|
144
145
|
originalTopic?: string | undefined;
|
|
145
|
-
loDescription?: string | undefined;
|
|
146
146
|
}>>;
|
|
147
147
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
148
148
|
} & {
|
|
149
149
|
numberOfOptions: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
150
150
|
}, "strip", z.ZodTypeAny, {
|
|
151
151
|
language: string;
|
|
152
|
-
difficulty: "
|
|
152
|
+
difficulty: "Easy" | "Medium" | "Hard";
|
|
153
153
|
numberOfOptions: number;
|
|
154
154
|
imageUrl?: string | undefined;
|
|
155
155
|
quizContext?: {
|
|
156
|
+
description?: string | undefined;
|
|
156
157
|
gradeBand?: string | undefined;
|
|
157
158
|
plannedTopic?: string | undefined;
|
|
158
159
|
plannedQuestionType?: string | undefined;
|
|
@@ -165,13 +166,13 @@ declare const GenerateMCQQuestionClientInputSchema: z.ZodObject<{
|
|
|
165
166
|
originalSubject?: string | undefined;
|
|
166
167
|
originalCategory?: string | undefined;
|
|
167
168
|
originalTopic?: string | undefined;
|
|
168
|
-
loDescription?: string | undefined;
|
|
169
169
|
} | undefined;
|
|
170
170
|
}, {
|
|
171
|
-
difficulty: "
|
|
171
|
+
difficulty: "Easy" | "Medium" | "Hard";
|
|
172
172
|
language?: string | undefined;
|
|
173
173
|
imageUrl?: string | undefined;
|
|
174
174
|
quizContext?: {
|
|
175
|
+
description?: string | undefined;
|
|
175
176
|
gradeBand?: string | undefined;
|
|
176
177
|
plannedTopic?: string | undefined;
|
|
177
178
|
plannedQuestionType?: string | undefined;
|
|
@@ -184,7 +185,6 @@ declare const GenerateMCQQuestionClientInputSchema: z.ZodObject<{
|
|
|
184
185
|
originalSubject?: string | undefined;
|
|
185
186
|
originalCategory?: string | undefined;
|
|
186
187
|
originalTopic?: string | undefined;
|
|
187
|
-
loDescription?: string | undefined;
|
|
188
188
|
} | undefined;
|
|
189
189
|
numberOfOptions?: number | undefined;
|
|
190
190
|
}>;
|
|
@@ -198,7 +198,7 @@ declare function generateMCQQuestion(clientInput: GenerateMCQQuestionClientInput
|
|
|
198
198
|
|
|
199
199
|
declare const GenerateMRQQuestionClientInputSchema: z.ZodObject<{
|
|
200
200
|
language: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
201
|
-
difficulty: z.ZodEnum<["
|
|
201
|
+
difficulty: z.ZodEnum<["Easy", "Medium", "Hard"]>;
|
|
202
202
|
quizContext: z.ZodOptional<z.ZodObject<{
|
|
203
203
|
plannedTopic: z.ZodOptional<z.ZodString>;
|
|
204
204
|
plannedQuestionType: z.ZodOptional<z.ZodString>;
|
|
@@ -211,9 +211,10 @@ declare const GenerateMRQQuestionClientInputSchema: z.ZodObject<{
|
|
|
211
211
|
originalSubject: z.ZodOptional<z.ZodString>;
|
|
212
212
|
originalCategory: z.ZodOptional<z.ZodString>;
|
|
213
213
|
originalTopic: z.ZodOptional<z.ZodString>;
|
|
214
|
-
|
|
214
|
+
description: z.ZodOptional<z.ZodString>;
|
|
215
215
|
gradeBand: z.ZodOptional<z.ZodString>;
|
|
216
216
|
}, "strip", z.ZodTypeAny, {
|
|
217
|
+
description?: string | undefined;
|
|
217
218
|
gradeBand?: string | undefined;
|
|
218
219
|
plannedTopic?: string | undefined;
|
|
219
220
|
plannedQuestionType?: string | undefined;
|
|
@@ -226,8 +227,8 @@ declare const GenerateMRQQuestionClientInputSchema: z.ZodObject<{
|
|
|
226
227
|
originalSubject?: string | undefined;
|
|
227
228
|
originalCategory?: string | undefined;
|
|
228
229
|
originalTopic?: string | undefined;
|
|
229
|
-
loDescription?: string | undefined;
|
|
230
230
|
}, {
|
|
231
|
+
description?: string | undefined;
|
|
231
232
|
gradeBand?: string | undefined;
|
|
232
233
|
plannedTopic?: string | undefined;
|
|
233
234
|
plannedQuestionType?: string | undefined;
|
|
@@ -240,7 +241,6 @@ declare const GenerateMRQQuestionClientInputSchema: z.ZodObject<{
|
|
|
240
241
|
originalSubject?: string | undefined;
|
|
241
242
|
originalCategory?: string | undefined;
|
|
242
243
|
originalTopic?: string | undefined;
|
|
243
|
-
loDescription?: string | undefined;
|
|
244
244
|
}>>;
|
|
245
245
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
246
246
|
} & {
|
|
@@ -249,12 +249,13 @@ declare const GenerateMRQQuestionClientInputSchema: z.ZodObject<{
|
|
|
249
249
|
maxCorrectAnswers: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
250
250
|
}, "strip", z.ZodTypeAny, {
|
|
251
251
|
language: string;
|
|
252
|
-
difficulty: "
|
|
252
|
+
difficulty: "Easy" | "Medium" | "Hard";
|
|
253
253
|
numberOfOptions: number;
|
|
254
254
|
minCorrectAnswers: number;
|
|
255
255
|
maxCorrectAnswers: number;
|
|
256
256
|
imageUrl?: string | undefined;
|
|
257
257
|
quizContext?: {
|
|
258
|
+
description?: string | undefined;
|
|
258
259
|
gradeBand?: string | undefined;
|
|
259
260
|
plannedTopic?: string | undefined;
|
|
260
261
|
plannedQuestionType?: string | undefined;
|
|
@@ -267,13 +268,13 @@ declare const GenerateMRQQuestionClientInputSchema: z.ZodObject<{
|
|
|
267
268
|
originalSubject?: string | undefined;
|
|
268
269
|
originalCategory?: string | undefined;
|
|
269
270
|
originalTopic?: string | undefined;
|
|
270
|
-
loDescription?: string | undefined;
|
|
271
271
|
} | undefined;
|
|
272
272
|
}, {
|
|
273
|
-
difficulty: "
|
|
273
|
+
difficulty: "Easy" | "Medium" | "Hard";
|
|
274
274
|
language?: string | undefined;
|
|
275
275
|
imageUrl?: string | undefined;
|
|
276
276
|
quizContext?: {
|
|
277
|
+
description?: string | undefined;
|
|
277
278
|
gradeBand?: string | undefined;
|
|
278
279
|
plannedTopic?: string | undefined;
|
|
279
280
|
plannedQuestionType?: string | undefined;
|
|
@@ -286,7 +287,6 @@ declare const GenerateMRQQuestionClientInputSchema: z.ZodObject<{
|
|
|
286
287
|
originalSubject?: string | undefined;
|
|
287
288
|
originalCategory?: string | undefined;
|
|
288
289
|
originalTopic?: string | undefined;
|
|
289
|
-
loDescription?: string | undefined;
|
|
290
290
|
} | undefined;
|
|
291
291
|
numberOfOptions?: number | undefined;
|
|
292
292
|
minCorrectAnswers?: number | undefined;
|
|
@@ -302,7 +302,7 @@ declare function generateMRQQuestion(clientInput: GenerateMRQQuestionClientInput
|
|
|
302
302
|
|
|
303
303
|
declare const GenerateShortAnswerQuestionClientInputSchema: z.ZodObject<{
|
|
304
304
|
language: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
305
|
-
difficulty: z.ZodEnum<["
|
|
305
|
+
difficulty: z.ZodEnum<["Easy", "Medium", "Hard"]>;
|
|
306
306
|
quizContext: z.ZodOptional<z.ZodObject<{
|
|
307
307
|
plannedTopic: z.ZodOptional<z.ZodString>;
|
|
308
308
|
plannedQuestionType: z.ZodOptional<z.ZodString>;
|
|
@@ -315,9 +315,10 @@ declare const GenerateShortAnswerQuestionClientInputSchema: z.ZodObject<{
|
|
|
315
315
|
originalSubject: z.ZodOptional<z.ZodString>;
|
|
316
316
|
originalCategory: z.ZodOptional<z.ZodString>;
|
|
317
317
|
originalTopic: z.ZodOptional<z.ZodString>;
|
|
318
|
-
|
|
318
|
+
description: z.ZodOptional<z.ZodString>;
|
|
319
319
|
gradeBand: z.ZodOptional<z.ZodString>;
|
|
320
320
|
}, "strip", z.ZodTypeAny, {
|
|
321
|
+
description?: string | undefined;
|
|
321
322
|
gradeBand?: string | undefined;
|
|
322
323
|
plannedTopic?: string | undefined;
|
|
323
324
|
plannedQuestionType?: string | undefined;
|
|
@@ -330,8 +331,8 @@ declare const GenerateShortAnswerQuestionClientInputSchema: z.ZodObject<{
|
|
|
330
331
|
originalSubject?: string | undefined;
|
|
331
332
|
originalCategory?: string | undefined;
|
|
332
333
|
originalTopic?: string | undefined;
|
|
333
|
-
loDescription?: string | undefined;
|
|
334
334
|
}, {
|
|
335
|
+
description?: string | undefined;
|
|
335
336
|
gradeBand?: string | undefined;
|
|
336
337
|
plannedTopic?: string | undefined;
|
|
337
338
|
plannedQuestionType?: string | undefined;
|
|
@@ -344,17 +345,17 @@ declare const GenerateShortAnswerQuestionClientInputSchema: z.ZodObject<{
|
|
|
344
345
|
originalSubject?: string | undefined;
|
|
345
346
|
originalCategory?: string | undefined;
|
|
346
347
|
originalTopic?: string | undefined;
|
|
347
|
-
loDescription?: string | undefined;
|
|
348
348
|
}>>;
|
|
349
349
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
350
350
|
} & {
|
|
351
351
|
isCaseSensitive: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
352
352
|
}, "strip", z.ZodTypeAny, {
|
|
353
353
|
language: string;
|
|
354
|
-
difficulty: "
|
|
354
|
+
difficulty: "Easy" | "Medium" | "Hard";
|
|
355
355
|
isCaseSensitive: boolean;
|
|
356
356
|
imageUrl?: string | undefined;
|
|
357
357
|
quizContext?: {
|
|
358
|
+
description?: string | undefined;
|
|
358
359
|
gradeBand?: string | undefined;
|
|
359
360
|
plannedTopic?: string | undefined;
|
|
360
361
|
plannedQuestionType?: string | undefined;
|
|
@@ -367,14 +368,14 @@ declare const GenerateShortAnswerQuestionClientInputSchema: z.ZodObject<{
|
|
|
367
368
|
originalSubject?: string | undefined;
|
|
368
369
|
originalCategory?: string | undefined;
|
|
369
370
|
originalTopic?: string | undefined;
|
|
370
|
-
loDescription?: string | undefined;
|
|
371
371
|
} | undefined;
|
|
372
372
|
}, {
|
|
373
|
-
difficulty: "
|
|
373
|
+
difficulty: "Easy" | "Medium" | "Hard";
|
|
374
374
|
language?: string | undefined;
|
|
375
375
|
isCaseSensitive?: boolean | undefined;
|
|
376
376
|
imageUrl?: string | undefined;
|
|
377
377
|
quizContext?: {
|
|
378
|
+
description?: string | undefined;
|
|
378
379
|
gradeBand?: string | undefined;
|
|
379
380
|
plannedTopic?: string | undefined;
|
|
380
381
|
plannedQuestionType?: string | undefined;
|
|
@@ -387,7 +388,6 @@ declare const GenerateShortAnswerQuestionClientInputSchema: z.ZodObject<{
|
|
|
387
388
|
originalSubject?: string | undefined;
|
|
388
389
|
originalCategory?: string | undefined;
|
|
389
390
|
originalTopic?: string | undefined;
|
|
390
|
-
loDescription?: string | undefined;
|
|
391
391
|
} | undefined;
|
|
392
392
|
}>;
|
|
393
393
|
type GenerateShortAnswerQuestionClientInput = z.infer<typeof GenerateShortAnswerQuestionClientInputSchema>;
|
|
@@ -400,7 +400,7 @@ declare function generateShortAnswerQuestion(clientInput: GenerateShortAnswerQue
|
|
|
400
400
|
|
|
401
401
|
declare const GenerateNumericQuestionClientInputSchema: z.ZodObject<{
|
|
402
402
|
language: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
403
|
-
difficulty: z.ZodEnum<["
|
|
403
|
+
difficulty: z.ZodEnum<["Easy", "Medium", "Hard"]>;
|
|
404
404
|
quizContext: z.ZodOptional<z.ZodObject<{
|
|
405
405
|
plannedTopic: z.ZodOptional<z.ZodString>;
|
|
406
406
|
plannedQuestionType: z.ZodOptional<z.ZodString>;
|
|
@@ -413,9 +413,10 @@ declare const GenerateNumericQuestionClientInputSchema: z.ZodObject<{
|
|
|
413
413
|
originalSubject: z.ZodOptional<z.ZodString>;
|
|
414
414
|
originalCategory: z.ZodOptional<z.ZodString>;
|
|
415
415
|
originalTopic: z.ZodOptional<z.ZodString>;
|
|
416
|
-
|
|
416
|
+
description: z.ZodOptional<z.ZodString>;
|
|
417
417
|
gradeBand: z.ZodOptional<z.ZodString>;
|
|
418
418
|
}, "strip", z.ZodTypeAny, {
|
|
419
|
+
description?: string | undefined;
|
|
419
420
|
gradeBand?: string | undefined;
|
|
420
421
|
plannedTopic?: string | undefined;
|
|
421
422
|
plannedQuestionType?: string | undefined;
|
|
@@ -428,8 +429,8 @@ declare const GenerateNumericQuestionClientInputSchema: z.ZodObject<{
|
|
|
428
429
|
originalSubject?: string | undefined;
|
|
429
430
|
originalCategory?: string | undefined;
|
|
430
431
|
originalTopic?: string | undefined;
|
|
431
|
-
loDescription?: string | undefined;
|
|
432
432
|
}, {
|
|
433
|
+
description?: string | undefined;
|
|
433
434
|
gradeBand?: string | undefined;
|
|
434
435
|
plannedTopic?: string | undefined;
|
|
435
436
|
plannedQuestionType?: string | undefined;
|
|
@@ -442,7 +443,6 @@ declare const GenerateNumericQuestionClientInputSchema: z.ZodObject<{
|
|
|
442
443
|
originalSubject?: string | undefined;
|
|
443
444
|
originalCategory?: string | undefined;
|
|
444
445
|
originalTopic?: string | undefined;
|
|
445
|
-
loDescription?: string | undefined;
|
|
446
446
|
}>>;
|
|
447
447
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
448
448
|
} & {
|
|
@@ -452,11 +452,12 @@ declare const GenerateNumericQuestionClientInputSchema: z.ZodObject<{
|
|
|
452
452
|
tolerance: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
453
453
|
}, "strip", z.ZodTypeAny, {
|
|
454
454
|
language: string;
|
|
455
|
-
difficulty: "
|
|
455
|
+
difficulty: "Easy" | "Medium" | "Hard";
|
|
456
456
|
tolerance: number;
|
|
457
457
|
allowDecimals: boolean;
|
|
458
458
|
imageUrl?: string | undefined;
|
|
459
459
|
quizContext?: {
|
|
460
|
+
description?: string | undefined;
|
|
460
461
|
gradeBand?: string | undefined;
|
|
461
462
|
plannedTopic?: string | undefined;
|
|
462
463
|
plannedQuestionType?: string | undefined;
|
|
@@ -469,16 +470,16 @@ declare const GenerateNumericQuestionClientInputSchema: z.ZodObject<{
|
|
|
469
470
|
originalSubject?: string | undefined;
|
|
470
471
|
originalCategory?: string | undefined;
|
|
471
472
|
originalTopic?: string | undefined;
|
|
472
|
-
loDescription?: string | undefined;
|
|
473
473
|
} | undefined;
|
|
474
474
|
minRange?: number | undefined;
|
|
475
475
|
maxRange?: number | undefined;
|
|
476
476
|
}, {
|
|
477
|
-
difficulty: "
|
|
477
|
+
difficulty: "Easy" | "Medium" | "Hard";
|
|
478
478
|
language?: string | undefined;
|
|
479
479
|
tolerance?: number | undefined;
|
|
480
480
|
imageUrl?: string | undefined;
|
|
481
481
|
quizContext?: {
|
|
482
|
+
description?: string | undefined;
|
|
482
483
|
gradeBand?: string | undefined;
|
|
483
484
|
plannedTopic?: string | undefined;
|
|
484
485
|
plannedQuestionType?: string | undefined;
|
|
@@ -491,7 +492,6 @@ declare const GenerateNumericQuestionClientInputSchema: z.ZodObject<{
|
|
|
491
492
|
originalSubject?: string | undefined;
|
|
492
493
|
originalCategory?: string | undefined;
|
|
493
494
|
originalTopic?: string | undefined;
|
|
494
|
-
loDescription?: string | undefined;
|
|
495
495
|
} | undefined;
|
|
496
496
|
allowDecimals?: boolean | undefined;
|
|
497
497
|
minRange?: number | undefined;
|
|
@@ -507,7 +507,7 @@ declare function generateNumericQuestion(clientInput: GenerateNumericQuestionCli
|
|
|
507
507
|
|
|
508
508
|
declare const GenerateFillInTheBlanksQuestionClientInputSchema: z.ZodObject<{
|
|
509
509
|
language: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
510
|
-
difficulty: z.ZodEnum<["
|
|
510
|
+
difficulty: z.ZodEnum<["Easy", "Medium", "Hard"]>;
|
|
511
511
|
quizContext: z.ZodOptional<z.ZodObject<{
|
|
512
512
|
plannedTopic: z.ZodOptional<z.ZodString>;
|
|
513
513
|
plannedQuestionType: z.ZodOptional<z.ZodString>;
|
|
@@ -520,9 +520,10 @@ declare const GenerateFillInTheBlanksQuestionClientInputSchema: z.ZodObject<{
|
|
|
520
520
|
originalSubject: z.ZodOptional<z.ZodString>;
|
|
521
521
|
originalCategory: z.ZodOptional<z.ZodString>;
|
|
522
522
|
originalTopic: z.ZodOptional<z.ZodString>;
|
|
523
|
-
|
|
523
|
+
description: z.ZodOptional<z.ZodString>;
|
|
524
524
|
gradeBand: z.ZodOptional<z.ZodString>;
|
|
525
525
|
}, "strip", z.ZodTypeAny, {
|
|
526
|
+
description?: string | undefined;
|
|
526
527
|
gradeBand?: string | undefined;
|
|
527
528
|
plannedTopic?: string | undefined;
|
|
528
529
|
plannedQuestionType?: string | undefined;
|
|
@@ -535,8 +536,8 @@ declare const GenerateFillInTheBlanksQuestionClientInputSchema: z.ZodObject<{
|
|
|
535
536
|
originalSubject?: string | undefined;
|
|
536
537
|
originalCategory?: string | undefined;
|
|
537
538
|
originalTopic?: string | undefined;
|
|
538
|
-
loDescription?: string | undefined;
|
|
539
539
|
}, {
|
|
540
|
+
description?: string | undefined;
|
|
540
541
|
gradeBand?: string | undefined;
|
|
541
542
|
plannedTopic?: string | undefined;
|
|
542
543
|
plannedQuestionType?: string | undefined;
|
|
@@ -549,7 +550,6 @@ declare const GenerateFillInTheBlanksQuestionClientInputSchema: z.ZodObject<{
|
|
|
549
550
|
originalSubject?: string | undefined;
|
|
550
551
|
originalCategory?: string | undefined;
|
|
551
552
|
originalTopic?: string | undefined;
|
|
552
|
-
loDescription?: string | undefined;
|
|
553
553
|
}>>;
|
|
554
554
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
555
555
|
} & {
|
|
@@ -557,11 +557,12 @@ declare const GenerateFillInTheBlanksQuestionClientInputSchema: z.ZodObject<{
|
|
|
557
557
|
isCaseSensitive: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
558
558
|
}, "strip", z.ZodTypeAny, {
|
|
559
559
|
language: string;
|
|
560
|
-
difficulty: "
|
|
560
|
+
difficulty: "Easy" | "Medium" | "Hard";
|
|
561
561
|
isCaseSensitive: boolean;
|
|
562
562
|
numberOfBlanks: number;
|
|
563
563
|
imageUrl?: string | undefined;
|
|
564
564
|
quizContext?: {
|
|
565
|
+
description?: string | undefined;
|
|
565
566
|
gradeBand?: string | undefined;
|
|
566
567
|
plannedTopic?: string | undefined;
|
|
567
568
|
plannedQuestionType?: string | undefined;
|
|
@@ -574,14 +575,14 @@ declare const GenerateFillInTheBlanksQuestionClientInputSchema: z.ZodObject<{
|
|
|
574
575
|
originalSubject?: string | undefined;
|
|
575
576
|
originalCategory?: string | undefined;
|
|
576
577
|
originalTopic?: string | undefined;
|
|
577
|
-
loDescription?: string | undefined;
|
|
578
578
|
} | undefined;
|
|
579
579
|
}, {
|
|
580
|
-
difficulty: "
|
|
580
|
+
difficulty: "Easy" | "Medium" | "Hard";
|
|
581
581
|
language?: string | undefined;
|
|
582
582
|
isCaseSensitive?: boolean | undefined;
|
|
583
583
|
imageUrl?: string | undefined;
|
|
584
584
|
quizContext?: {
|
|
585
|
+
description?: string | undefined;
|
|
585
586
|
gradeBand?: string | undefined;
|
|
586
587
|
plannedTopic?: string | undefined;
|
|
587
588
|
plannedQuestionType?: string | undefined;
|
|
@@ -594,7 +595,6 @@ declare const GenerateFillInTheBlanksQuestionClientInputSchema: z.ZodObject<{
|
|
|
594
595
|
originalSubject?: string | undefined;
|
|
595
596
|
originalCategory?: string | undefined;
|
|
596
597
|
originalTopic?: string | undefined;
|
|
597
|
-
loDescription?: string | undefined;
|
|
598
598
|
} | undefined;
|
|
599
599
|
numberOfBlanks?: number | undefined;
|
|
600
600
|
}>;
|
|
@@ -608,7 +608,7 @@ declare function generateFillInTheBlanksQuestion(clientInput: GenerateFillInTheB
|
|
|
608
608
|
|
|
609
609
|
declare const GenerateSequenceQuestionClientInputSchema: z.ZodObject<{
|
|
610
610
|
language: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
611
|
-
difficulty: z.ZodEnum<["
|
|
611
|
+
difficulty: z.ZodEnum<["Easy", "Medium", "Hard"]>;
|
|
612
612
|
quizContext: z.ZodOptional<z.ZodObject<{
|
|
613
613
|
plannedTopic: z.ZodOptional<z.ZodString>;
|
|
614
614
|
plannedQuestionType: z.ZodOptional<z.ZodString>;
|
|
@@ -621,9 +621,10 @@ declare const GenerateSequenceQuestionClientInputSchema: z.ZodObject<{
|
|
|
621
621
|
originalSubject: z.ZodOptional<z.ZodString>;
|
|
622
622
|
originalCategory: z.ZodOptional<z.ZodString>;
|
|
623
623
|
originalTopic: z.ZodOptional<z.ZodString>;
|
|
624
|
-
|
|
624
|
+
description: z.ZodOptional<z.ZodString>;
|
|
625
625
|
gradeBand: z.ZodOptional<z.ZodString>;
|
|
626
626
|
}, "strip", z.ZodTypeAny, {
|
|
627
|
+
description?: string | undefined;
|
|
627
628
|
gradeBand?: string | undefined;
|
|
628
629
|
plannedTopic?: string | undefined;
|
|
629
630
|
plannedQuestionType?: string | undefined;
|
|
@@ -636,8 +637,8 @@ declare const GenerateSequenceQuestionClientInputSchema: z.ZodObject<{
|
|
|
636
637
|
originalSubject?: string | undefined;
|
|
637
638
|
originalCategory?: string | undefined;
|
|
638
639
|
originalTopic?: string | undefined;
|
|
639
|
-
loDescription?: string | undefined;
|
|
640
640
|
}, {
|
|
641
|
+
description?: string | undefined;
|
|
641
642
|
gradeBand?: string | undefined;
|
|
642
643
|
plannedTopic?: string | undefined;
|
|
643
644
|
plannedQuestionType?: string | undefined;
|
|
@@ -650,17 +651,17 @@ declare const GenerateSequenceQuestionClientInputSchema: z.ZodObject<{
|
|
|
650
651
|
originalSubject?: string | undefined;
|
|
651
652
|
originalCategory?: string | undefined;
|
|
652
653
|
originalTopic?: string | undefined;
|
|
653
|
-
loDescription?: string | undefined;
|
|
654
654
|
}>>;
|
|
655
655
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
656
656
|
} & {
|
|
657
657
|
numberOfItems: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
658
658
|
}, "strip", z.ZodTypeAny, {
|
|
659
659
|
language: string;
|
|
660
|
-
difficulty: "
|
|
660
|
+
difficulty: "Easy" | "Medium" | "Hard";
|
|
661
661
|
numberOfItems: number;
|
|
662
662
|
imageUrl?: string | undefined;
|
|
663
663
|
quizContext?: {
|
|
664
|
+
description?: string | undefined;
|
|
664
665
|
gradeBand?: string | undefined;
|
|
665
666
|
plannedTopic?: string | undefined;
|
|
666
667
|
plannedQuestionType?: string | undefined;
|
|
@@ -673,13 +674,13 @@ declare const GenerateSequenceQuestionClientInputSchema: z.ZodObject<{
|
|
|
673
674
|
originalSubject?: string | undefined;
|
|
674
675
|
originalCategory?: string | undefined;
|
|
675
676
|
originalTopic?: string | undefined;
|
|
676
|
-
loDescription?: string | undefined;
|
|
677
677
|
} | undefined;
|
|
678
678
|
}, {
|
|
679
|
-
difficulty: "
|
|
679
|
+
difficulty: "Easy" | "Medium" | "Hard";
|
|
680
680
|
language?: string | undefined;
|
|
681
681
|
imageUrl?: string | undefined;
|
|
682
682
|
quizContext?: {
|
|
683
|
+
description?: string | undefined;
|
|
683
684
|
gradeBand?: string | undefined;
|
|
684
685
|
plannedTopic?: string | undefined;
|
|
685
686
|
plannedQuestionType?: string | undefined;
|
|
@@ -692,7 +693,6 @@ declare const GenerateSequenceQuestionClientInputSchema: z.ZodObject<{
|
|
|
692
693
|
originalSubject?: string | undefined;
|
|
693
694
|
originalCategory?: string | undefined;
|
|
694
695
|
originalTopic?: string | undefined;
|
|
695
|
-
loDescription?: string | undefined;
|
|
696
696
|
} | undefined;
|
|
697
697
|
numberOfItems?: number | undefined;
|
|
698
698
|
}>;
|
|
@@ -706,7 +706,7 @@ declare function generateSequenceQuestion(clientInput: GenerateSequenceQuestionC
|
|
|
706
706
|
|
|
707
707
|
declare const GenerateMatchingQuestionClientInputSchema: z.ZodObject<{
|
|
708
708
|
language: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
709
|
-
difficulty: z.ZodEnum<["
|
|
709
|
+
difficulty: z.ZodEnum<["Easy", "Medium", "Hard"]>;
|
|
710
710
|
quizContext: z.ZodOptional<z.ZodObject<{
|
|
711
711
|
plannedTopic: z.ZodOptional<z.ZodString>;
|
|
712
712
|
plannedQuestionType: z.ZodOptional<z.ZodString>;
|
|
@@ -719,9 +719,10 @@ declare const GenerateMatchingQuestionClientInputSchema: z.ZodObject<{
|
|
|
719
719
|
originalSubject: z.ZodOptional<z.ZodString>;
|
|
720
720
|
originalCategory: z.ZodOptional<z.ZodString>;
|
|
721
721
|
originalTopic: z.ZodOptional<z.ZodString>;
|
|
722
|
-
|
|
722
|
+
description: z.ZodOptional<z.ZodString>;
|
|
723
723
|
gradeBand: z.ZodOptional<z.ZodString>;
|
|
724
724
|
}, "strip", z.ZodTypeAny, {
|
|
725
|
+
description?: string | undefined;
|
|
725
726
|
gradeBand?: string | undefined;
|
|
726
727
|
plannedTopic?: string | undefined;
|
|
727
728
|
plannedQuestionType?: string | undefined;
|
|
@@ -734,8 +735,8 @@ declare const GenerateMatchingQuestionClientInputSchema: z.ZodObject<{
|
|
|
734
735
|
originalSubject?: string | undefined;
|
|
735
736
|
originalCategory?: string | undefined;
|
|
736
737
|
originalTopic?: string | undefined;
|
|
737
|
-
loDescription?: string | undefined;
|
|
738
738
|
}, {
|
|
739
|
+
description?: string | undefined;
|
|
739
740
|
gradeBand?: string | undefined;
|
|
740
741
|
plannedTopic?: string | undefined;
|
|
741
742
|
plannedQuestionType?: string | undefined;
|
|
@@ -748,7 +749,6 @@ declare const GenerateMatchingQuestionClientInputSchema: z.ZodObject<{
|
|
|
748
749
|
originalSubject?: string | undefined;
|
|
749
750
|
originalCategory?: string | undefined;
|
|
750
751
|
originalTopic?: string | undefined;
|
|
751
|
-
loDescription?: string | undefined;
|
|
752
752
|
}>>;
|
|
753
753
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
754
754
|
} & {
|
|
@@ -756,11 +756,12 @@ declare const GenerateMatchingQuestionClientInputSchema: z.ZodObject<{
|
|
|
756
756
|
shuffleOptions: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
757
757
|
}, "strip", z.ZodTypeAny, {
|
|
758
758
|
language: string;
|
|
759
|
-
difficulty: "
|
|
759
|
+
difficulty: "Easy" | "Medium" | "Hard";
|
|
760
760
|
shuffleOptions: boolean;
|
|
761
761
|
numberOfPairs: number;
|
|
762
762
|
imageUrl?: string | undefined;
|
|
763
763
|
quizContext?: {
|
|
764
|
+
description?: string | undefined;
|
|
764
765
|
gradeBand?: string | undefined;
|
|
765
766
|
plannedTopic?: string | undefined;
|
|
766
767
|
plannedQuestionType?: string | undefined;
|
|
@@ -773,14 +774,14 @@ declare const GenerateMatchingQuestionClientInputSchema: z.ZodObject<{
|
|
|
773
774
|
originalSubject?: string | undefined;
|
|
774
775
|
originalCategory?: string | undefined;
|
|
775
776
|
originalTopic?: string | undefined;
|
|
776
|
-
loDescription?: string | undefined;
|
|
777
777
|
} | undefined;
|
|
778
778
|
}, {
|
|
779
|
-
difficulty: "
|
|
779
|
+
difficulty: "Easy" | "Medium" | "Hard";
|
|
780
780
|
language?: string | undefined;
|
|
781
781
|
shuffleOptions?: boolean | undefined;
|
|
782
782
|
imageUrl?: string | undefined;
|
|
783
783
|
quizContext?: {
|
|
784
|
+
description?: string | undefined;
|
|
784
785
|
gradeBand?: string | undefined;
|
|
785
786
|
plannedTopic?: string | undefined;
|
|
786
787
|
plannedQuestionType?: string | undefined;
|
|
@@ -793,7 +794,6 @@ declare const GenerateMatchingQuestionClientInputSchema: z.ZodObject<{
|
|
|
793
794
|
originalSubject?: string | undefined;
|
|
794
795
|
originalCategory?: string | undefined;
|
|
795
796
|
originalTopic?: string | undefined;
|
|
796
|
-
loDescription?: string | undefined;
|
|
797
797
|
} | undefined;
|
|
798
798
|
numberOfPairs?: number | undefined;
|
|
799
799
|
}>;
|
|
@@ -807,7 +807,7 @@ declare function generateMatchingQuestion(clientInput: GenerateMatchingQuestionC
|
|
|
807
807
|
|
|
808
808
|
declare const GenerateCodingQuestionClientInputSchema: z.ZodObject<{
|
|
809
809
|
language: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
810
|
-
difficulty: z.ZodEnum<["
|
|
810
|
+
difficulty: z.ZodEnum<["Easy", "Medium", "Hard"]>;
|
|
811
811
|
quizContext: z.ZodOptional<z.ZodObject<{
|
|
812
812
|
plannedTopic: z.ZodOptional<z.ZodString>;
|
|
813
813
|
plannedQuestionType: z.ZodOptional<z.ZodString>;
|
|
@@ -820,9 +820,10 @@ declare const GenerateCodingQuestionClientInputSchema: z.ZodObject<{
|
|
|
820
820
|
originalSubject: z.ZodOptional<z.ZodString>;
|
|
821
821
|
originalCategory: z.ZodOptional<z.ZodString>;
|
|
822
822
|
originalTopic: z.ZodOptional<z.ZodString>;
|
|
823
|
-
|
|
823
|
+
description: z.ZodOptional<z.ZodString>;
|
|
824
824
|
gradeBand: z.ZodOptional<z.ZodString>;
|
|
825
825
|
}, "strip", z.ZodTypeAny, {
|
|
826
|
+
description?: string | undefined;
|
|
826
827
|
gradeBand?: string | undefined;
|
|
827
828
|
plannedTopic?: string | undefined;
|
|
828
829
|
plannedQuestionType?: string | undefined;
|
|
@@ -835,8 +836,8 @@ declare const GenerateCodingQuestionClientInputSchema: z.ZodObject<{
|
|
|
835
836
|
originalSubject?: string | undefined;
|
|
836
837
|
originalCategory?: string | undefined;
|
|
837
838
|
originalTopic?: string | undefined;
|
|
838
|
-
loDescription?: string | undefined;
|
|
839
839
|
}, {
|
|
840
|
+
description?: string | undefined;
|
|
840
841
|
gradeBand?: string | undefined;
|
|
841
842
|
plannedTopic?: string | undefined;
|
|
842
843
|
plannedQuestionType?: string | undefined;
|
|
@@ -849,17 +850,17 @@ declare const GenerateCodingQuestionClientInputSchema: z.ZodObject<{
|
|
|
849
850
|
originalSubject?: string | undefined;
|
|
850
851
|
originalCategory?: string | undefined;
|
|
851
852
|
originalTopic?: string | undefined;
|
|
852
|
-
loDescription?: string | undefined;
|
|
853
853
|
}>>;
|
|
854
854
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
855
855
|
} & {
|
|
856
856
|
codingLanguage: z.ZodEnum<["cpp", "javascript", "python", "swift", "csharp"]>;
|
|
857
857
|
}, "strip", z.ZodTypeAny, {
|
|
858
858
|
language: string;
|
|
859
|
-
difficulty: "
|
|
859
|
+
difficulty: "Easy" | "Medium" | "Hard";
|
|
860
860
|
codingLanguage: "cpp" | "javascript" | "python" | "swift" | "csharp";
|
|
861
861
|
imageUrl?: string | undefined;
|
|
862
862
|
quizContext?: {
|
|
863
|
+
description?: string | undefined;
|
|
863
864
|
gradeBand?: string | undefined;
|
|
864
865
|
plannedTopic?: string | undefined;
|
|
865
866
|
plannedQuestionType?: string | undefined;
|
|
@@ -872,14 +873,14 @@ declare const GenerateCodingQuestionClientInputSchema: z.ZodObject<{
|
|
|
872
873
|
originalSubject?: string | undefined;
|
|
873
874
|
originalCategory?: string | undefined;
|
|
874
875
|
originalTopic?: string | undefined;
|
|
875
|
-
loDescription?: string | undefined;
|
|
876
876
|
} | undefined;
|
|
877
877
|
}, {
|
|
878
|
-
difficulty: "
|
|
878
|
+
difficulty: "Easy" | "Medium" | "Hard";
|
|
879
879
|
codingLanguage: "cpp" | "javascript" | "python" | "swift" | "csharp";
|
|
880
880
|
language?: string | undefined;
|
|
881
881
|
imageUrl?: string | undefined;
|
|
882
882
|
quizContext?: {
|
|
883
|
+
description?: string | undefined;
|
|
883
884
|
gradeBand?: string | undefined;
|
|
884
885
|
plannedTopic?: string | undefined;
|
|
885
886
|
plannedQuestionType?: string | undefined;
|
|
@@ -892,7 +893,6 @@ declare const GenerateCodingQuestionClientInputSchema: z.ZodObject<{
|
|
|
892
893
|
originalSubject?: string | undefined;
|
|
893
894
|
originalCategory?: string | undefined;
|
|
894
895
|
originalTopic?: string | undefined;
|
|
895
|
-
loDescription?: string | undefined;
|
|
896
896
|
} | undefined;
|
|
897
897
|
}>;
|
|
898
898
|
type GenerateCodingQuestionClientInput = z.infer<typeof GenerateCodingQuestionClientInputSchema>;
|
|
@@ -1357,28 +1357,28 @@ declare const GeneratePracticeSuggestionInputSchema: z.ZodObject<{
|
|
|
1357
1357
|
}[];
|
|
1358
1358
|
}>, "many">>;
|
|
1359
1359
|
allAvailableTopics: z.ZodArray<z.ZodObject<{
|
|
1360
|
-
|
|
1360
|
+
code: z.ZodString;
|
|
1361
1361
|
subject: z.ZodString;
|
|
1362
1362
|
category: z.ZodString;
|
|
1363
1363
|
topic: z.ZodString;
|
|
1364
1364
|
}, "strip", z.ZodTypeAny, {
|
|
1365
|
+
code: string;
|
|
1365
1366
|
subject: string;
|
|
1366
1367
|
category: string;
|
|
1367
1368
|
topic: string;
|
|
1368
|
-
loId: string;
|
|
1369
1369
|
}, {
|
|
1370
|
+
code: string;
|
|
1370
1371
|
subject: string;
|
|
1371
1372
|
category: string;
|
|
1372
1373
|
topic: string;
|
|
1373
|
-
loId: string;
|
|
1374
1374
|
}>, "many">;
|
|
1375
1375
|
}, "strip", z.ZodTypeAny, {
|
|
1376
1376
|
language: string;
|
|
1377
1377
|
allAvailableTopics: {
|
|
1378
|
+
code: string;
|
|
1378
1379
|
subject: string;
|
|
1379
1380
|
category: string;
|
|
1380
1381
|
topic: string;
|
|
1381
|
-
loId: string;
|
|
1382
1382
|
}[];
|
|
1383
1383
|
performanceByTopic?: {
|
|
1384
1384
|
name: string;
|
|
@@ -1397,10 +1397,10 @@ declare const GeneratePracticeSuggestionInputSchema: z.ZodObject<{
|
|
|
1397
1397
|
}, {
|
|
1398
1398
|
language: string;
|
|
1399
1399
|
allAvailableTopics: {
|
|
1400
|
+
code: string;
|
|
1400
1401
|
subject: string;
|
|
1401
1402
|
category: string;
|
|
1402
1403
|
topic: string;
|
|
1403
|
-
loId: string;
|
|
1404
1404
|
}[];
|
|
1405
1405
|
performanceByTopic?: {
|
|
1406
1406
|
name: string;
|
|
@@ -1421,36 +1421,36 @@ type GeneratePracticeSuggestionClientInput = z.infer<typeof GeneratePracticeSugg
|
|
|
1421
1421
|
declare const PracticeSuggestionOutputSchema: z.ZodObject<{
|
|
1422
1422
|
suggestionText: z.ZodString;
|
|
1423
1423
|
suggestedTopics: z.ZodArray<z.ZodObject<{
|
|
1424
|
-
|
|
1424
|
+
code: z.ZodString;
|
|
1425
1425
|
topicName: z.ZodString;
|
|
1426
1426
|
reason: z.ZodEnum<["review", "explore"]>;
|
|
1427
1427
|
suggestedDifficulty: z.ZodEnum<["Very Easy", "Easy", "Medium", "Hard", "Expert"]>;
|
|
1428
1428
|
}, "strip", z.ZodTypeAny, {
|
|
1429
|
-
|
|
1429
|
+
code: string;
|
|
1430
1430
|
topicName: string;
|
|
1431
1431
|
reason: "review" | "explore";
|
|
1432
|
-
suggestedDifficulty: "
|
|
1432
|
+
suggestedDifficulty: "Easy" | "Medium" | "Hard" | "Very Easy" | "Expert";
|
|
1433
1433
|
}, {
|
|
1434
|
-
|
|
1434
|
+
code: string;
|
|
1435
1435
|
topicName: string;
|
|
1436
1436
|
reason: "review" | "explore";
|
|
1437
|
-
suggestedDifficulty: "
|
|
1437
|
+
suggestedDifficulty: "Easy" | "Medium" | "Hard" | "Very Easy" | "Expert";
|
|
1438
1438
|
}>, "many">;
|
|
1439
1439
|
}, "strip", z.ZodTypeAny, {
|
|
1440
1440
|
suggestionText: string;
|
|
1441
1441
|
suggestedTopics: {
|
|
1442
|
-
|
|
1442
|
+
code: string;
|
|
1443
1443
|
topicName: string;
|
|
1444
1444
|
reason: "review" | "explore";
|
|
1445
|
-
suggestedDifficulty: "
|
|
1445
|
+
suggestedDifficulty: "Easy" | "Medium" | "Hard" | "Very Easy" | "Expert";
|
|
1446
1446
|
}[];
|
|
1447
1447
|
}, {
|
|
1448
1448
|
suggestionText: string;
|
|
1449
1449
|
suggestedTopics: {
|
|
1450
|
-
|
|
1450
|
+
code: string;
|
|
1451
1451
|
topicName: string;
|
|
1452
1452
|
reason: "review" | "explore";
|
|
1453
|
-
suggestedDifficulty: "
|
|
1453
|
+
suggestedDifficulty: "Easy" | "Medium" | "Hard" | "Very Easy" | "Expert";
|
|
1454
1454
|
}[];
|
|
1455
1455
|
}>;
|
|
1456
1456
|
type GeneratePracticeSuggestionOutput = z.infer<typeof PracticeSuggestionOutputSchema>;
|
|
@@ -1481,29 +1481,29 @@ declare const GenerateLearningAnalysisInputSchema: z.ZodObject<{
|
|
|
1481
1481
|
startDate: z.ZodString;
|
|
1482
1482
|
endDate: z.ZodString;
|
|
1483
1483
|
allAvailableTopics: z.ZodArray<z.ZodObject<{
|
|
1484
|
-
|
|
1484
|
+
code: z.ZodString;
|
|
1485
1485
|
subject: z.ZodString;
|
|
1486
1486
|
category: z.ZodString;
|
|
1487
1487
|
topic: z.ZodString;
|
|
1488
1488
|
}, "strip", z.ZodTypeAny, {
|
|
1489
|
+
code: string;
|
|
1489
1490
|
subject: string;
|
|
1490
1491
|
category: string;
|
|
1491
1492
|
topic: string;
|
|
1492
|
-
loId: string;
|
|
1493
1493
|
}, {
|
|
1494
|
+
code: string;
|
|
1494
1495
|
subject: string;
|
|
1495
1496
|
category: string;
|
|
1496
1497
|
topic: string;
|
|
1497
|
-
loId: string;
|
|
1498
1498
|
}>, "many">;
|
|
1499
1499
|
}, "strip", z.ZodTypeAny, {
|
|
1500
1500
|
history: any[];
|
|
1501
1501
|
language: string;
|
|
1502
1502
|
allAvailableTopics: {
|
|
1503
|
+
code: string;
|
|
1503
1504
|
subject: string;
|
|
1504
1505
|
category: string;
|
|
1505
1506
|
topic: string;
|
|
1506
|
-
loId: string;
|
|
1507
1507
|
}[];
|
|
1508
1508
|
unlockedAchievements: {
|
|
1509
1509
|
id: string;
|
|
@@ -1519,10 +1519,10 @@ declare const GenerateLearningAnalysisInputSchema: z.ZodObject<{
|
|
|
1519
1519
|
}, {
|
|
1520
1520
|
history: any[];
|
|
1521
1521
|
allAvailableTopics: {
|
|
1522
|
+
code: string;
|
|
1522
1523
|
subject: string;
|
|
1523
1524
|
category: string;
|
|
1524
1525
|
topic: string;
|
|
1525
|
-
loId: string;
|
|
1526
1526
|
}[];
|
|
1527
1527
|
unlockedAchievements: {
|
|
1528
1528
|
id: string;
|
|
@@ -1623,42 +1623,42 @@ declare const AssessAndMapDocumentInputSchema: z.ZodObject<{
|
|
|
1623
1623
|
language: z.ZodDefault<z.ZodString>;
|
|
1624
1624
|
documentContent: z.ZodString;
|
|
1625
1625
|
learningObjectives: z.ZodArray<z.ZodObject<{
|
|
1626
|
-
|
|
1626
|
+
code: z.ZodString;
|
|
1627
1627
|
subject: z.ZodString;
|
|
1628
1628
|
category: z.ZodString;
|
|
1629
1629
|
topic: z.ZodString;
|
|
1630
|
-
|
|
1630
|
+
description: z.ZodString;
|
|
1631
1631
|
}, "strip", z.ZodTypeAny, {
|
|
1632
|
+
code: string;
|
|
1633
|
+
description: string;
|
|
1632
1634
|
subject: string;
|
|
1633
1635
|
category: string;
|
|
1634
1636
|
topic: string;
|
|
1635
|
-
loDescription: string;
|
|
1636
|
-
loId: string;
|
|
1637
1637
|
}, {
|
|
1638
|
+
code: string;
|
|
1639
|
+
description: string;
|
|
1638
1640
|
subject: string;
|
|
1639
1641
|
category: string;
|
|
1640
1642
|
topic: string;
|
|
1641
|
-
loDescription: string;
|
|
1642
|
-
loId: string;
|
|
1643
1643
|
}>, "many">;
|
|
1644
1644
|
}, "strip", z.ZodTypeAny, {
|
|
1645
1645
|
language: string;
|
|
1646
1646
|
documentContent: string;
|
|
1647
1647
|
learningObjectives: {
|
|
1648
|
+
code: string;
|
|
1649
|
+
description: string;
|
|
1648
1650
|
subject: string;
|
|
1649
1651
|
category: string;
|
|
1650
1652
|
topic: string;
|
|
1651
|
-
loDescription: string;
|
|
1652
|
-
loId: string;
|
|
1653
1653
|
}[];
|
|
1654
1654
|
}, {
|
|
1655
1655
|
documentContent: string;
|
|
1656
1656
|
learningObjectives: {
|
|
1657
|
+
code: string;
|
|
1658
|
+
description: string;
|
|
1657
1659
|
subject: string;
|
|
1658
1660
|
category: string;
|
|
1659
1661
|
topic: string;
|
|
1660
|
-
loDescription: string;
|
|
1661
|
-
loId: string;
|
|
1662
1662
|
}[];
|
|
1663
1663
|
language?: string | undefined;
|
|
1664
1664
|
}>;
|
|
@@ -1667,32 +1667,32 @@ declare const AssessAndMapDocumentOutputSchema: z.ZodObject<{
|
|
|
1667
1667
|
relevanceScore: z.ZodNumber;
|
|
1668
1668
|
isFreestyleRecommended: z.ZodBoolean;
|
|
1669
1669
|
mappedLOs: z.ZodArray<z.ZodObject<{
|
|
1670
|
-
|
|
1670
|
+
code: z.ZodString;
|
|
1671
1671
|
confidence: z.ZodNumber;
|
|
1672
1672
|
reasoning: z.ZodString;
|
|
1673
1673
|
}, "strip", z.ZodTypeAny, {
|
|
1674
|
+
code: string;
|
|
1674
1675
|
reasoning: string;
|
|
1675
|
-
loId: string;
|
|
1676
1676
|
confidence: number;
|
|
1677
1677
|
}, {
|
|
1678
|
+
code: string;
|
|
1678
1679
|
reasoning: string;
|
|
1679
|
-
loId: string;
|
|
1680
1680
|
confidence: number;
|
|
1681
1681
|
}>, "many">;
|
|
1682
1682
|
}, "strip", z.ZodTypeAny, {
|
|
1683
1683
|
relevanceScore: number;
|
|
1684
1684
|
isFreestyleRecommended: boolean;
|
|
1685
1685
|
mappedLOs: {
|
|
1686
|
+
code: string;
|
|
1686
1687
|
reasoning: string;
|
|
1687
|
-
loId: string;
|
|
1688
1688
|
confidence: number;
|
|
1689
1689
|
}[];
|
|
1690
1690
|
}, {
|
|
1691
1691
|
relevanceScore: number;
|
|
1692
1692
|
isFreestyleRecommended: boolean;
|
|
1693
1693
|
mappedLOs: {
|
|
1694
|
+
code: string;
|
|
1694
1695
|
reasoning: string;
|
|
1695
|
-
loId: string;
|
|
1696
1696
|
confidence: number;
|
|
1697
1697
|
}[];
|
|
1698
1698
|
}>;
|
|
@@ -1723,7 +1723,7 @@ declare const GenerateQuizFromTextOutputSchema: z.ZodObject<{
|
|
|
1723
1723
|
prompt: z.ZodString;
|
|
1724
1724
|
points: z.ZodOptional<z.ZodNumber>;
|
|
1725
1725
|
explanation: z.ZodOptional<z.ZodString>;
|
|
1726
|
-
difficulty: z.ZodOptional<z.ZodEnum<["
|
|
1726
|
+
difficulty: z.ZodOptional<z.ZodEnum<["Easy", "Medium", "Hard"]>>;
|
|
1727
1727
|
topic: z.ZodOptional<z.ZodString>;
|
|
1728
1728
|
category: z.ZodOptional<z.ZodString>;
|
|
1729
1729
|
subject: z.ZodOptional<z.ZodString>;
|
|
@@ -1760,7 +1760,7 @@ declare const GenerateQuizFromTextOutputSchema: z.ZodObject<{
|
|
|
1760
1760
|
learningObjective?: string | undefined;
|
|
1761
1761
|
category?: string | undefined;
|
|
1762
1762
|
topic?: string | undefined;
|
|
1763
|
-
difficulty?: "
|
|
1763
|
+
difficulty?: "Easy" | "Medium" | "Hard" | undefined;
|
|
1764
1764
|
bloomLevel?: string | undefined;
|
|
1765
1765
|
explanation?: string | undefined;
|
|
1766
1766
|
contextCode?: string | undefined;
|
|
@@ -1781,7 +1781,7 @@ declare const GenerateQuizFromTextOutputSchema: z.ZodObject<{
|
|
|
1781
1781
|
learningObjective?: string | undefined;
|
|
1782
1782
|
category?: string | undefined;
|
|
1783
1783
|
topic?: string | undefined;
|
|
1784
|
-
difficulty?: "
|
|
1784
|
+
difficulty?: "Easy" | "Medium" | "Hard" | undefined;
|
|
1785
1785
|
bloomLevel?: string | undefined;
|
|
1786
1786
|
explanation?: string | undefined;
|
|
1787
1787
|
contextCode?: string | undefined;
|
|
@@ -1802,7 +1802,7 @@ declare const GenerateQuizFromTextOutputSchema: z.ZodObject<{
|
|
|
1802
1802
|
learningObjective?: string | undefined;
|
|
1803
1803
|
category?: string | undefined;
|
|
1804
1804
|
topic?: string | undefined;
|
|
1805
|
-
difficulty?: "
|
|
1805
|
+
difficulty?: "Easy" | "Medium" | "Hard" | undefined;
|
|
1806
1806
|
bloomLevel?: string | undefined;
|
|
1807
1807
|
explanation?: string | undefined;
|
|
1808
1808
|
contextCode?: string | undefined;
|
|
@@ -1823,7 +1823,7 @@ declare const GenerateQuizFromTextOutputSchema: z.ZodObject<{
|
|
|
1823
1823
|
learningObjective?: string | undefined;
|
|
1824
1824
|
category?: string | undefined;
|
|
1825
1825
|
topic?: string | undefined;
|
|
1826
|
-
difficulty?: "
|
|
1826
|
+
difficulty?: "Easy" | "Medium" | "Hard" | undefined;
|
|
1827
1827
|
bloomLevel?: string | undefined;
|
|
1828
1828
|
explanation?: string | undefined;
|
|
1829
1829
|
contextCode?: string | undefined;
|
|
@@ -1835,7 +1835,7 @@ declare const GenerateQuizFromTextOutputSchema: z.ZodObject<{
|
|
|
1835
1835
|
prompt: z.ZodString;
|
|
1836
1836
|
points: z.ZodOptional<z.ZodNumber>;
|
|
1837
1837
|
explanation: z.ZodOptional<z.ZodString>;
|
|
1838
|
-
difficulty: z.ZodOptional<z.ZodEnum<["
|
|
1838
|
+
difficulty: z.ZodOptional<z.ZodEnum<["Easy", "Medium", "Hard"]>>;
|
|
1839
1839
|
topic: z.ZodOptional<z.ZodString>;
|
|
1840
1840
|
category: z.ZodOptional<z.ZodString>;
|
|
1841
1841
|
subject: z.ZodOptional<z.ZodString>;
|
|
@@ -1858,7 +1858,7 @@ declare const GenerateQuizFromTextOutputSchema: z.ZodObject<{
|
|
|
1858
1858
|
learningObjective?: string | undefined;
|
|
1859
1859
|
category?: string | undefined;
|
|
1860
1860
|
topic?: string | undefined;
|
|
1861
|
-
difficulty?: "
|
|
1861
|
+
difficulty?: "Easy" | "Medium" | "Hard" | undefined;
|
|
1862
1862
|
bloomLevel?: string | undefined;
|
|
1863
1863
|
explanation?: string | undefined;
|
|
1864
1864
|
contextCode?: string | undefined;
|
|
@@ -1875,7 +1875,7 @@ declare const GenerateQuizFromTextOutputSchema: z.ZodObject<{
|
|
|
1875
1875
|
learningObjective?: string | undefined;
|
|
1876
1876
|
category?: string | undefined;
|
|
1877
1877
|
topic?: string | undefined;
|
|
1878
|
-
difficulty?: "
|
|
1878
|
+
difficulty?: "Easy" | "Medium" | "Hard" | undefined;
|
|
1879
1879
|
bloomLevel?: string | undefined;
|
|
1880
1880
|
explanation?: string | undefined;
|
|
1881
1881
|
contextCode?: string | undefined;
|
|
@@ -1887,7 +1887,7 @@ declare const GenerateQuizFromTextOutputSchema: z.ZodObject<{
|
|
|
1887
1887
|
prompt: z.ZodString;
|
|
1888
1888
|
points: z.ZodOptional<z.ZodNumber>;
|
|
1889
1889
|
explanation: z.ZodOptional<z.ZodString>;
|
|
1890
|
-
difficulty: z.ZodOptional<z.ZodEnum<["
|
|
1890
|
+
difficulty: z.ZodOptional<z.ZodEnum<["Easy", "Medium", "Hard"]>>;
|
|
1891
1891
|
topic: z.ZodOptional<z.ZodString>;
|
|
1892
1892
|
category: z.ZodOptional<z.ZodString>;
|
|
1893
1893
|
subject: z.ZodOptional<z.ZodString>;
|
|
@@ -1911,7 +1911,7 @@ declare const GenerateQuizFromTextOutputSchema: z.ZodObject<{
|
|
|
1911
1911
|
learningObjective?: string | undefined;
|
|
1912
1912
|
category?: string | undefined;
|
|
1913
1913
|
topic?: string | undefined;
|
|
1914
|
-
difficulty?: "
|
|
1914
|
+
difficulty?: "Easy" | "Medium" | "Hard" | undefined;
|
|
1915
1915
|
bloomLevel?: string | undefined;
|
|
1916
1916
|
explanation?: string | undefined;
|
|
1917
1917
|
contextCode?: string | undefined;
|
|
@@ -1929,7 +1929,7 @@ declare const GenerateQuizFromTextOutputSchema: z.ZodObject<{
|
|
|
1929
1929
|
learningObjective?: string | undefined;
|
|
1930
1930
|
category?: string | undefined;
|
|
1931
1931
|
topic?: string | undefined;
|
|
1932
|
-
difficulty?: "
|
|
1932
|
+
difficulty?: "Easy" | "Medium" | "Hard" | undefined;
|
|
1933
1933
|
bloomLevel?: string | undefined;
|
|
1934
1934
|
explanation?: string | undefined;
|
|
1935
1935
|
contextCode?: string | undefined;
|
|
@@ -1949,7 +1949,7 @@ declare const GenerateQuizFromTextOutputSchema: z.ZodObject<{
|
|
|
1949
1949
|
learningObjective?: string | undefined;
|
|
1950
1950
|
category?: string | undefined;
|
|
1951
1951
|
topic?: string | undefined;
|
|
1952
|
-
difficulty?: "
|
|
1952
|
+
difficulty?: "Easy" | "Medium" | "Hard" | undefined;
|
|
1953
1953
|
bloomLevel?: string | undefined;
|
|
1954
1954
|
explanation?: string | undefined;
|
|
1955
1955
|
contextCode?: string | undefined;
|
|
@@ -1970,7 +1970,7 @@ declare const GenerateQuizFromTextOutputSchema: z.ZodObject<{
|
|
|
1970
1970
|
learningObjective?: string | undefined;
|
|
1971
1971
|
category?: string | undefined;
|
|
1972
1972
|
topic?: string | undefined;
|
|
1973
|
-
difficulty?: "
|
|
1973
|
+
difficulty?: "Easy" | "Medium" | "Hard" | undefined;
|
|
1974
1974
|
bloomLevel?: string | undefined;
|
|
1975
1975
|
explanation?: string | undefined;
|
|
1976
1976
|
contextCode?: string | undefined;
|
|
@@ -1987,7 +1987,7 @@ declare const GenerateQuizFromTextOutputSchema: z.ZodObject<{
|
|
|
1987
1987
|
learningObjective?: string | undefined;
|
|
1988
1988
|
category?: string | undefined;
|
|
1989
1989
|
topic?: string | undefined;
|
|
1990
|
-
difficulty?: "
|
|
1990
|
+
difficulty?: "Easy" | "Medium" | "Hard" | undefined;
|
|
1991
1991
|
bloomLevel?: string | undefined;
|
|
1992
1992
|
explanation?: string | undefined;
|
|
1993
1993
|
contextCode?: string | undefined;
|
|
@@ -2007,7 +2007,7 @@ declare const GenerateQuizFromTextOutputSchema: z.ZodObject<{
|
|
|
2007
2007
|
learningObjective?: string | undefined;
|
|
2008
2008
|
category?: string | undefined;
|
|
2009
2009
|
topic?: string | undefined;
|
|
2010
|
-
difficulty?: "
|
|
2010
|
+
difficulty?: "Easy" | "Medium" | "Hard" | undefined;
|
|
2011
2011
|
bloomLevel?: string | undefined;
|
|
2012
2012
|
explanation?: string | undefined;
|
|
2013
2013
|
contextCode?: string | undefined;
|
|
@@ -2028,7 +2028,7 @@ declare const GenerateQuizFromTextOutputSchema: z.ZodObject<{
|
|
|
2028
2028
|
learningObjective?: string | undefined;
|
|
2029
2029
|
category?: string | undefined;
|
|
2030
2030
|
topic?: string | undefined;
|
|
2031
|
-
difficulty?: "
|
|
2031
|
+
difficulty?: "Easy" | "Medium" | "Hard" | undefined;
|
|
2032
2032
|
bloomLevel?: string | undefined;
|
|
2033
2033
|
explanation?: string | undefined;
|
|
2034
2034
|
contextCode?: string | undefined;
|
|
@@ -2045,7 +2045,7 @@ declare const GenerateQuizFromTextOutputSchema: z.ZodObject<{
|
|
|
2045
2045
|
learningObjective?: string | undefined;
|
|
2046
2046
|
category?: string | undefined;
|
|
2047
2047
|
topic?: string | undefined;
|
|
2048
|
-
difficulty?: "
|
|
2048
|
+
difficulty?: "Easy" | "Medium" | "Hard" | undefined;
|
|
2049
2049
|
bloomLevel?: string | undefined;
|
|
2050
2050
|
explanation?: string | undefined;
|
|
2051
2051
|
contextCode?: string | undefined;
|