@telebort/question-banks 2.2.0 → 2.3.0

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.
@@ -29,7 +29,7 @@ declare const OptionSchema: z.ZodObject<{
29
29
  key: z.ZodEnum<["A", "B", "C", "D"]>;
30
30
  text: z.ZodString;
31
31
  isCorrect: z.ZodBoolean;
32
- misconceptionId: z.ZodOptional<z.ZodString>;
32
+ misconceptionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
33
33
  feedback: z.ZodOptional<z.ZodObject<{
34
34
  short: z.ZodString;
35
35
  detailed: z.ZodString;
@@ -47,7 +47,7 @@ declare const OptionSchema: z.ZodObject<{
47
47
  key: "A" | "B" | "C" | "D";
48
48
  text: string;
49
49
  isCorrect: boolean;
50
- misconceptionId?: string | undefined;
50
+ misconceptionId?: string | null | undefined;
51
51
  feedback?: {
52
52
  short: string;
53
53
  detailed: string;
@@ -57,7 +57,7 @@ declare const OptionSchema: z.ZodObject<{
57
57
  key: "A" | "B" | "C" | "D";
58
58
  text: string;
59
59
  isCorrect: boolean;
60
- misconceptionId?: string | undefined;
60
+ misconceptionId?: string | null | undefined;
61
61
  feedback?: {
62
62
  short: string;
63
63
  detailed: string;
@@ -65,7 +65,7 @@ declare const OptionSchema: z.ZodObject<{
65
65
  } | undefined;
66
66
  }>;
67
67
  type Option = z.infer<typeof OptionSchema>;
68
- declare const QuestionTypeSchema: z.ZodEnum<["vocabulary", "code_understanding", "problem_solving", "application", "reflection"]>;
68
+ declare const QuestionTypeSchema: z.ZodEnum<["vocabulary", "code_understanding", "problem_solving", "application", "reflection", "debugging", "trace", "predict", "analyze", "evaluation", "synthesis", "design", "conceptual", "explain", "bebras", "blockmodel", "ethical_reasoning"]>;
69
69
  type QuestionType = z.infer<typeof QuestionTypeSchema>;
70
70
  /**
71
71
  * Question archetype for pedagogical classification
@@ -74,8 +74,20 @@ type QuestionType = z.infer<typeof QuestionTypeSchema>;
74
74
  * - bebras: Logic-first, computational thinking
75
75
  * - blockmodel: Surface/flow/purpose analysis
76
76
  * - parsons: Code block reordering (future)
77
+ * - predict: PRIMM predict phase
78
+ * - explain: PRIMM explain phase
79
+ * - debugging: Find/fix errors
80
+ * - application: Apply concept to scenario
81
+ * - problem_solving: Solve novel problems
82
+ * - evaluation: Judge/compare approaches
83
+ * - reflection: Meta-cognitive self-assessment
84
+ * - conceptual: Pure concept understanding
85
+ * - analysis: Compare/decompose
86
+ * - design: System/solution design
87
+ * - synthesis: Combine ideas to create
88
+ * - code: Code-focused analysis
77
89
  */
78
- declare const QuestionArchetypeSchema: z.ZodEnum<["vocabulary", "trace", "bebras", "blockmodel", "parsons"]>;
90
+ declare const QuestionArchetypeSchema: z.ZodEnum<["vocabulary", "trace", "bebras", "blockmodel", "parsons", "application", "problem_solving", "debugging", "predict", "explain", "evaluation", "reflection", "conceptual", "analysis", "design", "synthesis", "code"]>;
79
91
  type QuestionArchetype = z.infer<typeof QuestionArchetypeSchema>;
80
92
  declare const DifficultySchema: z.ZodEnum<["easy", "medium", "hard", "challenge"]>;
81
93
  type Difficulty = z.infer<typeof DifficultySchema>;
@@ -93,7 +105,7 @@ declare const QuestionMetadataSchema: z.ZodObject<{
93
105
  }, "strip", z.ZodTypeAny, {
94
106
  difficulty: "easy" | "medium" | "hard" | "challenge";
95
107
  estimatedTime: number;
96
- bloomsTaxonomy: "remember" | "understand" | "apply" | "analyze" | "evaluate" | "create";
108
+ bloomsTaxonomy: "analyze" | "remember" | "understand" | "apply" | "evaluate" | "create";
97
109
  tags: string[];
98
110
  source: string;
99
111
  version: string;
@@ -102,7 +114,7 @@ declare const QuestionMetadataSchema: z.ZodObject<{
102
114
  }, {
103
115
  difficulty: "easy" | "medium" | "hard" | "challenge";
104
116
  estimatedTime: number;
105
- bloomsTaxonomy: "remember" | "understand" | "apply" | "analyze" | "evaluate" | "create";
117
+ bloomsTaxonomy: "analyze" | "remember" | "understand" | "apply" | "evaluate" | "create";
106
118
  tags: string[];
107
119
  source?: string | undefined;
108
120
  version?: string | undefined;
@@ -120,9 +132,9 @@ declare const QuestionSchema: z.ZodObject<{
120
132
  questionId: z.ZodString;
121
133
  globalId: z.ZodString;
122
134
  questionNumber: z.ZodNumber;
123
- questionType: z.ZodEnum<["vocabulary", "code_understanding", "problem_solving", "application", "reflection"]>;
135
+ questionType: z.ZodEnum<["vocabulary", "code_understanding", "problem_solving", "application", "reflection", "debugging", "trace", "predict", "analyze", "evaluation", "synthesis", "design", "conceptual", "explain", "bebras", "blockmodel", "ethical_reasoning"]>;
124
136
  questionTypeLabel: z.ZodString;
125
- questionArchetype: z.ZodOptional<z.ZodEnum<["vocabulary", "trace", "bebras", "blockmodel", "parsons"]>>;
137
+ questionArchetype: z.ZodOptional<z.ZodEnum<["vocabulary", "trace", "bebras", "blockmodel", "parsons", "application", "problem_solving", "debugging", "predict", "explain", "evaluation", "reflection", "conceptual", "analysis", "design", "synthesis", "code"]>>;
126
138
  prompt: z.ZodString;
127
139
  hasCodeBlock: z.ZodBoolean;
128
140
  codeLanguage: z.ZodNullable<z.ZodString>;
@@ -132,7 +144,7 @@ declare const QuestionSchema: z.ZodObject<{
132
144
  key: z.ZodEnum<["A", "B", "C", "D"]>;
133
145
  text: z.ZodString;
134
146
  isCorrect: z.ZodBoolean;
135
- misconceptionId: z.ZodOptional<z.ZodString>;
147
+ misconceptionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
136
148
  feedback: z.ZodOptional<z.ZodObject<{
137
149
  short: z.ZodString;
138
150
  detailed: z.ZodString;
@@ -150,7 +162,7 @@ declare const QuestionSchema: z.ZodObject<{
150
162
  key: "A" | "B" | "C" | "D";
151
163
  text: string;
152
164
  isCorrect: boolean;
153
- misconceptionId?: string | undefined;
165
+ misconceptionId?: string | null | undefined;
154
166
  feedback?: {
155
167
  short: string;
156
168
  detailed: string;
@@ -160,7 +172,7 @@ declare const QuestionSchema: z.ZodObject<{
160
172
  key: "A" | "B" | "C" | "D";
161
173
  text: string;
162
174
  isCorrect: boolean;
163
- misconceptionId?: string | undefined;
175
+ misconceptionId?: string | null | undefined;
164
176
  feedback?: {
165
177
  short: string;
166
178
  detailed: string;
@@ -181,7 +193,7 @@ declare const QuestionSchema: z.ZodObject<{
181
193
  }, "strip", z.ZodTypeAny, {
182
194
  difficulty: "easy" | "medium" | "hard" | "challenge";
183
195
  estimatedTime: number;
184
- bloomsTaxonomy: "remember" | "understand" | "apply" | "analyze" | "evaluate" | "create";
196
+ bloomsTaxonomy: "analyze" | "remember" | "understand" | "apply" | "evaluate" | "create";
185
197
  tags: string[];
186
198
  source: string;
187
199
  version: string;
@@ -190,7 +202,7 @@ declare const QuestionSchema: z.ZodObject<{
190
202
  }, {
191
203
  difficulty: "easy" | "medium" | "hard" | "challenge";
192
204
  estimatedTime: number;
193
- bloomsTaxonomy: "remember" | "understand" | "apply" | "analyze" | "evaluate" | "create";
205
+ bloomsTaxonomy: "analyze" | "remember" | "understand" | "apply" | "evaluate" | "create";
194
206
  tags: string[];
195
207
  source?: string | undefined;
196
208
  version?: string | undefined;
@@ -202,7 +214,7 @@ declare const QuestionSchema: z.ZodObject<{
202
214
  key: "A" | "B" | "C" | "D";
203
215
  text: string;
204
216
  isCorrect: boolean;
205
- misconceptionId?: string | undefined;
217
+ misconceptionId?: string | null | undefined;
206
218
  feedback?: {
207
219
  short: string;
208
220
  detailed: string;
@@ -212,7 +224,7 @@ declare const QuestionSchema: z.ZodObject<{
212
224
  questionId: string;
213
225
  globalId: string;
214
226
  questionNumber: number;
215
- questionType: "vocabulary" | "code_understanding" | "problem_solving" | "application" | "reflection";
227
+ questionType: "design" | "vocabulary" | "code_understanding" | "problem_solving" | "application" | "reflection" | "debugging" | "trace" | "predict" | "analyze" | "evaluation" | "synthesis" | "conceptual" | "explain" | "bebras" | "blockmodel" | "ethical_reasoning";
216
228
  questionTypeLabel: string;
217
229
  prompt: string;
218
230
  hasCodeBlock: boolean;
@@ -223,21 +235,21 @@ declare const QuestionSchema: z.ZodObject<{
223
235
  metadata: {
224
236
  difficulty: "easy" | "medium" | "hard" | "challenge";
225
237
  estimatedTime: number;
226
- bloomsTaxonomy: "remember" | "understand" | "apply" | "analyze" | "evaluate" | "create";
238
+ bloomsTaxonomy: "analyze" | "remember" | "understand" | "apply" | "evaluate" | "create";
227
239
  tags: string[];
228
240
  source: string;
229
241
  version: string;
230
242
  createdDate?: string | undefined;
231
243
  lastModified?: string | undefined;
232
244
  };
233
- questionArchetype?: "vocabulary" | "trace" | "bebras" | "blockmodel" | "parsons" | undefined;
245
+ questionArchetype?: "design" | "code" | "vocabulary" | "problem_solving" | "application" | "reflection" | "debugging" | "trace" | "predict" | "evaluation" | "synthesis" | "conceptual" | "explain" | "bebras" | "blockmodel" | "parsons" | "analysis" | undefined;
234
246
  misconceptionTargets?: string[] | undefined;
235
247
  }, {
236
248
  options: {
237
249
  key: "A" | "B" | "C" | "D";
238
250
  text: string;
239
251
  isCorrect: boolean;
240
- misconceptionId?: string | undefined;
252
+ misconceptionId?: string | null | undefined;
241
253
  feedback?: {
242
254
  short: string;
243
255
  detailed: string;
@@ -247,7 +259,7 @@ declare const QuestionSchema: z.ZodObject<{
247
259
  questionId: string;
248
260
  globalId: string;
249
261
  questionNumber: number;
250
- questionType: "vocabulary" | "code_understanding" | "problem_solving" | "application" | "reflection";
262
+ questionType: "design" | "vocabulary" | "code_understanding" | "problem_solving" | "application" | "reflection" | "debugging" | "trace" | "predict" | "analyze" | "evaluation" | "synthesis" | "conceptual" | "explain" | "bebras" | "blockmodel" | "ethical_reasoning";
251
263
  questionTypeLabel: string;
252
264
  prompt: string;
253
265
  hasCodeBlock: boolean;
@@ -258,14 +270,14 @@ declare const QuestionSchema: z.ZodObject<{
258
270
  metadata: {
259
271
  difficulty: "easy" | "medium" | "hard" | "challenge";
260
272
  estimatedTime: number;
261
- bloomsTaxonomy: "remember" | "understand" | "apply" | "analyze" | "evaluate" | "create";
273
+ bloomsTaxonomy: "analyze" | "remember" | "understand" | "apply" | "evaluate" | "create";
262
274
  tags: string[];
263
275
  source?: string | undefined;
264
276
  version?: string | undefined;
265
277
  createdDate?: string | undefined;
266
278
  lastModified?: string | undefined;
267
279
  };
268
- questionArchetype?: "vocabulary" | "trace" | "bebras" | "blockmodel" | "parsons" | undefined;
280
+ questionArchetype?: "design" | "code" | "vocabulary" | "problem_solving" | "application" | "reflection" | "debugging" | "trace" | "predict" | "evaluation" | "synthesis" | "conceptual" | "explain" | "bebras" | "blockmodel" | "parsons" | "analysis" | undefined;
269
281
  misconceptionTargets?: string[] | undefined;
270
282
  }>;
271
283
  type Question = z.infer<typeof QuestionSchema>;
@@ -273,9 +285,9 @@ declare const QuestionWithoutAnswerSchema: z.ZodObject<{
273
285
  questionId: z.ZodString;
274
286
  globalId: z.ZodString;
275
287
  questionNumber: z.ZodNumber;
276
- questionType: z.ZodEnum<["vocabulary", "code_understanding", "problem_solving", "application", "reflection"]>;
288
+ questionType: z.ZodEnum<["vocabulary", "code_understanding", "problem_solving", "application", "reflection", "debugging", "trace", "predict", "analyze", "evaluation", "synthesis", "design", "conceptual", "explain", "bebras", "blockmodel", "ethical_reasoning"]>;
277
289
  questionTypeLabel: z.ZodString;
278
- questionArchetype: z.ZodOptional<z.ZodEnum<["vocabulary", "trace", "bebras", "blockmodel", "parsons"]>>;
290
+ questionArchetype: z.ZodOptional<z.ZodEnum<["vocabulary", "trace", "bebras", "blockmodel", "parsons", "application", "problem_solving", "debugging", "predict", "explain", "evaluation", "reflection", "conceptual", "analysis", "design", "synthesis", "code"]>>;
279
291
  prompt: z.ZodString;
280
292
  hasCodeBlock: z.ZodBoolean;
281
293
  codeLanguage: z.ZodNullable<z.ZodString>;
@@ -293,7 +305,7 @@ declare const QuestionWithoutAnswerSchema: z.ZodObject<{
293
305
  }, "strip", z.ZodTypeAny, {
294
306
  difficulty: "easy" | "medium" | "hard" | "challenge";
295
307
  estimatedTime: number;
296
- bloomsTaxonomy: "remember" | "understand" | "apply" | "analyze" | "evaluate" | "create";
308
+ bloomsTaxonomy: "analyze" | "remember" | "understand" | "apply" | "evaluate" | "create";
297
309
  tags: string[];
298
310
  source: string;
299
311
  version: string;
@@ -302,7 +314,7 @@ declare const QuestionWithoutAnswerSchema: z.ZodObject<{
302
314
  }, {
303
315
  difficulty: "easy" | "medium" | "hard" | "challenge";
304
316
  estimatedTime: number;
305
- bloomsTaxonomy: "remember" | "understand" | "apply" | "analyze" | "evaluate" | "create";
317
+ bloomsTaxonomy: "analyze" | "remember" | "understand" | "apply" | "evaluate" | "create";
306
318
  tags: string[];
307
319
  source?: string | undefined;
308
320
  version?: string | undefined;
@@ -314,7 +326,7 @@ declare const QuestionWithoutAnswerSchema: z.ZodObject<{
314
326
  key: z.ZodEnum<["A", "B", "C", "D"]>;
315
327
  text: z.ZodString;
316
328
  isCorrect: z.ZodBoolean;
317
- misconceptionId: z.ZodOptional<z.ZodString>;
329
+ misconceptionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
318
330
  feedback: z.ZodOptional<z.ZodObject<{
319
331
  short: z.ZodString;
320
332
  detailed: z.ZodString;
@@ -343,7 +355,7 @@ declare const QuestionWithoutAnswerSchema: z.ZodObject<{
343
355
  questionId: string;
344
356
  globalId: string;
345
357
  questionNumber: number;
346
- questionType: "vocabulary" | "code_understanding" | "problem_solving" | "application" | "reflection";
358
+ questionType: "design" | "vocabulary" | "code_understanding" | "problem_solving" | "application" | "reflection" | "debugging" | "trace" | "predict" | "analyze" | "evaluation" | "synthesis" | "conceptual" | "explain" | "bebras" | "blockmodel" | "ethical_reasoning";
347
359
  questionTypeLabel: string;
348
360
  prompt: string;
349
361
  hasCodeBlock: boolean;
@@ -352,14 +364,14 @@ declare const QuestionWithoutAnswerSchema: z.ZodObject<{
352
364
  metadata: {
353
365
  difficulty: "easy" | "medium" | "hard" | "challenge";
354
366
  estimatedTime: number;
355
- bloomsTaxonomy: "remember" | "understand" | "apply" | "analyze" | "evaluate" | "create";
367
+ bloomsTaxonomy: "analyze" | "remember" | "understand" | "apply" | "evaluate" | "create";
356
368
  tags: string[];
357
369
  source: string;
358
370
  version: string;
359
371
  createdDate?: string | undefined;
360
372
  lastModified?: string | undefined;
361
373
  };
362
- questionArchetype?: "vocabulary" | "trace" | "bebras" | "blockmodel" | "parsons" | undefined;
374
+ questionArchetype?: "design" | "code" | "vocabulary" | "problem_solving" | "application" | "reflection" | "debugging" | "trace" | "predict" | "evaluation" | "synthesis" | "conceptual" | "explain" | "bebras" | "blockmodel" | "parsons" | "analysis" | undefined;
363
375
  misconceptionTargets?: string[] | undefined;
364
376
  }, {
365
377
  options: {
@@ -369,7 +381,7 @@ declare const QuestionWithoutAnswerSchema: z.ZodObject<{
369
381
  questionId: string;
370
382
  globalId: string;
371
383
  questionNumber: number;
372
- questionType: "vocabulary" | "code_understanding" | "problem_solving" | "application" | "reflection";
384
+ questionType: "design" | "vocabulary" | "code_understanding" | "problem_solving" | "application" | "reflection" | "debugging" | "trace" | "predict" | "analyze" | "evaluation" | "synthesis" | "conceptual" | "explain" | "bebras" | "blockmodel" | "ethical_reasoning";
373
385
  questionTypeLabel: string;
374
386
  prompt: string;
375
387
  hasCodeBlock: boolean;
@@ -378,21 +390,21 @@ declare const QuestionWithoutAnswerSchema: z.ZodObject<{
378
390
  metadata: {
379
391
  difficulty: "easy" | "medium" | "hard" | "challenge";
380
392
  estimatedTime: number;
381
- bloomsTaxonomy: "remember" | "understand" | "apply" | "analyze" | "evaluate" | "create";
393
+ bloomsTaxonomy: "analyze" | "remember" | "understand" | "apply" | "evaluate" | "create";
382
394
  tags: string[];
383
395
  source?: string | undefined;
384
396
  version?: string | undefined;
385
397
  createdDate?: string | undefined;
386
398
  lastModified?: string | undefined;
387
399
  };
388
- questionArchetype?: "vocabulary" | "trace" | "bebras" | "blockmodel" | "parsons" | undefined;
400
+ questionArchetype?: "design" | "code" | "vocabulary" | "problem_solving" | "application" | "reflection" | "debugging" | "trace" | "predict" | "evaluation" | "synthesis" | "conceptual" | "explain" | "bebras" | "blockmodel" | "parsons" | "analysis" | undefined;
389
401
  misconceptionTargets?: string[] | undefined;
390
402
  }>;
391
403
  type QuestionWithoutAnswer = z.infer<typeof QuestionWithoutAnswerSchema>;
392
404
 
393
- declare const CourseDomainSchema: z.ZodEnum<["ai_data_science", "ai_ml_cv", "ai_generative", "ai_advanced", "web_development", "mobile_development", "mobile", "block_based", "python_programming", "design", "foundation", "creative_computing"]>;
405
+ declare const CourseDomainSchema: z.ZodEnum<["ai_data_science", "ai_ml_cv", "ai_generative", "ai_advanced", "ai", "web_development", "mobile_development", "mobile", "block_based", "python_programming", "design", "artificial_intelligence", "cs_foundations", "foundation", "creative_computing", "tools"]>;
394
406
  type CourseDomain = z.infer<typeof CourseDomainSchema>;
395
- declare const CourseTierSchema: z.ZodEnum<["foundation", "intermediate", "advanced"]>;
407
+ declare const CourseTierSchema: z.ZodEnum<["beginner", "foundation", "intermediate", "advanced"]>;
396
408
  type CourseTier = z.infer<typeof CourseTierSchema>;
397
409
  declare const LessonSchema: z.ZodObject<{
398
410
  lessonId: z.ZodString;
@@ -404,9 +416,9 @@ declare const LessonSchema: z.ZodObject<{
404
416
  questionId: z.ZodString;
405
417
  globalId: z.ZodString;
406
418
  questionNumber: z.ZodNumber;
407
- questionType: z.ZodEnum<["vocabulary", "code_understanding", "problem_solving", "application", "reflection"]>;
419
+ questionType: z.ZodEnum<["vocabulary", "code_understanding", "problem_solving", "application", "reflection", "debugging", "trace", "predict", "analyze", "evaluation", "synthesis", "design", "conceptual", "explain", "bebras", "blockmodel", "ethical_reasoning"]>;
408
420
  questionTypeLabel: z.ZodString;
409
- questionArchetype: z.ZodOptional<z.ZodEnum<["vocabulary", "trace", "bebras", "blockmodel", "parsons"]>>;
421
+ questionArchetype: z.ZodOptional<z.ZodEnum<["vocabulary", "trace", "bebras", "blockmodel", "parsons", "application", "problem_solving", "debugging", "predict", "explain", "evaluation", "reflection", "conceptual", "analysis", "design", "synthesis", "code"]>>;
410
422
  prompt: z.ZodString;
411
423
  hasCodeBlock: z.ZodBoolean;
412
424
  codeLanguage: z.ZodNullable<z.ZodString>;
@@ -416,7 +428,7 @@ declare const LessonSchema: z.ZodObject<{
416
428
  key: z.ZodEnum<["A", "B", "C", "D"]>;
417
429
  text: z.ZodString;
418
430
  isCorrect: z.ZodBoolean;
419
- misconceptionId: z.ZodOptional<z.ZodString>;
431
+ misconceptionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
420
432
  feedback: z.ZodOptional<z.ZodObject<{
421
433
  short: z.ZodString;
422
434
  detailed: z.ZodString;
@@ -434,7 +446,7 @@ declare const LessonSchema: z.ZodObject<{
434
446
  key: "A" | "B" | "C" | "D";
435
447
  text: string;
436
448
  isCorrect: boolean;
437
- misconceptionId?: string | undefined;
449
+ misconceptionId?: string | null | undefined;
438
450
  feedback?: {
439
451
  short: string;
440
452
  detailed: string;
@@ -444,7 +456,7 @@ declare const LessonSchema: z.ZodObject<{
444
456
  key: "A" | "B" | "C" | "D";
445
457
  text: string;
446
458
  isCorrect: boolean;
447
- misconceptionId?: string | undefined;
459
+ misconceptionId?: string | null | undefined;
448
460
  feedback?: {
449
461
  short: string;
450
462
  detailed: string;
@@ -465,7 +477,7 @@ declare const LessonSchema: z.ZodObject<{
465
477
  }, "strip", z.ZodTypeAny, {
466
478
  difficulty: "easy" | "medium" | "hard" | "challenge";
467
479
  estimatedTime: number;
468
- bloomsTaxonomy: "remember" | "understand" | "apply" | "analyze" | "evaluate" | "create";
480
+ bloomsTaxonomy: "analyze" | "remember" | "understand" | "apply" | "evaluate" | "create";
469
481
  tags: string[];
470
482
  source: string;
471
483
  version: string;
@@ -474,7 +486,7 @@ declare const LessonSchema: z.ZodObject<{
474
486
  }, {
475
487
  difficulty: "easy" | "medium" | "hard" | "challenge";
476
488
  estimatedTime: number;
477
- bloomsTaxonomy: "remember" | "understand" | "apply" | "analyze" | "evaluate" | "create";
489
+ bloomsTaxonomy: "analyze" | "remember" | "understand" | "apply" | "evaluate" | "create";
478
490
  tags: string[];
479
491
  source?: string | undefined;
480
492
  version?: string | undefined;
@@ -486,7 +498,7 @@ declare const LessonSchema: z.ZodObject<{
486
498
  key: "A" | "B" | "C" | "D";
487
499
  text: string;
488
500
  isCorrect: boolean;
489
- misconceptionId?: string | undefined;
501
+ misconceptionId?: string | null | undefined;
490
502
  feedback?: {
491
503
  short: string;
492
504
  detailed: string;
@@ -496,7 +508,7 @@ declare const LessonSchema: z.ZodObject<{
496
508
  questionId: string;
497
509
  globalId: string;
498
510
  questionNumber: number;
499
- questionType: "vocabulary" | "code_understanding" | "problem_solving" | "application" | "reflection";
511
+ questionType: "design" | "vocabulary" | "code_understanding" | "problem_solving" | "application" | "reflection" | "debugging" | "trace" | "predict" | "analyze" | "evaluation" | "synthesis" | "conceptual" | "explain" | "bebras" | "blockmodel" | "ethical_reasoning";
500
512
  questionTypeLabel: string;
501
513
  prompt: string;
502
514
  hasCodeBlock: boolean;
@@ -507,21 +519,21 @@ declare const LessonSchema: z.ZodObject<{
507
519
  metadata: {
508
520
  difficulty: "easy" | "medium" | "hard" | "challenge";
509
521
  estimatedTime: number;
510
- bloomsTaxonomy: "remember" | "understand" | "apply" | "analyze" | "evaluate" | "create";
522
+ bloomsTaxonomy: "analyze" | "remember" | "understand" | "apply" | "evaluate" | "create";
511
523
  tags: string[];
512
524
  source: string;
513
525
  version: string;
514
526
  createdDate?: string | undefined;
515
527
  lastModified?: string | undefined;
516
528
  };
517
- questionArchetype?: "vocabulary" | "trace" | "bebras" | "blockmodel" | "parsons" | undefined;
529
+ questionArchetype?: "design" | "code" | "vocabulary" | "problem_solving" | "application" | "reflection" | "debugging" | "trace" | "predict" | "evaluation" | "synthesis" | "conceptual" | "explain" | "bebras" | "blockmodel" | "parsons" | "analysis" | undefined;
518
530
  misconceptionTargets?: string[] | undefined;
519
531
  }, {
520
532
  options: {
521
533
  key: "A" | "B" | "C" | "D";
522
534
  text: string;
523
535
  isCorrect: boolean;
524
- misconceptionId?: string | undefined;
536
+ misconceptionId?: string | null | undefined;
525
537
  feedback?: {
526
538
  short: string;
527
539
  detailed: string;
@@ -531,7 +543,7 @@ declare const LessonSchema: z.ZodObject<{
531
543
  questionId: string;
532
544
  globalId: string;
533
545
  questionNumber: number;
534
- questionType: "vocabulary" | "code_understanding" | "problem_solving" | "application" | "reflection";
546
+ questionType: "design" | "vocabulary" | "code_understanding" | "problem_solving" | "application" | "reflection" | "debugging" | "trace" | "predict" | "analyze" | "evaluation" | "synthesis" | "conceptual" | "explain" | "bebras" | "blockmodel" | "ethical_reasoning";
535
547
  questionTypeLabel: string;
536
548
  prompt: string;
537
549
  hasCodeBlock: boolean;
@@ -542,14 +554,14 @@ declare const LessonSchema: z.ZodObject<{
542
554
  metadata: {
543
555
  difficulty: "easy" | "medium" | "hard" | "challenge";
544
556
  estimatedTime: number;
545
- bloomsTaxonomy: "remember" | "understand" | "apply" | "analyze" | "evaluate" | "create";
557
+ bloomsTaxonomy: "analyze" | "remember" | "understand" | "apply" | "evaluate" | "create";
546
558
  tags: string[];
547
559
  source?: string | undefined;
548
560
  version?: string | undefined;
549
561
  createdDate?: string | undefined;
550
562
  lastModified?: string | undefined;
551
563
  };
552
- questionArchetype?: "vocabulary" | "trace" | "bebras" | "blockmodel" | "parsons" | undefined;
564
+ questionArchetype?: "design" | "code" | "vocabulary" | "problem_solving" | "application" | "reflection" | "debugging" | "trace" | "predict" | "evaluation" | "synthesis" | "conceptual" | "explain" | "bebras" | "blockmodel" | "parsons" | "analysis" | undefined;
553
565
  misconceptionTargets?: string[] | undefined;
554
566
  }>, "many">;
555
567
  }, "strip", z.ZodTypeAny, {
@@ -562,7 +574,7 @@ declare const LessonSchema: z.ZodObject<{
562
574
  key: "A" | "B" | "C" | "D";
563
575
  text: string;
564
576
  isCorrect: boolean;
565
- misconceptionId?: string | undefined;
577
+ misconceptionId?: string | null | undefined;
566
578
  feedback?: {
567
579
  short: string;
568
580
  detailed: string;
@@ -572,7 +584,7 @@ declare const LessonSchema: z.ZodObject<{
572
584
  questionId: string;
573
585
  globalId: string;
574
586
  questionNumber: number;
575
- questionType: "vocabulary" | "code_understanding" | "problem_solving" | "application" | "reflection";
587
+ questionType: "design" | "vocabulary" | "code_understanding" | "problem_solving" | "application" | "reflection" | "debugging" | "trace" | "predict" | "analyze" | "evaluation" | "synthesis" | "conceptual" | "explain" | "bebras" | "blockmodel" | "ethical_reasoning";
576
588
  questionTypeLabel: string;
577
589
  prompt: string;
578
590
  hasCodeBlock: boolean;
@@ -583,14 +595,14 @@ declare const LessonSchema: z.ZodObject<{
583
595
  metadata: {
584
596
  difficulty: "easy" | "medium" | "hard" | "challenge";
585
597
  estimatedTime: number;
586
- bloomsTaxonomy: "remember" | "understand" | "apply" | "analyze" | "evaluate" | "create";
598
+ bloomsTaxonomy: "analyze" | "remember" | "understand" | "apply" | "evaluate" | "create";
587
599
  tags: string[];
588
600
  source: string;
589
601
  version: string;
590
602
  createdDate?: string | undefined;
591
603
  lastModified?: string | undefined;
592
604
  };
593
- questionArchetype?: "vocabulary" | "trace" | "bebras" | "blockmodel" | "parsons" | undefined;
605
+ questionArchetype?: "design" | "code" | "vocabulary" | "problem_solving" | "application" | "reflection" | "debugging" | "trace" | "predict" | "evaluation" | "synthesis" | "conceptual" | "explain" | "bebras" | "blockmodel" | "parsons" | "analysis" | undefined;
594
606
  misconceptionTargets?: string[] | undefined;
595
607
  }[];
596
608
  lessonSlug?: string | undefined;
@@ -603,7 +615,7 @@ declare const LessonSchema: z.ZodObject<{
603
615
  key: "A" | "B" | "C" | "D";
604
616
  text: string;
605
617
  isCorrect: boolean;
606
- misconceptionId?: string | undefined;
618
+ misconceptionId?: string | null | undefined;
607
619
  feedback?: {
608
620
  short: string;
609
621
  detailed: string;
@@ -613,7 +625,7 @@ declare const LessonSchema: z.ZodObject<{
613
625
  questionId: string;
614
626
  globalId: string;
615
627
  questionNumber: number;
616
- questionType: "vocabulary" | "code_understanding" | "problem_solving" | "application" | "reflection";
628
+ questionType: "design" | "vocabulary" | "code_understanding" | "problem_solving" | "application" | "reflection" | "debugging" | "trace" | "predict" | "analyze" | "evaluation" | "synthesis" | "conceptual" | "explain" | "bebras" | "blockmodel" | "ethical_reasoning";
617
629
  questionTypeLabel: string;
618
630
  prompt: string;
619
631
  hasCodeBlock: boolean;
@@ -624,14 +636,14 @@ declare const LessonSchema: z.ZodObject<{
624
636
  metadata: {
625
637
  difficulty: "easy" | "medium" | "hard" | "challenge";
626
638
  estimatedTime: number;
627
- bloomsTaxonomy: "remember" | "understand" | "apply" | "analyze" | "evaluate" | "create";
639
+ bloomsTaxonomy: "analyze" | "remember" | "understand" | "apply" | "evaluate" | "create";
628
640
  tags: string[];
629
641
  source?: string | undefined;
630
642
  version?: string | undefined;
631
643
  createdDate?: string | undefined;
632
644
  lastModified?: string | undefined;
633
645
  };
634
- questionArchetype?: "vocabulary" | "trace" | "bebras" | "blockmodel" | "parsons" | undefined;
646
+ questionArchetype?: "design" | "code" | "vocabulary" | "problem_solving" | "application" | "reflection" | "debugging" | "trace" | "predict" | "evaluation" | "synthesis" | "conceptual" | "explain" | "bebras" | "blockmodel" | "parsons" | "analysis" | undefined;
635
647
  misconceptionTargets?: string[] | undefined;
636
648
  }[];
637
649
  totalQuestions?: number | undefined;
@@ -642,8 +654,8 @@ declare const CourseSchema: z.ZodObject<{
642
654
  courseId: z.ZodString;
643
655
  courseName: z.ZodString;
644
656
  courseCode: z.ZodString;
645
- domain: z.ZodEnum<["ai_data_science", "ai_ml_cv", "ai_generative", "ai_advanced", "web_development", "mobile_development", "mobile", "block_based", "python_programming", "design", "foundation", "creative_computing"]>;
646
- tier: z.ZodEnum<["foundation", "intermediate", "advanced"]>;
657
+ domain: z.ZodEnum<["ai_data_science", "ai_ml_cv", "ai_generative", "ai_advanced", "ai", "web_development", "mobile_development", "mobile", "block_based", "python_programming", "design", "artificial_intelligence", "cs_foundations", "foundation", "creative_computing", "tools"]>;
658
+ tier: z.ZodEnum<["beginner", "foundation", "intermediate", "advanced"]>;
647
659
  difficulty: z.ZodNumber;
648
660
  totalLessons: z.ZodNumber;
649
661
  totalQuestions: z.ZodNumber;
@@ -658,9 +670,9 @@ declare const CourseSchema: z.ZodObject<{
658
670
  questionId: z.ZodString;
659
671
  globalId: z.ZodString;
660
672
  questionNumber: z.ZodNumber;
661
- questionType: z.ZodEnum<["vocabulary", "code_understanding", "problem_solving", "application", "reflection"]>;
673
+ questionType: z.ZodEnum<["vocabulary", "code_understanding", "problem_solving", "application", "reflection", "debugging", "trace", "predict", "analyze", "evaluation", "synthesis", "design", "conceptual", "explain", "bebras", "blockmodel", "ethical_reasoning"]>;
662
674
  questionTypeLabel: z.ZodString;
663
- questionArchetype: z.ZodOptional<z.ZodEnum<["vocabulary", "trace", "bebras", "blockmodel", "parsons"]>>;
675
+ questionArchetype: z.ZodOptional<z.ZodEnum<["vocabulary", "trace", "bebras", "blockmodel", "parsons", "application", "problem_solving", "debugging", "predict", "explain", "evaluation", "reflection", "conceptual", "analysis", "design", "synthesis", "code"]>>;
664
676
  prompt: z.ZodString;
665
677
  hasCodeBlock: z.ZodBoolean;
666
678
  codeLanguage: z.ZodNullable<z.ZodString>;
@@ -670,7 +682,7 @@ declare const CourseSchema: z.ZodObject<{
670
682
  key: z.ZodEnum<["A", "B", "C", "D"]>;
671
683
  text: z.ZodString;
672
684
  isCorrect: z.ZodBoolean;
673
- misconceptionId: z.ZodOptional<z.ZodString>;
685
+ misconceptionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
674
686
  feedback: z.ZodOptional<z.ZodObject<{
675
687
  short: z.ZodString;
676
688
  detailed: z.ZodString;
@@ -688,7 +700,7 @@ declare const CourseSchema: z.ZodObject<{
688
700
  key: "A" | "B" | "C" | "D";
689
701
  text: string;
690
702
  isCorrect: boolean;
691
- misconceptionId?: string | undefined;
703
+ misconceptionId?: string | null | undefined;
692
704
  feedback?: {
693
705
  short: string;
694
706
  detailed: string;
@@ -698,7 +710,7 @@ declare const CourseSchema: z.ZodObject<{
698
710
  key: "A" | "B" | "C" | "D";
699
711
  text: string;
700
712
  isCorrect: boolean;
701
- misconceptionId?: string | undefined;
713
+ misconceptionId?: string | null | undefined;
702
714
  feedback?: {
703
715
  short: string;
704
716
  detailed: string;
@@ -719,7 +731,7 @@ declare const CourseSchema: z.ZodObject<{
719
731
  }, "strip", z.ZodTypeAny, {
720
732
  difficulty: "easy" | "medium" | "hard" | "challenge";
721
733
  estimatedTime: number;
722
- bloomsTaxonomy: "remember" | "understand" | "apply" | "analyze" | "evaluate" | "create";
734
+ bloomsTaxonomy: "analyze" | "remember" | "understand" | "apply" | "evaluate" | "create";
723
735
  tags: string[];
724
736
  source: string;
725
737
  version: string;
@@ -728,7 +740,7 @@ declare const CourseSchema: z.ZodObject<{
728
740
  }, {
729
741
  difficulty: "easy" | "medium" | "hard" | "challenge";
730
742
  estimatedTime: number;
731
- bloomsTaxonomy: "remember" | "understand" | "apply" | "analyze" | "evaluate" | "create";
743
+ bloomsTaxonomy: "analyze" | "remember" | "understand" | "apply" | "evaluate" | "create";
732
744
  tags: string[];
733
745
  source?: string | undefined;
734
746
  version?: string | undefined;
@@ -740,7 +752,7 @@ declare const CourseSchema: z.ZodObject<{
740
752
  key: "A" | "B" | "C" | "D";
741
753
  text: string;
742
754
  isCorrect: boolean;
743
- misconceptionId?: string | undefined;
755
+ misconceptionId?: string | null | undefined;
744
756
  feedback?: {
745
757
  short: string;
746
758
  detailed: string;
@@ -750,7 +762,7 @@ declare const CourseSchema: z.ZodObject<{
750
762
  questionId: string;
751
763
  globalId: string;
752
764
  questionNumber: number;
753
- questionType: "vocabulary" | "code_understanding" | "problem_solving" | "application" | "reflection";
765
+ questionType: "design" | "vocabulary" | "code_understanding" | "problem_solving" | "application" | "reflection" | "debugging" | "trace" | "predict" | "analyze" | "evaluation" | "synthesis" | "conceptual" | "explain" | "bebras" | "blockmodel" | "ethical_reasoning";
754
766
  questionTypeLabel: string;
755
767
  prompt: string;
756
768
  hasCodeBlock: boolean;
@@ -761,21 +773,21 @@ declare const CourseSchema: z.ZodObject<{
761
773
  metadata: {
762
774
  difficulty: "easy" | "medium" | "hard" | "challenge";
763
775
  estimatedTime: number;
764
- bloomsTaxonomy: "remember" | "understand" | "apply" | "analyze" | "evaluate" | "create";
776
+ bloomsTaxonomy: "analyze" | "remember" | "understand" | "apply" | "evaluate" | "create";
765
777
  tags: string[];
766
778
  source: string;
767
779
  version: string;
768
780
  createdDate?: string | undefined;
769
781
  lastModified?: string | undefined;
770
782
  };
771
- questionArchetype?: "vocabulary" | "trace" | "bebras" | "blockmodel" | "parsons" | undefined;
783
+ questionArchetype?: "design" | "code" | "vocabulary" | "problem_solving" | "application" | "reflection" | "debugging" | "trace" | "predict" | "evaluation" | "synthesis" | "conceptual" | "explain" | "bebras" | "blockmodel" | "parsons" | "analysis" | undefined;
772
784
  misconceptionTargets?: string[] | undefined;
773
785
  }, {
774
786
  options: {
775
787
  key: "A" | "B" | "C" | "D";
776
788
  text: string;
777
789
  isCorrect: boolean;
778
- misconceptionId?: string | undefined;
790
+ misconceptionId?: string | null | undefined;
779
791
  feedback?: {
780
792
  short: string;
781
793
  detailed: string;
@@ -785,7 +797,7 @@ declare const CourseSchema: z.ZodObject<{
785
797
  questionId: string;
786
798
  globalId: string;
787
799
  questionNumber: number;
788
- questionType: "vocabulary" | "code_understanding" | "problem_solving" | "application" | "reflection";
800
+ questionType: "design" | "vocabulary" | "code_understanding" | "problem_solving" | "application" | "reflection" | "debugging" | "trace" | "predict" | "analyze" | "evaluation" | "synthesis" | "conceptual" | "explain" | "bebras" | "blockmodel" | "ethical_reasoning";
789
801
  questionTypeLabel: string;
790
802
  prompt: string;
791
803
  hasCodeBlock: boolean;
@@ -796,14 +808,14 @@ declare const CourseSchema: z.ZodObject<{
796
808
  metadata: {
797
809
  difficulty: "easy" | "medium" | "hard" | "challenge";
798
810
  estimatedTime: number;
799
- bloomsTaxonomy: "remember" | "understand" | "apply" | "analyze" | "evaluate" | "create";
811
+ bloomsTaxonomy: "analyze" | "remember" | "understand" | "apply" | "evaluate" | "create";
800
812
  tags: string[];
801
813
  source?: string | undefined;
802
814
  version?: string | undefined;
803
815
  createdDate?: string | undefined;
804
816
  lastModified?: string | undefined;
805
817
  };
806
- questionArchetype?: "vocabulary" | "trace" | "bebras" | "blockmodel" | "parsons" | undefined;
818
+ questionArchetype?: "design" | "code" | "vocabulary" | "problem_solving" | "application" | "reflection" | "debugging" | "trace" | "predict" | "evaluation" | "synthesis" | "conceptual" | "explain" | "bebras" | "blockmodel" | "parsons" | "analysis" | undefined;
807
819
  misconceptionTargets?: string[] | undefined;
808
820
  }>, "many">;
809
821
  }, "strip", z.ZodTypeAny, {
@@ -816,7 +828,7 @@ declare const CourseSchema: z.ZodObject<{
816
828
  key: "A" | "B" | "C" | "D";
817
829
  text: string;
818
830
  isCorrect: boolean;
819
- misconceptionId?: string | undefined;
831
+ misconceptionId?: string | null | undefined;
820
832
  feedback?: {
821
833
  short: string;
822
834
  detailed: string;
@@ -826,7 +838,7 @@ declare const CourseSchema: z.ZodObject<{
826
838
  questionId: string;
827
839
  globalId: string;
828
840
  questionNumber: number;
829
- questionType: "vocabulary" | "code_understanding" | "problem_solving" | "application" | "reflection";
841
+ questionType: "design" | "vocabulary" | "code_understanding" | "problem_solving" | "application" | "reflection" | "debugging" | "trace" | "predict" | "analyze" | "evaluation" | "synthesis" | "conceptual" | "explain" | "bebras" | "blockmodel" | "ethical_reasoning";
830
842
  questionTypeLabel: string;
831
843
  prompt: string;
832
844
  hasCodeBlock: boolean;
@@ -837,14 +849,14 @@ declare const CourseSchema: z.ZodObject<{
837
849
  metadata: {
838
850
  difficulty: "easy" | "medium" | "hard" | "challenge";
839
851
  estimatedTime: number;
840
- bloomsTaxonomy: "remember" | "understand" | "apply" | "analyze" | "evaluate" | "create";
852
+ bloomsTaxonomy: "analyze" | "remember" | "understand" | "apply" | "evaluate" | "create";
841
853
  tags: string[];
842
854
  source: string;
843
855
  version: string;
844
856
  createdDate?: string | undefined;
845
857
  lastModified?: string | undefined;
846
858
  };
847
- questionArchetype?: "vocabulary" | "trace" | "bebras" | "blockmodel" | "parsons" | undefined;
859
+ questionArchetype?: "design" | "code" | "vocabulary" | "problem_solving" | "application" | "reflection" | "debugging" | "trace" | "predict" | "evaluation" | "synthesis" | "conceptual" | "explain" | "bebras" | "blockmodel" | "parsons" | "analysis" | undefined;
848
860
  misconceptionTargets?: string[] | undefined;
849
861
  }[];
850
862
  lessonSlug?: string | undefined;
@@ -857,7 +869,7 @@ declare const CourseSchema: z.ZodObject<{
857
869
  key: "A" | "B" | "C" | "D";
858
870
  text: string;
859
871
  isCorrect: boolean;
860
- misconceptionId?: string | undefined;
872
+ misconceptionId?: string | null | undefined;
861
873
  feedback?: {
862
874
  short: string;
863
875
  detailed: string;
@@ -867,7 +879,7 @@ declare const CourseSchema: z.ZodObject<{
867
879
  questionId: string;
868
880
  globalId: string;
869
881
  questionNumber: number;
870
- questionType: "vocabulary" | "code_understanding" | "problem_solving" | "application" | "reflection";
882
+ questionType: "design" | "vocabulary" | "code_understanding" | "problem_solving" | "application" | "reflection" | "debugging" | "trace" | "predict" | "analyze" | "evaluation" | "synthesis" | "conceptual" | "explain" | "bebras" | "blockmodel" | "ethical_reasoning";
871
883
  questionTypeLabel: string;
872
884
  prompt: string;
873
885
  hasCodeBlock: boolean;
@@ -878,14 +890,14 @@ declare const CourseSchema: z.ZodObject<{
878
890
  metadata: {
879
891
  difficulty: "easy" | "medium" | "hard" | "challenge";
880
892
  estimatedTime: number;
881
- bloomsTaxonomy: "remember" | "understand" | "apply" | "analyze" | "evaluate" | "create";
893
+ bloomsTaxonomy: "analyze" | "remember" | "understand" | "apply" | "evaluate" | "create";
882
894
  tags: string[];
883
895
  source?: string | undefined;
884
896
  version?: string | undefined;
885
897
  createdDate?: string | undefined;
886
898
  lastModified?: string | undefined;
887
899
  };
888
- questionArchetype?: "vocabulary" | "trace" | "bebras" | "blockmodel" | "parsons" | undefined;
900
+ questionArchetype?: "design" | "code" | "vocabulary" | "problem_solving" | "application" | "reflection" | "debugging" | "trace" | "predict" | "evaluation" | "synthesis" | "conceptual" | "explain" | "bebras" | "blockmodel" | "parsons" | "analysis" | undefined;
889
901
  misconceptionTargets?: string[] | undefined;
890
902
  }[];
891
903
  totalQuestions?: number | undefined;
@@ -895,8 +907,8 @@ declare const CourseSchema: z.ZodObject<{
895
907
  courseId: string;
896
908
  courseName: string;
897
909
  courseCode: string;
898
- domain: "ai_data_science" | "ai_ml_cv" | "ai_generative" | "ai_advanced" | "web_development" | "mobile_development" | "mobile" | "block_based" | "python_programming" | "design" | "foundation" | "creative_computing";
899
- tier: "foundation" | "intermediate" | "advanced";
910
+ domain: "ai_data_science" | "ai_ml_cv" | "ai_generative" | "ai_advanced" | "ai" | "web_development" | "mobile_development" | "mobile" | "block_based" | "python_programming" | "design" | "artificial_intelligence" | "cs_foundations" | "foundation" | "creative_computing" | "tools";
911
+ tier: "foundation" | "beginner" | "intermediate" | "advanced";
900
912
  difficulty: number;
901
913
  totalLessons: number;
902
914
  totalQuestions: number;
@@ -910,7 +922,7 @@ declare const CourseSchema: z.ZodObject<{
910
922
  key: "A" | "B" | "C" | "D";
911
923
  text: string;
912
924
  isCorrect: boolean;
913
- misconceptionId?: string | undefined;
925
+ misconceptionId?: string | null | undefined;
914
926
  feedback?: {
915
927
  short: string;
916
928
  detailed: string;
@@ -920,7 +932,7 @@ declare const CourseSchema: z.ZodObject<{
920
932
  questionId: string;
921
933
  globalId: string;
922
934
  questionNumber: number;
923
- questionType: "vocabulary" | "code_understanding" | "problem_solving" | "application" | "reflection";
935
+ questionType: "design" | "vocabulary" | "code_understanding" | "problem_solving" | "application" | "reflection" | "debugging" | "trace" | "predict" | "analyze" | "evaluation" | "synthesis" | "conceptual" | "explain" | "bebras" | "blockmodel" | "ethical_reasoning";
924
936
  questionTypeLabel: string;
925
937
  prompt: string;
926
938
  hasCodeBlock: boolean;
@@ -931,14 +943,14 @@ declare const CourseSchema: z.ZodObject<{
931
943
  metadata: {
932
944
  difficulty: "easy" | "medium" | "hard" | "challenge";
933
945
  estimatedTime: number;
934
- bloomsTaxonomy: "remember" | "understand" | "apply" | "analyze" | "evaluate" | "create";
946
+ bloomsTaxonomy: "analyze" | "remember" | "understand" | "apply" | "evaluate" | "create";
935
947
  tags: string[];
936
948
  source: string;
937
949
  version: string;
938
950
  createdDate?: string | undefined;
939
951
  lastModified?: string | undefined;
940
952
  };
941
- questionArchetype?: "vocabulary" | "trace" | "bebras" | "blockmodel" | "parsons" | undefined;
953
+ questionArchetype?: "design" | "code" | "vocabulary" | "problem_solving" | "application" | "reflection" | "debugging" | "trace" | "predict" | "evaluation" | "synthesis" | "conceptual" | "explain" | "bebras" | "blockmodel" | "parsons" | "analysis" | undefined;
942
954
  misconceptionTargets?: string[] | undefined;
943
955
  }[];
944
956
  lessonSlug?: string | undefined;
@@ -948,8 +960,8 @@ declare const CourseSchema: z.ZodObject<{
948
960
  courseId: string;
949
961
  courseName: string;
950
962
  courseCode: string;
951
- domain: "ai_data_science" | "ai_ml_cv" | "ai_generative" | "ai_advanced" | "web_development" | "mobile_development" | "mobile" | "block_based" | "python_programming" | "design" | "foundation" | "creative_computing";
952
- tier: "foundation" | "intermediate" | "advanced";
963
+ domain: "ai_data_science" | "ai_ml_cv" | "ai_generative" | "ai_advanced" | "ai" | "web_development" | "mobile_development" | "mobile" | "block_based" | "python_programming" | "design" | "artificial_intelligence" | "cs_foundations" | "foundation" | "creative_computing" | "tools";
964
+ tier: "foundation" | "beginner" | "intermediate" | "advanced";
953
965
  difficulty: number;
954
966
  totalLessons: number;
955
967
  totalQuestions: number;
@@ -962,7 +974,7 @@ declare const CourseSchema: z.ZodObject<{
962
974
  key: "A" | "B" | "C" | "D";
963
975
  text: string;
964
976
  isCorrect: boolean;
965
- misconceptionId?: string | undefined;
977
+ misconceptionId?: string | null | undefined;
966
978
  feedback?: {
967
979
  short: string;
968
980
  detailed: string;
@@ -972,7 +984,7 @@ declare const CourseSchema: z.ZodObject<{
972
984
  questionId: string;
973
985
  globalId: string;
974
986
  questionNumber: number;
975
- questionType: "vocabulary" | "code_understanding" | "problem_solving" | "application" | "reflection";
987
+ questionType: "design" | "vocabulary" | "code_understanding" | "problem_solving" | "application" | "reflection" | "debugging" | "trace" | "predict" | "analyze" | "evaluation" | "synthesis" | "conceptual" | "explain" | "bebras" | "blockmodel" | "ethical_reasoning";
976
988
  questionTypeLabel: string;
977
989
  prompt: string;
978
990
  hasCodeBlock: boolean;
@@ -983,14 +995,14 @@ declare const CourseSchema: z.ZodObject<{
983
995
  metadata: {
984
996
  difficulty: "easy" | "medium" | "hard" | "challenge";
985
997
  estimatedTime: number;
986
- bloomsTaxonomy: "remember" | "understand" | "apply" | "analyze" | "evaluate" | "create";
998
+ bloomsTaxonomy: "analyze" | "remember" | "understand" | "apply" | "evaluate" | "create";
987
999
  tags: string[];
988
1000
  source?: string | undefined;
989
1001
  version?: string | undefined;
990
1002
  createdDate?: string | undefined;
991
1003
  lastModified?: string | undefined;
992
1004
  };
993
- questionArchetype?: "vocabulary" | "trace" | "bebras" | "blockmodel" | "parsons" | undefined;
1005
+ questionArchetype?: "design" | "code" | "vocabulary" | "problem_solving" | "application" | "reflection" | "debugging" | "trace" | "predict" | "evaluation" | "synthesis" | "conceptual" | "explain" | "bebras" | "blockmodel" | "parsons" | "analysis" | undefined;
994
1006
  misconceptionTargets?: string[] | undefined;
995
1007
  }[];
996
1008
  totalQuestions?: number | undefined;
@@ -1003,8 +1015,8 @@ declare const CourseSummarySchema: z.ZodObject<Omit<{
1003
1015
  courseId: z.ZodString;
1004
1016
  courseName: z.ZodString;
1005
1017
  courseCode: z.ZodString;
1006
- domain: z.ZodEnum<["ai_data_science", "ai_ml_cv", "ai_generative", "ai_advanced", "web_development", "mobile_development", "mobile", "block_based", "python_programming", "design", "foundation", "creative_computing"]>;
1007
- tier: z.ZodEnum<["foundation", "intermediate", "advanced"]>;
1018
+ domain: z.ZodEnum<["ai_data_science", "ai_ml_cv", "ai_generative", "ai_advanced", "ai", "web_development", "mobile_development", "mobile", "block_based", "python_programming", "design", "artificial_intelligence", "cs_foundations", "foundation", "creative_computing", "tools"]>;
1019
+ tier: z.ZodEnum<["beginner", "foundation", "intermediate", "advanced"]>;
1008
1020
  difficulty: z.ZodNumber;
1009
1021
  totalLessons: z.ZodNumber;
1010
1022
  totalQuestions: z.ZodNumber;
@@ -1019,9 +1031,9 @@ declare const CourseSummarySchema: z.ZodObject<Omit<{
1019
1031
  questionId: z.ZodString;
1020
1032
  globalId: z.ZodString;
1021
1033
  questionNumber: z.ZodNumber;
1022
- questionType: z.ZodEnum<["vocabulary", "code_understanding", "problem_solving", "application", "reflection"]>;
1034
+ questionType: z.ZodEnum<["vocabulary", "code_understanding", "problem_solving", "application", "reflection", "debugging", "trace", "predict", "analyze", "evaluation", "synthesis", "design", "conceptual", "explain", "bebras", "blockmodel", "ethical_reasoning"]>;
1023
1035
  questionTypeLabel: z.ZodString;
1024
- questionArchetype: z.ZodOptional<z.ZodEnum<["vocabulary", "trace", "bebras", "blockmodel", "parsons"]>>;
1036
+ questionArchetype: z.ZodOptional<z.ZodEnum<["vocabulary", "trace", "bebras", "blockmodel", "parsons", "application", "problem_solving", "debugging", "predict", "explain", "evaluation", "reflection", "conceptual", "analysis", "design", "synthesis", "code"]>>;
1025
1037
  prompt: z.ZodString;
1026
1038
  hasCodeBlock: z.ZodBoolean;
1027
1039
  codeLanguage: z.ZodNullable<z.ZodString>;
@@ -1031,7 +1043,7 @@ declare const CourseSummarySchema: z.ZodObject<Omit<{
1031
1043
  key: z.ZodEnum<["A", "B", "C", "D"]>;
1032
1044
  text: z.ZodString;
1033
1045
  isCorrect: z.ZodBoolean;
1034
- misconceptionId: z.ZodOptional<z.ZodString>;
1046
+ misconceptionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1035
1047
  feedback: z.ZodOptional<z.ZodObject<{
1036
1048
  short: z.ZodString;
1037
1049
  detailed: z.ZodString;
@@ -1049,7 +1061,7 @@ declare const CourseSummarySchema: z.ZodObject<Omit<{
1049
1061
  key: "A" | "B" | "C" | "D";
1050
1062
  text: string;
1051
1063
  isCorrect: boolean;
1052
- misconceptionId?: string | undefined;
1064
+ misconceptionId?: string | null | undefined;
1053
1065
  feedback?: {
1054
1066
  short: string;
1055
1067
  detailed: string;
@@ -1059,7 +1071,7 @@ declare const CourseSummarySchema: z.ZodObject<Omit<{
1059
1071
  key: "A" | "B" | "C" | "D";
1060
1072
  text: string;
1061
1073
  isCorrect: boolean;
1062
- misconceptionId?: string | undefined;
1074
+ misconceptionId?: string | null | undefined;
1063
1075
  feedback?: {
1064
1076
  short: string;
1065
1077
  detailed: string;
@@ -1080,7 +1092,7 @@ declare const CourseSummarySchema: z.ZodObject<Omit<{
1080
1092
  }, "strip", z.ZodTypeAny, {
1081
1093
  difficulty: "easy" | "medium" | "hard" | "challenge";
1082
1094
  estimatedTime: number;
1083
- bloomsTaxonomy: "remember" | "understand" | "apply" | "analyze" | "evaluate" | "create";
1095
+ bloomsTaxonomy: "analyze" | "remember" | "understand" | "apply" | "evaluate" | "create";
1084
1096
  tags: string[];
1085
1097
  source: string;
1086
1098
  version: string;
@@ -1089,7 +1101,7 @@ declare const CourseSummarySchema: z.ZodObject<Omit<{
1089
1101
  }, {
1090
1102
  difficulty: "easy" | "medium" | "hard" | "challenge";
1091
1103
  estimatedTime: number;
1092
- bloomsTaxonomy: "remember" | "understand" | "apply" | "analyze" | "evaluate" | "create";
1104
+ bloomsTaxonomy: "analyze" | "remember" | "understand" | "apply" | "evaluate" | "create";
1093
1105
  tags: string[];
1094
1106
  source?: string | undefined;
1095
1107
  version?: string | undefined;
@@ -1101,7 +1113,7 @@ declare const CourseSummarySchema: z.ZodObject<Omit<{
1101
1113
  key: "A" | "B" | "C" | "D";
1102
1114
  text: string;
1103
1115
  isCorrect: boolean;
1104
- misconceptionId?: string | undefined;
1116
+ misconceptionId?: string | null | undefined;
1105
1117
  feedback?: {
1106
1118
  short: string;
1107
1119
  detailed: string;
@@ -1111,7 +1123,7 @@ declare const CourseSummarySchema: z.ZodObject<Omit<{
1111
1123
  questionId: string;
1112
1124
  globalId: string;
1113
1125
  questionNumber: number;
1114
- questionType: "vocabulary" | "code_understanding" | "problem_solving" | "application" | "reflection";
1126
+ questionType: "design" | "vocabulary" | "code_understanding" | "problem_solving" | "application" | "reflection" | "debugging" | "trace" | "predict" | "analyze" | "evaluation" | "synthesis" | "conceptual" | "explain" | "bebras" | "blockmodel" | "ethical_reasoning";
1115
1127
  questionTypeLabel: string;
1116
1128
  prompt: string;
1117
1129
  hasCodeBlock: boolean;
@@ -1122,21 +1134,21 @@ declare const CourseSummarySchema: z.ZodObject<Omit<{
1122
1134
  metadata: {
1123
1135
  difficulty: "easy" | "medium" | "hard" | "challenge";
1124
1136
  estimatedTime: number;
1125
- bloomsTaxonomy: "remember" | "understand" | "apply" | "analyze" | "evaluate" | "create";
1137
+ bloomsTaxonomy: "analyze" | "remember" | "understand" | "apply" | "evaluate" | "create";
1126
1138
  tags: string[];
1127
1139
  source: string;
1128
1140
  version: string;
1129
1141
  createdDate?: string | undefined;
1130
1142
  lastModified?: string | undefined;
1131
1143
  };
1132
- questionArchetype?: "vocabulary" | "trace" | "bebras" | "blockmodel" | "parsons" | undefined;
1144
+ questionArchetype?: "design" | "code" | "vocabulary" | "problem_solving" | "application" | "reflection" | "debugging" | "trace" | "predict" | "evaluation" | "synthesis" | "conceptual" | "explain" | "bebras" | "blockmodel" | "parsons" | "analysis" | undefined;
1133
1145
  misconceptionTargets?: string[] | undefined;
1134
1146
  }, {
1135
1147
  options: {
1136
1148
  key: "A" | "B" | "C" | "D";
1137
1149
  text: string;
1138
1150
  isCorrect: boolean;
1139
- misconceptionId?: string | undefined;
1151
+ misconceptionId?: string | null | undefined;
1140
1152
  feedback?: {
1141
1153
  short: string;
1142
1154
  detailed: string;
@@ -1146,7 +1158,7 @@ declare const CourseSummarySchema: z.ZodObject<Omit<{
1146
1158
  questionId: string;
1147
1159
  globalId: string;
1148
1160
  questionNumber: number;
1149
- questionType: "vocabulary" | "code_understanding" | "problem_solving" | "application" | "reflection";
1161
+ questionType: "design" | "vocabulary" | "code_understanding" | "problem_solving" | "application" | "reflection" | "debugging" | "trace" | "predict" | "analyze" | "evaluation" | "synthesis" | "conceptual" | "explain" | "bebras" | "blockmodel" | "ethical_reasoning";
1150
1162
  questionTypeLabel: string;
1151
1163
  prompt: string;
1152
1164
  hasCodeBlock: boolean;
@@ -1157,14 +1169,14 @@ declare const CourseSummarySchema: z.ZodObject<Omit<{
1157
1169
  metadata: {
1158
1170
  difficulty: "easy" | "medium" | "hard" | "challenge";
1159
1171
  estimatedTime: number;
1160
- bloomsTaxonomy: "remember" | "understand" | "apply" | "analyze" | "evaluate" | "create";
1172
+ bloomsTaxonomy: "analyze" | "remember" | "understand" | "apply" | "evaluate" | "create";
1161
1173
  tags: string[];
1162
1174
  source?: string | undefined;
1163
1175
  version?: string | undefined;
1164
1176
  createdDate?: string | undefined;
1165
1177
  lastModified?: string | undefined;
1166
1178
  };
1167
- questionArchetype?: "vocabulary" | "trace" | "bebras" | "blockmodel" | "parsons" | undefined;
1179
+ questionArchetype?: "design" | "code" | "vocabulary" | "problem_solving" | "application" | "reflection" | "debugging" | "trace" | "predict" | "evaluation" | "synthesis" | "conceptual" | "explain" | "bebras" | "blockmodel" | "parsons" | "analysis" | undefined;
1168
1180
  misconceptionTargets?: string[] | undefined;
1169
1181
  }>, "many">;
1170
1182
  }, "strip", z.ZodTypeAny, {
@@ -1177,7 +1189,7 @@ declare const CourseSummarySchema: z.ZodObject<Omit<{
1177
1189
  key: "A" | "B" | "C" | "D";
1178
1190
  text: string;
1179
1191
  isCorrect: boolean;
1180
- misconceptionId?: string | undefined;
1192
+ misconceptionId?: string | null | undefined;
1181
1193
  feedback?: {
1182
1194
  short: string;
1183
1195
  detailed: string;
@@ -1187,7 +1199,7 @@ declare const CourseSummarySchema: z.ZodObject<Omit<{
1187
1199
  questionId: string;
1188
1200
  globalId: string;
1189
1201
  questionNumber: number;
1190
- questionType: "vocabulary" | "code_understanding" | "problem_solving" | "application" | "reflection";
1202
+ questionType: "design" | "vocabulary" | "code_understanding" | "problem_solving" | "application" | "reflection" | "debugging" | "trace" | "predict" | "analyze" | "evaluation" | "synthesis" | "conceptual" | "explain" | "bebras" | "blockmodel" | "ethical_reasoning";
1191
1203
  questionTypeLabel: string;
1192
1204
  prompt: string;
1193
1205
  hasCodeBlock: boolean;
@@ -1198,14 +1210,14 @@ declare const CourseSummarySchema: z.ZodObject<Omit<{
1198
1210
  metadata: {
1199
1211
  difficulty: "easy" | "medium" | "hard" | "challenge";
1200
1212
  estimatedTime: number;
1201
- bloomsTaxonomy: "remember" | "understand" | "apply" | "analyze" | "evaluate" | "create";
1213
+ bloomsTaxonomy: "analyze" | "remember" | "understand" | "apply" | "evaluate" | "create";
1202
1214
  tags: string[];
1203
1215
  source: string;
1204
1216
  version: string;
1205
1217
  createdDate?: string | undefined;
1206
1218
  lastModified?: string | undefined;
1207
1219
  };
1208
- questionArchetype?: "vocabulary" | "trace" | "bebras" | "blockmodel" | "parsons" | undefined;
1220
+ questionArchetype?: "design" | "code" | "vocabulary" | "problem_solving" | "application" | "reflection" | "debugging" | "trace" | "predict" | "evaluation" | "synthesis" | "conceptual" | "explain" | "bebras" | "blockmodel" | "parsons" | "analysis" | undefined;
1209
1221
  misconceptionTargets?: string[] | undefined;
1210
1222
  }[];
1211
1223
  lessonSlug?: string | undefined;
@@ -1218,7 +1230,7 @@ declare const CourseSummarySchema: z.ZodObject<Omit<{
1218
1230
  key: "A" | "B" | "C" | "D";
1219
1231
  text: string;
1220
1232
  isCorrect: boolean;
1221
- misconceptionId?: string | undefined;
1233
+ misconceptionId?: string | null | undefined;
1222
1234
  feedback?: {
1223
1235
  short: string;
1224
1236
  detailed: string;
@@ -1228,7 +1240,7 @@ declare const CourseSummarySchema: z.ZodObject<Omit<{
1228
1240
  questionId: string;
1229
1241
  globalId: string;
1230
1242
  questionNumber: number;
1231
- questionType: "vocabulary" | "code_understanding" | "problem_solving" | "application" | "reflection";
1243
+ questionType: "design" | "vocabulary" | "code_understanding" | "problem_solving" | "application" | "reflection" | "debugging" | "trace" | "predict" | "analyze" | "evaluation" | "synthesis" | "conceptual" | "explain" | "bebras" | "blockmodel" | "ethical_reasoning";
1232
1244
  questionTypeLabel: string;
1233
1245
  prompt: string;
1234
1246
  hasCodeBlock: boolean;
@@ -1239,14 +1251,14 @@ declare const CourseSummarySchema: z.ZodObject<Omit<{
1239
1251
  metadata: {
1240
1252
  difficulty: "easy" | "medium" | "hard" | "challenge";
1241
1253
  estimatedTime: number;
1242
- bloomsTaxonomy: "remember" | "understand" | "apply" | "analyze" | "evaluate" | "create";
1254
+ bloomsTaxonomy: "analyze" | "remember" | "understand" | "apply" | "evaluate" | "create";
1243
1255
  tags: string[];
1244
1256
  source?: string | undefined;
1245
1257
  version?: string | undefined;
1246
1258
  createdDate?: string | undefined;
1247
1259
  lastModified?: string | undefined;
1248
1260
  };
1249
- questionArchetype?: "vocabulary" | "trace" | "bebras" | "blockmodel" | "parsons" | undefined;
1261
+ questionArchetype?: "design" | "code" | "vocabulary" | "problem_solving" | "application" | "reflection" | "debugging" | "trace" | "predict" | "evaluation" | "synthesis" | "conceptual" | "explain" | "bebras" | "blockmodel" | "parsons" | "analysis" | undefined;
1250
1262
  misconceptionTargets?: string[] | undefined;
1251
1263
  }[];
1252
1264
  totalQuestions?: number | undefined;
@@ -1263,9 +1275,9 @@ declare const CourseSummarySchema: z.ZodObject<Omit<{
1263
1275
  questionId: z.ZodString;
1264
1276
  globalId: z.ZodString;
1265
1277
  questionNumber: z.ZodNumber;
1266
- questionType: z.ZodEnum<["vocabulary", "code_understanding", "problem_solving", "application", "reflection"]>;
1278
+ questionType: z.ZodEnum<["vocabulary", "code_understanding", "problem_solving", "application", "reflection", "debugging", "trace", "predict", "analyze", "evaluation", "synthesis", "design", "conceptual", "explain", "bebras", "blockmodel", "ethical_reasoning"]>;
1267
1279
  questionTypeLabel: z.ZodString;
1268
- questionArchetype: z.ZodOptional<z.ZodEnum<["vocabulary", "trace", "bebras", "blockmodel", "parsons"]>>;
1280
+ questionArchetype: z.ZodOptional<z.ZodEnum<["vocabulary", "trace", "bebras", "blockmodel", "parsons", "application", "problem_solving", "debugging", "predict", "explain", "evaluation", "reflection", "conceptual", "analysis", "design", "synthesis", "code"]>>;
1269
1281
  prompt: z.ZodString;
1270
1282
  hasCodeBlock: z.ZodBoolean;
1271
1283
  codeLanguage: z.ZodNullable<z.ZodString>;
@@ -1275,7 +1287,7 @@ declare const CourseSummarySchema: z.ZodObject<Omit<{
1275
1287
  key: z.ZodEnum<["A", "B", "C", "D"]>;
1276
1288
  text: z.ZodString;
1277
1289
  isCorrect: z.ZodBoolean;
1278
- misconceptionId: z.ZodOptional<z.ZodString>;
1290
+ misconceptionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1279
1291
  feedback: z.ZodOptional<z.ZodObject<{
1280
1292
  short: z.ZodString;
1281
1293
  detailed: z.ZodString;
@@ -1293,7 +1305,7 @@ declare const CourseSummarySchema: z.ZodObject<Omit<{
1293
1305
  key: "A" | "B" | "C" | "D";
1294
1306
  text: string;
1295
1307
  isCorrect: boolean;
1296
- misconceptionId?: string | undefined;
1308
+ misconceptionId?: string | null | undefined;
1297
1309
  feedback?: {
1298
1310
  short: string;
1299
1311
  detailed: string;
@@ -1303,7 +1315,7 @@ declare const CourseSummarySchema: z.ZodObject<Omit<{
1303
1315
  key: "A" | "B" | "C" | "D";
1304
1316
  text: string;
1305
1317
  isCorrect: boolean;
1306
- misconceptionId?: string | undefined;
1318
+ misconceptionId?: string | null | undefined;
1307
1319
  feedback?: {
1308
1320
  short: string;
1309
1321
  detailed: string;
@@ -1324,7 +1336,7 @@ declare const CourseSummarySchema: z.ZodObject<Omit<{
1324
1336
  }, "strip", z.ZodTypeAny, {
1325
1337
  difficulty: "easy" | "medium" | "hard" | "challenge";
1326
1338
  estimatedTime: number;
1327
- bloomsTaxonomy: "remember" | "understand" | "apply" | "analyze" | "evaluate" | "create";
1339
+ bloomsTaxonomy: "analyze" | "remember" | "understand" | "apply" | "evaluate" | "create";
1328
1340
  tags: string[];
1329
1341
  source: string;
1330
1342
  version: string;
@@ -1333,7 +1345,7 @@ declare const CourseSummarySchema: z.ZodObject<Omit<{
1333
1345
  }, {
1334
1346
  difficulty: "easy" | "medium" | "hard" | "challenge";
1335
1347
  estimatedTime: number;
1336
- bloomsTaxonomy: "remember" | "understand" | "apply" | "analyze" | "evaluate" | "create";
1348
+ bloomsTaxonomy: "analyze" | "remember" | "understand" | "apply" | "evaluate" | "create";
1337
1349
  tags: string[];
1338
1350
  source?: string | undefined;
1339
1351
  version?: string | undefined;
@@ -1345,7 +1357,7 @@ declare const CourseSummarySchema: z.ZodObject<Omit<{
1345
1357
  key: "A" | "B" | "C" | "D";
1346
1358
  text: string;
1347
1359
  isCorrect: boolean;
1348
- misconceptionId?: string | undefined;
1360
+ misconceptionId?: string | null | undefined;
1349
1361
  feedback?: {
1350
1362
  short: string;
1351
1363
  detailed: string;
@@ -1355,7 +1367,7 @@ declare const CourseSummarySchema: z.ZodObject<Omit<{
1355
1367
  questionId: string;
1356
1368
  globalId: string;
1357
1369
  questionNumber: number;
1358
- questionType: "vocabulary" | "code_understanding" | "problem_solving" | "application" | "reflection";
1370
+ questionType: "design" | "vocabulary" | "code_understanding" | "problem_solving" | "application" | "reflection" | "debugging" | "trace" | "predict" | "analyze" | "evaluation" | "synthesis" | "conceptual" | "explain" | "bebras" | "blockmodel" | "ethical_reasoning";
1359
1371
  questionTypeLabel: string;
1360
1372
  prompt: string;
1361
1373
  hasCodeBlock: boolean;
@@ -1366,21 +1378,21 @@ declare const CourseSummarySchema: z.ZodObject<Omit<{
1366
1378
  metadata: {
1367
1379
  difficulty: "easy" | "medium" | "hard" | "challenge";
1368
1380
  estimatedTime: number;
1369
- bloomsTaxonomy: "remember" | "understand" | "apply" | "analyze" | "evaluate" | "create";
1381
+ bloomsTaxonomy: "analyze" | "remember" | "understand" | "apply" | "evaluate" | "create";
1370
1382
  tags: string[];
1371
1383
  source: string;
1372
1384
  version: string;
1373
1385
  createdDate?: string | undefined;
1374
1386
  lastModified?: string | undefined;
1375
1387
  };
1376
- questionArchetype?: "vocabulary" | "trace" | "bebras" | "blockmodel" | "parsons" | undefined;
1388
+ questionArchetype?: "design" | "code" | "vocabulary" | "problem_solving" | "application" | "reflection" | "debugging" | "trace" | "predict" | "evaluation" | "synthesis" | "conceptual" | "explain" | "bebras" | "blockmodel" | "parsons" | "analysis" | undefined;
1377
1389
  misconceptionTargets?: string[] | undefined;
1378
1390
  }, {
1379
1391
  options: {
1380
1392
  key: "A" | "B" | "C" | "D";
1381
1393
  text: string;
1382
1394
  isCorrect: boolean;
1383
- misconceptionId?: string | undefined;
1395
+ misconceptionId?: string | null | undefined;
1384
1396
  feedback?: {
1385
1397
  short: string;
1386
1398
  detailed: string;
@@ -1390,7 +1402,7 @@ declare const CourseSummarySchema: z.ZodObject<Omit<{
1390
1402
  questionId: string;
1391
1403
  globalId: string;
1392
1404
  questionNumber: number;
1393
- questionType: "vocabulary" | "code_understanding" | "problem_solving" | "application" | "reflection";
1405
+ questionType: "design" | "vocabulary" | "code_understanding" | "problem_solving" | "application" | "reflection" | "debugging" | "trace" | "predict" | "analyze" | "evaluation" | "synthesis" | "conceptual" | "explain" | "bebras" | "blockmodel" | "ethical_reasoning";
1394
1406
  questionTypeLabel: string;
1395
1407
  prompt: string;
1396
1408
  hasCodeBlock: boolean;
@@ -1401,14 +1413,14 @@ declare const CourseSummarySchema: z.ZodObject<Omit<{
1401
1413
  metadata: {
1402
1414
  difficulty: "easy" | "medium" | "hard" | "challenge";
1403
1415
  estimatedTime: number;
1404
- bloomsTaxonomy: "remember" | "understand" | "apply" | "analyze" | "evaluate" | "create";
1416
+ bloomsTaxonomy: "analyze" | "remember" | "understand" | "apply" | "evaluate" | "create";
1405
1417
  tags: string[];
1406
1418
  source?: string | undefined;
1407
1419
  version?: string | undefined;
1408
1420
  createdDate?: string | undefined;
1409
1421
  lastModified?: string | undefined;
1410
1422
  };
1411
- questionArchetype?: "vocabulary" | "trace" | "bebras" | "blockmodel" | "parsons" | undefined;
1423
+ questionArchetype?: "design" | "code" | "vocabulary" | "problem_solving" | "application" | "reflection" | "debugging" | "trace" | "predict" | "evaluation" | "synthesis" | "conceptual" | "explain" | "bebras" | "blockmodel" | "parsons" | "analysis" | undefined;
1412
1424
  misconceptionTargets?: string[] | undefined;
1413
1425
  }>, "many">;
1414
1426
  }, "questions">, "strip", z.ZodTypeAny, {
@@ -1428,8 +1440,8 @@ declare const CourseSummarySchema: z.ZodObject<Omit<{
1428
1440
  courseId: string;
1429
1441
  courseName: string;
1430
1442
  courseCode: string;
1431
- domain: "ai_data_science" | "ai_ml_cv" | "ai_generative" | "ai_advanced" | "web_development" | "mobile_development" | "mobile" | "block_based" | "python_programming" | "design" | "foundation" | "creative_computing";
1432
- tier: "foundation" | "intermediate" | "advanced";
1443
+ domain: "ai_data_science" | "ai_ml_cv" | "ai_generative" | "ai_advanced" | "ai" | "web_development" | "mobile_development" | "mobile" | "block_based" | "python_programming" | "design" | "artificial_intelligence" | "cs_foundations" | "foundation" | "creative_computing" | "tools";
1444
+ tier: "foundation" | "beginner" | "intermediate" | "advanced";
1433
1445
  difficulty: number;
1434
1446
  totalLessons: number;
1435
1447
  totalQuestions: number;
@@ -1445,8 +1457,8 @@ declare const CourseSummarySchema: z.ZodObject<Omit<{
1445
1457
  courseId: string;
1446
1458
  courseName: string;
1447
1459
  courseCode: string;
1448
- domain: "ai_data_science" | "ai_ml_cv" | "ai_generative" | "ai_advanced" | "web_development" | "mobile_development" | "mobile" | "block_based" | "python_programming" | "design" | "foundation" | "creative_computing";
1449
- tier: "foundation" | "intermediate" | "advanced";
1460
+ domain: "ai_data_science" | "ai_ml_cv" | "ai_generative" | "ai_advanced" | "ai" | "web_development" | "mobile_development" | "mobile" | "block_based" | "python_programming" | "design" | "artificial_intelligence" | "cs_foundations" | "foundation" | "creative_computing" | "tools";
1461
+ tier: "foundation" | "beginner" | "intermediate" | "advanced";
1450
1462
  difficulty: number;
1451
1463
  totalLessons: number;
1452
1464
  totalQuestions: number;