@thanh01.pmt/curriculum-kit 1.4.47 → 1.4.48

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.
@@ -264,32 +264,23 @@ declare function streamLessonMasterFlow(input: StreamLessonMasterInput): Promise
264
264
  lessonId?: string | undefined;
265
265
  title?: string | undefined;
266
266
  language?: string | undefined;
267
+ topic?: string | undefined;
268
+ targetGradeOrAudience?: string | undefined;
269
+ overview?: string | undefined;
267
270
  learningObjectives?: ({
268
271
  code?: string | undefined;
269
- successCriteria?: string | undefined;
270
- description?: string | undefined;
271
272
  name?: string | undefined;
273
+ description?: string | undefined;
272
274
  bloomLevel?: string | undefined;
275
+ successCriteria?: string | undefined;
273
276
  standardRefs?: (string | undefined)[] | undefined;
274
277
  conceptRefs?: (string | undefined)[] | undefined;
275
278
  } | undefined)[] | undefined;
276
- teacherNotes?: {
277
- commonPitfalls?: (string | undefined)[] | undefined;
278
- troubleshootingMatrix?: ({
279
- issue?: string | undefined;
280
- potentialCause?: string | undefined;
281
- solution?: string | undefined;
282
- } | undefined)[] | undefined;
283
- extensionNotes?: string | undefined;
284
- } | undefined;
285
- hookScenario?: string | undefined;
286
- keywords?: (string | undefined)[] | undefined;
287
- topic?: string | undefined;
288
- targetGradeOrAudience?: string | undefined;
289
- overview?: string | undefined;
290
279
  prerequisites?: string | undefined;
291
280
  materialsSummary?: string | undefined;
281
+ keywords?: (string | undefined)[] | undefined;
292
282
  hookTitle?: string | undefined;
283
+ hookScenario?: string | undefined;
293
284
  hookQuestions?: (string | undefined)[] | undefined;
294
285
  coreConcepts?: ({
295
286
  name?: string | undefined;
@@ -307,8 +298,8 @@ declare function streamLessonMasterFlow(input: StreamLessonMasterInput): Promise
307
298
  goldTier?: string | undefined;
308
299
  } | undefined;
309
300
  sections?: ({
310
- durationMinutes?: number | undefined;
311
301
  title?: string | undefined;
302
+ durationMinutes?: number | undefined;
312
303
  teacherActions?: string | undefined;
313
304
  studentActions?: string | undefined;
314
305
  analogies?: (string | undefined)[] | undefined;
@@ -319,6 +310,15 @@ declare function streamLessonMasterFlow(input: StreamLessonMasterInput): Promise
319
310
  expectedAnswerOrRubric?: string | undefined;
320
311
  metacognitivePrompt?: string | undefined;
321
312
  } | undefined;
313
+ teacherNotes?: {
314
+ commonPitfalls?: (string | undefined)[] | undefined;
315
+ troubleshootingMatrix?: ({
316
+ issue?: string | undefined;
317
+ potentialCause?: string | undefined;
318
+ solution?: string | undefined;
319
+ } | undefined)[] | undefined;
320
+ extensionNotes?: string | undefined;
321
+ } | undefined;
322
322
  guidedPractice?: {
323
323
  title?: string | undefined;
324
324
  explanation?: string | undefined;
@@ -327,40 +327,31 @@ declare function streamLessonMasterFlow(input: StreamLessonMasterInput): Promise
327
327
  mermaidDiagram?: string | undefined;
328
328
  } | undefined;
329
329
  independentPractice?: {
330
- description?: string | undefined;
331
330
  title?: string | undefined;
331
+ description?: string | undefined;
332
332
  } | undefined;
333
333
  }, {
334
334
  artifactType: "LESSON";
335
335
  lessonId: string;
336
336
  title: string;
337
337
  language: string;
338
+ topic: string;
339
+ targetGradeOrAudience: string;
340
+ overview: string;
338
341
  learningObjectives: {
339
342
  code: string;
340
- successCriteria: string;
341
- description: string;
342
343
  name: string;
344
+ description: string;
343
345
  bloomLevel: string;
346
+ successCriteria: string;
344
347
  standardRefs?: string[] | undefined;
345
348
  conceptRefs?: string[] | undefined;
346
349
  }[];
347
- teacherNotes: {
348
- commonPitfalls: string[];
349
- troubleshootingMatrix: {
350
- issue: string;
351
- potentialCause: string;
352
- solution: string;
353
- }[];
354
- extensionNotes: string;
355
- };
356
- hookScenario: string;
357
- keywords: string[];
358
- topic: string;
359
- targetGradeOrAudience: string;
360
- overview: string;
361
350
  prerequisites: string;
362
351
  materialsSummary: string;
352
+ keywords: string[];
363
353
  hookTitle: string;
354
+ hookScenario: string;
364
355
  hookQuestions: string[];
365
356
  coreConcepts: {
366
357
  name: string;
@@ -378,8 +369,8 @@ declare function streamLessonMasterFlow(input: StreamLessonMasterInput): Promise
378
369
  goldTier: string;
379
370
  };
380
371
  sections: {
381
- durationMinutes: number;
382
372
  title: string;
373
+ durationMinutes: number;
383
374
  teacherActions: string;
384
375
  studentActions: string;
385
376
  analogies: string[];
@@ -390,6 +381,15 @@ declare function streamLessonMasterFlow(input: StreamLessonMasterInput): Promise
390
381
  expectedAnswerOrRubric: string;
391
382
  metacognitivePrompt: string;
392
383
  };
384
+ teacherNotes: {
385
+ commonPitfalls: string[];
386
+ troubleshootingMatrix: {
387
+ issue: string;
388
+ potentialCause: string;
389
+ solution: string;
390
+ }[];
391
+ extensionNotes: string;
392
+ };
393
393
  guidedPractice?: {
394
394
  title: string;
395
395
  explanation: string;
@@ -398,8 +398,8 @@ declare function streamLessonMasterFlow(input: StreamLessonMasterInput): Promise
398
398
  mermaidDiagram: string;
399
399
  } | undefined;
400
400
  independentPractice?: {
401
- description: string;
402
401
  title: string;
402
+ description: string;
403
403
  } | undefined;
404
404
  }, never>>;
405
405
 
@@ -422,11 +422,11 @@ declare function streamSelfLabFlow(input: StreamSelfLabInput): Promise<ai.Stream
422
422
  techStack?: (string | undefined)[] | undefined;
423
423
  challenges?: {
424
424
  bronze?: {
425
- objective?: string | undefined;
426
425
  title?: string | undefined;
426
+ objective?: string | undefined;
427
+ tier?: "bronze" | "silver" | "gold" | undefined;
427
428
  expectedOutput?: string | undefined;
428
429
  estimatedMinutes?: number | undefined;
429
- tier?: "bronze" | "silver" | "gold" | undefined;
430
430
  tasks?: (string | undefined)[] | undefined;
431
431
  verifyCommand?: string | undefined;
432
432
  hints?: {
@@ -439,11 +439,11 @@ declare function streamSelfLabFlow(input: StreamSelfLabInput): Promise<ai.Stream
439
439
  } | undefined;
440
440
  } | undefined;
441
441
  silver?: {
442
- objective?: string | undefined;
443
442
  title?: string | undefined;
443
+ objective?: string | undefined;
444
+ tier?: "bronze" | "silver" | "gold" | undefined;
444
445
  expectedOutput?: string | undefined;
445
446
  estimatedMinutes?: number | undefined;
446
- tier?: "bronze" | "silver" | "gold" | undefined;
447
447
  tasks?: (string | undefined)[] | undefined;
448
448
  verifyCommand?: string | undefined;
449
449
  hints?: {
@@ -456,11 +456,11 @@ declare function streamSelfLabFlow(input: StreamSelfLabInput): Promise<ai.Stream
456
456
  } | undefined;
457
457
  } | undefined;
458
458
  gold?: {
459
- objective?: string | undefined;
460
459
  title?: string | undefined;
460
+ objective?: string | undefined;
461
+ tier?: "bronze" | "silver" | "gold" | undefined;
461
462
  expectedOutput?: string | undefined;
462
463
  estimatedMinutes?: number | undefined;
463
- tier?: "bronze" | "silver" | "gold" | undefined;
464
464
  tasks?: (string | undefined)[] | undefined;
465
465
  verifyCommand?: string | undefined;
466
466
  hints?: {
@@ -491,11 +491,11 @@ declare function streamSelfLabFlow(input: StreamSelfLabInput): Promise<ai.Stream
491
491
  techStack: string[];
492
492
  challenges: {
493
493
  bronze: {
494
- objective: string;
495
494
  title: string;
495
+ objective: string;
496
+ tier: "bronze" | "silver" | "gold";
496
497
  expectedOutput: string;
497
498
  estimatedMinutes: number;
498
- tier: "bronze" | "silver" | "gold";
499
499
  tasks: string[];
500
500
  verifyCommand: string;
501
501
  hints: {
@@ -508,11 +508,11 @@ declare function streamSelfLabFlow(input: StreamSelfLabInput): Promise<ai.Stream
508
508
  };
509
509
  };
510
510
  silver: {
511
- objective: string;
512
511
  title: string;
512
+ objective: string;
513
+ tier: "bronze" | "silver" | "gold";
513
514
  expectedOutput: string;
514
515
  estimatedMinutes: number;
515
- tier: "bronze" | "silver" | "gold";
516
516
  tasks: string[];
517
517
  verifyCommand: string;
518
518
  hints: {
@@ -525,11 +525,11 @@ declare function streamSelfLabFlow(input: StreamSelfLabInput): Promise<ai.Stream
525
525
  };
526
526
  };
527
527
  gold: {
528
- objective: string;
529
528
  title: string;
529
+ objective: string;
530
+ tier: "bronze" | "silver" | "gold";
530
531
  expectedOutput: string;
531
532
  estimatedMinutes: number;
532
- tier: "bronze" | "silver" | "gold";
533
533
  tasks: string[];
534
534
  verifyCommand: string;
535
535
  hints: {
@@ -561,14 +561,21 @@ declare function streamDiagnosticQuizFlow(input: StreamDiagnosticQuizInput): Pro
561
561
  artifactType?: "QUIZ" | undefined;
562
562
  title?: string | undefined;
563
563
  language?: string | undefined;
564
+ rubric?: ({
565
+ exemplary?: string | undefined;
566
+ proficient?: string | undefined;
567
+ developing?: string | undefined;
568
+ competencyDimension?: string | undefined;
569
+ advanced?: string | undefined;
570
+ } | undefined)[] | undefined;
564
571
  quizId?: string | undefined;
565
572
  totalQuestions?: number | undefined;
566
573
  timeAllocationMinutes?: number | undefined;
567
574
  passingScorePct?: number | undefined;
568
575
  assessmentObjectives?: ({
569
- objective?: string | undefined;
576
+ bloomLevel?: "Remember" | "Understand" | "Apply" | "Analyze" | "Evaluate" | "Create" | undefined;
570
577
  standardRefs?: (string | undefined)[] | undefined;
571
- bloomLevel?: "Create" | "Evaluate" | "Remember" | "Understand" | "Apply" | "Analyze" | undefined;
578
+ objective?: string | undefined;
572
579
  aoCode?: string | undefined;
573
580
  alignedLO?: string | undefined;
574
581
  } | undefined)[] | undefined;
@@ -579,10 +586,10 @@ declare function streamDiagnosticQuizFlow(input: StreamDiagnosticQuizInput): Pro
579
586
  text?: string | undefined;
580
587
  isCorrect?: boolean | undefined;
581
588
  } | undefined)[] | undefined;
582
- bloomLevel?: "create" | "Create" | "Evaluate" | "understand" | "Remember" | "Understand" | "Apply" | "Analyze" | "remember" | "apply" | "analyze" | "evaluate" | undefined;
589
+ bloomLevel?: "understand" | "create" | "Remember" | "Understand" | "Apply" | "Analyze" | "Evaluate" | "Create" | "remember" | "apply" | "analyze" | "evaluate" | undefined;
583
590
  codeLanguage?: string | undefined;
584
591
  id?: string | undefined;
585
- questionType?: "multiple_choice" | "matching" | "code_analysis" | "open_ended" | undefined;
592
+ questionType?: "multiple_choice" | "code_analysis" | "matching" | "open_ended" | undefined;
586
593
  codeSnippet?: string | undefined;
587
594
  alignedAO?: string | undefined;
588
595
  scenarioOrStem?: string | undefined;
@@ -592,25 +599,25 @@ declare function streamDiagnosticQuizFlow(input: StreamDiagnosticQuizInput): Pro
592
599
  teacherNote?: string | undefined;
593
600
  takeawayMessage?: string | undefined;
594
601
  } | undefined)[] | undefined;
595
- rubric?: ({
596
- proficient?: string | undefined;
597
- advanced?: string | undefined;
598
- competencyDimension?: string | undefined;
599
- developing?: string | undefined;
600
- exemplary?: string | undefined;
601
- } | undefined)[] | undefined;
602
602
  }, {
603
603
  artifactType: "QUIZ";
604
604
  title: string;
605
605
  language: string;
606
+ rubric: {
607
+ exemplary: string;
608
+ proficient: string;
609
+ developing: string;
610
+ competencyDimension: string;
611
+ advanced: string;
612
+ }[];
606
613
  quizId: string;
607
614
  totalQuestions: number;
608
615
  timeAllocationMinutes: number;
609
616
  passingScorePct: number;
610
617
  assessmentObjectives: {
611
- objective: string;
618
+ bloomLevel: "Remember" | "Understand" | "Apply" | "Analyze" | "Evaluate" | "Create";
612
619
  standardRefs: string[];
613
- bloomLevel: "Create" | "Evaluate" | "Remember" | "Understand" | "Apply" | "Analyze";
620
+ objective: string;
614
621
  aoCode: string;
615
622
  alignedLO: string;
616
623
  }[];
@@ -621,10 +628,10 @@ declare function streamDiagnosticQuizFlow(input: StreamDiagnosticQuizInput): Pro
621
628
  text: string;
622
629
  isCorrect: boolean;
623
630
  }[];
624
- bloomLevel: "create" | "Create" | "Evaluate" | "understand" | "Remember" | "Understand" | "Apply" | "Analyze" | "remember" | "apply" | "analyze" | "evaluate";
631
+ bloomLevel: "understand" | "create" | "Remember" | "Understand" | "Apply" | "Analyze" | "Evaluate" | "Create" | "remember" | "apply" | "analyze" | "evaluate";
625
632
  codeLanguage: string;
626
633
  id: string;
627
- questionType: "multiple_choice" | "matching" | "code_analysis" | "open_ended";
634
+ questionType: "multiple_choice" | "code_analysis" | "matching" | "open_ended";
628
635
  codeSnippet?: string | undefined;
629
636
  alignedAO?: string | undefined;
630
637
  scenarioOrStem?: string | undefined;
@@ -634,13 +641,6 @@ declare function streamDiagnosticQuizFlow(input: StreamDiagnosticQuizInput): Pro
634
641
  teacherNote?: string | undefined;
635
642
  takeawayMessage?: string | undefined;
636
643
  }[];
637
- rubric: {
638
- proficient: string;
639
- advanced: string;
640
- competencyDimension: string;
641
- developing: string;
642
- exemplary: string;
643
- }[];
644
644
  }, never>>;
645
645
 
646
646
  /**
@@ -887,7 +887,6 @@ declare const contentTools: {
887
887
  }>, "many">;
888
888
  durationMinutes: z.ZodDefault<z.ZodNumber>;
889
889
  }, "strip", z.ZodTypeAny, {
890
- durationMinutes: number;
891
890
  lessonId: string;
892
891
  title: string;
893
892
  learningObjectives: {
@@ -895,6 +894,7 @@ declare const contentTools: {
895
894
  statement: string;
896
895
  standardRefs?: string[] | undefined;
897
896
  }[];
897
+ durationMinutes: number;
898
898
  }, {
899
899
  lessonId: string;
900
900
  title: string;
@@ -1054,19 +1054,19 @@ declare const assessorTools: {
1054
1054
  levels: Record<string, string>;
1055
1055
  }>, "many">;
1056
1056
  }, "strip", z.ZodTypeAny, {
1057
+ lessonId: string;
1057
1058
  criteria: {
1058
1059
  criterionName: string;
1059
1060
  weight: number;
1060
1061
  levels: Record<string, string>;
1061
1062
  }[];
1062
- lessonId: string;
1063
1063
  }, {
1064
+ lessonId: string;
1064
1065
  criteria: {
1065
1066
  criterionName: string;
1066
1067
  weight: number;
1067
1068
  levels: Record<string, string>;
1068
1069
  }[];
1069
- lessonId: string;
1070
1070
  }>;
1071
1071
  };
1072
1072
  };
@@ -1109,12 +1109,12 @@ declare const techSmeTools: {
1109
1109
  code: z.ZodString;
1110
1110
  expectedOutput: z.ZodOptional<z.ZodString>;
1111
1111
  }, "strip", z.ZodTypeAny, {
1112
- code: string;
1113
1112
  language: "swift" | "python" | "javascript" | "html_css";
1113
+ code: string;
1114
1114
  expectedOutput?: string | undefined;
1115
1115
  }, {
1116
- code: string;
1117
1116
  language: "swift" | "python" | "javascript" | "html_css";
1117
+ code: string;
1118
1118
  expectedOutput?: string | undefined;
1119
1119
  }>;
1120
1120
  };
@@ -1125,11 +1125,11 @@ declare const techSmeTools: {
1125
1125
  language: z.ZodString;
1126
1126
  code: z.ZodString;
1127
1127
  }, "strip", z.ZodTypeAny, {
1128
- code: string;
1129
1128
  language: string;
1130
- }, {
1131
1129
  code: string;
1130
+ }, {
1132
1131
  language: string;
1132
+ code: string;
1133
1133
  }>;
1134
1134
  };
1135
1135
  };