@thanh01.pmt/curriculum-kit 1.4.34 → 1.4.36

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.
Files changed (36) hide show
  1. package/LICENSE +21 -0
  2. package/dist/ai/index.cjs +57 -1
  3. package/dist/ai/index.cjs.map +1 -1
  4. package/dist/ai/index.d.cts +2 -2
  5. package/dist/ai/index.d.ts +2 -2
  6. package/dist/ai/index.mjs +57 -1
  7. package/dist/ai/index.mjs.map +1 -1
  8. package/dist/{gateSettings-DabOqP6_.d.cts → gateSettings-oo5tCUS_.d.cts} +18 -0
  9. package/dist/{gateSettings-DabOqP6_.d.ts → gateSettings-oo5tCUS_.d.ts} +18 -0
  10. package/dist/index.cjs +764 -70
  11. package/dist/index.cjs.map +1 -1
  12. package/dist/index.d.cts +234 -74
  13. package/dist/index.d.ts +234 -74
  14. package/dist/index.mjs +748 -71
  15. package/dist/index.mjs.map +1 -1
  16. package/dist/pipeline/index.cjs +57 -1
  17. package/dist/pipeline/index.cjs.map +1 -1
  18. package/dist/pipeline/index.mjs +57 -1
  19. package/dist/pipeline/index.mjs.map +1 -1
  20. package/dist/schemas/index.cjs +63 -1
  21. package/dist/schemas/index.cjs.map +1 -1
  22. package/dist/schemas/index.d.cts +436 -33
  23. package/dist/schemas/index.d.ts +436 -33
  24. package/dist/schemas/index.mjs +58 -2
  25. package/dist/schemas/index.mjs.map +1 -1
  26. package/dist/standards/index.d.cts +2 -2
  27. package/dist/standards/index.d.ts +2 -2
  28. package/dist/workflow/index.cjs +84 -2
  29. package/dist/workflow/index.cjs.map +1 -1
  30. package/dist/workflow/index.d.cts +3 -3
  31. package/dist/workflow/index.d.ts +3 -3
  32. package/dist/workflow/index.mjs +84 -2
  33. package/dist/workflow/index.mjs.map +1 -1
  34. package/package.json +22 -23
  35. package/dist/{standardsCoverageGate-DR5YTtlt.d.cts → standardsCoverageGate-49pJq5t8.d.cts} +6 -6
  36. package/dist/{standardsCoverageGate-DR5YTtlt.d.ts → standardsCoverageGate-49pJq5t8.d.ts} +6 -6
@@ -8582,6 +8582,148 @@ declare const ScaffoldDecisionEntrySchema: z.ZodObject<{
8582
8582
  minutes_saved?: number | undefined;
8583
8583
  }>;
8584
8584
  type ScaffoldDecisionEntry = z.infer<typeof ScaffoldDecisionEntrySchema>;
8585
+ declare const ZpdVerdictSchema: z.ZodEnum<["OK", "TOO_MANY_NEW", "NO_ZPD_BRIDGE"]>;
8586
+ type ZpdVerdict = z.infer<typeof ZpdVerdictSchema>;
8587
+ declare const SessionZpdStatusSchema: z.ZodObject<{
8588
+ verdict: z.ZodEnum<["OK", "TOO_MANY_NEW", "NO_ZPD_BRIDGE"]>;
8589
+ new_concept_count: z.ZodDefault<z.ZodNumber>;
8590
+ known_concept_count: z.ZodDefault<z.ZodNumber>;
8591
+ issues: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
8592
+ }, "strip", z.ZodTypeAny, {
8593
+ issues: string[];
8594
+ verdict: "OK" | "TOO_MANY_NEW" | "NO_ZPD_BRIDGE";
8595
+ new_concept_count: number;
8596
+ known_concept_count: number;
8597
+ }, {
8598
+ verdict: "OK" | "TOO_MANY_NEW" | "NO_ZPD_BRIDGE";
8599
+ issues?: string[] | undefined;
8600
+ new_concept_count?: number | undefined;
8601
+ known_concept_count?: number | undefined;
8602
+ }>;
8603
+ type SessionZpdStatus = z.infer<typeof SessionZpdStatusSchema>;
8604
+ declare const ConceptSpiralEncounterSchema: z.ZodObject<{
8605
+ concept_code: z.ZodString;
8606
+ session_id: z.ZodString;
8607
+ encounter_index: z.ZodNumber;
8608
+ bloom_cap: z.ZodEnum<["Remember", "Understand", "Apply", "Analyze", "Evaluate", "Create"]>;
8609
+ depth: z.ZodEnum<["ulo", "cio", "sio"]>;
8610
+ }, "strip", z.ZodTypeAny, {
8611
+ depth: "ulo" | "cio" | "sio";
8612
+ concept_code: string;
8613
+ session_id: string;
8614
+ encounter_index: number;
8615
+ bloom_cap: "Create" | "Evaluate" | "Remember" | "Understand" | "Apply" | "Analyze";
8616
+ }, {
8617
+ depth: "ulo" | "cio" | "sio";
8618
+ concept_code: string;
8619
+ session_id: string;
8620
+ encounter_index: number;
8621
+ bloom_cap: "Create" | "Evaluate" | "Remember" | "Understand" | "Apply" | "Analyze";
8622
+ }>;
8623
+ type ConceptSpiralEncounter = z.infer<typeof ConceptSpiralEncounterSchema>;
8624
+ declare const WalkingSkeletonSchema: z.ZodObject<{
8625
+ epitome_unit_id: z.ZodDefault<z.ZodString>;
8626
+ epitome_deliverables: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
8627
+ elaborations: z.ZodDefault<z.ZodArray<z.ZodObject<{
8628
+ unit_id: z.ZodString;
8629
+ focus_area: z.ZodString;
8630
+ elaborates_on: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
8631
+ }, "strip", z.ZodTypeAny, {
8632
+ unit_id: string;
8633
+ focus_area: string;
8634
+ elaborates_on: string[];
8635
+ }, {
8636
+ unit_id: string;
8637
+ focus_area: string;
8638
+ elaborates_on?: string[] | undefined;
8639
+ }>, "many">>;
8640
+ }, "strip", z.ZodTypeAny, {
8641
+ epitome_unit_id: string;
8642
+ epitome_deliverables: string[];
8643
+ elaborations: {
8644
+ unit_id: string;
8645
+ focus_area: string;
8646
+ elaborates_on: string[];
8647
+ }[];
8648
+ }, {
8649
+ epitome_unit_id?: string | undefined;
8650
+ epitome_deliverables?: string[] | undefined;
8651
+ elaborations?: {
8652
+ unit_id: string;
8653
+ focus_area: string;
8654
+ elaborates_on?: string[] | undefined;
8655
+ }[] | undefined;
8656
+ }>;
8657
+ type WalkingSkeleton = z.infer<typeof WalkingSkeletonSchema>;
8658
+ declare const MasteryGateSchema: z.ZodObject<{
8659
+ phase_or_unit_id: z.ZodString;
8660
+ gate_name: z.ZodString;
8661
+ exit_criteria: z.ZodArray<z.ZodString, "many">;
8662
+ next_unit_id: z.ZodString;
8663
+ remediation: z.ZodObject<{
8664
+ trigger: z.ZodLiteral<"FAIL_GATE_CRITERIA">;
8665
+ focus_minutes: z.ZodDefault<z.ZodNumber>;
8666
+ action: z.ZodString;
8667
+ }, "strip", z.ZodTypeAny, {
8668
+ trigger: "FAIL_GATE_CRITERIA";
8669
+ focus_minutes: number;
8670
+ action: string;
8671
+ }, {
8672
+ trigger: "FAIL_GATE_CRITERIA";
8673
+ action: string;
8674
+ focus_minutes?: number | undefined;
8675
+ }>;
8676
+ }, "strip", z.ZodTypeAny, {
8677
+ phase_or_unit_id: string;
8678
+ gate_name: string;
8679
+ exit_criteria: string[];
8680
+ next_unit_id: string;
8681
+ remediation: {
8682
+ trigger: "FAIL_GATE_CRITERIA";
8683
+ focus_minutes: number;
8684
+ action: string;
8685
+ };
8686
+ }, {
8687
+ phase_or_unit_id: string;
8688
+ gate_name: string;
8689
+ exit_criteria: string[];
8690
+ next_unit_id: string;
8691
+ remediation: {
8692
+ trigger: "FAIL_GATE_CRITERIA";
8693
+ action: string;
8694
+ focus_minutes?: number | undefined;
8695
+ };
8696
+ }>;
8697
+ type MasteryGate = z.infer<typeof MasteryGateSchema>;
8698
+ declare const ConceptPrerequisiteEdgeSchema: z.ZodObject<{
8699
+ concept_code: z.ZodString;
8700
+ requires: z.ZodString;
8701
+ source: z.ZodDefault<z.ZodEnum<["MASTER_TREE", "INFERRED", "CONCEPT_LEVEL_PREREQ"]>>;
8702
+ confidence: z.ZodDefault<z.ZodNumber>;
8703
+ rationale: z.ZodDefault<z.ZodString>;
8704
+ structure_supported: z.ZodDefault<z.ZodBoolean>;
8705
+ needs_review: z.ZodDefault<z.ZodBoolean>;
8706
+ hub: z.ZodDefault<z.ZodBoolean>;
8707
+ }, "strip", z.ZodTypeAny, {
8708
+ source: "MASTER_TREE" | "INFERRED" | "CONCEPT_LEVEL_PREREQ";
8709
+ rationale: string;
8710
+ concept_code: string;
8711
+ requires: string;
8712
+ confidence: number;
8713
+ structure_supported: boolean;
8714
+ needs_review: boolean;
8715
+ hub: boolean;
8716
+ }, {
8717
+ concept_code: string;
8718
+ requires: string;
8719
+ source?: "MASTER_TREE" | "INFERRED" | "CONCEPT_LEVEL_PREREQ" | undefined;
8720
+ rationale?: string | undefined;
8721
+ confidence?: number | undefined;
8722
+ structure_supported?: boolean | undefined;
8723
+ needs_review?: boolean | undefined;
8724
+ hub?: boolean | undefined;
8725
+ }>;
8726
+ type ConceptPrerequisiteEdge = z.infer<typeof ConceptPrerequisiteEdgeSchema>;
8585
8727
  declare const SessionPlanSchema: z.ZodObject<{
8586
8728
  id: z.ZodString;
8587
8729
  unit_id: z.ZodString;
@@ -8651,6 +8793,22 @@ declare const SessionPlanSchema: z.ZodObject<{
8651
8793
  silver: string;
8652
8794
  gold: string;
8653
8795
  }>;
8796
+ zpd_status: z.ZodDefault<z.ZodObject<{
8797
+ verdict: z.ZodEnum<["OK", "TOO_MANY_NEW", "NO_ZPD_BRIDGE"]>;
8798
+ new_concept_count: z.ZodDefault<z.ZodNumber>;
8799
+ known_concept_count: z.ZodDefault<z.ZodNumber>;
8800
+ issues: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
8801
+ }, "strip", z.ZodTypeAny, {
8802
+ issues: string[];
8803
+ verdict: "OK" | "TOO_MANY_NEW" | "NO_ZPD_BRIDGE";
8804
+ new_concept_count: number;
8805
+ known_concept_count: number;
8806
+ }, {
8807
+ verdict: "OK" | "TOO_MANY_NEW" | "NO_ZPD_BRIDGE";
8808
+ issues?: string[] | undefined;
8809
+ new_concept_count?: number | undefined;
8810
+ known_concept_count?: number | undefined;
8811
+ }>>;
8654
8812
  }, "strip", z.ZodTypeAny, {
8655
8813
  title: string;
8656
8814
  differentiation: {
@@ -8686,6 +8844,12 @@ declare const SessionPlanSchema: z.ZodObject<{
8686
8844
  minutes_saved: number;
8687
8845
  }[];
8688
8846
  exit_evidence: string[];
8847
+ zpd_status: {
8848
+ issues: string[];
8849
+ verdict: "OK" | "TOO_MANY_NEW" | "NO_ZPD_BRIDGE";
8850
+ new_concept_count: number;
8851
+ known_concept_count: number;
8852
+ };
8689
8853
  }, {
8690
8854
  title: string;
8691
8855
  differentiation: {
@@ -8721,6 +8885,12 @@ declare const SessionPlanSchema: z.ZodObject<{
8721
8885
  item: string;
8722
8886
  minutes_saved?: number | undefined;
8723
8887
  }[] | undefined;
8888
+ zpd_status?: {
8889
+ verdict: "OK" | "TOO_MANY_NEW" | "NO_ZPD_BRIDGE";
8890
+ issues?: string[] | undefined;
8891
+ new_concept_count?: number | undefined;
8892
+ known_concept_count?: number | undefined;
8893
+ } | undefined;
8724
8894
  }>;
8725
8895
  type SessionPlan = z.infer<typeof SessionPlanSchema>;
8726
8896
  declare const TranslationPolicySchema: z.ZodEffects<z.ZodObject<{
@@ -9031,6 +9201,22 @@ declare const CurriculumPlanSchema: z.ZodObject<{
9031
9201
  silver: string;
9032
9202
  gold: string;
9033
9203
  }>;
9204
+ zpd_status: z.ZodDefault<z.ZodObject<{
9205
+ verdict: z.ZodEnum<["OK", "TOO_MANY_NEW", "NO_ZPD_BRIDGE"]>;
9206
+ new_concept_count: z.ZodDefault<z.ZodNumber>;
9207
+ known_concept_count: z.ZodDefault<z.ZodNumber>;
9208
+ issues: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
9209
+ }, "strip", z.ZodTypeAny, {
9210
+ issues: string[];
9211
+ verdict: "OK" | "TOO_MANY_NEW" | "NO_ZPD_BRIDGE";
9212
+ new_concept_count: number;
9213
+ known_concept_count: number;
9214
+ }, {
9215
+ verdict: "OK" | "TOO_MANY_NEW" | "NO_ZPD_BRIDGE";
9216
+ issues?: string[] | undefined;
9217
+ new_concept_count?: number | undefined;
9218
+ known_concept_count?: number | undefined;
9219
+ }>>;
9034
9220
  }, "strip", z.ZodTypeAny, {
9035
9221
  title: string;
9036
9222
  differentiation: {
@@ -9066,6 +9252,12 @@ declare const CurriculumPlanSchema: z.ZodObject<{
9066
9252
  minutes_saved: number;
9067
9253
  }[];
9068
9254
  exit_evidence: string[];
9255
+ zpd_status: {
9256
+ issues: string[];
9257
+ verdict: "OK" | "TOO_MANY_NEW" | "NO_ZPD_BRIDGE";
9258
+ new_concept_count: number;
9259
+ known_concept_count: number;
9260
+ };
9069
9261
  }, {
9070
9262
  title: string;
9071
9263
  differentiation: {
@@ -9101,7 +9293,132 @@ declare const CurriculumPlanSchema: z.ZodObject<{
9101
9293
  item: string;
9102
9294
  minutes_saved?: number | undefined;
9103
9295
  }[] | undefined;
9296
+ zpd_status?: {
9297
+ verdict: "OK" | "TOO_MANY_NEW" | "NO_ZPD_BRIDGE";
9298
+ issues?: string[] | undefined;
9299
+ new_concept_count?: number | undefined;
9300
+ known_concept_count?: number | undefined;
9301
+ } | undefined;
9104
9302
  }>, "many">;
9303
+ walking_skeleton: z.ZodOptional<z.ZodObject<{
9304
+ epitome_unit_id: z.ZodDefault<z.ZodString>;
9305
+ epitome_deliverables: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
9306
+ elaborations: z.ZodDefault<z.ZodArray<z.ZodObject<{
9307
+ unit_id: z.ZodString;
9308
+ focus_area: z.ZodString;
9309
+ elaborates_on: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
9310
+ }, "strip", z.ZodTypeAny, {
9311
+ unit_id: string;
9312
+ focus_area: string;
9313
+ elaborates_on: string[];
9314
+ }, {
9315
+ unit_id: string;
9316
+ focus_area: string;
9317
+ elaborates_on?: string[] | undefined;
9318
+ }>, "many">>;
9319
+ }, "strip", z.ZodTypeAny, {
9320
+ epitome_unit_id: string;
9321
+ epitome_deliverables: string[];
9322
+ elaborations: {
9323
+ unit_id: string;
9324
+ focus_area: string;
9325
+ elaborates_on: string[];
9326
+ }[];
9327
+ }, {
9328
+ epitome_unit_id?: string | undefined;
9329
+ epitome_deliverables?: string[] | undefined;
9330
+ elaborations?: {
9331
+ unit_id: string;
9332
+ focus_area: string;
9333
+ elaborates_on?: string[] | undefined;
9334
+ }[] | undefined;
9335
+ }>>;
9336
+ mastery_gates: z.ZodDefault<z.ZodArray<z.ZodObject<{
9337
+ phase_or_unit_id: z.ZodString;
9338
+ gate_name: z.ZodString;
9339
+ exit_criteria: z.ZodArray<z.ZodString, "many">;
9340
+ next_unit_id: z.ZodString;
9341
+ remediation: z.ZodObject<{
9342
+ trigger: z.ZodLiteral<"FAIL_GATE_CRITERIA">;
9343
+ focus_minutes: z.ZodDefault<z.ZodNumber>;
9344
+ action: z.ZodString;
9345
+ }, "strip", z.ZodTypeAny, {
9346
+ trigger: "FAIL_GATE_CRITERIA";
9347
+ focus_minutes: number;
9348
+ action: string;
9349
+ }, {
9350
+ trigger: "FAIL_GATE_CRITERIA";
9351
+ action: string;
9352
+ focus_minutes?: number | undefined;
9353
+ }>;
9354
+ }, "strip", z.ZodTypeAny, {
9355
+ phase_or_unit_id: string;
9356
+ gate_name: string;
9357
+ exit_criteria: string[];
9358
+ next_unit_id: string;
9359
+ remediation: {
9360
+ trigger: "FAIL_GATE_CRITERIA";
9361
+ focus_minutes: number;
9362
+ action: string;
9363
+ };
9364
+ }, {
9365
+ phase_or_unit_id: string;
9366
+ gate_name: string;
9367
+ exit_criteria: string[];
9368
+ next_unit_id: string;
9369
+ remediation: {
9370
+ trigger: "FAIL_GATE_CRITERIA";
9371
+ action: string;
9372
+ focus_minutes?: number | undefined;
9373
+ };
9374
+ }>, "many">>;
9375
+ concept_spiral_progression: z.ZodDefault<z.ZodArray<z.ZodObject<{
9376
+ concept_code: z.ZodString;
9377
+ session_id: z.ZodString;
9378
+ encounter_index: z.ZodNumber;
9379
+ bloom_cap: z.ZodEnum<["Remember", "Understand", "Apply", "Analyze", "Evaluate", "Create"]>;
9380
+ depth: z.ZodEnum<["ulo", "cio", "sio"]>;
9381
+ }, "strip", z.ZodTypeAny, {
9382
+ depth: "ulo" | "cio" | "sio";
9383
+ concept_code: string;
9384
+ session_id: string;
9385
+ encounter_index: number;
9386
+ bloom_cap: "Create" | "Evaluate" | "Remember" | "Understand" | "Apply" | "Analyze";
9387
+ }, {
9388
+ depth: "ulo" | "cio" | "sio";
9389
+ concept_code: string;
9390
+ session_id: string;
9391
+ encounter_index: number;
9392
+ bloom_cap: "Create" | "Evaluate" | "Remember" | "Understand" | "Apply" | "Analyze";
9393
+ }>, "many">>;
9394
+ concept_prerequisites: z.ZodDefault<z.ZodArray<z.ZodObject<{
9395
+ concept_code: z.ZodString;
9396
+ requires: z.ZodString;
9397
+ source: z.ZodDefault<z.ZodEnum<["MASTER_TREE", "INFERRED", "CONCEPT_LEVEL_PREREQ"]>>;
9398
+ confidence: z.ZodDefault<z.ZodNumber>;
9399
+ rationale: z.ZodDefault<z.ZodString>;
9400
+ structure_supported: z.ZodDefault<z.ZodBoolean>;
9401
+ needs_review: z.ZodDefault<z.ZodBoolean>;
9402
+ hub: z.ZodDefault<z.ZodBoolean>;
9403
+ }, "strip", z.ZodTypeAny, {
9404
+ source: "MASTER_TREE" | "INFERRED" | "CONCEPT_LEVEL_PREREQ";
9405
+ rationale: string;
9406
+ concept_code: string;
9407
+ requires: string;
9408
+ confidence: number;
9409
+ structure_supported: boolean;
9410
+ needs_review: boolean;
9411
+ hub: boolean;
9412
+ }, {
9413
+ concept_code: string;
9414
+ requires: string;
9415
+ source?: "MASTER_TREE" | "INFERRED" | "CONCEPT_LEVEL_PREREQ" | undefined;
9416
+ rationale?: string | undefined;
9417
+ confidence?: number | undefined;
9418
+ structure_supported?: boolean | undefined;
9419
+ needs_review?: boolean | undefined;
9420
+ hub?: boolean | undefined;
9421
+ }>, "many">>;
9105
9422
  glossary_scope: z.ZodArray<z.ZodObject<{
9106
9423
  session_id: z.ZodString;
9107
9424
  terms: z.ZodArray<z.ZodString, "many">;
@@ -9244,6 +9561,40 @@ declare const CurriculumPlanSchema: z.ZodObject<{
9244
9561
  minutes_saved: number;
9245
9562
  }[];
9246
9563
  exit_evidence: string[];
9564
+ zpd_status: {
9565
+ issues: string[];
9566
+ verdict: "OK" | "TOO_MANY_NEW" | "NO_ZPD_BRIDGE";
9567
+ new_concept_count: number;
9568
+ known_concept_count: number;
9569
+ };
9570
+ }[];
9571
+ mastery_gates: {
9572
+ phase_or_unit_id: string;
9573
+ gate_name: string;
9574
+ exit_criteria: string[];
9575
+ next_unit_id: string;
9576
+ remediation: {
9577
+ trigger: "FAIL_GATE_CRITERIA";
9578
+ focus_minutes: number;
9579
+ action: string;
9580
+ };
9581
+ }[];
9582
+ concept_spiral_progression: {
9583
+ depth: "ulo" | "cio" | "sio";
9584
+ concept_code: string;
9585
+ session_id: string;
9586
+ encounter_index: number;
9587
+ bloom_cap: "Create" | "Evaluate" | "Remember" | "Understand" | "Apply" | "Analyze";
9588
+ }[];
9589
+ concept_prerequisites: {
9590
+ source: "MASTER_TREE" | "INFERRED" | "CONCEPT_LEVEL_PREREQ";
9591
+ rationale: string;
9592
+ concept_code: string;
9593
+ requires: string;
9594
+ confidence: number;
9595
+ structure_supported: boolean;
9596
+ needs_review: boolean;
9597
+ hub: boolean;
9247
9598
  }[];
9248
9599
  glossary_scope: {
9249
9600
  terms: string[];
@@ -9259,6 +9610,15 @@ declare const CurriculumPlanSchema: z.ZodObject<{
9259
9610
  plan_hash: string | null;
9260
9611
  approved_at: string | null;
9261
9612
  };
9613
+ walking_skeleton?: {
9614
+ epitome_unit_id: string;
9615
+ epitome_deliverables: string[];
9616
+ elaborations: {
9617
+ unit_id: string;
9618
+ focus_area: string;
9619
+ elaborates_on: string[];
9620
+ }[];
9621
+ } | undefined;
9262
9622
  }, {
9263
9623
  source: {
9264
9624
  graph_type: "curriculum_feed" | "project_graph" | "knowledge_graph" | "hybrid_graph";
@@ -9349,6 +9709,12 @@ declare const CurriculumPlanSchema: z.ZodObject<{
9349
9709
  item: string;
9350
9710
  minutes_saved?: number | undefined;
9351
9711
  }[] | undefined;
9712
+ zpd_status?: {
9713
+ verdict: "OK" | "TOO_MANY_NEW" | "NO_ZPD_BRIDGE";
9714
+ issues?: string[] | undefined;
9715
+ new_concept_count?: number | undefined;
9716
+ known_concept_count?: number | undefined;
9717
+ } | undefined;
9352
9718
  }[];
9353
9719
  glossary_scope: {
9354
9720
  terms: string[];
@@ -9364,6 +9730,43 @@ declare const CurriculumPlanSchema: z.ZodObject<{
9364
9730
  plan_hash?: string | null | undefined;
9365
9731
  approved_at?: string | null | undefined;
9366
9732
  };
9733
+ walking_skeleton?: {
9734
+ epitome_unit_id?: string | undefined;
9735
+ epitome_deliverables?: string[] | undefined;
9736
+ elaborations?: {
9737
+ unit_id: string;
9738
+ focus_area: string;
9739
+ elaborates_on?: string[] | undefined;
9740
+ }[] | undefined;
9741
+ } | undefined;
9742
+ mastery_gates?: {
9743
+ phase_or_unit_id: string;
9744
+ gate_name: string;
9745
+ exit_criteria: string[];
9746
+ next_unit_id: string;
9747
+ remediation: {
9748
+ trigger: "FAIL_GATE_CRITERIA";
9749
+ action: string;
9750
+ focus_minutes?: number | undefined;
9751
+ };
9752
+ }[] | undefined;
9753
+ concept_spiral_progression?: {
9754
+ depth: "ulo" | "cio" | "sio";
9755
+ concept_code: string;
9756
+ session_id: string;
9757
+ encounter_index: number;
9758
+ bloom_cap: "Create" | "Evaluate" | "Remember" | "Understand" | "Apply" | "Analyze";
9759
+ }[] | undefined;
9760
+ concept_prerequisites?: {
9761
+ concept_code: string;
9762
+ requires: string;
9763
+ source?: "MASTER_TREE" | "INFERRED" | "CONCEPT_LEVEL_PREREQ" | undefined;
9764
+ rationale?: string | undefined;
9765
+ confidence?: number | undefined;
9766
+ structure_supported?: boolean | undefined;
9767
+ needs_review?: boolean | undefined;
9768
+ hub?: boolean | undefined;
9769
+ }[] | undefined;
9367
9770
  }>;
9368
9771
  type CurriculumPlan = z.infer<typeof CurriculumPlanSchema>;
9369
9772
  declare const PlanningNodeSchema: z.ZodObject<{
@@ -13476,12 +13879,12 @@ declare const LearningObjectiveInputSchema: z.ZodObject<{
13476
13879
  description: string;
13477
13880
  name: string;
13478
13881
  concept: string;
13882
+ concept_code: string;
13479
13883
  lo_type: string;
13480
13884
  bloom_level: string;
13481
13885
  knowledge_dimension: string;
13482
13886
  assessment: string;
13483
13887
  keyword: string;
13484
- concept_code: string;
13485
13888
  concept_name: string;
13486
13889
  }, {
13487
13890
  code: string;
@@ -13489,11 +13892,11 @@ declare const LearningObjectiveInputSchema: z.ZodObject<{
13489
13892
  lo_type: string;
13490
13893
  description?: string | undefined;
13491
13894
  concept?: string | undefined;
13895
+ concept_code?: string | undefined;
13492
13896
  bloom_level?: string | undefined;
13493
13897
  knowledge_dimension?: string | undefined;
13494
13898
  assessment?: string | undefined;
13495
13899
  keyword?: string | undefined;
13496
- concept_code?: string | undefined;
13497
13900
  concept_name?: string | undefined;
13498
13901
  }>;
13499
13902
  interface LearningObjectiveInput {
@@ -13545,12 +13948,12 @@ declare const MilestoneInputSchema: z.ZodObject<{
13545
13948
  description: string;
13546
13949
  name: string;
13547
13950
  concept: string;
13951
+ concept_code: string;
13548
13952
  lo_type: string;
13549
13953
  bloom_level: string;
13550
13954
  knowledge_dimension: string;
13551
13955
  assessment: string;
13552
13956
  keyword: string;
13553
- concept_code: string;
13554
13957
  concept_name: string;
13555
13958
  }, {
13556
13959
  code: string;
@@ -13558,11 +13961,11 @@ declare const MilestoneInputSchema: z.ZodObject<{
13558
13961
  lo_type: string;
13559
13962
  description?: string | undefined;
13560
13963
  concept?: string | undefined;
13964
+ concept_code?: string | undefined;
13561
13965
  bloom_level?: string | undefined;
13562
13966
  knowledge_dimension?: string | undefined;
13563
13967
  assessment?: string | undefined;
13564
13968
  keyword?: string | undefined;
13565
- concept_code?: string | undefined;
13566
13969
  concept_name?: string | undefined;
13567
13970
  }>, "many">>>;
13568
13971
  rationale: z.ZodDefault<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>>;
@@ -13574,11 +13977,11 @@ declare const MilestoneInputSchema: z.ZodObject<{
13574
13977
  name: string;
13575
13978
  difficulty: string;
13576
13979
  rationale: string | string[];
13980
+ concept_code: string;
13577
13981
  new_keywords: string[];
13578
13982
  prerequisite_keywords: string[];
13579
13983
  completion_level: string;
13580
13984
  bloom_level: string;
13581
- concept_code: string;
13582
13985
  concept_name: string;
13583
13986
  feature_id: string;
13584
13987
  feature_name: string;
@@ -13590,12 +13993,12 @@ declare const MilestoneInputSchema: z.ZodObject<{
13590
13993
  description: string;
13591
13994
  name: string;
13592
13995
  concept: string;
13996
+ concept_code: string;
13593
13997
  lo_type: string;
13594
13998
  bloom_level: string;
13595
13999
  knowledge_dimension: string;
13596
14000
  assessment: string;
13597
14001
  keyword: string;
13598
- concept_code: string;
13599
14002
  concept_name: string;
13600
14003
  }[];
13601
14004
  id?: string | undefined;
@@ -13607,11 +14010,11 @@ declare const MilestoneInputSchema: z.ZodObject<{
13607
14010
  id?: string | undefined;
13608
14011
  difficulty?: string | undefined;
13609
14012
  rationale?: string | string[] | undefined;
14013
+ concept_code?: string | undefined;
13610
14014
  new_keywords?: string[] | undefined;
13611
14015
  prerequisite_keywords?: string[] | undefined;
13612
14016
  completion_level?: string | undefined;
13613
14017
  bloom_level?: string | undefined;
13614
- concept_code?: string | undefined;
13615
14018
  concept_name?: string | undefined;
13616
14019
  feature_id?: string | undefined;
13617
14020
  feature_name?: string | undefined;
@@ -13624,11 +14027,11 @@ declare const MilestoneInputSchema: z.ZodObject<{
13624
14027
  lo_type: string;
13625
14028
  description?: string | undefined;
13626
14029
  concept?: string | undefined;
14030
+ concept_code?: string | undefined;
13627
14031
  bloom_level?: string | undefined;
13628
14032
  knowledge_dimension?: string | undefined;
13629
14033
  assessment?: string | undefined;
13630
14034
  keyword?: string | undefined;
13631
- concept_code?: string | undefined;
13632
14035
  concept_name?: string | undefined;
13633
14036
  }[] | undefined;
13634
14037
  instruction_ref?: string | undefined;
@@ -13697,12 +14100,12 @@ declare const PhaseInputSchema: z.ZodObject<{
13697
14100
  description: string;
13698
14101
  name: string;
13699
14102
  concept: string;
14103
+ concept_code: string;
13700
14104
  lo_type: string;
13701
14105
  bloom_level: string;
13702
14106
  knowledge_dimension: string;
13703
14107
  assessment: string;
13704
14108
  keyword: string;
13705
- concept_code: string;
13706
14109
  concept_name: string;
13707
14110
  }, {
13708
14111
  code: string;
@@ -13710,11 +14113,11 @@ declare const PhaseInputSchema: z.ZodObject<{
13710
14113
  lo_type: string;
13711
14114
  description?: string | undefined;
13712
14115
  concept?: string | undefined;
14116
+ concept_code?: string | undefined;
13713
14117
  bloom_level?: string | undefined;
13714
14118
  knowledge_dimension?: string | undefined;
13715
14119
  assessment?: string | undefined;
13716
14120
  keyword?: string | undefined;
13717
- concept_code?: string | undefined;
13718
14121
  concept_name?: string | undefined;
13719
14122
  }>, "many">>>;
13720
14123
  rationale: z.ZodDefault<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>>;
@@ -13726,11 +14129,11 @@ declare const PhaseInputSchema: z.ZodObject<{
13726
14129
  name: string;
13727
14130
  difficulty: string;
13728
14131
  rationale: string | string[];
14132
+ concept_code: string;
13729
14133
  new_keywords: string[];
13730
14134
  prerequisite_keywords: string[];
13731
14135
  completion_level: string;
13732
14136
  bloom_level: string;
13733
- concept_code: string;
13734
14137
  concept_name: string;
13735
14138
  feature_id: string;
13736
14139
  feature_name: string;
@@ -13742,12 +14145,12 @@ declare const PhaseInputSchema: z.ZodObject<{
13742
14145
  description: string;
13743
14146
  name: string;
13744
14147
  concept: string;
14148
+ concept_code: string;
13745
14149
  lo_type: string;
13746
14150
  bloom_level: string;
13747
14151
  knowledge_dimension: string;
13748
14152
  assessment: string;
13749
14153
  keyword: string;
13750
- concept_code: string;
13751
14154
  concept_name: string;
13752
14155
  }[];
13753
14156
  id?: string | undefined;
@@ -13759,11 +14162,11 @@ declare const PhaseInputSchema: z.ZodObject<{
13759
14162
  id?: string | undefined;
13760
14163
  difficulty?: string | undefined;
13761
14164
  rationale?: string | string[] | undefined;
14165
+ concept_code?: string | undefined;
13762
14166
  new_keywords?: string[] | undefined;
13763
14167
  prerequisite_keywords?: string[] | undefined;
13764
14168
  completion_level?: string | undefined;
13765
14169
  bloom_level?: string | undefined;
13766
- concept_code?: string | undefined;
13767
14170
  concept_name?: string | undefined;
13768
14171
  feature_id?: string | undefined;
13769
14172
  feature_name?: string | undefined;
@@ -13776,11 +14179,11 @@ declare const PhaseInputSchema: z.ZodObject<{
13776
14179
  lo_type: string;
13777
14180
  description?: string | undefined;
13778
14181
  concept?: string | undefined;
14182
+ concept_code?: string | undefined;
13779
14183
  bloom_level?: string | undefined;
13780
14184
  knowledge_dimension?: string | undefined;
13781
14185
  assessment?: string | undefined;
13782
14186
  keyword?: string | undefined;
13783
- concept_code?: string | undefined;
13784
14187
  concept_name?: string | undefined;
13785
14188
  }[] | undefined;
13786
14189
  instruction_ref?: string | undefined;
@@ -13794,11 +14197,11 @@ declare const PhaseInputSchema: z.ZodObject<{
13794
14197
  name: string;
13795
14198
  difficulty: string;
13796
14199
  rationale: string | string[];
14200
+ concept_code: string;
13797
14201
  new_keywords: string[];
13798
14202
  prerequisite_keywords: string[];
13799
14203
  completion_level: string;
13800
14204
  bloom_level: string;
13801
- concept_code: string;
13802
14205
  concept_name: string;
13803
14206
  feature_id: string;
13804
14207
  feature_name: string;
@@ -13810,12 +14213,12 @@ declare const PhaseInputSchema: z.ZodObject<{
13810
14213
  description: string;
13811
14214
  name: string;
13812
14215
  concept: string;
14216
+ concept_code: string;
13813
14217
  lo_type: string;
13814
14218
  bloom_level: string;
13815
14219
  knowledge_dimension: string;
13816
14220
  assessment: string;
13817
14221
  keyword: string;
13818
- concept_code: string;
13819
14222
  concept_name: string;
13820
14223
  }[];
13821
14224
  id?: string | undefined;
@@ -13837,11 +14240,11 @@ declare const PhaseInputSchema: z.ZodObject<{
13837
14240
  id?: string | undefined;
13838
14241
  difficulty?: string | undefined;
13839
14242
  rationale?: string | string[] | undefined;
14243
+ concept_code?: string | undefined;
13840
14244
  new_keywords?: string[] | undefined;
13841
14245
  prerequisite_keywords?: string[] | undefined;
13842
14246
  completion_level?: string | undefined;
13843
14247
  bloom_level?: string | undefined;
13844
- concept_code?: string | undefined;
13845
14248
  concept_name?: string | undefined;
13846
14249
  feature_id?: string | undefined;
13847
14250
  feature_name?: string | undefined;
@@ -13854,11 +14257,11 @@ declare const PhaseInputSchema: z.ZodObject<{
13854
14257
  lo_type: string;
13855
14258
  description?: string | undefined;
13856
14259
  concept?: string | undefined;
14260
+ concept_code?: string | undefined;
13857
14261
  bloom_level?: string | undefined;
13858
14262
  knowledge_dimension?: string | undefined;
13859
14263
  assessment?: string | undefined;
13860
14264
  keyword?: string | undefined;
13861
- concept_code?: string | undefined;
13862
14265
  concept_name?: string | undefined;
13863
14266
  }[] | undefined;
13864
14267
  instruction_ref?: string | undefined;
@@ -13943,12 +14346,12 @@ declare const RoadmapInputSchema: z.ZodObject<{
13943
14346
  description: string;
13944
14347
  name: string;
13945
14348
  concept: string;
14349
+ concept_code: string;
13946
14350
  lo_type: string;
13947
14351
  bloom_level: string;
13948
14352
  knowledge_dimension: string;
13949
14353
  assessment: string;
13950
14354
  keyword: string;
13951
- concept_code: string;
13952
14355
  concept_name: string;
13953
14356
  }, {
13954
14357
  code: string;
@@ -13956,11 +14359,11 @@ declare const RoadmapInputSchema: z.ZodObject<{
13956
14359
  lo_type: string;
13957
14360
  description?: string | undefined;
13958
14361
  concept?: string | undefined;
14362
+ concept_code?: string | undefined;
13959
14363
  bloom_level?: string | undefined;
13960
14364
  knowledge_dimension?: string | undefined;
13961
14365
  assessment?: string | undefined;
13962
14366
  keyword?: string | undefined;
13963
- concept_code?: string | undefined;
13964
14367
  concept_name?: string | undefined;
13965
14368
  }>, "many">>>;
13966
14369
  rationale: z.ZodDefault<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>>;
@@ -13972,11 +14375,11 @@ declare const RoadmapInputSchema: z.ZodObject<{
13972
14375
  name: string;
13973
14376
  difficulty: string;
13974
14377
  rationale: string | string[];
14378
+ concept_code: string;
13975
14379
  new_keywords: string[];
13976
14380
  prerequisite_keywords: string[];
13977
14381
  completion_level: string;
13978
14382
  bloom_level: string;
13979
- concept_code: string;
13980
14383
  concept_name: string;
13981
14384
  feature_id: string;
13982
14385
  feature_name: string;
@@ -13988,12 +14391,12 @@ declare const RoadmapInputSchema: z.ZodObject<{
13988
14391
  description: string;
13989
14392
  name: string;
13990
14393
  concept: string;
14394
+ concept_code: string;
13991
14395
  lo_type: string;
13992
14396
  bloom_level: string;
13993
14397
  knowledge_dimension: string;
13994
14398
  assessment: string;
13995
14399
  keyword: string;
13996
- concept_code: string;
13997
14400
  concept_name: string;
13998
14401
  }[];
13999
14402
  id?: string | undefined;
@@ -14005,11 +14408,11 @@ declare const RoadmapInputSchema: z.ZodObject<{
14005
14408
  id?: string | undefined;
14006
14409
  difficulty?: string | undefined;
14007
14410
  rationale?: string | string[] | undefined;
14411
+ concept_code?: string | undefined;
14008
14412
  new_keywords?: string[] | undefined;
14009
14413
  prerequisite_keywords?: string[] | undefined;
14010
14414
  completion_level?: string | undefined;
14011
14415
  bloom_level?: string | undefined;
14012
- concept_code?: string | undefined;
14013
14416
  concept_name?: string | undefined;
14014
14417
  feature_id?: string | undefined;
14015
14418
  feature_name?: string | undefined;
@@ -14022,11 +14425,11 @@ declare const RoadmapInputSchema: z.ZodObject<{
14022
14425
  lo_type: string;
14023
14426
  description?: string | undefined;
14024
14427
  concept?: string | undefined;
14428
+ concept_code?: string | undefined;
14025
14429
  bloom_level?: string | undefined;
14026
14430
  knowledge_dimension?: string | undefined;
14027
14431
  assessment?: string | undefined;
14028
14432
  keyword?: string | undefined;
14029
- concept_code?: string | undefined;
14030
14433
  concept_name?: string | undefined;
14031
14434
  }[] | undefined;
14032
14435
  instruction_ref?: string | undefined;
@@ -14040,11 +14443,11 @@ declare const RoadmapInputSchema: z.ZodObject<{
14040
14443
  name: string;
14041
14444
  difficulty: string;
14042
14445
  rationale: string | string[];
14446
+ concept_code: string;
14043
14447
  new_keywords: string[];
14044
14448
  prerequisite_keywords: string[];
14045
14449
  completion_level: string;
14046
14450
  bloom_level: string;
14047
- concept_code: string;
14048
14451
  concept_name: string;
14049
14452
  feature_id: string;
14050
14453
  feature_name: string;
@@ -14056,12 +14459,12 @@ declare const RoadmapInputSchema: z.ZodObject<{
14056
14459
  description: string;
14057
14460
  name: string;
14058
14461
  concept: string;
14462
+ concept_code: string;
14059
14463
  lo_type: string;
14060
14464
  bloom_level: string;
14061
14465
  knowledge_dimension: string;
14062
14466
  assessment: string;
14063
14467
  keyword: string;
14064
- concept_code: string;
14065
14468
  concept_name: string;
14066
14469
  }[];
14067
14470
  id?: string | undefined;
@@ -14083,11 +14486,11 @@ declare const RoadmapInputSchema: z.ZodObject<{
14083
14486
  id?: string | undefined;
14084
14487
  difficulty?: string | undefined;
14085
14488
  rationale?: string | string[] | undefined;
14489
+ concept_code?: string | undefined;
14086
14490
  new_keywords?: string[] | undefined;
14087
14491
  prerequisite_keywords?: string[] | undefined;
14088
14492
  completion_level?: string | undefined;
14089
14493
  bloom_level?: string | undefined;
14090
- concept_code?: string | undefined;
14091
14494
  concept_name?: string | undefined;
14092
14495
  feature_id?: string | undefined;
14093
14496
  feature_name?: string | undefined;
@@ -14100,11 +14503,11 @@ declare const RoadmapInputSchema: z.ZodObject<{
14100
14503
  lo_type: string;
14101
14504
  description?: string | undefined;
14102
14505
  concept?: string | undefined;
14506
+ concept_code?: string | undefined;
14103
14507
  bloom_level?: string | undefined;
14104
14508
  knowledge_dimension?: string | undefined;
14105
14509
  assessment?: string | undefined;
14106
14510
  keyword?: string | undefined;
14107
- concept_code?: string | undefined;
14108
14511
  concept_name?: string | undefined;
14109
14512
  }[] | undefined;
14110
14513
  instruction_ref?: string | undefined;
@@ -14120,11 +14523,11 @@ declare const RoadmapInputSchema: z.ZodObject<{
14120
14523
  name: string;
14121
14524
  difficulty: string;
14122
14525
  rationale: string | string[];
14526
+ concept_code: string;
14123
14527
  new_keywords: string[];
14124
14528
  prerequisite_keywords: string[];
14125
14529
  completion_level: string;
14126
14530
  bloom_level: string;
14127
- concept_code: string;
14128
14531
  concept_name: string;
14129
14532
  feature_id: string;
14130
14533
  feature_name: string;
@@ -14136,12 +14539,12 @@ declare const RoadmapInputSchema: z.ZodObject<{
14136
14539
  description: string;
14137
14540
  name: string;
14138
14541
  concept: string;
14542
+ concept_code: string;
14139
14543
  lo_type: string;
14140
14544
  bloom_level: string;
14141
14545
  knowledge_dimension: string;
14142
14546
  assessment: string;
14143
14547
  keyword: string;
14144
- concept_code: string;
14145
14548
  concept_name: string;
14146
14549
  }[];
14147
14550
  id?: string | undefined;
@@ -14189,11 +14592,11 @@ declare const RoadmapInputSchema: z.ZodObject<{
14189
14592
  id?: string | undefined;
14190
14593
  difficulty?: string | undefined;
14191
14594
  rationale?: string | string[] | undefined;
14595
+ concept_code?: string | undefined;
14192
14596
  new_keywords?: string[] | undefined;
14193
14597
  prerequisite_keywords?: string[] | undefined;
14194
14598
  completion_level?: string | undefined;
14195
14599
  bloom_level?: string | undefined;
14196
- concept_code?: string | undefined;
14197
14600
  concept_name?: string | undefined;
14198
14601
  feature_id?: string | undefined;
14199
14602
  feature_name?: string | undefined;
@@ -14206,11 +14609,11 @@ declare const RoadmapInputSchema: z.ZodObject<{
14206
14609
  lo_type: string;
14207
14610
  description?: string | undefined;
14208
14611
  concept?: string | undefined;
14612
+ concept_code?: string | undefined;
14209
14613
  bloom_level?: string | undefined;
14210
14614
  knowledge_dimension?: string | undefined;
14211
14615
  assessment?: string | undefined;
14212
14616
  keyword?: string | undefined;
14213
- concept_code?: string | undefined;
14214
14617
  concept_name?: string | undefined;
14215
14618
  }[] | undefined;
14216
14619
  instruction_ref?: string | undefined;
@@ -14229,4 +14632,4 @@ interface ProjectRoadmap {
14229
14632
  milestones: MilestoneInput[];
14230
14633
  }
14231
14634
 
14232
- export { type ActiveLearningWorkflow, ActiveLearningWorkflowSchema, type ActivityLab, ActivityLabSchema, type ActivitySeqRow, ActivitySeqRowSchema, ActivityStepSchema, ArtifactContractRowSchema, AssessmentMapRowSchema, type AssessmentObjective, AssessmentObjectiveSchema, type BellRinger, type BellRingerDay, BellRingerDaySchema, type BellRingerInput, BellRingerSchema, type BloomLevel, BloomLevelSchema, type BronzeTier, BronzeTierSchema, type CERConclusion, CERConclusionSchema, CardTierEnum, type ChoiceBoard, type ChoiceBoardInput, ChoiceBoardRubricRowSchema, ChoiceBoardSchema, ChoiceRuleSchema, type ChoiceSquare, ChoiceSquareSchema, type CodeLab, CodeLabSchema, type CodeSnippet, CodeSnippetSchema, type CompetencyRubricRow, CompetencyRubricRowSchema, type ComputationalThinking, ComputationalThinkingSchema, type CoreConcept, CoreConceptSchema, type CourseObjective, CourseObjectiveSchema, type CoverageReport, CoverageReportSchema, type CurriculumArtifact, CurriculumArtifactSchema, type CurriculumPlan, CurriculumPlanSchema, type CurriculumQualityReport, CurriculumQualityReportSchema, type DependencyEdge, DependencyEdgeSchema, type DepthAssignment, DepthAssignmentSchema, type DepthLevel, DepthLevelSchema, type DiagnosticQuestion, type DiagnosticQuestionInput, DiagnosticQuestionSchema, type DiagnosticQuiz, type DiagnosticQuizInput, DiagnosticQuizSchema, EDPPhaseEnum, EntryLevelSchema, type ExitTicket, type ExitTicketBugHunt, ExitTicketBugHuntSchema, ExitTicketMetacognitionSchema, ExitTicketQuickItemSchema, ExitTicketRecallPromptSchema, ExitTicketSchema, ExperimentalDesignSchema, type Extension, ExtensionChallengeSchema, ExtensionSchema, FiveEFlowPhaseSchema, FiveEPhaseEnum, type Glossary, type GlossaryInput, GlossaryQuickRefRowSchema, GlossarySchema, type GlossaryTerm, GlossaryTermSchema, type GoldTier, GoldTierSchema, type GraphicOrganizer, type GraphicOrganizerInput, type GraphicOrganizerItem, GraphicOrganizerItemSchema, GraphicOrganizerSchema, type Handout, HandoutSchema, type HandoutSection, HandoutSectionSchema, type InstructionSection, InstructionSectionSchema, type InstructionStep, InstructionStepSchema, JudgeCriterionSchema, type LabTierTask, LabTierTaskSchema, type LearningObjectiveInput, LearningObjectiveInputSchema, type LearningObjectiveRow, LearningObjectiveRowSchema, type LessonFlowPhase, LessonFlowPhaseSchema, type LessonPlan, type LessonPlan5E, LessonPlan5ESchema, type LessonPlanEDP, LessonPlanEDPSchema, LessonPlanSchema, LessonSectionSchema, type MarpSlide, MarpSlideSchema, MentorCheatsheetSchema, type MilestoneInput, MilestoneInputSchema, type Misconception, MisconceptionSchema, NodeKindSchema, OrganizerTypeEnum, type PhaseInput, PhaseInputSchema, type PlanConstraints, PlanConstraintsSchema, type PlannerInput, PlannerInputSchema, type PlanningGraph, PlanningGraphSchema, type PlanningNode, PlanningNodeSchema, type PlanningPhase, type PrerequisiteDecision, type PrerequisiteDecisionEntry, PrerequisiteDecisionEntrySchema, PrerequisiteDecisionSchema, ProductGoalSchema, type ProgressiveHints, ProgressiveHintsSchema, type ProjectGraph, ProjectGraphSchema, type ProjectInstruction, ProjectInstructionSchema, type ProjectProfile, ProjectProfileSchema, type ProjectRoadmap, QualityAuditVerdictSchema, type QuizOption, QuizOptionSchema, ResourceMapRowSchema, type ReviewGame, ReviewGameExportRowSchema, type ReviewGameInput, type ReviewGameQuestion, ReviewGameQuestionSchema, ReviewGameSchema, type RoadmapInput, RoadmapInputSchema, type RotationStation, RotationStationSchema, type Rubric, type RubricCriteria, RubricCriteriaSchema, RubricSchema, type ScaffoldDecision, type ScaffoldDecisionEntry, ScaffoldDecisionEntrySchema, ScaffoldDecisionSchema, type ScienceLab, type ScienceLabInput, ScienceLabSchema, ScoringRubricRowSchema, type SelfLab, SelfLabSchema, type SelfPacedBundle, SelfPacedBundleSchema, type SelfPacedChallenge, SelfPacedChallengeSchema, type SessionPlan, SessionPlanSchema, type SilverTier, SilverTierSchema, type SlideDeck, SlideDeckSchema, StandardizedTermRowSchema, StationRecordRowSchema, type StationRotation, type StationRotationInput, StationRotationSchema, StationTypeEnum, type TaskCard, TaskCardSchema, type TaskCards, type TaskCardsInput, TaskCardsSchema, type TeacherGuide, TeacherGuideSchema, type TeachingScriptPhase, TeachingScriptPhaseSchema, TierLevelEnum, TierObjectiveSchema, type TieredPractice, TieredPracticeSchema, type TranslationPolicy, TranslationPolicySchema, type TroubleshootingEntry, TroubleshootingEntrySchema, type TroubleshootingRow, TroubleshootingRowSchema, type UnitPlan, UnitPlanSchema, UserJourneySchema, type Worksheet, type WorksheetItem, WorksheetItemSchema, WorksheetItemTypeEnum, type WorksheetPart, WorksheetPartSchema, WorksheetSchema, validateCurriculumPlan };
14635
+ export { type ActiveLearningWorkflow, ActiveLearningWorkflowSchema, type ActivityLab, ActivityLabSchema, type ActivitySeqRow, ActivitySeqRowSchema, ActivityStepSchema, ArtifactContractRowSchema, AssessmentMapRowSchema, type AssessmentObjective, AssessmentObjectiveSchema, type BellRinger, type BellRingerDay, BellRingerDaySchema, type BellRingerInput, BellRingerSchema, type BloomLevel, BloomLevelSchema, type BronzeTier, BronzeTierSchema, type CERConclusion, CERConclusionSchema, CardTierEnum, type ChoiceBoard, type ChoiceBoardInput, ChoiceBoardRubricRowSchema, ChoiceBoardSchema, ChoiceRuleSchema, type ChoiceSquare, ChoiceSquareSchema, type CodeLab, CodeLabSchema, type CodeSnippet, CodeSnippetSchema, type CompetencyRubricRow, CompetencyRubricRowSchema, type ComputationalThinking, ComputationalThinkingSchema, type ConceptPrerequisiteEdge, ConceptPrerequisiteEdgeSchema, type ConceptSpiralEncounter, ConceptSpiralEncounterSchema, type CoreConcept, CoreConceptSchema, type CourseObjective, CourseObjectiveSchema, type CoverageReport, CoverageReportSchema, type CurriculumArtifact, CurriculumArtifactSchema, type CurriculumPlan, CurriculumPlanSchema, type CurriculumQualityReport, CurriculumQualityReportSchema, type DependencyEdge, DependencyEdgeSchema, type DepthAssignment, DepthAssignmentSchema, type DepthLevel, DepthLevelSchema, type DiagnosticQuestion, type DiagnosticQuestionInput, DiagnosticQuestionSchema, type DiagnosticQuiz, type DiagnosticQuizInput, DiagnosticQuizSchema, EDPPhaseEnum, EntryLevelSchema, type ExitTicket, type ExitTicketBugHunt, ExitTicketBugHuntSchema, ExitTicketMetacognitionSchema, ExitTicketQuickItemSchema, ExitTicketRecallPromptSchema, ExitTicketSchema, ExperimentalDesignSchema, type Extension, ExtensionChallengeSchema, ExtensionSchema, FiveEFlowPhaseSchema, FiveEPhaseEnum, type Glossary, type GlossaryInput, GlossaryQuickRefRowSchema, GlossarySchema, type GlossaryTerm, GlossaryTermSchema, type GoldTier, GoldTierSchema, type GraphicOrganizer, type GraphicOrganizerInput, type GraphicOrganizerItem, GraphicOrganizerItemSchema, GraphicOrganizerSchema, type Handout, HandoutSchema, type HandoutSection, HandoutSectionSchema, type InstructionSection, InstructionSectionSchema, type InstructionStep, InstructionStepSchema, JudgeCriterionSchema, type LabTierTask, LabTierTaskSchema, type LearningObjectiveInput, LearningObjectiveInputSchema, type LearningObjectiveRow, LearningObjectiveRowSchema, type LessonFlowPhase, LessonFlowPhaseSchema, type LessonPlan, type LessonPlan5E, LessonPlan5ESchema, type LessonPlanEDP, LessonPlanEDPSchema, LessonPlanSchema, LessonSectionSchema, type MarpSlide, MarpSlideSchema, type MasteryGate, MasteryGateSchema, MentorCheatsheetSchema, type MilestoneInput, MilestoneInputSchema, type Misconception, MisconceptionSchema, NodeKindSchema, OrganizerTypeEnum, type PhaseInput, PhaseInputSchema, type PlanConstraints, PlanConstraintsSchema, type PlannerInput, PlannerInputSchema, type PlanningGraph, PlanningGraphSchema, type PlanningNode, PlanningNodeSchema, type PlanningPhase, type PrerequisiteDecision, type PrerequisiteDecisionEntry, PrerequisiteDecisionEntrySchema, PrerequisiteDecisionSchema, ProductGoalSchema, type ProgressiveHints, ProgressiveHintsSchema, type ProjectGraph, ProjectGraphSchema, type ProjectInstruction, ProjectInstructionSchema, type ProjectProfile, ProjectProfileSchema, type ProjectRoadmap, QualityAuditVerdictSchema, type QuizOption, QuizOptionSchema, ResourceMapRowSchema, type ReviewGame, ReviewGameExportRowSchema, type ReviewGameInput, type ReviewGameQuestion, ReviewGameQuestionSchema, ReviewGameSchema, type RoadmapInput, RoadmapInputSchema, type RotationStation, RotationStationSchema, type Rubric, type RubricCriteria, RubricCriteriaSchema, RubricSchema, type ScaffoldDecision, type ScaffoldDecisionEntry, ScaffoldDecisionEntrySchema, ScaffoldDecisionSchema, type ScienceLab, type ScienceLabInput, ScienceLabSchema, ScoringRubricRowSchema, type SelfLab, SelfLabSchema, type SelfPacedBundle, SelfPacedBundleSchema, type SelfPacedChallenge, SelfPacedChallengeSchema, type SessionPlan, SessionPlanSchema, type SessionZpdStatus, SessionZpdStatusSchema, type SilverTier, SilverTierSchema, type SlideDeck, SlideDeckSchema, StandardizedTermRowSchema, StationRecordRowSchema, type StationRotation, type StationRotationInput, StationRotationSchema, StationTypeEnum, type TaskCard, TaskCardSchema, type TaskCards, type TaskCardsInput, TaskCardsSchema, type TeacherGuide, TeacherGuideSchema, type TeachingScriptPhase, TeachingScriptPhaseSchema, TierLevelEnum, TierObjectiveSchema, type TieredPractice, TieredPracticeSchema, type TranslationPolicy, TranslationPolicySchema, type TroubleshootingEntry, TroubleshootingEntrySchema, type TroubleshootingRow, TroubleshootingRowSchema, type UnitPlan, UnitPlanSchema, UserJourneySchema, type WalkingSkeleton, WalkingSkeletonSchema, type Worksheet, type WorksheetItem, WorksheetItemSchema, WorksheetItemTypeEnum, type WorksheetPart, WorksheetPartSchema, WorksheetSchema, type ZpdVerdict, ZpdVerdictSchema, validateCurriculumPlan };